* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  text-decoration: none;
  scroll-behavior: smooth;
  font-family: "Playfair Display", Arial, Helvetica, sans-serif;
}

:root {
  --bg-color: #F3EDE3;
  --second-bg-color: #fdf8f0;
  --text-color: #0B1220;
  --accentcolor: #111;
  --mainaboutcolor: #F3EDE3;
  --aboutxtcolor: #1E293B;
  --hovercolor: #475569;
  --contactcolor: #0B132B;
  --header-offset: 12rem;

}

html {
  font-size: 60%;
  overflow-x: hidden;
}

body {
  background: var(--bg-color);
  color: var(--text-color);
}

header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding: 2rem 3rem;
  background: var(--second-bg-color);
  backdrop-filter: blur(10px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1000;
  transition: padding .25s ease, background .25s ease, box-shadow .25s ease;
}

#menu-icon {
  font-size: 3rem;
  color: var(--accentcolor);
  display: none;
}

header.scrolled {
  padding: 1rem 3rem;

  background: var(--second-bg-color);

  box-shadow:
    0 10px 30px rgba(0, 0, 0, .08);
}

header.scrolled .logo {
  font-size: 1.6rem;
}

header.scrolled .dreNumber {
  font-size: .9rem;
}

.logo {
  font-size: 2rem;
  font-family: "Playfair Display", Arial, Helvetica, sans-serif;
  color: var(--text-color);
  display: flex;
  align-items: center;
  white-space: nowrap;
  gap: .4rem;
  flex-direction: column;
  font-weight: 400;
  cursor: pointer;
  transition: .3s ease-in-out;

}

.logo,
.dreNumber {
  transition: font-size .25s ease, transform .25s ease;
}

.logoSpan {
  color: var(--accentcolor);
}

.logo:hover {
  transform: scale(1.1);
}

.dreNumber {
  font-size: 1.1rem;
}

nav {
  display: flex;
  align-items: center;

}

.navbar a {
  font-size: 1.8rem;
  color: var(--text-color);
  margin-left: 4rem;
  transition: .3s ease-in-out;
  border-bottom: 3px solid transparent;
}

.navbar a:hover {
  color: var(--accentcolor);
  border-bottom: 1px solid var(--accentcolor);
}

.contactBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  border: 1px solid var(--accentcolor);
  border-radius: 999px;
  padding: 2rem 2rem;
  background: var(--contactcolor);
  color: #F8FAFC;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  margin-left: 4rem;
  cursor: pointer;
  transition: .3s ease-in-out;
}

.contactBtn:hover {
  transform: scale(1.05);
  background: linear-gradient(270deg,
      #c9a45c 0%,
      #cfb38c 100%);
}

/* //////////////////HERO////////////////// */
section {
  padding: 8rem 8%
}

.home {
  display: flex;
  min-height: 88vh;
  padding: 13rem 8% 6rem;
  align-items: flex-start;
  justify-content: space-between;
  gap: 6rem;
}

.homeContent,
.socialCard {
  min-height: 460px;
}

.homeContent {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  max-width: 650px;
  text-align: left;

}

.homeContent h1 {
  font-size: 5rem;
  font-weight: 700;
  margin-top: .8rem;
  line-height: 1.2;
  margin-bottom: 3rem;
}

.homeContent span {
  color: var(--accentcolor);
  margin: 1rem 0;
  font-size: 5rem;
  font-weight: 700;
  margin-top: 1.5rem;
}

.homeContent h3 {
  font-size: 3rem;
  line-height: 1.4;
  font-weight: 500;
  margin-bottom: 3rem;
}

/* /////////////IMG AND SOCIAL/////////// */

.homeImg {
  width: 360px;
  height: 360px;
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  padding: 4px;

  background: linear-gradient(135deg,
      rgba(232, 180, 92, 1),
      rgba(177, 121, 45, 0.55),
      rgba(232, 180, 92, 0.95));

  box-shadow:
    0 0 25px rgba(232, 180, 92, 0.45),
    0 0 70px rgba(177, 121, 45, 0.25);

  position: relative;
  flex-shrink: 0;
  margin-bottom: 2.4rem;
}

.homeImg img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  filter: brightness(.92);
  display: block;
}

.socialCard {
  max-width: 420px;
  min-height: auto;
  padding: 0;
  margin-top: .8rem;

  background: transparent;
  border: none;
  box-shadow: none;
  backdrop-filter: none;

  display: flex;
  flex-direction: column;
  align-items: center;
}

.socialEyebrow {
  color: var(--accentcolor);
  font-size: 1.2rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.callOut {
  color: var(--text-color);
  margin-bottom: 8px;
}

.socialText {
  color: var(--text-color);
  line-height: 1.5;
  margin-bottom: 10px;
}

.socialIcons {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.2rem;
  margin-top: .5rem;
}

.followTag {
  font-size: 1.6rem;
  text-align: center;

}

.socialIcons a {
  display: inline-flex;
  width: 4rem;
  height: 4rem;
  border: 1px solid var(--text-color);
  justify-content: center;
  align-items: center;
  font-size: 2.5rem;
  padding: 2.5rem;
  margin: 2rem .5rem;
  background: transparent;
  color: var(--text-color);
  border-radius: 50%;
  transition: .2s ease-in-out;
}

.socialIcons a:hover {
  color: #f8f1e7;
  background: #cfb38c;
  border-color: #c9a45c;
  transform: scale(1.12) translateY(-4px);
  box-shadow: 0 0 22px #c9a45c47;
}


.homeBtns {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2rem;
  margin-bottom: 3rem;
}

.primary-btn,
.ctaBtn,
.connect-btn,
.secondary-btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: 1.2rem 2.4rem;
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1;
  white-space: nowrap;
  transition: .3s ease-in-out;
  font-weight: 600;
  font-family: "Google Sans";
  border-radius: 14px;
}

.primary-btn,
.ctaBtn {
  background-color: var(--accentcolor);
  color: var(--second-bg-color);


}

.primary-btn i,
h2 i {
  font-size: 12px;
  margin: 3px 0 0 3px;
}

.secondary-btn {
  color: var(--text-color);
  border: 1px solid var(--accentcolor);
  display: inline-flex;
  justify-content: center;
  align-items: center;
}



.primary-btn:hover,
.secondary-btn:hover,
.ctaBtn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 20px var(--hovercolor);
}


.clientProof {
  display: inline-flex;
  align-items: center;
  gap: 1.2rem;
  margin-top: 2rem;

  width: fit-content;
  max-width: max-content;

  padding: .8rem .8rem;
  border: 1px solid var(--accentcolor);
  box-shadow: 0 0 18px rgba(96, 165, 250, .14);
  border-radius: 14px;

  color: inherit;
  text-decoration: none;
  cursor: pointer;
  transition: .2s ease-in-out;

}

.clientProof:hover,
.aboutBtn:hover {
  transform: translateY(-3px);
  border-color: var(--accentcolor);
  box-shadow: 0 0 24px var(--hovercolor);

}

.clientFaces {
  display: flex;
}

.clientFaces img {
  width: 10rem;
  height: 10rem;
  border-radius: 50%;
  object-fit: cover;
  margin-left: -8px;
  border: 1px solid #0B132B;
}

.clientFaces img:first-child {
  margin-left: 0;
}

.clientProof p {
  font-size: 1.6rem;
  font-family: "Google Sans", Arial, Helvetica, sans-serif;
  color: var(--text-color);
}


/* //////////////////LISTINGS////////////////// */
.featuredListings {
  background: var(--second-bg-color);
  padding: 2rem 8% 7rem;
}

.sectionHeader,
.serviceHeader,
.reviewHeader {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 35px;
}

.listingTitle,
.serviceTitle {
  font-family: "Google Sans", sans-serif;
  font-size: 2.5rem;
}

.listingsBtn {
  color: var(--accentcolor);
  font-family: "Google Sans", sans-serif;
  font-size: 1.8rem;
  transition: transform .4s ease;
}

.listingGrid,
.serviceGrid,
.testimonialGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.mobileListingsAction {
  display: none;
}

.listingImg {
  position: relative;
}

.listingImg img {
  width: 100%;
  object-fit: cover;
  object-position: center 20%;
  height: 180px;
  display: block;
}

.tag {
  position: absolute;
  left: 8px;
  bottom: 4px;
  background: var(--accentcolor);
  color: var(--bg-color);
  font-family: "Google Sans", sans-serif;
  font-size: 1.4rem;
  border-radius: 999px;
  padding: 6px 10px;
  margin: 0 0 10px 2px;
  z-index: 5;
  font-weight: 500;
}

.listingCard {
  background: var(--bg-color);
  border: 1px solid var(--accentcolor);
  border-radius: 22px;
  overflow: hidden;
  display: block;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.listInfo {
  padding: 20px;
  color: var(--text-color);
}

.listInfo h3 {
  font-size: 2.2rem;
  font-family: "Google Sans", sans-serif;
  color: var(--accentcolor);
}

.location {
  color: var(--text-color);
  line-height: 1.3;
  font-weight: 200;
}

.bigP {
  font-size: 1.5rem;
}

.lilP {
  font-size: 1.2rem;
}

.listingDetails {
  display: flex;
  gap: 6px;
  font-size: 1.4rem;
}

.listingDetails span {
  padding-top: 1rem;
  margin-right: 10px;
  font-family: "Google Sans", sans-serif;

}

.listingDetails i {
  color: var(--accentcolor);
  margin-right: 6px;
  font-size: 1.2rem;
}

/* //////////////// SERVICE SECTION////////////// */
.serviceCard {
  height: 100%;
}

.serviceBtn {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;


  height: 100%;
  padding: 28px;
  border-radius: 22px;
  text-decoration: none;
  color: inherit;

  background: var(--bg-color);
  border: 1px solid var(--accentcolor);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.serviceInfo {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.serviceBtn:hover,
.listingCard:hover {
  transform: translateY(-6px);
  border-color: var(--accentcolor);
  box-shadow: 0 6px 15px var(--accentcolor);
}

.serviceBtn:hover .learnMore {
  color: var();
  transform: translateX(4px);
}

.learnMore {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  margin-top: 20px;
  font-size: 1.5rem;
  font-family: "Google Sans", sans-serif;
  color: var(--accentcolor);
  font-weight: 700;
  transition: transform 0.25s ease, color 0.25s ease;
}

.learnMore i {
  font-size: 1.2rem;
  line-height: 1;
  margin-top: 2px;
  color: var(--accentcolor);
}

.serviceInfo h3 {
  margin: 0;
  color: var(--accentcolor);
  font-size: 2.2rem;
  font-family: "Google Sans", sans-serif;

}

.serviceInfo p {
  margin: 0;
  color: var(--aboutxtcolor);
  line-height: 1.5;
  font-size: 1.8rem;
  font-family: "Google Sans", sans-serif;
}


.serviceIcon {
  width: 64px;
  height: 64px;
  color: var(--accentcolor);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(253, 248, 240, 0.9s);
  box-shadow:
  0 12px 28px rgba(214, 162, 79, 0.14),
    0 2px 8px rgba(7, 18, 37, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);

}

.serviceIcon svg {
  width: 40px;
  height: 40px;
  color: var(--accentcolor);
}

.flipIcon {
  transform: scaleX(-1);
  align-items: center;
}

.sectionAction {
  display: none;
}

/* //////////////// ABOUT ME SECTION ///////////*/
.aboutPreview {
  gap: 8rem;
  padding: 5rem 8%;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  background: var(--second-bg-color);

}

.aboutImg {
  width: 550px;
  flex-shrink: 0;
}

.aboutImg img {
  height: 320px;
  object-fit: cover;
  border-radius: 24px;
  width: 100%;
  display: block;
}

.aboutContent {
  display: flex;
  padding: 0;
  max-width: 680px;
  flex-direction: column;
  justify-content: flex-start;

}

.aboutContent h2 {
  color: var(--aboutxtcolor);
  font-size: 4rem;
  font-family: "Google Sans", sans-serif;
  margin-bottom: 1rem;
}

.aboutContent span {
  font-family: "Google Sans", sans-serif;
  color: var(--accentcolor);

}

.aboutContent h3 {
  line-height: 1.8;
  color: var(--aboutxtcolor);
  font-size: 2.5rem;
  padding: 0;
  margin-bottom: 1.5rem;
}

.aboutContent p {
  color: var(--aboutxtcolor);
  line-height: 1.6;
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.aboutBtn {
  display: inline-flex;
  margin-top: 1.5rem;
  padding: 12px 30px;
  border-radius: 14px;
  border: 1px solid var(--accentcolor);
  color: var(--text-color);
  text-decoration: none;
  font-size: 1.8rem;
  width: fit-content;
  font-family: "Google Sans", sans-serif;
  font-weight: 300;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

/* /////////////////////////REVIEWS SECTION//////////// */


.testimonialCard {
  display: flex;

  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  padding: 28px;
  border-radius: 22px;
  background: var(--bg-color);
  border: 1px solid var(--accentcolor);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonialCard p {
  font-size: 1.7rem;
}

.featuredReviewRating {
  display: flex;
  gap: 0.25rem;
  margin-bottom: 1rem;
}

.featuredReviewRating svg {
  width: 18px;
  height: 18px;

  fill: #FBBF24;
  color: #FBBF24;
}


.reviewFaces {
  display: flex;
  gap: 1.5rem;
  justify-content: flex-start;
  margin-top: 1.2rem;

}

.reviewFaces img {
  width: 6rem;
  height: 6rem;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid #0B132B;
}

.reviewText {
  gap: 1rem;
  justify-content: center;
  display: flex;
  flex-direction: column;
  font-size: 1.4rem;
}
/* /////////////////////////STICKY CONTACT BUTTON ////////////////////// */
.stickyContactCta {
  display: hidden;
}


/* /////////////////////CALL TO ACTION SECTION////////// */
footer {
  background: var(--bg-color);
  color: var(--mainaboutcolor);
}

.ctaBanner {
  min-height: 340px;

  background-image: url("assets/images/backgrounds/palmdale.webp");
  background-size: cover;
  background-position: center 10%;

  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.ctaOverlay {
  position: absolute;
  inset: 0;


  background:
    linear-gradient(90deg,
      rgba(3, 10, 24, .90) 0%,
      rgba(3, 10, 24, .75) 35%,
      rgba(3, 10, 24, .45) 60%,
      rgba(3, 10, 24, .15) 100%);


  display: flex;
  align-items: center;
}

.ctaContent {
  max-width: 500px;

  padding-left: 10%;

  color: var(--text-color);
}

.ctaContent h2 {
  font-size: clamp(2.5rem, 5vw, 4rem);
  color: var(--mainaboutcolor);

  line-height: 1.1;

  margin-bottom: 1rem;
}

.ctaContent p {
  color: var(--bg-color);
  font-size: 1.6rem;
  margin-bottom: 2rem;
  margin-top: 2rem;
}

.ctaBtn {
  margin-top: 1.5rem;
  background-color: var(--mainaboutcolor);
  color: var(--accentcolor);
}

/* ////////////////FOOTER////////////// */
.footerContent {
  width: 100%;
  padding: 5rem 8%;
  display: grid;
  grid-template-columns:
    2fr 1fr 1fr 1.4fr;
  gap: 2.5rem;
  align-items: start;
}

.footerBrand,
.footerLinks,
.footerResources,
.footerContact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footerContact {
  font-style: normal;
}

.footerContent h3 {
  font-family: "Google Sans", sans-serif;
  font-size: 1.7rem;
  margin-bottom: 1.4rem;
  color: var(--text-color);
}

.footerBrand h2 {
  font-size: 2.2rem;
  margin-bottom: .3rem;
  color: var(--text-color);
}

.footerBrand span {
  color: var(--text-color);
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.footerBrand p,
.footerContact p,
.footerContact a,
.footerLinks a,
.footerResources a {
  font-family: "Google Sans", sans-serif;
  font-size: 1.2rem;
  line-height: 1.7;
  color: var(--text-color);
}

.footerLinks a,
.footerResources a {
  margin-bottom: .8rem;
  transition: .2s ease-in-out;
}

.footerLinks a:hover,
.footerResources a:hover {
  color: var(--accentcolor);
  transform: translateX(4px);
}

.footerBottom {
  padding: 2rem 8%;
  border-top: 1px solid var(--accentcolor);

  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

.footerBottom p,
.footerBottom a {
  font-family: "Google Sans", sans-serif;
  font-size: 1.3rem;
  color: #94a3b8;
}

.footerBottom div {
  display: flex;
  gap: 2rem;
}

/* //////////////MODAL///////////// */
.contactModal {
  position: fixed;
  inset: 0;
  z-index: 2000;

  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.contactModal.active {
  display: flex;
}

.modalOverlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 37, 0.72);
}

.modalBox {
  position: relative;
  z-index: 2;

  width: min(100%, 520px);
  padding: 3rem;
  border-radius: 18px;

  background: var(--second-bg-color);
  border: 1px solid rgba(30, 41, 59, 0.16);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.28);
}

.modalClose {
  position: absolute;
  top: 1.4rem;
  right: 1.4rem;

  border: none;
  background: transparent;
  font-size: 2rem;
  color: var(--text-color);
  cursor: pointer;
}

.modalBox h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.modalBox p {
  font-family: "Google Sans", sans-serif;
  font-size: 1.5rem;
  color: #475569;
  margin-bottom: 2rem;
}

.modalForm {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.modalForm input,
.modalForm textarea {
  width: 100%;
  padding: 1.4rem 1.6rem;
  border-radius: 8px;
  border: 1px solid rgba(30, 41, 59, 0.18);
  font-family: "Google Sans", sans-serif;
  font-size: 1.45rem;
}

.modalForm textarea {
  min-height: 130px;
  resize: vertical;
}

/* ///////////////POINT BREAKS////////// */
/* LAPTOPS AND LARGE TABLETS */
@media (max-width: 1100px) and (min-width: 901px) {
  section {
    padding-left: 5%;
    padding-right: 5%;
  }

  .navbar a {
    margin-left: 2.4rem;
    font-size: 1.6rem;
  }

  .contactBtn {
    margin-left: 2.4rem;
    padding: 1.6rem 1.8rem;
  }

  .serviceGrid {
    grid-template-columns: repeat(2, 1fr);
  }

  .serviceCard:nth-child(3) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .serviceBtn {
    padding: 2.4rem;
  }

  .aboutPreview {
    gap: 4rem;
    padding: 5rem 5%;
  }

  .aboutImg {
    width: 420px;
  }

  .aboutContent {
    max-width: 560px;
  }

  .aboutContent h2 {
    font-size: 3.4rem;
  }

  .aboutContent h3 {
    font-size: 2.2rem;
  }

  .aboutContent p {
    font-size: 1.7rem;
  }
}

/* ( FIRST 900px FOR TABLETS ETC) */
@media (max-width: 900px) {
  header {
    padding: 2rem 6%;
  }

  header.scrolled {
    padding: 1.2rem 6%;
  }

  #menu-icon {
    display: block;
    cursor: pointer;
  }

  .contactBtn {
    display: none;
  }

  .navbar {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;

    display: flex;
    flex-direction: column;
    gap: 1.6rem;

    background: var(--second-bg-color);
    padding: 2rem 6%;

    opacity: 0;
    transform: translateY(-12px);
    pointer-events: none;

    transition: opacity 0.3s ease, transform 0.3s ease;
  }

  .navbar.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .navbar.active a {
    margin-left: 0;
  }

  .home {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 3rem;
    padding: 11rem 6% 5rem;
  }

  .homeContent {
    align-items: center;
    text-align: center;
    max-width: 430px;
  }

  .homeContent h1 {
    font-size: 4rem;
  }

  .homeContent span {
    font-size: 4rem;
  }

  .homeContent h3 {
    font-size: 1.8rem;
  }

  .homeBtns {
    flex-direction: column;
    width: 100%;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
  }

  .socialCard {
    order: -1;
    width: 100%;
    max-width: 360px;
    min-height: auto;
  }

  .homeImg {
    width: 350px;
    height: 350px;
  }

  .clientProof {
    justify-content: center;
  }
}

/* //////////Listng and Sevices//////// */
@media (max-width: 900px) {

  .listingGrid,
  .serviceGrid,
  .testimonialGrid {
    grid-template-columns: 1fr;
  }

  .featuredListings,
  .servicesList,
  .reviewSection,
  .aboutPreview {
    padding: 5rem 6%;
  }

  .aboutPreview {
    flex-direction: column;
    gap: 3rem;
  }

  .aboutImg {
    width: 100%;
  }

  .sectionAction,
  .mobileListingsAction {
    width: 85%;
    display: flex;
    justify-content: center;
    margin: 2rem auto 0;
  }

  .sectionAction a,
  .mobileListingsAction a {
    width: 100%;
  }


  /* /////////listing Card/////// */
  .sectionHeader .listingsBtn {
    display: none;
  }


  .listingImg {
    aspect-ratio: 16 / 9;
    overflow: hidden;
  }

  .listInfo {
    padding: 1.6rem;
  }

  .listingInfo:nth-child(3) {
    display: none;
  }

  /* Listing Cards */
  .listingCard {
    border-radius: 18px;
  }

  .listingImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

}

/* //////////////BREAKING POINT 600px FOR PHONES ///////// */
/* MAIN HEADER */
@media (max-width: 600px) {
  section {
    padding: 4rem 5%;
  }

  header {
    padding: 1.6rem 5%;
  }

  .logo {
    font-size: 1.7rem;
  }

  .dreNumber {
    font-size: 1rem;
  }

  #menu-icon {
    font-size: 2.6rem;
  }

/* HERO SECTION */
  .home {
    padding: 10rem 5% 4rem;
    gap: 2.5rem;
  }

  .homeContent {
    max-width: 100%;
    min-height: auto;
  }

  .homeContent h1 {
    font-size: 3.3rem;
    line-height: 1.15;
    margin-bottom: 2rem;
  }

  .homeContent span {
    font-size: 3.3rem;
  }

  .homeContent h3 {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }


/* Social Card */
  .socialCard {
    width: 100%;
    max-width: 100%;
    padding: 0;
  }

  .socialEyebrow {
    display: none;
  }

  .callOut {
    font-size: 2.2rem;
  }

  .homeImg {
    width: 100%;
    height: 100%;
    margin-bottom: 1.8rem;
  }

  .socialIcons a {
    width: 6rem;
    height: 6rem;
    padding: 0;
    margin: 0;
    font-size: 2rem;
  }

  .socialIcons a i {
    font-size: 2.2rem;
  }


/* CLIENT PROOF */

  .clientProof {
    width: 100%;
    max-width: 450px;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .clientFaces img {
    width: 8rem;
    height: 8rem;
  }

  .clientProof p {
    font-size: 1.5rem;
    text-align: left;
  }

  .ctaBanner {
    min-height: 360px;
    background-size: cover;
    background-position: center;
  }
  .modalForm {
    min-height: calc(76vh - 14rem);
  }
  .navbar.active a {
    margin-left: 0;
  } 
  .stickyContactCta {
    position: fixed;
    left: 5%;
    right: 5%;
    bottom: 1.4rem;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;

    padding: 2.5rem 2rem;
    border-radius: 18px;

    background: linear-gradient(135deg, #eacda3, #e6b980);;
    color: var(--accentcolor);

    font-family: "Rampart One", sans-serif;
    font-size: 1.7rem;
    font-weight: 700;

    box-shadow: 0 12px 30px rgba(7, 18, 37, .22);
    z-index: 999;

    opacity: 0;
    pointer-events: none;
    transform: translateY(120%);
    transition: opacity .25s ease, transform .25s ease;
  }

  .stickyContactCta.active {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
  .stickyContactCta i,
  .stickyContactCta span {
    font-size: 2rem;
  }
  .contactModal {
    align-items: flex-end;
    padding: 0;
  }
  .modalBox h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
  }
  .modalBox p {
    font-size: 1.55rem;
    line-height: 1.5;
    margin-bottom: 2rem;
  }
  .modalForm {
    display: flex;
    flex-direction: column;
    gap: 1.4rem;
  }
  .modalForm {
    gap: 1.8rem;
  }

  .modalForm input,
  .modalForm select {
    min-height: 5.6rem;
    padding: 1.6rem 1.7rem;
    font-size: 1.6rem;
    border-radius: 12px;
  }

  .modalForm textarea {
    min-height: 13rem;
    padding: 1.6rem 1.7rem;
    font-size: 1.6rem;
    border-radius: 12px;
  }

  .modalSubmit {
    min-height: 5.8rem;
    font-size: 1.6rem;
    border-radius: 12px;
    margin-top: .6rem;
  }

  .modalSubmit {
    min-height: 5rem;
    margin: auto;
    font-size: 1.55rem;
  }
  .modalBox {
    width: 100%;
    max-width: none;
    max-height: 60vh;
    height: 60vh;

    border-radius: 24px 24px 0 0;
    overflow-y: auto;
    padding: 2.4rem 2.2rem 3rem;


    transform: translateY(100%);
    transition: transform .3s ease;
  }

  .contactModal.active .modalBox {
    transform: translateY(0%);
  }

}

/* SMALLER PHONES */
/* HOME */
@media (max-width: 430px) {
  html {
    font-size: 56%;
  }

  header {
    padding: 1.4rem 5%;
  }

  .home {
    padding: 9rem 5% 4rem;
  }

  .homeContent h1,
  .homeContent span {
    font-size: 3rem;
  }

  .homeContent h3 {
    font-size: 1.45rem;
  }

  .primary-btn,
  .secondary-btn,
  .ctaBtn {
    font-size: 1.55rem;
    padding: 1.1rem 1.8rem;
  }
}

/* HERO */
@media (max-width: 430px) {
  .socialCard {
    max-width: 100%;
    padding: 0;
    min-height: auto;
    gap: 1.6rem;
  }

  .homeImg {
    margin-top: 1.2rem;
    width: 250px;
    height: 250px;
    margin-bottom: 1rem;
  }

  .homeImg img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
  }

  .socialIcons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: nowrap;
    margin-top: 0;
  }

  .socialIcons a i {
    font-size: 2.8rem;
  }

  .socialIcons a {
    width: 6rem;
    height: 6rem;
    padding: 0;
    margin: 0;
    font-size: 1.9rem;
    flex-shrink: 0;
  }

  .navbar.active a {
    margin-left: 0;
  }
}

/* LISTING AND SERVICES */
@media (max-width: 430px) {

  .listingTitle,
  .serviceTitle {
    font-size: 2.2rem;
  }

  .listingDetails {
    flex-wrap: wrap;
    row-gap: .6rem;
    font-size: 1.25rem;
  }

  .serviceBtn {
    padding: 2rem;
    gap: 1.2rem;
  }

  .serviceIcon {
    width: 54px;
    height: 54px;
  }

  .serviceIcon svg {
    width: 32px;
    height: 32px;
    color: var(--accentcolor);
  }

  .serviceInfo h3 {
    font-size: 1.9rem;
  }

  .serviceInfo p {
    font-size: 1.45rem;
  }
}

/* FOOTER */
@media (max-width: 430px) {
  .ctaBanner {
    height: 240px;
  }

  .ctaContent {
    padding: 0 6%;
  }

  .footerContent {
    grid-template-columns: 1fr;
    padding: 3.5rem 6%;
    gap: 2.4rem;
  }

  .footerBottom {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.8rem 6%;
  }
}


/* ///////////////ABOUT ME PAGE//////////// */
.aboutHero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 78vh;
  padding-top: 8rem;
  background: var(--bg-color);
  color: #111;
}

.aboutHeroText {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 12%;
}

.eyebrow {
  color: #b8872f;
  font-family: "Google Sans", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.aboutHeroText h1 {
  font-size: 5rem;
  line-height: 1.15;
  margin-bottom: 2.4rem;
}

.aboutHeroText p {
  font-family: "Google Sans", sans-serif;
  font-size: 1.8rem;
  line-height: 1.7;
  color: #333;
}

.aboutHeroImage {
  min-height: 520px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  background: #e8dfd3;
}

.aboutHeroImage img {
  width: 82%;
  height: auto;
  max-height: 580px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.connect-btn {
  width: 50%;
  margin-top: 2rem;
  background-color: var(--aboutxtcolor);
  color: var(--mainaboutcolor);
}

.connect-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 0 15px var(--bg-color);
}

/* /////////////////MY STORY SECTION/////////////// */
.aboutStory {
  display: grid;
  grid-template-columns: 1fr 2fr;
  background: var(--bg-color);
  color: var(--accentcolor);
  border-top: 1px solid rgba(0, 0, 0, .08);
}


.aboutStoryImage img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.aboutStoryContent {
  padding: 5rem 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.aboutStoryContent h2 {
  font-size: 3rem;
  margin-bottom: 2rem;
}

.aboutStoryContent p {
  font-family: "Google Sans", sans-serif;
  font-size: 1.7rem;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1.6rem;
}

.signature {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.signature img {

  width: 140px;
  opacity: .85;
  filter: brightness(.8);
}

/* ///////////////// WHY WORK WITH ME /////////////// */
.whyWork {
  background: #fdf8f0;
  color: #111;
  padding: 5rem 8%;
  text-align: center;
}

.whyWork h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

.whyWorkGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.whyCard {
  border: 1px solid rgba(0, 0, 0, .22);
  border-radius: 4px;
  padding: 3.2rem 2.4rem;
  min-height: 180px;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.whyIcon {
  font-size: 4rem;
  color: #222;
  margin-bottom: 2rem;
}

.whyCard h3 {
  font-family: "Google Sans", sans-serif;
  font-size: 1.7rem;
  margin-bottom: 1rem;
}

.whyCard p {
  font-family: "Google Sans", sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
  color: #444;
  max-width: 240px;
}

/* //////////////AREAS SERVED SECTION////////////// */
.areasServed {
  background: var(--second-bg-color);
  color: #111;
  padding: 5rem 8%;
  text-align: center;
}

.areasServed h2 {
  font-size: 3rem;
  margin-bottom: 3rem;
}

.areasGrid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.areaCard {
  aspect-ratio: 16/9;
  position: relative;
  height: 170px;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
}

.areaCard img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  filter: brightness(.72);
}

.areaCard h3 {
  font-family: "Google Sans", sans-serif;
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  transform: translateX(-50%);
  color: white;
  font-size: 2rem;
  text-shadow: 0 2px 8px rgba(0, 0, 0, .65);
}

.aboutCta {
  height: 340px;
  background-image: url(assets/images/backgrounds/aboutCTA.webp);
  background-size: cover;
  background-position: center 60%;
}

/* //////////SIZING FOR TABLETS AND SMALLER LAPTOPS///////// */
/* ABOUT HERO AND STORY SECTION */
@media (max-width: 1100px) {
  .aboutHeroText {
    padding: 5rem 8%;
  }

  .aboutHeroText h1 {
    font-size: 4.2rem;
  }

  .aboutStory {
    grid-template-columns: 1fr 1.5fr;
  }

  .aboutStoryContent {
    padding: 4rem 6%;
  }

  .aboutStoryImage {
    background: #e8dfd3;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .aboutStoryImage img {
    width: 100%;
    max-height: 600px;
    object-fit: contain;
    display: block;
  }

  .whyWorkGrid {
    gap: 2rem;
  }

  .areasGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* TABLET AND MOBILE LAYOUT */
@media (max-width: 900px) {
  .aboutHero {
    grid-template-columns: 1fr;
    padding-top: 8rem;
  }

  .aboutHeroText {
    order: 2;
    padding: 4rem 6%;
    text-align: center;
    align-items: center;
  }

  .aboutHeroImage {
    min-height: 450px;
  }

  .aboutHeroImage img {
    width: 70%;
    max-height: 420px;
    object-fit: cover;
    object-position: center 55%;
  }

  .connect-btn {
    width: 85%;
  }

  .aboutStory {
    grid-template-columns: 1fr;
  }

  .aboutStoryImage {
    background: #e8dfd3;
    display: flex;
    justify-content: center;
  }

  .aboutStoryImage img {
    width: 100%;
    height: auto;
    max-height: 600px;
    object-fit: contain;
  }

  .whyWorkGrid {
    grid-template-columns: 1fr;
  }
}

/* REGULAR PHONES */
@media (max-width: 600px) {
  .aboutHeroText h1 {
    font-size: 3.4rem;
  }

  .aboutHeroText p,
  .aboutStoryContent p {
    font-size: 1.55rem;
  }

  .aboutHeroImage {
    min-height: 340px;
  }

  .aboutHeroImage img {
    max-height: 340px;
    width: 82%;
    object-position: center 55%;
  }

  .aboutStoryContent {
    padding: 4rem 5%;
  }

  .whyWork,
  .areasServed {
    padding: 4rem 5%;
  }

  .areasGrid {
    grid-template-columns: 1fr;
    gap: 1.6rem;
  }

  .areaCard {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}

/* small mobile cell */
@media (max-width: 430px) {
  .aboutHeroText h1 {
    font-size: 3rem;
  }

  .aboutHeroImage {
    min-height: 300px;
  }

  .connect-btn {
    width: 100%;
  }

  .areasGrid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
  }

  .areaCard {
    aspect-ratio: 16 /10;
    min-height: unset;
    border-radius: 6px;
  }

  .areaCard h3 {
    font-size: 1.4rem;
    bottom: 1rem;
    white-space: nowrap;
  }
}

/* /////////////////////////SERVICES PAGE/////////////// */
.servicesPage {
  background: #ffffff;
}

.servicesHeroPage {
  min-height: 58vh;
  padding-top: 9rem;
  background-image:
    linear-gradient(90deg,
      rgba(3, 10, 24, .96) 0%,
      rgba(3, 10, 24, .82) 45%,
      rgba(3, 10, 24, .45) 100%),
    url("assets/images/backgrounds/widepalmdaleshot.webp");
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
}

.servicesHeroContent {
  max-width: 760px;
  padding: 6rem 8%;
}

.servicesEyebrow {
  color: var(--mainaboutcolor);
  font-family: "Google Sans", sans-serif;
  font-size: 1.5rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.servicesHeroContent h1 {
  font-size: 7rem;
  line-height: 1;
  margin-bottom: 2.5rem;
  color: var(--second-bg-color);
}

.servicesHeroContent h1 span {
  display: block;
  color: var(--mainaboutcolor);
}

.servicesPage .primary-btn {
  background-color: var(--mainaboutcolor);
  color: var(--text-color);
  border-color: var(--mainaboutcolor);
}

.servicesPage .secondary-btn {
  background-color: transparent;
  color: var(--mainaboutcolor);
  border-color: var(--mainaboutcolor);
}

.servicesHeroContent p {
  font-family: "Google Sans", sans-serif;
  font-size: 2rem;
  line-height: 1.6;
  color: var(--second-bg-color);
  max-width: 620px;
}

.servicesHeroBtns {
  margin-top: 2rem;
  display: flex;
  align-items: center;
  gap: 1.5rem;

}

/* Service Cards Section */
.servicesPageCards {
  background: var(--bg-color);
  padding: 4rem 8% 7rem;
}

.servicesSectionLabel {
  text-align: center;
  color: var(--accentcolor);
  font-family: "Google Sans", sans-serif;
  font-size: 1.4rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.servicesPage .serviceBtn {
  background-color: var(--second-bg-color);
}

.servicesPageGrid .serviceBtn {
  min-height: 260px;
  padding: 3.2rem;
}

.servicesPageGrid .serviceIcon {
  width: 72px;
  height: 72px;
}

.servicesPageGrid .serviceIcon svg {
  width: 44px;
  height: 44px;
}

/* How I work Section */
.serviceTrustSection {
  background: var(--second-bg-color);
  color: var(--text-color);
  padding: 6rem 8%;
}

.trustIntroGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 6rem;
}

.trustItem {
  display: flex;
  align-items: flex-start;
  gap: 1.6rem;
}

.trustItem i {
  font-size: 2.8rem;
  color: var(--accentcolor);
  flex-shrink: 0;
}

.trustItem h3 {
  font-size: 1.8rem;
  margin-bottom: .8rem;
}

.trustItem p {
  font-family: "Google Sans", sans-serif;
  font-size: 1.45rem;
  line-height: 1.6;
  color: #334155;
}

.trustContentGrid {
  display: grid;
  grid-template-columns: 1fr 1.25fr;
  gap: 5rem;
  margin-bottom: 4rem;
}

.clientFeedbackBox,
.faqBox {
  background: #ffffff;
  padding: 3rem;
  border-radius: 14px;
  box-shadow: 0 18px 45px rgba(15, 23, 42, 0.08);
}

.clientFeedbackBox>span,
.faqBox>span {
  display: block;
  font-family: "Google Sans", sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #1e3a8a;
  margin-bottom: 2rem;
}

.quoteIcon {
  color: var(--hovercolor);
  font-size: 3rem;
  margin-bottom: 1rem;
}

.clientFeedbackBox p {
  font-family: "Google Sans", sans-serif;
  font-size: 1.7rem;
  line-height: 1.65;
  color: var(--hovercolor);
  margin-bottom: 2rem;
}

.clientFeedbackBox h3 {
  font-size: 1.5rem;
  color: #475569;
}

.feedbackDots {
  display: flex;
  gap: .8rem;
  margin-top: 2rem;

}

.feedbackDot {
  width: .8rem;
  height: .8rem;
  border: none;
  border-radius: 999px;
  background: #cbd5e1;
  cursor: pointer;
  overflow: hidden;
  position: relative;
}

.feedbackDot.active {
  width: 3.5rem;
  background: rgba(214, 162, 79, 0.25);
}

.feedbackDot.active::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--hovercolor);
  border-radius: inherit;

  animation: feedbackProgress 5s linear forwards;
}

@keyframes feedbackProgress {
  from {
    width: 0%;
  }

  to {
    width: 100%;
  }
}

.faqQuestion {
  width: 100%;
  border: 1px solid #e2e8f0;
  background: #ffffff;
  color: #0f172a;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;

  padding: 1.5rem 1.8rem;
  font-family: "Google Sans", sans-serif;
  font-size: 1.5rem;
  text-align: left;
  cursor: pointer;
}

.faqAnswer {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height .3s ease, opacity .3s ease;
}

.faqAnswer p {
  padding: 1.4rem 1.8rem;
  font-family: "Google Sans", sans-serif;
  font-size: 1.45rem;
  line-height: 1.6;
  color: #475569;
}

.faqItem.active .faqAnswer {
  max-height: 180px;
  opacity: 1;
}

.faqItem.active .faqQuestion i {
  transform: rotate(180deg);
}

.faqItem i {
  color: var(--hovercolor);
  flex-shrink: 0;
}

.serviceBottomSection {
  background: var(--second-bg-color);
  padding: 0 8% 6rem;
}

.serviceBottomCta {
  display: grid;
  grid-template-columns: 1fr 1.35fr;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
}

.serviceBottomCta img {
  width: 100%;
  height: 100%;
  min-height: 260px;
  object-fit: cover;
  object-position: center;
  display: block;
}

.serviceBottomCtaContent {
  padding: 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.serviceBottomCtaContent h2 {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.serviceBottomCtaContent p {
  font-family: "Google Sans", sans-serif;
  font-size: 1.55rem;
  line-height: 1.6;
  color: #334155;
  margin-bottom: 2rem;
}

/* Service Page Breaking points */
/* Mac Screens and Tablets*/
@media (max-width: 1100px) {
  .servicesHeroContent h1 {
    font-size: 5.8rem;
  }

  .servicesPageGrid .serviceCard:nth-child(3) {
    max-width: 100%;
  }

  .processGrid {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 4rem;
  }
}

/* TABLET AND MOBILE */
@media (max-width: 900px) {
  .servicesHeroPage {
    min-height: auto;
    padding-top: 8rem;
    background-position: center;
  }

  .servicesHeroContent {
    padding: 6rem 6%;
  }

  .servicesHeroContent h1 {
    font-size: 4.8rem;
  }

  .servicesHeroContent p {
    font-size: 1.75rem;
  }

  .servicesPageGrid {
    grid-template-columns: repeat(1fr);
  }

  .servicesPageGrid .serviceCard:nth-child(3) {
    grid-column: auto;
    max-width: none;
    justify-self: stretch;
  }

  .servicesPageCards {
    padding: 4rem 6%;
  }

  .servicesPageGrid .serviceBtn {
    min-height: auto;
  }

  .servicesMiniCtaContent {
    flex-direction: column;
    align-items: flex-start;
  }

  .servicesMiniCtaContent .primary-btn {
    width: 100%;
    justify-content: center;
  }

  .serviceBottomSection {
    padding: 0 6% 5rem;
  }

  .trustIntroGrid,
  .trustContentGrid,
  .serviceBottomCta {
    grid-template-columns: 1fr;
  }

  .serviceBottomCta img {
    min-height: 240px;
  }

}

/* Small Devices */
@media (max-width: 600px) {
  .servicesHeroContent h1 {
    font-size: 3.8rem;
  }

  .servicesHeroBtns {
    flex-direction: column;
    width: 100%;
  }

  .servicesHeroBtns a {
    width: 100%;
    justify-content: center;
  }

  .processGrid {
    grid-template-columns: 1fr;
  }

  .servicesPageGrid {
    grid-template-columns: 1fr;
  }

  .servicesPageGrid .serviceCard {
    width: 100%;
    max-width: none;
  }

  .servicesPageGrid .serviceBtn {
    min-height: auto;
    height: auto;
  }

  .processAreas p {
    line-height: 1.8;
  }

  .servicesMiniCta {
    padding: 4rem 5%;
  }

  .servicesMiniCtaContent {
    padding: 3rem 2.4rem;
  }

  .servicesMiniCtaContent h2 {
    font-size: 2.5rem;
  }

  .serviceTrustSection {
    padding: 5rem 5%;
  }

  .trustIntroGrid {
    gap: 3rem;
  }

  .clientFeedbackBox,
  .faqBox {
    padding: 2.4rem;
  }

  .serviceBottomSection {
    padding: 0 5% 4rem;
  }

  .serviceBottomCtaContent {
    padding: 3rem 2.4rem;
  }

  .serviceBottomCtaContent h2 {
    font-size: 2.5rem;
  }
}

/* /////////////////REVIEWS PAGE////////// */

.reviewsHero {
  position: relative;
  min-height: 70vh;
  overflow: hidden;

  display: flex;
  align-items: center;
}

.reviewsHero img {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  object-fit: cover;
  object-position: center 10%;
}

.reviewsOverlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(7, 18, 37, .92) 0%,
      rgba(7, 18, 37, .78) 40%,
      rgba(7, 18, 37, .45) 100%);
}

.reviewsHeroContent {
  position: relative;
  text-align: center;
  max-width: 850px;
  margin: 0 auto;
  padding: 0 8%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  color: var(--second-bg-color);
}

.reviewsHeroContent span,
.reviewsHeroContent p {
  font-size: 1.8rem;
}

.heroRating {
  margin-top: 6rem;
  font-family: "Google Sans", sans-serif;
}

.heroStars {
  color: #fbbf24;
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.heroRating strong {
  display: block;
  font-size: 2rem;
  color: var(--mainaboutcolor);
}

.heroRating span {
  display: block;
  margin-top: .6rem;
  font-size: 1.4rem;
  color: var(--bg-color);
}

.reviewStats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: var(--bg-color);
  padding: 5rem 8%;
  border-top: 1px solid var(--accentcolor);
  border-bottom: 1px solid var(--accentcolor);
}

.reviewStat {
  text-align: center;
  color: var(--text-color);
  border-right: 1px solid var(--accentcolor);
}

.reviewStat:last-child {
  border-right: none;
}

.reviewStat i {
  font-size: 4rem;
  color: var(--accentcolor);
  margin-bottom: 1.5rem;
}

.reviewStat h3 {
  font-size: 3.2rem;
}

.reviewStat p {
  font-family: "Google Sans", sans-serif;
  font-size: 1.5rem;
  color: var(--accentcolor);
}

.reviewsHeroContent h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  line-height: .95;
}

/* Reviews Featured and Reviews Section */
.featuredReviewsSection {
  background: var(--bg-color);
  padding: 6rem 8%;
}

.reviewsSectionLabel {
  text-align: center;
  color: var(--accentcolor);
  font-family: "Google Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.featuredReviewCard {
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 4rem;
  align-items: center;

  padding: 3rem;
  border-radius: 18px;
  background: var(--bg-color);
  border: 1px solid var(--accentcolor);
  box-shadow: 0 0 35px var(--hovercolor);

  margin-bottom: 5rem;
}

.featuredReviewCard img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
}

.featuredReviewContent .featuredReviewRating,
.smallReviewCard .featuredReviewRating {
  color: #fbbf24;
  font-size: 2rem;
  margin-bottom: 1.8rem;
}

.featuredReviewContent p {
  font-family: "Google Sans", sans-serif;
  font-size: 2.2rem;
  line-height: 1.55;
  color: var(--text-color);
  margin-bottom: 2rem;
}

.featuredReviewContent h3,
.smallReviewCard h3 {
  font-size: 1.7rem;
  color: var(--text-color);
}

.featuredReviewContent span,
.smallReviewCard span {
  font-family: "Google Sans", sans-serif;
  font-size: 1.4rem;
  color: var(--text-color);
}

.moreReviewsGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.4rem;
}

.smallReviewCard {
  padding: 3rem;
  border-radius: 16px;
  background: var(--bg-color);
  border: 1px solid var(--accentcolor);
}

.smallReviewCard p {
  font-family: "Google Sans", sans-serif;
  font-size: 1.65rem;
  line-height: 1.7;
  color: var(--text-color);
  margin-bottom: 2rem;
}
.featuredReviewDots {
  display: flex;
  justify-content: center;
  gap: .8rem;
  margin-top: 2rem;
}

.featuredReviewDot {
  width: 34px;
  height: 4px;
  border: none;
  border-radius: 999px;
  background: rgba(214, 162, 79, .25);
  overflow: hidden;
  position: relative;
  cursor: pointer;
}

.featuredReviewDot::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 0;
  background: var(--accentcolor);
}

.featuredReviewDot.active::before {
  animation: reviewDotTimer 7s linear forwards;
}

@keyframes reviewDotTimer {
  from {
    width: 0;
  }

  to {
    width: 100%;
  }
}


/* footer */
.reviewsCta {
  height: 240px;
  background-image: url(assets/images/backgrounds/poppiespic.webp);
  background-size: cover;
  background-position: center 60%;

}

.reviewsCta .ctaContent {
  max-width: none;
  width: 100%;
  padding: 0 8%;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
}

.reviewsCta .ctaText {
  max-width: 700px;
}

.reviewsCta .ctaBtn {
  flex-shrink: 0;
  width: auto;
}

/* //////////REVIEWS MEDIA SIZING//////////// */
/* Tablets and Small Laptops */
@media (max-width: 900px) {
  .reviewsHero {
    min-height: 65vh;
  }

  .reviewsHeroContent {
    padding: 0 6%;
  }

  .heroRating {
    margin-top: 4rem;
  }

  .reviewStats {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 4rem 6%;
  }

  .reviewStat {
    border-right: none;
    border-bottom: 1px solid var(--accentcolor);
    padding: 3rem 0;
  }

  .reviewStat:first-child {
    padding-top: 0;
  }

  .reviewStat:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .featuredReviewCard {
    grid-template-columns: 1fr;
    gap: 2.8rem;
  }

  .moreReviewsGrid {
    grid-template-columns: 1fr;
  }

  .reviewsCta .ctaContent {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .reviewsCta .primary-btn {
    width: 100%;
    justify-content: center;
  }
}

/* //////Mobile Phones///////// */
@media (max-width: 600px) {
  .reviewsHero {
    min-height: 58vh;
  }

  .reviewsHero img {
    object-position: center;
  }

  .reviewsHeroContent h1 {
    font-size: 3.4rem;
    line-height: 1.05;
  }

  .reviewsHeroContent span,
  .reviewsHeroContent p {
    font-size: 1.5rem;
  }

  .heroRating {
    margin-top: 3rem;
  }

  .heroStars {
    font-size: 1.8rem;
  }

  .heroRating strong {
    font-size: 1.7rem;
  }

  .reviewStats {
    padding: 3.5rem 5%;
  }

  .reviewStat i {
    font-size: 3.2rem;
  }

  .reviewStat h3 {
    font-size: 2.8rem;
  }

  .featuredReviewsSection {
    padding: 5rem 5%;
  }

  .featuredReviewCard {
    padding: 2rem;
  }

  .featuredReviewCard img {
    height: 220px;
  }

  .featuredReviewContent p {
    font-size: 1.75rem;
  }

  .smallReviewCard {
    padding: 2.4rem;
  }

  .smallReviewCard p {
    font-size: 1.55rem;
  }

  .reviewsCta {
    height: auto;
    min-height: 330px;
  }

  .reviewsCta .ctaContent {
    padding: 4rem 5%;
  }
}

/* Tiny Phones */
@media (max-width: 430px) {
  .reviewsHeroContent h1 {
    font-size: 3rem;
  }

  .featuredReviewCard img {
    height: 190px;
  }

  .reviewsSectionLabel {
    font-size: 1.2rem;
    letter-spacing: .14em;
  }
}

/* ////////////////// CONTACT PAGE ////////////////// */

.contactHero {
  position: relative;
  margin-top: 8rem;
  min-height: 520px;
  padding-top: 10rem;

  background-image: url("assets/images/backgrounds/contactmebg.webp");
  background-size: 100% auto;
  background-position: center 20%;
  background-repeat: no-repeat;

  display: flex;
  align-items: center;
  overflow: hidden;
}

.contactHeroOverlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(5, 10, 18, 0.58) 0%,
      rgba(5, 10, 18, 0.32) 42%,
      rgba(5, 10, 18, 0.08) 100%);

}

.contactHeroContent {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 6rem 8%;
  color: var(--mainaboutcolor);
}

.contactEyebrow {
  font-family: "Google Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #d6a24f;
  margin-bottom: 2rem;
}

.contactHeroContent h1 {
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 1;
  margin-bottom: 2rem;
}

.contactHeroContent>p:last-child {
  font-family: "Google Sans", sans-serif;
  font-size: 1.8rem;
  line-height: 1.6;
  color: #e2e8f0;
}

/* ////////////////////SEND ME A MESSAGE SECTION//////////// */
.contactMain {
  background: var(--mainaboutcolor);
  padding: 7rem 8%;

  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.messagePanel {
  max-width: 680px;
  padding: 4rem;
  border-radius: 18px;

  background: #fdf8f0;
  border: 1px solid rgba(30, 41, 59, 0.16);
  box-shadow: 0 24px 60px rgba(30, 41, 59, 0.12);
}

.messagePanel h2 {
  font-size: 3.8rem;
  color: var(--text-color);
  margin-bottom: 1.4rem;
}

.messagePanel>p {
  max-width: 520px;
  font-family: "Google Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: var(--text-color);
  margin-bottom: 3rem;
}

.contactForm {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.formRow {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.4rem;
}

.formGroup label {
  display: none;
}

.formGroup input,
.formGroup select,
.formGroup textarea {
  width: 100%;
  border: 1px solid rgba(30, 41, 59, 0.18);
  border-radius: 8px;
  background: var(--mainaboutcolor);

  padding: 1.4rem 1.6rem;
  font-family: "Google Sans", sans-serif;
  font-size: 1.45rem;
  color: var(--text-color);
  outline: none;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.formGroup textarea {
  min-height: 150px;
  resize: vertical;
}

.formMessage,
.modalFormMessage {
  font-family: "Google Sans", sans-serif;
  font-size: 1.35rem;
  text-align: center;
  min-height: 1.8rem;
}

.formMessage.error,
.modalFormMessage.error {
  color: #dc2626;
}

.formMessage.success,
.modalFormMessage.success {
  color: #16a34a;
}

.formGroup input:focus,
.formGroup select:focus,
.formGroup textarea:focus {
  border-color: #d6a24f;
  box-shadow: 0 0 0 3px rgba(214, 162, 79, 0.18);
}

.messageSubmitBtn {
  border: none;
  border-radius: 10px;
  padding: 1.5rem 2rem;

  background: #d6a24f;
  color: #111827;

  font-family: "Google Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;

  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}
.messageSubmitBtn:not(:disabled) {
  background-color: #111;
  color: #fff;
  cursor: pointer;
}
.messageSubmitBtn:disabled {
  background-color: #b8b8b8;
  color: #f5f5f5;
  opacity: 0.7;
  cursor: not-allowed;
  box-shadow: none;
}
.messageSubmitBtn.ready {
  background-color: #111;
  color: #fff;
  opacity: 1;
  cursor: pointer;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.16);
}
.messageSubmitBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 30px rgba(214, 162, 79, 0.28);
}
.messageSubmitBtn.ready:active {
  transform: translateY(0);
}
.messageSubmitBtn:not(:disabled):hover {
  transform: translateY(-2px);
  box-shadow: 0 11px 24px rgba(0, 0, 0, 0.22);
}

.messageSubmitBtn:not(:disabled):active {
  transform: translateY(0);
}
.secureNote {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;

  font-family: "Google Sans", sans-serif;
  font-size: 1.3rem;
  color: #64748b;
  margin-top: .8rem;
}

/* //////////////NEW CONTACT SECTION///////// */
.selectedPropertyPreview {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: center;

  padding: 1.4rem;
  margin: 2rem 0 2.4rem;

  border: 1px solid rgba(15, 23, 42, 0.12);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.75);
}

.selectedPropertyPreview[hidden],
.tourCalendarSection[hidden] {
  display: none;
}

.selectedPropertyImage {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 8px;
}

.selectedPropertyAddress {
  font-size: 2.4rem;
  color: var(--hovercolor);
}

.selectedPropertyStats {
  display: flex;
  gap: 1.6rem;
  margin: 1rem 0;
  font-family: "Google Sans", sans-serif;
}

.selectedPropertyPrice {
  font-size: 1.8rem;
  font-weight: 700;
  color: #b8872f;
}


/* ////////////CALENDAR SECTION///////// */
.consultationPanel {
  padding: 4rem;
  border-radius: 0 18px 18px 0;

  background: #fdf8f0;
  border: 1px solid rgba(30, 41, 59, 0.14);
  box-shadow: 0 24px 60px rgba(30, 41, 59, 0.12);
}

.messagePanel {
  border-radius: 18px 0 0 18px;
}

.consultationPanel h2 {
  font-size: 3.8rem;
  color: var(--text-color);
  margin-bottom: 1.4rem;
}

.consultationPanel>p {
  max-width: 520px;
  font-family: "Google Sans", sans-serif;
  font-size: 1.6rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 3rem;
}

.calendarBox {
  padding: 2.4rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, .65);
  border: 1px solid rgba(30, 41, 59, .16);
}

.calendarHeader {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 2rem;
}

.calendarHeader h3 {
  font-family: "Google Sans", sans-serif;
  font-size: 1.7rem;
  color: var(--text-color);
}

.calendarHeader button {
  border: none;
  background: transparent;
  color: var(--text-color);
  font-size: 1.5rem;
  cursor: pointer;
}

.calendarGrid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: .8rem;
}

.calendarDays {
  margin-bottom: 1rem;
}

.calendarDays span {
  text-align: center;
  font-family: "Google Sans", sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: #64748b;
  text-transform: uppercase;
}

.calendarDates button {
  width: 100%;
  aspect-ratio: 1;
  border: none;
  border-radius: 50%;
  background: transparent;

  font-family: "Google Sans", sans-serif;
  font-size: 1.35rem;
  color: var(--text-color);
  cursor: pointer;
}

.emptyDate {
  aspect-ratio: 1;
}

.calendarDates button:hover,
.calendarDates .selectedDate {
  background: #d6a24f;
  color: #111827;
}

.availableTimes {
  margin-top: 3rem;
}

.availableTimes h3 {
  font-family: "Google Sans", sans-serif;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}

.timeGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}


.timeGrid button {
  padding: 1.2rem;
  border-radius: 8px;
  border: 1px solid rgba(30, 41, 59, .18);
  background: #fff;

  font-family: "Google Sans", sans-serif;
  font-size: 1.35rem;
  color: var(--text-color);
  cursor: pointer;
}

.timeGrid button.selectedTime {
  background: #d6a24f;
  color: #111827;
  border-color: #d6a24f;
}

.timeGrid button:hover {
  border-color: #d6a24f;
  box-shadow: 0 0 0 3px rgba(214, 162, 79, .16);
}

.bookAppointmentBtn {
  width: 100%;
  margin-top: 2rem;
  padding: 1.5rem 2rem;

  border: none;
  border-radius: 10px;
  background: #d6a24f;
  color: #111827;

  font-family: "Google Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  cursor: pointer;
}

.appointmentMessage.error,
.appointmentMessage.success {
  padding: 1rem 1.2rem;
  border-radius: 8px;
}

.appointmentMessage {
  min-height: 2rem;
  margin-top: 1.4rem;

  font-family: "Google Sans", sans-serif;
  font-size: 1.35rem;
  line-height: 1.4;
  text-align: center;
}

.appointmentMessage.error {
  color: #dc2626;
}

.appointmentMessage.success {
  color: #16a34a;
}

/* ///////////////ABOUT ME SECTION ///////////// */
.consultationPanel {
  display: flex;
  flex-direction: column;
  gap: 2rem;

  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.scheduleTourCard,
.whyWorkCard {
  padding: 3rem;
  border-radius: 12px;
  background: #fdf8f0;
  border: 1px solid rgba(30, 41, 59, 0.14);
  box-shadow: 0 18px 45px rgba(30, 41, 59, 0.08);
}

.scheduleTourCard {
  text-align: center;
}

.scheduleTourIcon,
.whyWorkItem span {
  width: 5.4rem;
  height: 5.4rem;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(214, 162, 79, 0.16);
  color: #b8872f;
  font-size: 2.2rem;
}

.scheduleTourCard h2,
.whyWorkCard h2 {
  font-size: 3rem;
  color: var(--text-color);
  margin: 1.6rem 0 1rem;
}

.scheduleTourCard p {
  font-family: "Google Sans", sans-serif;
  font-size: 1.45rem;
  line-height: 1.6;
  color: #475569;
}

.contactBottom {
  margin-top: 2rem;
}

.openCalendarBtn {
  width: 80%;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;

  border: none;
  border-radius: 8px;
  padding: 1.5rem 2rem;
  margin: 2rem 0;

  background: var(--contactcolor);
  color: var(--mainaboutcolor);

  font-family: "Google Sans", sans-serif;
  font-size: 1.55rem;
  font-weight: 700;

  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}

.openCalendarBtn i {
  font-size: 1.7rem;
}

.openCalendarBtn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 28px rgba(7, 18, 37, .2);
  background: #0b1c36;
}

.schedulePhone {
  display: inline-flex;
  align-items: center;
  gap: .8rem;

  font-family: "Google Sans", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: #b8872f;
}

.whyWorkItem {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.4rem;
  align-items: start;
  margin-top: 2.2rem;
}

.whyWorkItem h3 {
  font-family: "Google Sans", sans-serif;
  font-size: 1.55rem;
  color: var(--text-color);
  margin-bottom: .4rem;
}

.whyWorkItem p {
  font-family: "Google Sans", sans-serif;
  font-size: 1.35rem;
  line-height: 1.5;
  color: #475569;
}

.whyWorkImage {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 10px;
  margin-top: 2.6rem;
}

/* //////////////Contact Section/////////// */
.contactReach {
  background: var(--second-bg-color);
  color: var(--text-color);
  padding: 6rem 5%;
}

.contactReach h2 {
  text-align: center;
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

.contactReach h2::after {
  content: "";
  display: block;
  width: 60px;
  height: 2px;
  background: #d6a24f;
  margin: 1.6rem auto 4rem;
}

.reachGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4rem;
  margin-bottom: 5rem;
}

.reachItem {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.8rem;
}

.reachIcon {
  width: 64px;
  height: 64px;
  border-radius: 50%;

  background-color: var(--contactcolor);
  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--second-bg-color);
  border: 1px solid rgba(214, 162, 79, .45);
  font-size: 2.4rem;
}

.reachItem h3 {
  font-family: "Google Sans", sans-serif;
  font-size: 1.6rem;

  color: var(--text-color);
  margin-bottom: .5rem;
}

.reachItem p,
.reachItem a {
  font-family: "Google Sans", sans-serif;
  font-size: 1.55rem;
  line-height: 1.5;
  color: var(--text-color);
}

.contactBottomCta {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;

  padding: 3rem 4rem;
  border-radius: 10px;
  background: var(--contactcolor);
  color: var(--text-color);
}

.contactBottomIcon {
  font-size: 4rem;
  color: #d6a24f;
  flex-shrink: 0;
}

.contactBottomIcon img {
  width: 56px;
  height: 56px;
  object-fit: contain;
}

.contactBottomText {
  flex: 1;
}

.contactBottomText h3 {
  font-size: 3rem;
  margin-bottom: .6rem;
  color: var(--mainaboutcolor);
}

.contactBottomText p {
  font-family: "Google Sans", sans-serif;
  font-size: 1.55rem;
  color: var(--mainaboutcolor);
}

.contactBottomBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .8rem;
  flex-shrink: 0;
  width: auto;
  padding: 1.4rem 3.6rem;
  border-radius: 6px;

  background: var(--mainaboutcolor);
  color: var(--accentcolor);

  font-family: "Google Sans", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  transition: transform .2s ease, box-shadow .2s ease;
}

.contactBottomBtn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(7, 18, 37, .22);
}

/* /////////////COntact PAGE BREAKS////////// */
@media (max-width: 1100px) {
  .contactMain {
    padding: 6rem 5%;
  }

  .messagePanel,
  .consultationPanel {
    padding: 3.2rem;
  }

  .messagePanel h2,
  .consultationPanel h2 {
    font-size: 3.2rem;
  }

  .reachGrid {
    gap: 2.5rem;
  }
}

/* TABLETS  */
@media (max-width: 900px) {
  .contactHero {
    min-height: clamp(380px, 58vw, 520px);
    background-position: center center;
  }

  .contactHeroContent {
    padding: 5rem 6%;
  }

  .contactMain {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .messagePanel,
  .consultationPanel {
    max-width: none;
    border-radius: 18px;
  }

  .reachGrid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .reachItem {
    justify-content: flex-start;
  }

  .contactBottomCta {
    align-items: flex-start;
  }
}

/* Phones */
@media (max-width: 600px) {
  .contactHero {
    min-height: 420px;
    background-size: auto 100%;
    background-position: center center;
  }

  .contactHeroContent h1 {
    font-size: 3.6rem;
  }

  .contactHeroContent>p:last-child {
    font-size: 1.55rem;
  }

  .contactMain {
    padding: 4rem 5%;
  }

  .messagePanel,
  .consultationPanel {
    padding: 2.4rem;
  }

  .messagePanel h2,
  .consultationPanel h2 {
    font-size: 2.8rem;
  }

  .formRow {
    grid-template-columns: 1fr;
  }

  .calendarBox {
    padding: 1.6rem;
  }

  .calendarGrid {
    gap: .45rem;
  }

  .calendarDates button {
    font-size: 1.2rem;
  }

  .timeGrid {
    grid-template-columns: 1fr 1fr;
  }

  .contactReach {
    padding: 5rem 5%;
  }

  .contactBottomCta {
    flex-direction: column;
    padding: 2.6rem 2.2rem;
  }

  .contactBottomBtn {
    width: 100%;
  }

  .selectedPropertyPreview {
    grid-template-columns: 1fr;
  }

  .selectedPropertyImage {
    height: 240px;
  }
}

/* small mobiles */
@media (max-width: 430px) {
  .contactHeroContent h1 {
    font-size: 3rem;
  }

  .contactHero {
    min-height: 240px;
    background-size: 100% auto;
    background-position: center 45%;
    padding-top: 2rem;
  }

  .contactEyebrow {
    font-size: 1.15rem;
  }

  .messagePanel,
  .consultationPanel {
    padding: 2rem;
  }

  .timeGrid {
    grid-template-columns: 1fr;
  }

  .reachItem {
    align-items: flex-start;
  }

  .reachIcon {
    width: 52px;
    height: 52px;
    font-size: 2rem;
  }

  .contactBottomText h3 {
    font-size: 2.4rem;
  }

  .selectedPropertyImage {
    height: 220px;
  }
}


/* ////////////////// LISTINGS PAGE ////////////////// */

.listingsHeroPage {
  position: relative;
  min-height: 40vh;
  padding-top: 9rem;

  background-image: url("assets/images/backgrounds/LAbackground.webp");
  background-size: cover;
  background-position: 80% top;

  display: flex;
  align-items: center;
  overflow: hidden;
}

.listingsHeroOverlay {
  position: absolute;
  inset: 0;

  background:
    linear-gradient(90deg,
      rgba(7, 18, 37, 0.92) 0%,
      rgba(7, 18, 37, 0.78) 45%,
      rgba(7, 18, 37, 0.38) 100%);
}

.listingsHeroContent {
  position: relative;
  z-index: 2;
  max-width: 760px;
  padding: 4rem 8% 4.5rem;
  color: var(--mainaboutcolor);
}

.listingsEyebrow {
  font-family: "Google Sans", sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: #d6a24f;
  margin-bottom: 2rem;
}

.listingsHeroContent h1 {
  font-size: clamp(4rem, 7vw, 7rem);
  line-height: 1;
  margin-bottom: 2rem;
}

.listingsAccentLine {
  display: block;
  width: 7rem;
  height: 2px;
  background: #d6a24f;
  margin-bottom: 2.4rem;
}

.listingsHeroContent>p:last-child {
  max-width: 560px;
  margin-top: 5rem;
  font-family: "Google Sans", sans-serif;
  font-size: 1.7rem;
  line-height: 1.6;
  color: #e2e8f0;
}

/* ///////LISTINGS SECTION/////// */
.listingsPageSection {
  background: var(--second-bg-color);
  padding: 6rem 8% 3rem;
}

.listingsPageHeader {
  margin-bottom: 3.5rem;
}

.listingsPageHeader h2 {
  font-size: 3rem;
  color: var(--text-color);
  margin-bottom: .8rem;
}

.listingsPageHeader p {
  font-family: "Google Sans", sans-serif;
  font-size: 1.6rem;

  color: #475569;
}

.listingsPageGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.6rem;
  column-gap: 4rem;
  row-gap: 6rem;
}

.listingsPageGrid .listingCard {
  height: 100%;
}

.listingCardButton {
  width: 100%;
  border: 1px solid var(--accentcolor);
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
  padding: 0;
}

.listingsPageGrid .listingImg img {
  height: 220px;
}

.pendingTag {
  background: #d6a24f;
  color: #111827;
}

.closedTag {
  background: #475569;
  color: #f8fafc;
}

.listingCard.closedListing {
  opacity: .82;
}

.listingsContact {
  background: var(--second-bg-color);
  padding: 0 8% 6rem;
}

.listingsContactCta {
  min-height: 180px;
  padding: 4rem 5rem;
  border-radius: 16px;
}

.listingsContactCta .contactBottomIcon img {
  width: 72px;
  height: 72px;
}

.listingsContactCta .contactBottomText h3 {
  color: rgb(216, 195, 165);
  font-size: 3.2rem;
  margin-bottom: 1rem;
}

.listingsContactCta .contactBottomText p {
  font-size: 1.6rem;
  line-height: 1.5;
}

.listingsContactCta .contactBottomBtn {

  padding: 1.5rem 4rem;
}


/*//////////// modal styling ///////////*/
.listingModal {
  position: fixed;
  inset: 0;
  z-index: 3000;

  display: none;
  place-items: center;
  align-items: center;
  justify-content: center;

  padding: 2rem;
}

.listingModalMain {
  grid-column: 1;
  grid-row: 1;
}

.listingModalDetails {
  grid-column: 1;
  grid-row: 2;
}

.listingModal.active {
  display: grid;
}

.listingModalOverlay {
  position: absolute;
  inset: 0;
  background: rgba(7, 18, 37, 0.72);
}

.listingModalBox {
  position: relative;
  z-index: 2;

  width: min(90%, 960px);
  max-height: 92vh;
  overflow-y: auto;

  padding: 3rem;
  border-radius: 14px;

  background: var(--second-bg-color);
  color: var(--text-color);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.32);
}

.listingModalClose {
  position: absolute;
  top: 1.8rem;
  right: 1.8rem;

  width: 4rem;
  height: 4rem;
  border: none;
  border-radius: 50%;

  background: #ffffff;
  color: var(--text-color);
  font-size: 2rem;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.16);
}

.listingModalGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(280px, .8fr);
  gap: 2.4rem;
  align-items: start;
}

.listingModalImageWrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 2.4rem;
}

.listingModalImage {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.listingModalStatus {
  position: absolute;
  top: 1.6rem;
  left: 1.6rem;

  padding: .7rem 1rem;
  border-radius: 6px;

  background: var(--contactcolor);
  color: var(--mainaboutcolor);

  font-family: "Google Sans", sans-serif;
  font-size: 1.25rem;
  font-weight: 700;
  text-transform: uppercase;
}

.galleryPrev,
.galleryNext {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);

  width: 4.2rem;
  height: 4.2rem;
  border: none;
  border-radius: 50%;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  background: rgba(7, 18, 37, 0.72);
  color: #ffffff;
  font-size: 1.6rem;

  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}

.galleryPrev {
  left: 1.4rem;
}

.galleryNext {
  right: 1.4rem;
}

.galleryPrev:hover,
.galleryNext:hover {
  background: rgba(214, 162, 79, 0.95);
  transform: translateY(-50%) scale(1.08);
}

.galleryCount {
  position: absolute;
  right: 1.6rem;
  bottom: 1.6rem;

  display: inline-flex;
  align-items: center;
  gap: .5rem;

  border: none;
  border-radius: 6px;
  padding: .7rem 1rem;

  background: rgba(7, 18, 37, 0.82);
  color: #ffffff;

  font-family: "Google Sans", sans-serif;
  font-size: 1.3rem;
}

.listingModalPrice {
  font-size: 3.6rem;
  margin-bottom: .6rem;
}

.listingModalAddress {
  font-family: "Google Sans", sans-serif;
  font-size: 1.7rem;
  color: #334155;
  margin-bottom: 1.8rem;
}

.listingModalStats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;

  padding: 1.6rem 0;
  border-top: 1px solid rgba(30, 41, 59, 0.12);
  border-bottom: 1px solid rgba(30, 41, 59, 0.12);
}

.listingModalStats div {
  text-align: center;
  font-family: "Google Sans", sans-serif;
}

.listingModalStats i {
  color: #b8872f;
  font-size: 1.8rem;
  margin-bottom: .6rem;
}

.listingModalStats strong {
  display: block;
  font-size: 1.7rem;
  color: var(--text-color);
}

.listingModalStats span {
  display: block;
  margin-top: .4rem;
  font-size: 1.25rem;
  color: #64748b;
}

.modalSection {
  display: flex;
  flex-direction: column;
  padding: 2.2rem 0;
  border-bottom: 1px solid rgba(30, 41, 59, 0.12);
}

.modalSection h3 {
  font-size: 2rem;
  margin-bottom: 1.2rem;
}

.listingModalDescription {
  font-family: "Google Sans", sans-serif;
  font-size: 1.55rem;
  line-height: 1.7;
  color: #334155;
}

.descriptionToggleBtn {
  display: inline-flex;
  align-items: center;
  gap: .6rem;

  margin-top: .8rem;
  margin-left: auto;

  border: none;
  background: transparent;
  padding: 0;

  font-family: "Google Sans", sans-serif;
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--hovercolor);

  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}

.descriptionToggleBtn i {
  transition: transform .2s ease;
}

.descriptionToggleBtn.expanded i {
  transform: rotate(180deg);
}

.descriptionToggleBtn::after,
.listingsBtn::after {

  font-size: 1.4rem;
  line-height: 1;
}

.descriptionToggleBtn:hover,
.listingsBtn:hover {
  color: #8f651d;
  transform: translateX(3px);
}

.listingModalHighlights {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem 2rem;
  list-style: none;
}

.listingModalHighlights li {
  font-family: "Google Sans", sans-serif;
  font-size: 1.45rem;
  color: #334155;
}

.listingModalHighlights li::before {
  content: "✓";
  color: #b8872f;
  margin-right: .8rem;
}
.listingModalSideColumn {
  grid-column: 2;
  grid-row: 1 / span 3;

  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.listingModalSidebar,
.contactInfo,
.shareBox {
  width: 100%;
  border-radius: 10px;
  overflow: hidden;
  background: rgba(243, 237, 227, 0.72);
}

.tourBox,
.questionBox,
.shareBox {
  padding: 1.8rem;
  border-bottom: 1px solid rgba(30, 41, 59, 0.1);
}

.tourBox {
  text-align: center;
}

.sidebarIcon {
  width: 5.8rem;
  height: 5.8rem;
  margin: 0 auto 1.6rem;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: #b8872f;
  font-size: 2.4rem;
}

.listingModalSidebar h3,
.contactInfo h3 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

.listingModalSidebar p,
.listingModalSidebar a,
.contactInfo p,
.contactInfo a {
  font-family: "Google Sans", sans-serif;
  font-size: 1.45rem;
  line-height: 1.6;
}

.tourBox .primary-btn,
.tourBox .secondary-btn {
  width: 100%;
  margin-top: 1.4rem;
}

.questionBox a {
  display: flex;
  align-items: center;
  gap: 1rem;
  color: var(--text-color);
  margin-top: 1.4rem;
}

.questionBox i {
  color: #b8872f;
}

.shareLinks {
  display: flex;
  gap: 1rem;
}

.shareLinks a,
.shareLinks button {
  width: 4rem;
  height: 4rem;
  border: none;
  border-radius: 50%;

  display: flex;
  align-items: center;
  justify-content: center;

  background: #ffffff;
  color: var(--text-color);
  cursor: pointer;
}

.modalDisclaimer {
  margin-top: 2.4rem;
  text-align: center;
  font-family: "Google Sans", sans-serif;
  font-size: 1.2rem;
  color: #64748b;
}

.listingModalHighlightsSection {
  grid-column: 1;
  grid-row: 3;
}


/* //////////LISTINGS MOBILE LAYOUT/////// */
/* Laptops and BIG SCREENS */
@media (max-width: 1100px) {
  .listingsPageSection {
    padding: 5rem 6% 3rem;
  }

  .listingsHeroPage {
    background-position: center 0%;
  }

  .listingsPageGrid {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3rem;
    row-gap: 4rem;
  }

  .listingsHeroContent {
    padding-left: 6%;
    padding-right: 6%;
  }

}

/* ///Tablet and Mobile///// */
@media (max-width: 900px) {
  .listingsHeroPage {
    min-height: 36vh;
    padding-top: 8rem;
    background-size: 175%;
    background-position: center top;
  }

  .listingsHeroContent h1 {
    font-size: 4.4rem;
  }

  .listingsHeroContent>p:last-child {
    margin-top: 2rem;
  }

  .listingsPageGrid {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin: 0 auto;
  }

  .listingsContact {
    padding: 0 6% 5rem;
  }

  .listingsContactCta {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    column-gap: 1.6rem;
    row-gap: 2rem;
  }

  .listingsContactCta .contactBottomIcon {
    grid-column: 1;
  }

  .listingsContactCta .contactBottomText {
    grid-column: 2;
  }

  .listingsContactCta .contactBottomBtn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .listingModalGrid {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
  }

  .listingModalClose {
    position: sticky;
    top: .5rem;
    margin-left: auto;
    margin-bottom: 2rem;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .listingModalGrid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
  }
  .listingModalSidebar,
  .contactInfo {
    width: 100%;
    border-radius: 12px;
  }
  .listingModalSideColumn {
    display: contents;
    width: 100%;
  }
  .listingModalSidebar,
  .contactInfo,
  .shareBox {
    width: 100%;
    border-radius: 12px;
  }
  .listingModalMain {
    order: 1;
    width: 100%;
  }


  .listingModalDetails {
    order: 2;
  }

  .listingModalSidebar {
    order: 3;
  }

  .listingModalHighlightsSection {
    order: 4;
  }
  .contactInfo {
    order: 5;
  }


  .listingModalBox {
    width: min(94vw, 720px);
    max-height: 90vh;
    padding: 2.4rem;
  }

  .listingsPageGrid .listingImg img {
    height: 400px;
  }

  .listingModalImage {
    height: 400px;
  }
}

/* /////SMALL PHONES///// */
@media (max-width: 600px) {
  .listingsHeroPage {
    min-height: 34vh;
    background-position: center top;
    background-size: 190%;
    background-repeat: no-repeat;
    background-color: var(--contactcolor);
  }

  .listingsHeroContent {
    padding: 3.5rem 5%;
  }

  .listingsHeroContent h1 {
    font-size: 3.4rem;
  }

  .listingsEyebrow {
    font-size: 1.15rem;
  }

  .listingsPageSection {
    padding: 2.5rem 5% 2.5rem;
  }

  .listingsPageHeader {
    margin-bottom: 2rem;
  }

  .listingsPageHeader h2 {
    font-size: 2.5rem;
  }

  .listingsPageGrid {
    row-gap: 3rem;
  }

  .listingsPageGrid .listingImg {
    aspect-ratio: 16 / 10;
  }

  .listingsPageGrid .listingImg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .listingDetails {
    flex-wrap: wrap;
    row-gap: .8rem;
  }

  .listingsContactCta .contactBottomText h3 {
    font-size: 2.4rem;
  }

  .listingModal {
    align-items: flex-start;
    overflow-y: auto;
    padding: 8rem 1rem 2rem;
  }

  .listingModalBox {
    padding: 1.8rem;
    max-height: none;
    overflow: visible;
    padding: 1.6rem;
  }

  .listingModalClose {
    position: sticky;
    top: 1rem;
    margin-left: auto;
    margin-bottom: 1rem;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: center;
  }

  .listingModalImage {
    height: 350px;
  }

  .galleryPrev,
  .galleryNext {
    width: 3.6rem;
    height: 3.6rem;
    font-size: 1.3rem;
  }

  .galleryPrev {
    left: .8rem;
  }

  .galleryNext {
    right: .8rem;
  }

  .listingModalStats {
    grid-template-columns: repeat(2, 1fr);
  }

  .listingModalHighlights {
    grid-template-columns: 1fr;
  }

  .listingModalPrice {
    font-size: clamp(2.8rem, 4vw, 3.6rem);
    margin-bottom: .4rem;
  }
}

/* ////VERI Small Phones ///// */
@media (max-width: 430px) {
  .listingsHeroPage {
    background-size: 300%;
    background-position: center top;
  }

  .listingsHeroContent h1 {
    font-size: 3rem;
  }

  .listingsAccentLine {
    margin-bottom: 1.6rem;
  }

  .listingModalImage {
    height: clamp(280px, 72vw, 380px);
  }

  .tourBox,
  .questionBox,
  .shareBox {
    padding: 2.2rem;
  }
}
