@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,300;1,400&family=Jost:wght@300;400;500;600;700&display=swap');

/* ============================
   CSS CUSTOM PROPERTIES
   ============================ */
:root {
  --primary: #005B7F;
  --primary-light: #007DAF;
  --secondary: #F38B21;
  --secondary-light: #FF9B33;
  --accent: #00A651;

  --bg-main: #ffffff;
  --bg-soft: #f7f4ef;
  --bg-warm: #faf8f4;
  --bg-section: #f2ede5;

  --text-dark: #1a1a2e;
  --text-mid: #4a4a5a;
  --text-mute: #8a8a9a;

  --border-light: rgba(0, 91, 127, 0.08);
  --border-gold: rgba(243, 139, 33, 0.35);

  --shadow-sm: 0 4px 16px rgba(0, 91, 127, 0.06);
  --shadow-md: 0 12px 40px rgba(0, 91, 127, 0.1);
  --shadow-lg: 0 30px 80px rgba(0, 91, 127, 0.14);

  --transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
  --radius: 4px;
  --radius-lg: 12px;
}

/* ============================
   RESET & BASE
   ============================ */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-variant-numeric: lining-nums;
  -webkit-font-feature-settings: "lnum";
  -moz-font-feature-settings: "lnum";
  font-feature-settings: "lnum";
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  overflow-x: hidden;
}

@media (max-width: 1200px) {
  html { font-size: 15px; }
}

@media (max-width: 768px) {
  html { font-size: 14px; }
}

body {
  font-family: 'Jost', sans-serif;
  background: var(--bg-main);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
  -webkit-font-smoothing: antialiased;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-soft);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 4px;
}

h1,
h2,
h3,
h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--primary);
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  h3 { font-size: 1.5rem; }
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px; /* Default mobile padding */
}

@media (min-width: 768px) {
    .container { padding: 0 40px; }
}

/* ============================
   TYPOGRAPHY HELPERS
   ============================ */
.overline {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--secondary);
}

.display-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.1;
}

/* ============================
   SECTION PATTERNS
   ============================ */
.section {
  padding: clamp(60px, 10vw, 120px) 0;
  position: relative;
}

.section-header {
  margin-bottom: clamp(40px, 8vw, 70px);
}

.section-header.center {
  text-align: center;
}

.section-header h2 {
  font-size: clamp(1.8rem, 5vw, 3rem);
  color: var(--primary);
  margin: 14px 0 20px;
  font-weight: 700;
}

.section-header p {
  color: var(--text-mid);
  font-size: clamp(0.9rem, 2vw, 1.05rem);
  font-weight: 300;
  max-width: 700px;
}

.section-header.center p {
  margin: 0 auto;
}

/* Gold rule divider */
.gold-rule {
  display: block;
  width: 50px;
  height: 2px;
  background: var(--secondary);
  margin-bottom: clamp(16px, 3vw, 24px);
}

.center .gold-rule,
.section-header.center .gold-rule {
  margin: 0 auto clamp(16px, 3vw, 24px);
}

@media (max-width: 768px) {
  .section-header {
    text-align: center;
  }

  .section-header .gold-rule {
    margin-left: auto;
    margin-right: auto;
  }
}

/* ============================
   NAVBAR
   ============================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100%;
  z-index: 1000;
  padding: 15px 0;
  transition: var(--transition);
  background: #ffffff;
  border-bottom: 1px solid var(--border-light);
  box-shadow: 0 2px 20px rgba(26, 35, 64, 0.07);
  box-sizing: border-box;
}

/* Hero-page: navbar starts transparent over hero */
.hero-page .navbar {
  background: transparent;
  border-bottom: none;
  box-shadow: none;
  padding: 20px 0;
}

.hero-page .navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  padding: 0 16px;
}

.navbar-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 1px;
}

/* On hero page, brand is white */
.hero-page .navbar .navbar-brand {
  color: #fff;
}

.hero-page .navbar.scrolled .navbar-brand {
  color: var(--primary);
}

.navbar-brand span {
  color: var(--secondary);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 38px;
}

.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
  position: relative;
  padding-bottom: 4px;
}

/* On hero page, links are white */
.hero-page .navbar .nav-links a {
  color: rgba(255, 255, 255, 0.85);
}

.hero-page .navbar.scrolled .nav-links a {
  color: var(--text-mid);
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--secondary);
  transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--secondary) !important;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
  z-index: 1001;
}

.hamburger-line {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--primary);
  margin: 5px 0;
  transition: var(--transition);
}

.hero-page .navbar .hamburger-line {
  background-color: #fff;
}

.hero-page .navbar.scrolled .hamburger-line {
  background-color: var(--primary);
}

.menu-toggle.active .hamburger-line:nth-child(1) {
  transform: rotate(-45deg) translate(-5px, 6px);
  background-color: #fff;
}

.menu-toggle.active .hamburger-line:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active .hamburger-line:nth-child(3) {
  transform: rotate(45deg) translate(-5px, -6px);
  background-color: #fff;
}

body.no-scroll {
  overflow: hidden;
}

/* ============================
   MAIN CAROUSEL
   ============================ */
.main-carousel {
  position: relative;
  width: 100%;
  height: clamp(500px, 85vh, 700px);
  margin-top: 70px; /* Account for navbar */
  overflow: hidden;
  background: #000;
}

.carousel-track {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.carousel-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.2s ease-in-out, transform 10s linear;
  transform: scale(1.1);
  z-index: 1;
}

.carousel-slide.active {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
  z-index: 2;
}

/* Sub-animation for background zoom out while active */
.carousel-slide.active {
    animation: zoomOut 10s forwards;
}

@keyframes zoomOut {
    from { transform: scale(1.1); }
    to { transform: scale(1); }
}

.carousel-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 50%, transparent 100%);
  z-index: 5;
  display: flex;
  align-items: center;
}

.carousel-content {
  max-width: 700px;
  color: #fff;
  padding-right: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.8s cubic-bezier(0.2, 1, 0.3, 1);
}

.carousel-slide.active .carousel-content {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* Custom Slide-up animations for inner text */
.slide-up {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease-out;
}

.slide-up-delay-1 { transition-delay: 0.7s; }
.slide-up-delay-2 { transition-delay: 0.9s; }
.slide-up-delay-3 { transition-delay: 1.1s; }

.carousel-slide.active .slide-up {
    opacity: 1;
    transform: translateY(0);
}

.carousel-title {
  font-size: clamp(2.5rem, 7vw, 4.5rem);
  line-height: 1;
  font-family: 'Cormorant Garamond', serif;
  color: #fff;
  margin: 15px 0 25px;
  font-weight: 700;
  text-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.text-highlight {
    color: var(--secondary);
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(243, 139, 33, 0.3);
    z-index: -1;
}

.badge-accent {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    padding: 6px 15px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.mx-auto { margin-left: auto; margin-right: auto; }
.text-center { text-align: center; }
.justify-center { justify-content: center; }

/* Content Variants */
.content-variant-2 .carousel-title { font-style: normal; }
.content-variant-3 { border-left: 4px solid var(--secondary); padding-left: 40px; }
.content-variant-4 { max-width: 850px; }

.carousel-title em {
  font-style: italic;
  color: var(--secondary);
}

.carousel-para {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 550px;
  font-weight: 300;
  line-height: 1.6;
}

.carousel-actions {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.carousel-nav {
  position: absolute;
  bottom: 40px;
  right: 40px;
  display: flex;
  gap: 15px;
  z-index: 10;
}

.carousel-nav button {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.carousel-nav button:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(243, 139, 33, 0.3);
}

.carousel-indicators {
  position: absolute;
  bottom: 40px;
  left: 40px;
  display: flex;
  gap: 10px;
  z-index: 10;
}

.indicator {
  width: 40px;
  height: 3px;
  background: rgba(255, 255, 255, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.indicator.active {
  background: var(--secondary);
  width: 60px;
}

/* Response */
@media (max-width: 768px) {
  .main-carousel {
    height: 90vh;
    margin-top: 60px;
  }
  .carousel-overlay {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0.3) 100%);
    align-items: center;
    padding-bottom: 0px;
    text-align: center;
  }
  .main-carousel .container {
      display: flex;
      justify-content: center;
  }
  .main-carousel .carousel-content {
    max-width: 100%;
    padding-right: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .main-carousel .carousel-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
    margin-bottom: 20px;
  }
  .main-carousel .carousel-para {
    font-size: 1rem;
    margin-bottom: 30px;
    max-width: 90%;
  }
  .main-carousel .carousel-actions {
    justify-content: center;
    width: 100%;
  }
  .carousel-nav {
    display: none;
  }
  .carousel-indicators {
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
  }
  .content-variant-3 {
    border-left: none;
    padding-left: 0;
  }
}

/* ============================
   HERO — SPLIT LAYOUT
   ============================ */

/* The navbar is 61px tall (18px padding + line-height). 
   The split hero starts right below it. */
.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 70px);
  margin-top: 70px;
  overflow: hidden;
}

/* LEFT PANEL — white background, all the text */
.hero-split__left {
  background: var(--bg-main);
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.hero-split__inner {
  padding: 0 8% 0 7%;
  max-width: 640px;
}

/* small overline label */
.hero__label {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--secondary);
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
}

.hero__label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--secondary);
  display: block;
  flex-shrink: 0;
}

/* Big heading */
.hero-split__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5vw, 4.4rem);
  font-weight: 700;
  color: var(--primary);
  line-height: 1.06;
  margin-bottom: 24px;
}

.hero-split__title em {
  font-style: italic;
  color: var(--secondary);
}

/* Subtitle */
.hero-split__sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--text-mid);
  line-height: 1.85;
  margin-bottom: 40px;
  max-width: 100%;
}

/* Mini stats row */
.hero-split__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-bottom: 40px;
  padding: 24px 28px;
  background: var(--bg-soft);
  border-radius: 10px;
  border: 1px solid var(--border-light);
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.hero-stat__num {
  font-family: 'Jost', sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
}

.hero-stat__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
}

.hero-stat__divider {
  width: 1px;
  height: 36px;
  background: var(--border-light);
  flex-shrink: 0;
}

/* CTA Buttons */
.hero-split__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

/* Trust row */
.hero-split__trust {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 28px;
  border-top: 1px solid var(--border-light);
}

.hero-split__trust span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mute);
  white-space: nowrap;
}

.hero-split__trust strong {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-mute);
  opacity: 0.5;
  transition: var(--transition);
}

.hero-split__trust strong:hover {
  opacity: 1;
  color: var(--primary);
}

/* RIGHT PANEL — single image */
.hero-split__right {
  background: var(--bg-soft);
  padding: 36px;
  display: flex;
  align-items: stretch;
}

/* Single image wrapper */
.hero-single-img {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 100%;
  box-shadow: 0 24px 64px rgba(26, 35, 64, 0.18);
}

.hero-single-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 1.2s ease;
}

.hero-single-img:hover img {
  transform: scale(1.04);
}

/* Gold "Curated Exclusive" badge — top right */
.hero-single-badge {
  position: absolute;
  top: 22px;
  right: 22px;
  background: var(--secondary);
  color: #fff;
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 9px 16px;
  border-radius: 50px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 4px 16px rgba(201, 168, 76, 0.4);
}

/* Floating frosted-glass location card — bottom left */
.hero-float-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 14px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 12px 36px rgba(26, 35, 64, 0.15);
  border: 1px solid rgba(201, 168, 76, 0.25);
  z-index: 10;
}

.hero-float-card>div:nth-child(2) {
  flex: 1;
}

.hero-float-card>i {
  width: 44px;
  height: 44px;
  background: var(--secondary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.hero-float-card__loc {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 4px;
}

.hero-float-card__price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  color: var(--primary);
  font-weight: 400;
}

.hero-float-card__price strong {
  font-weight: 700;
  color: var(--secondary);
}

.hero-float-card>i,
.hero-float-card__arrow {
  flex-shrink: 0;
}

.hero-float-card__arrow {
  margin-left: auto;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  flex-shrink: 0;
  transition: var(--transition);
}

.hero-float-card__arrow:hover {
  background: var(--secondary);
  transform: translateX(4px);
}


/* ============================
   BUTTONS
   ============================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 36px;
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  border-radius: var(--radius);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-gold {
  background: var(--secondary);
  color: #fff;
}

.btn-gold:hover {
  background: var(--secondary-light);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(201, 168, 76, 0.35);
}

.btn-outline-white {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.btn-outline-white:hover {
  background: #fff;
  color: var(--primary);
  border-color: #fff;
  transform: translateY(-3px);
}

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border: 1px solid var(--primary);
}

.btn-outline-dark:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-3px);
}

.btn-primary {
  background: var(--primary);
  color: #fff;
}

.btn-primary:hover {
  background: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* ============================
   STAT TICKERS (Hero)
   ============================ */
.hero__stats {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 3;
  background: rgba(255, 255, 255, 0.96);
  border-top: 3px solid var(--secondary);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.stat-item {
  padding: 28px 30px;
  border-right: 1px solid var(--border-light);
  text-align: center;
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
}

/* ============================
   PAGE BANNERS (inner pages)
   ============================ */
.page-banner {
  padding: clamp(120px, 15vw, 180px) 0 clamp(60px, 10vw, 100px);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(201, 168, 76, 0.12) 0%, transparent 70%);
  pointer-events: none;
}

.page-banner__content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.page-banner h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  margin-bottom: 16px;
}

.page-banner p {
  color: rgba(255, 255, 255, 0.85);
  font-size: clamp(0.95rem, 2vw, 1.1rem);
  font-weight: 300;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================
   ABOUT SPLIT LAYOUT
   ============================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
}

.about-img-badge {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--secondary);
  color: #fff;
  padding: 30px 35px;
  text-align: center;
  border-radius: var(--radius);
  box-shadow: var(--shadow-md);
}

.about-img-badge strong {
  display: block;
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1;
}

.about-img-badge span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ============================
   PROJECT CARDS
   ============================ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.property-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
}

.property-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
  border-color: var(--border-gold);
}

.property-card__img {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
}

.property-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.property-card:hover .property-card__img img {
  transform: scale(1.08);
}

.property-card__badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--secondary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 3px;
}

.property-card__body {
  padding: 30px;
}

.property-card__price {
  font-family: 'Jost', sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--secondary);
  margin-bottom: 8px;
}

.property-card__title {
  font-size: 1.3rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.property-card__loc {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 400;
  margin-bottom: 24px;
}

.property-card__loc i {
  color: var(--secondary);
  font-size: 0.85rem;
}

.property-card__meta {
  display: flex;
  gap: 0;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.property-card__meta span {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  font-size: 0.82rem;
  color: var(--text-mid);
  font-weight: 400;
  border-right: 1px solid var(--border-light);
  padding: 0 8px;
}

.property-card__meta span:last-child {
  border-right: none;
}

.property-card__meta i {
  color: var(--secondary);
  font-size: 1rem;
}

.property-card__cta {
  display: block;
  text-align: center;
  margin: 24px 30px 30px;
  padding: 13px;
  border: 1px solid var(--primary);
  color: var(--primary);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  border-radius: var(--radius);
  transition: var(--transition);
}

.property-card__cta:hover {
  background: var(--primary);
  color: #fff;
}

/* ============================
   PILLARS / FEATURES
   ============================ */
.pillar-card {
  padding: 50px 40px;
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  border-top: 3px solid var(--secondary);
  transition: var(--transition);
  text-align: center;
}

.pillar-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.pillar-card__icon {
  width: 70px;
  height: 70px;
  background: var(--bg-soft);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 28px;
  font-size: 1.6rem;
  color: var(--secondary);
  border: 1px solid var(--border-gold);
  transition: var(--transition);
}

.pillar-card:hover .pillar-card__icon {
  background: var(--secondary);
  color: #fff;
  border-color: var(--secondary);
}

.pillar-card h3 {
  font-size: 1.35rem;
  margin-bottom: 14px;
}

.pillar-card p {
  color: var(--text-mid);
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 25px;
}

.pillar-list {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
  border-top: 1px solid var(--border-light);
  padding-top: 20px;
}

.pillar-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  font-size: 0.95rem;
  color: var(--text-mid);
  font-weight: 400;
}

.pillar-list li i {
  color: var(--secondary);
  font-size: 0.75rem;
  width: 18px;
  height: 18px;
  background: rgba(243, 139, 33, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonial-card {
  background: var(--bg-main);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  position: relative;
  transition: var(--transition);
  height: 100%;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

@media (max-width: 992px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testimonial-card:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-gold);
}

.testimonial-card::before {
  content: '\201C';
  font-family: 'Cormorant Garamond', serif;
  font-size: 7rem;
  font-weight: 700;
  color: var(--secondary);
  opacity: 0.12;
  position: absolute;
  top: 10px;
  left: 25px;
  line-height: 1;
}

.testimonial-card p {
  font-style: italic;
  font-size: 1.05rem;
  color: var(--text-mid);
  margin-bottom: 30px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.testimonial-author img {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--secondary);
}

.testimonial-author__name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--primary);
}

.testimonial-author__title {
  font-size: 0.78rem;
  color: var(--secondary);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

/* ============================
   COUNTERS BAND
   ============================ */
.counters-band {
  background: var(--primary);
  padding: 80px 0;
}

.counters-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.counter-item {
  padding: 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.07);
}

.counter-item:last-child {
  border-right: none;
}

.counter-item__num {
  font-family: 'Jost', sans-serif;
  font-size: 3.6rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 10px;
}

.counter-item__label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
}

/* ============================
   CTA BAND
   ============================ */
.cta-band {
  background: linear-gradient(135deg, var(--bg-soft) 0%, var(--bg-section) 100%);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: 100px 0;
}

/* ============================
   FOOTER
   ============================ */
.footer {
  background-size: cover;
  background-attachment: fixed;
  color: #ffffff;
  padding: 90px 0 0;
  position: relative;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 60px;
  padding-bottom: 70px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
}

.footer-brand span {
  color: var(--secondary);
}

.footer-desc {
  font-size: 0.95rem;
  line-height: 1.85;
  margin-top: 18px;
  max-width: 320px;
  color: #ffffff;
  font-weight: 400;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.footer-socials {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.footer-socials a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.6);
  font-size: 1rem;
  transition: var(--transition);
}

.footer-socials a:hover {
  border-color: var(--secondary);
  color: var(--secondary);
  transform: translateY(-3px);
}

.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 26px;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 13px;
}

.footer-col ul li a {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 400;
  text-shadow: 0 1px 2px rgba(0,0,0,0.5);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--secondary);
  padding-left: 5px;
}

.footer-contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 22px;
  font-size: 0.92rem;
  line-height: 1.7;
  align-items: flex-start;
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.footer-contact-item strong {
  color: #fff;
  font-weight: 500;
  margin-right: 5px;
}

.footer-contact-item i {
  color: var(--secondary);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  letter-spacing: 0.5px;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* ============================
   NEWSLETTER STRIP
   ============================ */
.newsletter-strip {
  background: linear-gradient(rgba(0, 91, 127, 0.85), rgba(0, 45, 64, 0.95)), url('../assets/land_plot_3.png') no-repeat center center;
  background-size: cover;
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.newsletter-strip::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(255, 255, 255, 0.1), transparent 70%);
  pointer-events: none;
}

.newsletter-strip h2 {
  color: #fff;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}

.newsletter-strip p {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 300;
  margin-top: 8px;
}

.newsletter-form {
  display: flex;
  gap: 0;
  max-width: 520px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.newsletter-form input {
  flex: 1;
  padding: 18px 24px;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  outline: none;
  background: #fff;
  color: var(--text-dark);
}

.newsletter-form button {
  padding: 18px 30px;
  background: var(--primary);
  color: #fff;
  border: none;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  cursor: pointer;
  transition: var(--transition);
}

.newsletter-form button:hover {
  background: var(--primary-light);
}

@media (max-width: 768px) {
    .newsletter-strip { padding: 50px 0; }
    .newsletter-strip h2 { font-size: 1.8rem; margin-bottom: 15px; }
}

/* ============================
   CONTACT FORM
   ============================ */
.contact-form .form-control {
  width: 100%;
  padding: 16px 22px;
  background: var(--bg-soft);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
  margin-bottom: 20px;
}

.contact-form .form-control:focus {
  border-color: var(--secondary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(201, 168, 76, 0.08);
}

/* ============================
   TIMELINE
   ============================ */
.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  bottom: 5px;
  width: 2px;
  background: linear-gradient(to bottom, var(--secondary), var(--border-light));
}

.timeline-item {
  position: relative;
  margin-bottom: 44px;
  padding-left: 30px;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -34px;
  top: 6px;
  width: 10px;
  height: 10px;
  background: var(--secondary);
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.2);
}

.timeline-item__year {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 6px;
}

.timeline-item h4 {
  font-size: 1.2rem;
  margin-bottom: 8px;
}

.timeline-item p {
  color: var(--text-mid);
  font-weight: 300;
  font-size: 0.95rem;
}

/* ============================
   GRIDS
   ============================ */
.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* ============================
   ADMIN PANEL
   ============================ */
.admin-wrap {
  display: flex;
  min-height: 100vh;
}

.admin-sidebar {
  width: 260px;
  background: var(--primary);
  color: #fff;
  flex-shrink: 0;
  position: sticky;
  top: 0;
  height: 100vh;
  overflow-y: auto;
}

.admin-sidebar__logo {
  padding: 36px 28px 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.admin-sidebar__logo span {
  color: var(--secondary);
}

.admin-nav {
  list-style: none;
  padding: 20px 0;
}

.admin-nav li a {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 15px 28px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  border-left: 3px solid transparent;
  transition: var(--transition);
}

.admin-nav li a:hover,
.admin-nav li a.active {
  color: #fff;
  background: rgba(255, 255, 255, 0.05);
  border-left-color: var(--secondary);
}

.admin-nav i {
  width: 18px;
  text-align: center;
  font-size: 0.95rem;
}

.admin-content {
  flex: 1;
  background: #f5f5f8;
  padding: 50px;
  overflow-y: auto;
}

.admin-topbar {
  margin-bottom: 40px;
}

.admin-topbar h1 {
  font-size: 1.8rem;
  color: var(--primary);
}

.admin-topbar p {
  color: var(--text-mid);
  margin-top: 6px;
  font-size: 0.9rem;
}

.stat-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid #e8e8ef;
  transition: var(--transition);
}

.stat-card:hover {
  box-shadow: var(--shadow-md);
}

.stat-card__num {
  font-family: 'Jost', sans-serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--secondary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-card__label {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text-mid);
}

.stat-card__icon {
  font-size: 2rem;
  color: var(--border-light);
  margin-bottom: 16px;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid #e8e8ef;
}

.admin-table th {
  background: var(--primary);
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 18px 22px;
  text-align: left;
}

.admin-table td {
  padding: 18px 22px;
  border-bottom: 1px solid #f0f0f6;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.admin-table tr:last-child td {
  border-bottom: none;
}

.admin-table tr:hover td {
  background: #fafafe;
}

.badge-available {
  background: #e8f5e9;
  color: #2e7d32;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.badge-sold {
  background: #fce4ec;
  color: #c62828;
  padding: 5px 12px;
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  transition: var(--transition);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.action-btn-edit {
  background: var(--primary);
  color: #fff;
}

.action-btn-edit:hover {
  background: var(--primary-light);
}

.action-btn-delete {
  background: #fce4ec;
  color: #c62828;
}

.action-btn-delete:hover {
  background: #c62828;
  color: #fff;
}

.admin-form-panel {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 50px;
  border: 1px solid #e8e8ef;
}

.admin-form-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 8px;
}

.admin-form-control {
  width: 100%;
  padding: 14px 18px;
  background: var(--bg-soft);
  border: 1px solid #e2e2ec;
  border-radius: var(--radius);
  font-family: 'Jost', sans-serif;
  font-size: 0.95rem;
  color: var(--text-dark);
  outline: none;
  transition: var(--transition);
}

.admin-form-control:focus {
  border-color: var(--secondary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.12);
}

/* ============================
   UTILITY
   ============================ */
.text-center {
  text-align: center;
}

.text-gold {
  color: var(--secondary);
}

.text-muted {
  color: var(--text-mid);
}

.mb-0 {
  margin-bottom: 0 !important;
}

.mt-40 {
  margin-top: 40px;
}

.mt-60 {
  margin-top: 60px;
}

.py-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

/* ============================
   RESPONSIVE
   ============================ */

/* ============================
   RESPONSIVE
   ============================ */

@media (max-width: 1100px) {

  .cards-grid,
  .grid-3,
  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    row-gap: 50px;
  }

  .about-grid {
    gap: 40px;
  }

  .hero-split {
    grid-template-columns: 1fr;
    min-height: auto;
    margin-top: 70px;
  }
}

@media (max-width: 900px) {
  .hero-split__left {
    padding: 60px 0 40px;
  }

  .hero-split__right {
    padding: 20px 20px 60px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-padding: 50px;
  }

  .section {
    padding: var(--section-padding) 0;
  }

  .nav-links {
    position: fixed;
    top: 0;
    right: -110%;
    width: 100%;
    height: 100vh;
    background: var(--primary);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 80px 40px;
    gap: 25px;
    transition: all 0.5s cubic-bezier(0.77, 0, 0.175, 1);
    z-index: 1000;
  }

  .nav-links.open {
    right: 0;
  }

  .nav-links li {
    width: 100%;
    text-align: center;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
  }

  .nav-links.open li {
    opacity: 1;
    transform: translateY(0);
  }

  .nav-links.open li:nth-child(1) {
    transition-delay: 0.1s;
  }

  .nav-links.open li:nth-child(2) {
    transition-delay: 0.15s;
  }

  .nav-links.open li:nth-child(3) {
    transition-delay: 0.2s;
  }

  .nav-links.open li:nth-child(4) {
    transition-delay: 0.25s;
  }

  .nav-links.open li:nth-child(5) {
    transition-delay: 0.3s;
  }

  .nav-links.open li:nth-child(6) {
    transition-delay: 0.35s;
  }

  .nav-links a {
    color: #fff !important;
    font-size: 1.15rem;
    letter-spacing: 3px;
    display: block;
    width: 100%;
  }

  .menu-toggle {
    display: block;
  }

  .about-grid,
  .grid-2,
  .grid-3,
  .grid-4,
  .cards-grid,
  .footer-grid,
  .contact-main-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-split__inner {
    padding: 0 16px;
    max-width: 100%;
    box-sizing: border-box;
  }

  .hero-split__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    padding: 16px 12px;
    margin-bottom: 28px;
    background: var(--bg-soft);
    border-radius: 10px;
    border: 1px solid var(--border-light);
    text-align: center;
  }

  .hero-stat {
    text-align: center;
    align-items: center;
    gap: 2px;
  }

  .hero-stat__num {
    font-size: 1.3rem;
  }

  .hero-stat__label {
    font-size: 0.58rem;
    letter-spacing: 0.5px;
  }

  .hero-stat__divider {
    display: none;
  }

  .hero-split__actions {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-split__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-split__trust {
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    text-align: center;
    padding-top: 20px;
  }

  .hero-split__trust span {
    width: 100%;
    margin-bottom: 4px;
  }

  .cta-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 30px;
  }

  .cta-actions {
    text-align: center;
    align-items: center;
    flex-direction: column;
  }

  /* Contact Page Mobile Fixes */
  .contact-info-col {
    text-align: center;
  }
  .contact-info-col .section-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .contact-card {
    flex-direction: column;
    text-align: center;
    gap: 15px !important;
    padding: 25px;
  }
  .c-card-icon {
      margin: 0 auto;
  }
  .offices-grid {
    grid-template-columns: 1fr !important;
    gap: 15px;
  }
  .office-mini-card {
      justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero-split__inner {
    padding: 0 15px;
    /* Use fixed small padding for narrow screens */
  }

  .hero__label {
    margin-bottom: 20px;
    gap: 8px;
    font-size: 0.65rem;
  }

  .hero__label::before {
    width: 20px;
    /* Shorten the decorative line */
  }

  .hero-split__title {
    font-size: clamp(1.8rem, 9vw, 2.2rem);
    letter-spacing: -0.5px;
    margin-bottom: 20px;
  }

  .hero-split__sub {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-bottom: 25px;
  }

  .hero-split__stats {
    grid-template-columns: repeat(3, 1fr);
    text-align: center;
    padding: 15px 10px !important;
    gap: 10px !important;
  }

  .hero-stat {
    align-items: center;
  }

  .hero-stat__num {
    font-size: 1.15rem;
  }

  .about-img-badge {
    right: 15px;
    bottom: -15px;
    padding: 15px 20px;
  }

  .about-img-badge strong {
    font-size: 2rem;
  }

  .property-card__body {
    padding: 20px;
  }

  .counters-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-single-img {
    height: 250px !important;
  }

  .hero-float-card {
    margin: -20px 10px 0 !important;
    padding: 10px !important;
    gap: 10px !important;
  }

  .hero-float-card i {
    width: 32px !important;
    height: 32px !important;
    font-size: 0.75rem !important;
  }
}

/* ============================
   CUSTOM ANIMATIONS & MICRO-INTERACTIONS
   ============================ */

/* Hero Entrance Animation */
@keyframes heroSplitLeft {
  0% {
    transform: translateX(-30px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes heroSplitRight {
  0% {
    transform: translateX(30px);
    opacity: 0;
  }

  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.hero-split__left .hero-split__inner {
  animation: heroSplitLeft 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.hero-split__right {
  animation: heroSplitRight 1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}

.counter-item:hover {
  transform: translateY(-8px);
}