:root { 
  --gold: #e07a5f;
  --gold-light: #f2b5a7;
  --gold-dark: #c65d44;

  --dark: #2f2f33;
  --dark-2: #3f3f45;
  --dark-3: #52525b;

  --cream: #faf9f7;
  --cream-2: #f1efec;

  --white: #ffffff;

  --text-muted: #7a7a80;
  --text-light: #a1a1aa;

  --radius: 8px;
  --radius-lg: 18px;

  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.06);
}
/* :root {
      --gold: #c9a96e;
      --gold-light: #e8d4b0;
      --gold-dark: #9e7a42;
      --dark: #1a1410;
      --dark-2: #2c2318;
      --dark-3: #3d3228;
      --cream: #f5f0e8;
      --cream-2: #ede5d8;
      --white: #fff;
      --text-muted: #8c7b6b;
      --text-light: #b5a898;
      --radius: 4px;
      --radius-lg: 12px;
      --shadow: 0 8px 40px rgba(26,20,16,0.18);
      --shadow-sm: 0 2px 12px rgba(26,20,16,0.12);
    } */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "DM Sans", sans-serif;
  background: var(--cream);
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
}

/* HEADER*/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(26, 20, 16, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(201, 169, 110, 0.2);
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.logo-img {
  width: 80px;
  height: auto;
}
.logo-mark {
  width: 36px;
  height: 36px;
  border: 1.5px solid var(--gold);
  transform: rotate(45deg);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.logo-mark span {
  display: block;
  width: 18px;
  height: 18px;
  background: var(--gold);
  transform: rotate(-45deg);
}
.logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
}
.logo-text em {
  color: var(--gold);
  font-style: normal;
}

.header-cta {
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 10px 28px;
  border-radius: 2px;
  transition: background 0.25s;
  text-decoration: none;
}
.header-cta:hover {
  background: var(--gold-light);
}

/* ── HERO ────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600&q=80");
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.04);
  animation: slowZoom 18s ease-in-out infinite alternate;
}

.hero-bg-2 {
  position: absolute;
  inset: 0;
  /* background-image: url("img/bg-2.avif"); */
  background-size: cover;
  background-position: center;
  opacity: 0.45;
  transform: scale(1.04);
  animation: slowZoom 18s ease-in-out infinite alternate;
}
@keyframes slowZoom {
  from {
    transform: scale(1.04);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  /*background: linear-gradient(*/
  /*  105deg,*/
  /*  rgba(26, 20, 16, 0.82) 40%,*/
  /*  rgba(26, 20, 16, 0.35) 100%*/
  /*);*/
  background: linear-gradient(105deg, rgb(26 20 16 / 32%) 40%, rgba(26, 20, 16, 0.35) 100%);
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  gap: 60px;
}

.hero-content {
  flex: 1;
  max-width: 560px;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  animation: fadeInUp 0.7s ease both;
}
.hero-badge::before {
  content: "";
  display: block;
  width: 28px;
  height: 1px;
  background: var(--gold);
}

.hero-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(44px, 5.5vw, 72px);
  font-weight: 300;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
  animation: fadeInUp 0.8s 0.1s ease both;
}
.hero-title em {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: 16px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 40px;
  max-width: 440px;
  animation: fadeInUp 0.8s 0.2s ease both;
}

.hero-usps {
  display: flex;
  gap: 28px;
  margin-bottom: 40px;
  animation: fadeInUp 0.8s 0.3s ease both;
}
.usp-item {
  text-align: center;
}
.usp-icon {
  width: 44px;
  height: 44px;
  margin: 0 auto 8px;
  border: 1px solid rgba(201, 169, 110, 0.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.usp-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--gold);
}
.usp-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.4;
}

/* LEAD FORM  */
.hero-form-wrap {
  width: 400px;
  flex-shrink: 0;
  background: rgba(245, 240, 232, 0.97);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  box-shadow: 0 24px 64px rgba(26, 20, 16, 0.45);
  animation: fadeInRight 0.9s 0.2s ease both;
}

.form-tag {
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 6px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.form-tag::before {
  content: "";
  display: block;
  width: 18px;
  height: 1px;
  background: var(--gold-dark);
}

.form-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.25;
}

.form-group {
  margin-bottom: 14px;
}
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 6px;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--cream-2);
  background: var(--white);
  border-radius: var(--radius);
  font-family: "DM Sans", sans-serif;
  font-size: 14px;
  color: var(--dark);
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus {
  border-color: var(--gold);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.form-submit {
  width: 100%;
  margin-top: 20px;
  background: var(--dark);
  color: var(--gold-light);
  font-family: "DM Sans", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  padding: 15px;
  border-radius: var(--radius);
  transition:
    background 0.25s,
    color 0.25s;
}
.form-submit:hover {
  background: var(--gold);
  color: var(--dark);
}

.form-note {
  margin-top: 12px;
  font-size: 11px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

/* STATS BAR  */
.stats-bar {
  background: var(--dark-2);
  padding: 36px 40px;
}
.stats-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-around;
  gap: 20px;
}
.stat-item {
  text-align: center;
}
.stat-number {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
}
.stat-number span {
  font-size: 26px;
}
.stat-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.55);
  margin-top: 4px;
  letter-spacing: 0.05em;
}
.stat-divider {
  width: 1px;
  height: 50px;
  background: rgba(201, 169, 110, 0.2);
}

/*SECTION COMMON  */
.section {
  padding: 100px 40px;
}
.section-inner {
  max-width: 1280px;
  margin: 0 auto;
}

.section-tag {
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.section-tag::before {
  content: "";
  display: block;
  width: 24px;
  height: 1px;
  background: var(--gold-dark);
}

.section-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(32px, 3.5vw, 48px);
  font-weight: 300;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 16px;
}
.section-title em {
  color: var(--gold-dark);
  font-style: italic;
}

.section-desc {
  font-size: 16px;
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 560px;
}

.btn-primary {
  display: inline-block;
  margin-top: 32px;
  background: var(--dark);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 36px;
  border-radius: var(--radius);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition:
    background 0.25s,
    color 0.25s;
}
.btn-primary:hover {
  background: var(--gold);
  color: var(--dark);
}

.btn-outline {
  display: inline-block;
  background: transparent;
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: var(--radius);
  text-decoration: none;
  border: 1.5px solid var(--dark);
  cursor: pointer;
  transition: all 0.25s;
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--gold-light);
}

/*  INTRO SECTION */
.intro-section {
  background: var(--cream);
}
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.intro-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.intro-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  display: block;
}
.intro-badge {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: var(--gold);
  color: var(--dark);
  padding: 22px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: var(--shadow);
}
.intro-badge .b-num {
  font-family: "Cormorant Garamond", serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
}
.intro-badge .b-text {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* BUDGET HOMES */
.budget-section {
  background: var(--cream-2);
}
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 48px;
  gap: 20px;
}

.homes-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.home-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 3/4;
}
/* .home-card:first-child { grid-row: span 2; aspect-ratio: auto; } */
.home-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.home-card:hover img {
  transform: scale(1.05);
}
.home-card-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(26, 20, 16, 0.85) 100%
  );
}
.home-card-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
}
.home-card-tag {
  display: inline-block;
  margin-bottom: 8px;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  padding: 4px 10px;
  border-radius: 2px;
}
.home-card-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
  display: block;
}
.home-card-price {
  font-size: 12px;
  color: var(--gold-light);
  margin-top: 4px;
}

/* TESTIMONIALS */
.testimonials-section {
  background: var(--dark);
}
.testimonials-section .section-title {
  color: var(--white);
}
.testimonials-section .section-tag {
  color: var(--gold);
}
.testimonials-section .section-tag::before {
  background: var(--gold);
}

.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.testi-card {
  background: var(--dark-2);
  border: 1px solid rgba(201, 169, 110, 0.12);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  position: relative;
}
.testi-quote {
  font-family: "Cormorant Garamond", serif;
  font-size: 52px;
  line-height: 0.6;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 16px;
}
.testi-text {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.7);
  font-style: italic;
  margin-bottom: 24px;
}
.testi-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testi-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}
.testi-avatar-placeholder {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  color: var(--dark);
  font-weight: 600;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}
.testi-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
}
.testi-city {
  font-size: 12px;
  color: var(--text-light);
}

/* WHAT WE */
.offer-section {
  background: var(--cream);
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 56px;
}
.offer-card {
  background: var(--white);
  border: 1px solid var(--cream-2);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  transition:
    box-shadow 0.3s,
    transform 0.3s;
}
.offer-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-4px);
}
.offer-icon {
  width: 52px;
  height: 52px;
  margin-bottom: 20px;
  background: var(--cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.offer-icon svg {
  width: 24px;
  height: 24px;
}
.offer-card-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 12px;
}
.offer-list {
  list-style: none;
}
.offer-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding: 6px 0;
  border-bottom: 1px solid var(--cream-2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.offer-list li:last-child {
  border-bottom: none;
}
.offer-list li::before {
  content: "";
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
}

/* HOW IT WORKS  */
.hiw-section {
  background: var(--cream-2);
}
.hiw-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 60px;
  position: relative;
}
.hiw-steps::before {
  content: "";
  position: absolute;
  top: 44px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.hiw-step {
  text-align: center;
  padding: 0 16px;
  position: relative;
}
.hiw-icon {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
}
.hiw-icon svg {
  width: 32px;
  height: 32px;
  stroke: var(--gold-dark);
  fill: none;
  stroke-width: 1.5;
}
.hiw-step-num {
  position: absolute;
  top: -4px;
  right: calc(50% - 54px);
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--dark);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hiw-step-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.hiw-step-sub {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}
.hiw-cta-wrap {
  text-align: center;
  margin-top: 56px;
}

/* PARTNERS */
.partners-section {
  background: var(--white);
  padding: 70px 40px;
}
.partners-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.partners-title {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 6px;
}
.partners-sub {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 40px;
}
.partners-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.partner-logo {
  height: 40px;
  object-fit: contain;
  filter: grayscale(1) opacity(0.55);
  transition: filter 0.25s;
}
.partner-logo:hover {
  filter: grayscale(0) opacity(1);
}

/* CTA BANNER  */
.cta-banner {
  background: var(--dark);
  padding: 100px 40px;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("https://images.unsplash.com/photo-1616486338812-3dadae4b4ace?w=1400&q=60");
  background-size: cover;
  background-position: center;
  opacity: 0.12;
}
.cta-banner-inner {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}
.cta-banner-title {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(36px, 4vw, 58px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 16px;
}
.cta-banner-title em {
  color: var(--gold);
  font-style: italic;
}
.cta-banner-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 40px;
  line-height: 1.6;
}
.cta-banner-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-gold {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 15px 40px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: background 0.25s;
}
.btn-gold:hover {
  background: var(--gold-light);
}
.btn-ghost {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 14px 40px;
  border-radius: var(--radius);
  text-decoration: none;
  cursor: pointer;
  border: 1px solid rgba(255, 255, 255, 0.3);
  transition:
    border-color 0.25s,
    background 0.25s;
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* FOOTER */
footer {
  background: var(--dark-3);
  padding: 10px 10px 0;
}
.footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(201, 169, 110, 0.15);
  margin-bottom: 20px;
}
.footer-logo-text {
  font-family: "Cormorant Garamond", serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--white);
}
.footer-logo-text em {
  color: var(--gold);
  font-style: normal;
}
.footer-tagline {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 4px;
  letter-spacing: 0.06em;
}
.footer-links {
  display: flex;
  gap: 28px;
}
.footer-links a {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.footer-links a:hover {
  color: var(--gold);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

}
.footer-note {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.2);
  max-width: 600px;
  line-height: 1.5;
}

/*  ANIMATIONS*/
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(24px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* RESPONSIVE*/
@media (max-width: 1024px) {
  .homes-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-card:first-child {
    grid-row: auto;
  }
  .offer-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .hiw-steps {
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
  }
  .hiw-steps::before {
    display: none;
  }
}

@media (max-width: 768px) {
  header {
    padding: 0 20px;
  }
  .hero-inner {
    flex-direction: column;
    padding: 100px 20px 60px;
  }
  .hero-form-wrap {
    width: 100%;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .intro-badge {
    bottom: 12px;
    right: 12px;
  }
  .section-header-row {
    flex-direction: column;
    align-items: flex-start;
  }
  .homes-grid {
    grid-template-columns: 1fr;
  }
  .testi-grid {
    grid-template-columns: 1fr;
  }
  .offer-grid {
    grid-template-columns: 1fr;
  }
  .hiw-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .partners-row {
    justify-content: center;
  }
  .section {
    padding: 64px 20px;
  }
  .stats-inner {
    flex-wrap: wrap;
  }
  .stat-divider {
    display: none;
  }
  footer {
    padding: 40px 20px 20px;
  }
  .footer-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
  }
  .footer-links {
    flex-wrap: wrap;
    gap: 16px;
  }
}

/* POPUP */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.popup-content {
  background: var(--white);
  padding: 30px;
  border-radius: var(--radius-lg);
  width: 90%;
  max-width: 400px;
  position: relative;
  box-shadow: var(--shadow);
}

.popup-content h3 {
  margin-bottom: 20px;
}

.popup-content input,
.popup-content select {
  width: 100%;
  margin-bottom: 12px;
  padding: 10px;
  border: 1px solid var(--cream-2);
  border-radius: var(--radius);
}

.popup-content button {
  width: 100%;
  padding: 12px;
  background: var(--gold);
  color: white;
  border: none;
  border-radius: var(--radius);
  cursor: pointer;
}

/* CLOSE BUTTON */
.popup-close {
  position: absolute;
  top: 10px;
  right: 14px;
  font-size: 18px;
  cursor: pointer;
}
/* whatsapp */
.whatsApp {
  position: fixed;
  left: 20px;
  bottom: 0px;
  z-index: 1000;
  width: 75px;
  height: 75px;
}

.whatsApp_img {
  position: relative;
  z-index: 2;
  max-width: 65%;
}
.whatsApp_img:hover {
  transform: scale(1.1);
}

.whatsApp .circleIconPanel {
  margin: -3px -12px;
  width: 136px;
  height: 43px;
  border-radius: 25px;
  z-index: 1;
  position: absolute;
  left: 30px;
  bottom: 32px;
  opacity: 0;
  text-align: start;
  padding: 13px 14px 7px 36px;
  font: 600 20px/17px Poppins;
  letter-spacing: 0;
  color: #fff;
  background: #2db642 0 0 no-repeat padding-box;
  background-repeat: no-repeat;
  background-position: 50%;
  background-size: contain;
}

.whatsApp .circleIconPanel.showMessage {
  opacity: 1;
  font-size: 14px;
  animation: showMessage 1s linear;
}

.whatsApp .circleIconPanel.hideMessage {
  opacity: 0;
  animation: hideMessage 1s linear;
  width: 0;
}

@keyframes showMessage {
  0%,
  25% {
    opacity: 0;
    width: 0;
  }

  to {
    opacity: 1;
    width: 265px;
  }
}

@keyframes hideMessage {
  0% {
    opacity: 1;
    width: 265px;
  }

  80%,
  to {
    opacity: 0;
    width: 0;
  }
}

/* CONTAINER */
.thankyou-container {
  text-align: center;
  background: var(--white);
  padding: 60px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  max-width: 500px;
  width: 90%;
  animation: fadeUp 0.6s ease;
}

/* CHECK ICON */
.check-circle {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.check-circle svg {
  width: 36px;
  height: 36px;
  stroke: var(--gold-dark);
  stroke-width: 2;
  fill: none;
}

/* TITLE */
h1 {
  font-family: "Cormorant Garamond", serif;
  font-size: 42px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
}

/* TEXT */
p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
  margin-bottom: 30px;
}

/* BUTTONS */
.btn-group {
  /* display: flex; */
  gap: 12px;
  /* justify-content: center; */
  flex-wrap: wrap;
}

.btn {
  padding: 12px 26px;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-radius: var(--radius);
  text-decoration: none;
  font-weight: 600;
  transition: 0.25s;
}

/* PRIMARY */
.btn-primary {
  background: var(--gold);
  color: white;
}

.btn-primary:hover {
  background: var(--gold-dark);
}

/* OUTLINE */
.btn-outline {
  border: 1px solid var(--dark);
  color: var(--dark);
}

.btn-outline:hover {
  background: var(--dark);
  color: var(--gold-light);
}

/* FOOTER */
.footer {
  margin-top: 30px;
  font-size: 12px;
  color: var(--text-muted);
}

.footer-heading {
  font-size: 14px;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.footer-address p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin-bottom: 10px;
}

.footer-address a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);

}
.footer-address a:hover{
 color:white;}

.footer-copy {
  margin-top: 14px;
  font-size: 16px;
  color: rgba(255, 255, 255, 0.35);
}

.footer-copy a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
}

.footer-copy a:hover {
  color: var(--gold-light);
}

/* ANIMATION */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/*why choose*/
.usp-section-highlight {
  padding: 60px 20px;
  background: linear-gradient(
    180deg,
    var(--cream) 0%,
    var(--cream-2) 100%
  );
}

.usp-container {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.usp-box {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px 20px;
  text-align: center;
  border: 1px solid var(--cream-2);
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}

/* subtle gold glow effect */
.usp-box::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(
    circle at top,
    rgba(224, 122, 95, 0.08),
    transparent 60%
  );
  opacity: 0;
  transition: 0.3s;
}

.usp-box:hover::before {
  opacity: 1;
}

.usp-box:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

/* ICON */
.usp-icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 14px;
  border-radius: 50%;
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: var(--gold-dark);
  background: var(--cream);
}

/* TEXT */
.usp-box p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.4;
}

.usp-box strong {
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
}


@media (max-width: 768px) {
  .usp-container {
    grid-template-columns: 1fr;
  }
}
 .footer-contact-row {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
  }
 
  .footer-icon-wrap {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
  }
 
  .footer-icon-wrap svg {
    width: 15px;
    height: 15px;
    fill: #ffffff;
  }