/* Variables */
    :root {
      --primary: #0a6fb1;
      --primary-dark: #085a89;
      --accent: #ffb300;
      --accent-dark: #ff9500;
      --text-dark: #0d1b2a;
      --text-medium: #415a77;
      --text-light: #6b889e;
      --bg-light: #f7fbff;
      --bg-white: #ffffff;
      --border-light: #eef6fb;
      --shadow-sm: 0 2px 8px rgba(13, 27, 42, 0.04);
      --shadow-md: 0 8px 24px rgba(13, 27, 42, 0.08);
      --shadow-lg: 0 16px 48px rgba(13, 27, 42, 0.12);
      --shadow-xl: 0 24px 64px rgba(13, 27, 42, 0.16);
      --radius-sm: 8px;
      --radius-md: 12px;
      --radius-lg: 16px;
      --radius-xl: 24px;
      --radius-full: 999px;
      --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    }

    /* Reset + Base */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      -webkit-text-size-adjust: 100%;
    }

    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background: var(--bg-white);
      color: var(--text-dark);
      overflow-x: hidden;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      line-height: 1.6;
    }



    /* Header */
    header {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1200;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      border-radius: var(--radius-full);
      padding: 12px 24px;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(10, 111, 177, 0.08);
      max-width: min(95%, 1100px);
      width: 100%;
      transition: var(--transition);
    }

    header.scrolled {
      padding: 10px 20px;
      box-shadow: var(--shadow-xl);
    }

    .nav-container {
      display: flex;
      align-items: center;
      gap: 30px;
      justify-content: space-between;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      text-decoration: none;
      transition: var(--transition);
    }

    .brand:hover {
      transform: translateY(-2px);
    }

    .brand-icon {
      width: 44px;
      height: 44px;
      background: linear-gradient(135deg, var(--primary), var(--accent));
      border-radius: var(--radius-md);
      display: grid;
      place-items: center;
      color: white;
      font-weight: 900;
      font-size: 18px;
      box-shadow: var(--shadow-md);
    }

    .brand-name {
      font-size: 19px;
      font-weight: 800;
      color: var(--text-dark);
      letter-spacing: -0.02em;
    }

    nav {
      display: flex;
      gap: 32px;
      align-items: center;
    }

    nav a {
      color: var(--text-medium);
      text-decoration: none;
      font-weight: 600;
      font-size: 14px;
      transition: var(--transition);
      position: relative;
    }

    nav a::after {
      content: '';
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 0;
      height: 2px;
      background: var(--primary);
      transition: width 0.3s ease;
    }

    nav a:hover {
      color: var(--primary);
    }

    nav a:hover::after {
      width: 100%;
    }

    .book-btn {
      padding: 10px 24px;
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      border: none;
      border-radius: var(--radius-full);
      color: white;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: var(--transition);
      box-shadow: var(--shadow-md);
    }

    .book-btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    /* Mobile Menu */
    .mobile-menu-btn {
      display: none;
      background: none;
      border: none;
      font-size: 24px;
      color: var(--text-dark);
      cursor: pointer;
    }

    /* Hero Section */
    .hero-wrap {
      position: relative;
      min-height: 85vh;
      display: grid;
      align-items: center;
      margin-top: 0px;
    }

    .hero-video {
      position: absolute;
      inset: 0;
      object-fit: cover;
      width: 100%;
      height: 100%;
      z-index: 0;
    }

    .hero-overlay {
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg,
          rgba(13, 27, 42, 0.4) 0%,
          rgba(13, 27, 42, 0.5) 50%,
          rgba(13, 27, 42, 0.7) 100%);
      z-index: 1;
    }

    .hero {
      position: relative;
      z-index: 2;
      max-width: 1280px;
      margin: 0 auto;
      padding: 140px 24px 80px;
      display: grid;
      grid-template-columns: 1fr;
      gap: 36px;
    }

    .hero-left {
      max-width: 840px;
      text-align: center;
    }

    .eyebrow {
      font-size: 13px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: white;
      margin-bottom: 16px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 10px 20px;
      background: rgba(255, 255, 255, 0.12);
      backdrop-filter: blur(10px);
      border-radius: var(--radius-full);
      margin-left: auto;
      margin-right: auto;
      display: inline-flex;
      justify-content: center;
    }

    .eyebrow i {
      font-size: 14px;
      color: var(--accent);
    }

    .hero-heading {
      font-family: 'Libre Baskerville', serif;

      font-size: clamp(42px, 8vw, 72px);
      font-weight: 900;
      line-height: 1.1;
      color: white;
      margin-bottom: 24px;
      animation: fadeInUp 0.8s ease;
    }

    .hero-heading .accent {
      color: var(--accent);
      position: relative;
      display: inline-block;
    }

    .hero-text {
      font-size: 18px;
      color: rgba(255, 255, 255, 0.95);
      margin-bottom: 32px;
      max-width: 600px;
      line-height: 1.7;
      animation: fadeInUp 0.8s ease 0.2s backwards;
    }

    @keyframes fadeInUp {
      from {
        opacity: 0;
        transform: translateY(30px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* Search Bar */
    .search-bar {
      display: flex;
      gap: 16px;
      background: white;
      border-radius: var(--radius-lg);
      padding: 16px;
      box-shadow: var(--shadow-xl);
      align-items: stretch;
      max-width: 960px;
      animation: fadeInUp 0.8s ease 0.4s backwards;
    }

    .search-field {
      flex: 1;
      min-width: 160px;
      position: relative;
    }

    .search-field label {
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      color: var(--text-light);
      letter-spacing: 1px;
      margin-bottom: 6px;
      display: block;
    }

    .search-field input,
    .search-field select {
      width: 100%;
      padding: 12px 16px;
      border: 2px solid var(--border-light);
      background: var(--bg-light);
      font-weight: 600;
      font-size: 15px;
      border-radius: var(--radius-sm);
      transition: var(--transition);
    }

    .search-field input:focus,
    .search-field select:focus {
      outline: none;
      border-color: var(--primary);
      background: white;
    }

    .search-btn {
      padding: 14px 32px;
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      color: white;
      border: none;
      border-radius: var(--radius-md);
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      gap: 10px;
      align-self: end;
    }

    .search-btn:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-lg);
    }

    .search-btn i {
      font-size: 16px;
    }

    /* Features Row */
    .features-row {
      display: flex;
      gap: 16px;
      margin-top: 32px;
      flex-wrap: wrap;
      animation: fadeInUp 0.8s ease 0.6s backwards;
    }

    .feature-pill {
      background: rgba(255, 255, 255, 0.15);
      backdrop-filter: blur(10px);
      padding: 12px 18px;
      border-radius: var(--radius-full);
      color: white;
      font-weight: 600;
      font-size: 14px;
      display: flex;
      gap: 10px;
      align-items: center;
      transition: var(--transition);
      border: 1px solid rgba(255, 255, 255, 0.2);
    }

    .feature-pill:hover {
      background: rgba(255, 255, 255, 0.25);
      transform: translateY(-2px);
    }

    .feature-pill i {
      font-size: 16px;
      color: var(--accent);
    }

    /* Sections */
    .section {
      max-width: 1280px;
      margin: 80px auto;
      padding: 0 24px;
    }

    .section-intro {
      text-align: center;
      margin-bottom: 48px;
    }

    .section-label {
      font-size: 13px;
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 2px;
      color: var(--primary);
      margin-bottom: 12px;
      display: inline-flex;
      align-items: center;
      gap: 8px;
    }

    .section-label i {
      font-size: 14px;
    }

    .section-heading {
      font-family: 'Sora', sans-serif;

      font-size: clamp(32px, 5vw, 48px);
      font-weight: 800;
      color: var(--text-dark);
      margin-bottom: 16px;
      line-height: 1.2;
    }

    .section-subtext {
      font-size: 17px;
      color: var(--text-medium);
      max-width: 600px;
      margin: 0 auto;
      line-height: 1.7;
    }

    /* Filter Pills */
    .filter-pills {
      display: flex;
      gap: 12px;
      margin-bottom: 32px;
      flex-wrap: wrap;
      justify-content: center;
    }

    .filter-pill {
      padding: 10px 20px;
      background: white;
      border: 2px solid var(--border-light);
      border-radius: var(--radius-full);
      color: var(--text-medium);
      font-weight: 600;
      font-size: 14px;
      cursor: pointer;
      transition: var(--transition);
    }

    .filter-pill:hover {
      border-color: var(--primary);
      color: var(--primary);
    }

    .filter-pill.active {
      background: var(--primary);
      color: white;
      border-color: var(--primary);
    }
    /* Base styles remain the same */

/* Mobile layout: 2 buttons per row, centered */
@media (max-width: 600px) {
  .filter-pills {
    display: grid;
    grid-template-columns: repeat(2, minmax(120px, 1fr));
    gap: 12px;
    justify-content: center;
    margin: 0 auto;
    max-width: 350px; /* optional for centering balance */
  }

  .filter-pill {
    text-align: center;
    width: 100%;
  }
}


    /* Properties Grid */
    .bento-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
      gap: 28px;
    }

    .bento-item {
      background: white;
      border-radius: var(--radius-lg);
      overflow: hidden;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border-light);
      transition: var(--transition);
      display: flex;
      flex-direction: column;
      animation: fadeIn 0.5s ease;
    }

    .bento-item:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-xl);
    }

    @keyframes fadeIn {
      from {
        opacity: 0;
        transform: scale(0.95);
      }

      to {
        opacity: 1;
        transform: scale(1);
      }
    }

    .property-thumb {
      width: 100%;
      aspect-ratio: 16/10;
      background: linear-gradient(135deg, #e6eef9, #f7fbff);
      background-size: cover;
      background-position: center;
      position: relative;
      overflow: hidden;
    }

    .property-thumb::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3) 100%);
      opacity: 0;
      transition: var(--transition);
    }

    .bento-item:hover .property-thumb::after {
      opacity: 1;
    }

    .property-badge {
      position: absolute;
      top: 16px;
      right: 16px;
      background: var(--accent);
      color: white;
      padding: 6px 12px;
      border-radius: var(--radius-full);
      font-size: 12px;
      font-weight: 700;
    }

    .property-body {
      padding: 20px;
      display: flex;
      flex-direction: column;
      gap: 16px;
    }

    .property-meta {
      display: flex;
      justify-content: space-between;
      align-items: start;
    }

    .property-info h3 {
      font-size: 18px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 4px;
    }

    .property-location {
      display: flex;
      align-items: center;
      gap: 6px;
      font-size: 14px;
      color: var(--text-medium);
    }

    .property-location i {
      font-size: 12px;
      color: var(--primary);
    }

    .property-price {
      text-align: right;
    }

    .property-price-value {
      font-weight: 900;
      font-size: 24px;
      color: var(--text-dark);
    }

    .property-price-label {
      font-size: 12px;
      color: var(--text-light);
    }

    .property-tags {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
    }

    .tag {
      padding: 8px 14px;
      background: var(--bg-light);
      border-radius: var(--radius-full);
      font-size: 12px;
      font-weight: 600;
      color: var(--text-medium);
      display: flex;
      align-items: center;
      gap: 6px;
    }

    .tag i {
      font-size: 10px;
      color: var(--primary);
    }

    .property-actions {
      display: flex;
      gap: 12px;
      margin-top: auto;
    }

    .cta-secondary {
      flex: 1;
      padding: 12px;
      border: 2px solid var(--border-light);
      border-radius: var(--radius-sm);
      background: white;
      font-weight: 700;
      font-size: 14px;
      color: var(--text-medium);
      cursor: pointer;
      transition: var(--transition);
    }

    .cta-secondary:hover {
      border-color: var(--primary);
      color: var(--primary);
      background: var(--bg-light);
    }

    .cta-primary {
      flex: 1.5;
      padding: 12px 20px;
      border: none;
      border-radius: var(--radius-sm);
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: white;
      font-weight: 700;
      font-size: 14px;
      cursor: pointer;
      transition: var(--transition);
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
    }

    .cta-primary:hover {
      transform: translateY(-2px);
      box-shadow: var(--shadow-md);
    }

    /* Facilities Grid */
    .facilities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 48px;
    }

    .facility {
      background: white;
      border-radius: var(--radius-lg);
      padding: 24px;
      box-shadow: var(--shadow-md);
      display: flex;
      gap: 20px;
      align-items: start;
      transition: var(--transition);
      border: 1px solid var(--border-light);
    }

    .facility:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
      border-color: var(--primary);
    }

    .facility .icon {
      width: 64px;
      height: 64px;
      border-radius: var(--radius-md);
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #e6f2ff, #fff7e6);
      font-size: 28px;
      color: var(--primary);
      flex-shrink: 0;
    }

    .facility-content h4 {
      font-size: 17px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 6px;
    }

    .facility-content p {
      font-size: 14px;
      color: var(--text-medium);
      line-height: 1.6;
    }

    /* Life Section */
    .life {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 48px;
      align-items: center;
      margin-top: 48px;
    }

    .life-content {
      padding: 32px;
    }

    .life-photo {
      width: 100%;
      height: 520px;
      border-radius: var(--radius-lg);
      background: linear-gradient(135deg, #e6eef9, #f7fbff);
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow-lg);
    }

    .life-values {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
      margin-top: 32px;
    }

    .value-card {
      background: white;
      padding: 20px;
      border-radius: var(--radius-md);
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border-light);
      transition: var(--transition);
    }

    .value-card:hover {
      transform: translateY(-4px);
      box-shadow: var(--shadow-lg);
    }

    .value-card i {
      font-size: 24px;
      color: var(--primary);
      margin-bottom: 12px;
    }

    .value-card h4 {
      font-size: 16px;
      font-weight: 700;
      color: var(--text-dark);
      margin-bottom: 8px;
    }

    .value-card p {
      font-size: 13px;
      color: var(--text-medium);
      line-height: 1.6;
    }

    /* Gallery */
    .gallery-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
      gap: 16px;
      margin-top: 48px;
    }

    .gallery-item {
      width: 100%;
      padding-top: 75%;
      background: linear-gradient(135deg, #e6eef9, #f7fbff);
      background-size: cover;
      background-position: center;
      border-radius: var(--radius-md);
      transition: var(--transition);
      cursor: pointer;
      position: relative;
      overflow: hidden;
    }

    .gallery-item::after {
      content: '';
      position: absolute;
      inset: 0;
      background: rgba(10, 111, 177, 0.3);
      opacity: 0;
      transition: var(--transition);
    }

    .gallery-item:hover {
      transform: scale(1.05);
    }

    .gallery-item:hover::after {
      opacity: 1;
    }

    /* CTA Section */
    .cta-section {
      background: linear-gradient(135deg, var(--primary), var(--primary-dark));
      border-radius: var(--radius-xl);
      padding: 80px 40px;
      text-align: center;
      color: white;
      margin: 80px 0;
      position: relative;
      overflow: hidden;
    }

    .cta-section::before {
      content: '';
      position: absolute;
      width: 400px;
      height: 400px;
      background: radial-gradient(circle, var(--accent) 0%, transparent 70%);
      opacity: 0.1;
      top: -200px;
      right: -200px;
    }

    .cta-content {
      position: relative;
      z-index: 1;
    }

    .cta-heading {
      font-family: 'Playfair Display', serif;
      font-size: clamp(32px, 5vw, 48px);
      font-weight: 800;
      margin-bottom: 16px;
    }

    .cta-text {
      font-size: 18px;
      margin-bottom: 32px;
      opacity: 0.95;
      max-width: 600px;
      margin-left: auto;
      margin-right: auto;
    }

    .cta-buttons {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .cta-button {
      padding: 16px 32px;
      border-radius: var(--radius-full);
      font-weight: 700;
      font-size: 16px;
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      transition: var(--transition);
    }

    .cta-button-primary {
      background: white;
      color: var(--primary);
    }

    .cta-button-secondary {
      background: rgba(255, 255, 255, 0.15);
      color: white;
      backdrop-filter: blur(10px);
      border: 2px solid rgba(255, 255, 255, 0.3);
    }

    .cta-button:hover {
      transform: translateY(-3px);
      box-shadow: var(--shadow-lg);
    }

    /* Footer */
    footer {
      background: var(--text-dark);
      color: white;
      padding: 80px 24px 40px;
      margin-top: 80px;
    }

    .footer-container {
      max-width: 1280px;
      margin: 0 auto;
      display: grid;
      grid-template-columns: 2fr repeat(3, 1fr);
      gap: 48px;
    }

    .footer-brand {
      display: flex;
      flex-direction: column;
      gap: 20px;
    }

    .footer-logo {
      display: flex;
      align-items: center;
      gap: 12px;
    }

    .footer-logo .brand-icon {
      background: linear-gradient(135deg, var(--primary), var(--accent));
    }

    .footer-logo .brand-name {
      color: white;
    }

    .footer-desc {
      color: rgba(255, 255, 255, 0.7);
      font-size: 14px;
      line-height: 1.7;
    }

    .footer-social {
      display: flex;
      gap: 12px;
      margin-top: 12px;
    }

    .social-link {
      width: 40px;
      height: 40px;
      border-radius: var(--radius-full);
      background: rgba(255, 255, 255, 0.1);
      display: grid;
      place-items: center;
      color: white;
      text-decoration: none;
      transition: var(--transition);
    }

    .social-link:hover {
      background: var(--primary);
      transform: translateY(-3px);
    }

    .footer-col h4 {
      font-size: 16px;
      font-weight: 700;
      margin-bottom: 20px;
      color: white;
    }

    .footer-col a {
      display: block;
      color: rgba(255, 255, 255, 0.7);
      text-decoration: none;
      margin-bottom: 12px;
      font-size: 14px;
      transition: var(--transition);
    }
.footer-logo-img {
    height: 48px;
    width: auto;
    object-fit: contain;
}

    .footer-col a:hover {
      color: white;
      transform: translateX(4px);
    }

    .footer-bottom {
      text-align: center;
      margin-top: 48px;
      padding-top: 32px;
      border-top: 1px solid rgba(255, 255, 255, 0.1);
      color: rgba(255, 255, 255, 0.5);
      font-size: 13px;
    }

    /* Responsive */
    @media (max-width: 1024px) {
      .bento-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      }

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

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

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

    @media (max-width: 768px) {
      .location-bar {
        font-size: 12px;
        padding: 6px 16px;
      }

      header {
        top: 38px;
        padding: 10px 16px;
      }

      nav {
        display: none;
      }

      .mobile-menu-btn {
        display: block;
      }

      .search-bar {
        flex-direction: column;
        gap: 12px;
      }

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

      .filter-pills {
        justify-content: start;
        overflow-x: auto;
        padding-bottom: 8px;
      }

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

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

      .life-values {
        grid-template-columns: 1fr;
      }

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

      .footer-container {
        grid-template-columns: 1fr;
        gap: 32px;
      }

      .cta-section {
        padding: 60px 24px;
      }
    }

    @media (max-width: 480px) {
      .hero {
        padding: 120px 16px 60px;
      }

      .hero-heading {
        font-size: 36px;
      }

      .hero-text {
        font-size: 16px;
      }

      .section {
        margin: 60px auto;
        padding: 0 16px;
      }

      .features-row {
        gap: 8px;
      }

      .feature-pill {
        padding: 8px 14px;
        font-size: 12px;
      }
    }

    /* Accessibility */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border: 0;
    }

    /* Loading Skeleton */
    .skeleton {
      background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
      background-size: 200% 100%;
      animation: loading 1.5s infinite;
    }

    @keyframes loading {
      0% {
        background-position: 200% 0;
      }

      100% {
        background-position: -200% 0;
      }
    }

    /* Smooth Transitions */
    .fade-in {
      animation: fadeIn 0.5s ease;
    }

    .slide-up {
      animation: slideUp 0.5s ease;
    }

    @keyframes slideUp {
      from {
        opacity: 0;
        transform: translateY(20px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    /* — The Journey Section — */
    .about-journey {
      max-width: 1280px;
      margin: 80px auto;
      padding: 32px 24px;
      display: grid;
      grid-template-columns: 1fr 480px;
      gap: 32px;
      align-items: center;
      background: linear-gradient(180deg, rgba(250, 250, 252, 1), rgba(243, 249, 255, 1));
      border-radius: var(--radius-xl);
      box-shadow: var(--shadow-sm);
      border: 1px solid var(--border-light);
    }

    .about-journey .journey-text {
      padding: 12px 8px;
    }

    .about-journey .journey-eyebrow {
      display: inline-flex;
      gap: 10px;
      align-items: center;
      background: rgba(10, 111, 177, 0.06);
      color: var(--primary);
      padding: 8px 12px;
      border-radius: var(--radius-full);
      font-weight: 800;
      font-size: 13px;
      margin-bottom: 12px;
    }

    .about-journey h3.journey-heading {
      font-family: 'Sora', sans-serif;
      font-size: clamp(22px, 3.5vw, 30px);
      margin-bottom: 12px;
      color: var(--text-dark);
      line-height: 1.2;
    }

    .about-journey p.journey-desc {
      color: var(--text-medium);
      font-size: 16px;
      line-height: 1.7;
      margin-bottom: 18px;
    }

    .about-journey .journey-list {
      margin-bottom: 18px;
      color: var(--text-medium);
      font-size: 15px;
      line-height: 1.6;
    }

    .journey-stats {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
      margin-bottom: 18px;
    }

    .stat-pill {
      background: white;
      padding: 10px 14px;
      border-radius: var(--radius-md);
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
      min-width: 160px;
      display: flex;
      gap: 12px;
      align-items: center;
    }

    .stat-pill i {
      font-size: 20px;
      color: var(--primary);
      width: 36px;
      height: 36px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(10, 111, 177, 0.08), rgba(255, 179, 0, 0.06));
      border-radius: var(--radius-full);
    }

    .stat-pill .stat-text {
      font-weight: 700;
      color: var(--text-dark);
      font-size: 14px;
    }

    .about-journey .journey-cta {
      margin-top: 6px;
    }

    .about-journey .btn-about {
      padding: 12px 22px;
      background: linear-gradient(135deg, var(--accent), var(--accent-dark));
      color: white;
      border-radius: var(--radius-full);
      font-weight: 800;
      border: none;
      cursor: pointer;
      text-decoration: none;
      display: inline-flex;
      gap: 10px;
      align-items: center;
    }

    /* right side image grid */
    .journey-image-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      align-items: center;
    }

    .journey-image-grid .img-large {
      grid-column: 1 / -1;
      height: 260px;
      border-radius: var(--radius-md);
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow-lg);
      border: 1px solid var(--border-light);
    }

    .journey-image-grid .img-small {
      height: 120px;
      border-radius: var(--radius-md);
      background-size: cover;
      background-position: center;
      box-shadow: var(--shadow-md);
      border: 1px solid var(--border-light);
    }

    /* about icons row */
    .journey-icons {
      display: flex;
      gap: 12px;
      margin-top: 16px;
      flex-wrap: wrap;
    }

    .journey-icon-card {
      flex: 1 1 200px;
      background: white;
      border-radius: var(--radius-md);
      padding: 14px;
      display: flex;
      gap: 12px;
      align-items: center;
      border: 1px solid var(--border-light);
      box-shadow: var(--shadow-sm);
    }

    .journey-icon-card i {
      font-size: 20px;
      color: var(--primary);
      width: 44px;
      height: 44px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, #e6f2ff, #fff7e6);
      border-radius: var(--radius-full);
    }

    /* responsive */
    @media (max-width: 1024px) {
      .about-journey {
        grid-template-columns: 1fr 360px;
      }

      .journey-image-grid .img-large {
        height: 220px;
      }
    }

    @media (max-width: 768px) {
      .about-journey {
        grid-template-columns: 1fr;
        padding: 24px;
      }

      .journey-image-grid {
        order: -1;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
        margin-bottom: 16px;
      }

      .journey-image-grid .img-large {
        grid-column: auto;
        height: 160px;
      }
    }

    /* hide journey images on phones */
    @media (max-width: 768px) {

      /* completely remove the right-side image grid on phones */
      .journey-image-grid {
        display: none !important;
      }

      /* if individual image elements are used elsewhere, ensure they don't show */
      .journey-image-grid .img-large,
      .journey-image-grid .img-small {
        display: none !important;
        visibility: hidden;
      }

      /* keep spacing consistent when images are hidden */
      .about-journey {
        grid-template-columns: 1fr;
        gap: 20px;
        /* tweak as needed */
      }
    }

    @media (max-width: 768px) {
      .about-journey .journey-cta {
        display: flex;
        justify-content: center;
      }
    }

    /* Sivani Living — Achievement Banner (Final Polished Version) */
    .achievement-banner {
      max-width: 1280px;
      margin: 48px auto;
      padding: 28px;
      border-radius: 20px;
      background: linear-gradient(180deg, #fbfdff 0%, #eef7ff 100%);
      box-shadow: 0 14px 38px rgba(13, 27, 42, 0.06);
      border: 1px solid rgba(10, 111, 177, 0.06);
      display: grid;
      grid-template-columns: 1fr 3fr;
      gap: 20px;
      align-items: center;
      overflow: hidden;
      position: relative;
    }

    /* Subtle accent glow background */


    /* Left Column */
    .achievement-left {
      padding: 18px;
      border-radius: 14px;
      background: linear-gradient(90deg, rgba(10, 111, 177, 0.05), rgba(255, 179, 0, 0.05));
      display: flex;
      flex-direction: column;
      gap: 8px;
      align-items: flex-start;
      justify-content: center;
      position: relative;
      z-index: 1;
    }

    /* Eyebrow Label */
    .achievement-eyebrow {
      font-size: 13px;
      font-weight: 800;
      color: var(--primary);
      letter-spacing: 0.04em;
      display: inline-flex;
      gap: 10px;
      align-items: center;
    }

    .achievement-eyebrow i {
      color: var(--accent);
    }

    /* Title & Subtext */
    .achievement-title {
      font-family: 'Playfair Display', serif;
      font-size: clamp(20px, 2.6vw, 28px);
      color: var(--text-dark);
      font-weight: 800;
      margin-top: 6px;
      line-height: 1.12;
    }

    .achievement-title span {
      color: var(--accent);
    }

    .achievement-sub {
      font-size: 14px;
      color: var(--text-medium);
      margin-top: 6px;
      line-height: 1.6;
    }

    /* Stats Grid */
    .achievement-stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      align-items: stretch;
      z-index: 1;
    }

    /* Stat Cards */
    .stat-card {
      position: relative;
      background: linear-gradient(180deg, #ffffff, #f8fbff);
      border-radius: 16px;
      padding: 22px 18px;
      box-shadow: 0 8px 20px rgba(13, 27, 42, 0.05);
      border: 1px solid var(--border-light);
      transition: transform 0.28s cubic-bezier(.22, .9, .32, 1),
        box-shadow 0.28s ease,
        border-color 0.28s ease;
      overflow: hidden;
    }

    .stat-card:hover {
      transform: translateY(-6px);
      box-shadow: 0 16px 36px rgba(13, 27, 42, 0.12);
      border-color: rgba(255, 179, 0, 0.3);
    }

    /* Icon in Top Right */
    .stat-icon {
      position: absolute;
      top: 12px;
      right: 12px;
      width: 42px;
      height: 42px;
      border-radius: 10px;
      display: grid;
      place-items: center;
      background: linear-gradient(135deg, rgba(10, 111, 177, 0.08), rgba(255, 179, 0, 0.08));
      color: var(--primary);
      font-size: 17px;
      box-shadow: 0 4px 12px rgba(10, 111, 177, 0.06);
    }

    /* Stat Number */
    .stat-number {
      font-weight: 900;
      font-size: clamp(20px, 2.4vw, 28px);
      color: var(--text-dark);
      margin-top: 40px;
      letter-spacing: -0.02em;
      transition: color 0.3s ease;
    }

    /* Highlight number with accent on hover */
    .stat-card:hover .stat-number {
      color: var(--accent);
    }

    /* Add "+" only to 3rd card */
    .stat-card:nth-child(3) .stat-number::after {
      content: "+";
      color: black;
      font-weight: 800;
      margin-left: 2px;

    }

    .stat-card:nth-child(3):hover .stat-number::after {
      color: var(--accent);
    }


    /* Stat Label */
    .stat-label {
      font-size: 13px;
      font-weight: 700;
      color: var(--text-medium);
      margin-top: 6px;
    }

    /* Soft light sweep on hover */
    .stat-card::after {
      content: "";
      position: absolute;
      top: -40%;
      left: -60%;
      width: 40%;
      height: 200%;
      background: linear-gradient(120deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
      transform: rotate(-22deg);
      opacity: 0;
      transition: opacity 0.5s ease, left 0.6s ease;
    }

    .stat-card:hover::after {
      left: 120%;
      opacity: 1;
    }

    /* Responsive — preserve structure */
    @media (max-width: 1024px) {
      .achievement-banner {
        grid-template-columns: 1fr;
        gap: 18px;
        padding: 22px;
      }

      .achievement-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      .achievement-left {
        align-items: flex-start;
      }
    }

    @media (max-width: 480px) {
      .achievement-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
      }

      .stat-card {
        padding: 16px;
        border-radius: 12px;
      }

      .stat-number {
        font-size: 20px;
        margin-top: 34px;
      }

      .achievement-title {
        font-size: 18px;
      }
    }

    .achievement-banner {
      background: linear-gradient(135deg, #fbfdff 0%, #eef7ff 50%, #fff9f0 100%);
    }

    /* Default — your existing desktop/tablet layout */
    .facilities-grid {
      display: grid;
      grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
      gap: 24px;
      margin-top: 48px;
    }

    /* ✅ Phones: 2 in a row + centered content */
    @media (max-width: 768px) {
      .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
      }

      .facility {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: 18px 14px;
        gap: 10px;
      }

      .facility .icon {
        width: 56px;
        height: 56px;
        font-size: 22px;
        margin-bottom: 4px;
      }

      .facility-content h4 {
        font-size: 15px;
        font-weight: 700;
      }

      .facility-content p {
        font-size: 13px;
        max-width: 220px;
        line-height: 1.5;
      }
    }

    /* ✅ For very small screens — still 2 per row, tighter spacing */
    @media (max-width: 480px) {
      .facilities-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
      }

      .facility {
        padding: 14px 10px;
      }

      .facility-content p {
        font-size: 12px;
      }
    }

    @media (max-width: 768px) {
      .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 28px;
      }
    }

    @media (max-width: 480px) {
      .footer-container {
        grid-template-columns: 1fr;
      }

      .footer-col h4 {
        margin-top: 16px;
      }
    }

    .footer-col a {
      display: block;
      color: rgba(255, 255, 255, 0.85);
      text-decoration: none;
      margin-bottom: 10px;
      font-size: 14px;
      font-weight: 500;
      transition: var(--transition);
    }

    .footer-col a i {
      margin: 0 6px;
      color: var(--accent);
    }

    .footer-col a:hover {
      color: white;
      transform: translateX(4px);
    }

    /* Logo + Text header */
    header.logo-header {
      position: fixed;
      top: 20px;
      left: 50%;
      transform: translateX(-50%);
      z-index: 1200;
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(20px);
      border-radius: var(--radius-full);
      padding: 8px 18px;
      box-shadow: var(--shadow-lg);
      border: 1px solid rgba(10, 111, 177, 0.08);
      display: flex;
      justify-content: center;
      align-items: center;
      width: auto;
      transition: var(--transition);
    }

    /* Brand link */
    .brand.logo-only {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
    }

    /* Logo image */
    .brand-logo {
      height: 42px;
      width: auto;
      object-fit: contain;
      display: block;
    }

    /* Text beside logo */
    .brand-text {
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 18px;
      color: #1b78ae;
      /* your requested color */
      letter-spacing: -0.02em;
    }

    /* On scroll (optional shrink effect) */
    header.logo-header.scrolled {
      padding: 6px 14px;
      box-shadow: var(--shadow-xl);
    }

    /* Responsive adjustments */
    @media (max-width: 480px) {
      header.logo-header {
        top: 14px;
        padding: 6px 14px;
      }

      .brand-logo {
        height: 34px;
      }

      .brand-text {
        font-size: 16px;
      }
    }
    /* Property Video styles */
.video-card {
  display: grid;
  gap: 12px;
  align-items: center;
}

.video-thumb {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  aspect-ratio: 16/9;
}

.play-overlay {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, rgba(10,111,177,0.12), rgba(10,111,177,0.06));
  transition: transform 0.22s ease, opacity 0.22s ease;
}

.play-overlay i {
  font-size: 46px;
  color: white;
  text-shadow: 0 6px 18px rgba(0,0,0,0.35);
  background: linear-gradient(90deg, var(--accent), var(--accent-dark));
  padding: 14px;
  border-radius: 999px;
}

.video-thumb:hover .play-overlay { transform: scale(1.04); }

/* YouTube Button */
.youtube-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #FF0000;
  color: #fff;
  padding: 10px 18px;
  border-radius: 6px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s ease;
  font-family: 'Inter', sans-serif;
}

.youtube-btn i {
  font-size: 18px;
}

.youtube-btn:hover {
  background-color: #cc0000;
}

/* Modal */
.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 2000;
  align-items: center;
  justify-content: center;
}

.video-modal[aria-hidden="false"] { display: flex; }

.video-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(7,12,20,0.6);
  backdrop-filter: blur(6px);
}

.video-modal-content {
  position: relative;
  width: min(1200px, 96%);
  max-width: 1200px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  background: #000;
  z-index: 2;
}

.video-close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 5;
  border: none;
  background: rgba(255,255,255,0.06);
  color: white;
  padding: 10px;
  border-radius: 8px;
  cursor: pointer;
  font-size: 16px;
}

.video-iframe-wrap {
  width: 100%;
  aspect-ratio: 16/9;
  background: #000;
}

/* Responsive */
@media (max-width: 768px) {
  .video-iframe-wrap { aspect-ratio: 16/9; }
  .play-overlay i { font-size: 36px; padding: 10px; }
  .youtube-btn { padding: 9px 16px; font-size: 15px; }
}
  /* Lightbox Modal Styles */
.gallery-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2000;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.gallery-modal.active {
  display: flex;
  opacity: 1;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.95);
  backdrop-filter: blur(5px);
  z-index: 1;
}

.modal-content {
  position: relative;
  z-index: 2;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  animation: modalFadeIn 0.3s ease-out;
}

@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.modal-image-container {
  max-width: 100%;
  max-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

#modalImage {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
}

.modal-close {
  position: absolute;
  top: -50px;
  right: 0;
  background: var(--bg-white);
  border: none;
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 3;
}

.modal-close:hover {
  background: var(--accent);
  color: var(--bg-white);
  transform: scale(1.1);
}

.modal-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-white);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: var(--text-dark);
  font-size: 1.2rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  z-index: 3;
}

.modal-prev {
  left: -70px;
}

.modal-next {
  right: -70px;
}

.modal-nav:hover {
  background: var(--primary);
  color: var(--bg-white);
  transform: translateY(-50%) scale(1.1);
}

.modal-info {
  margin-top: 20px;
  color: var(--bg-white);
  text-align: center;
}

.image-counter {
  font-size: 0.9rem;
  opacity: 0.8;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .modal-nav {
    width: 44px;
    height: 44px;
  }
  
  .modal-prev {
    left: 10px;
  }
  
  .modal-next {
    right: 10px;
  }
  
  .modal-close {
    top: 10px;
    right: 10px;
  }
  
  .modal-image-container {
    max-height: 70vh;
  }
  
  #modalImage {
    max-height: 70vh;
  }
}

@media (max-width: 480px) {
  .modal-nav {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }
  
  .modal-prev {
    left: 5px;
  }
  
  .modal-next {
    right: 5px;
  }
}
/* Pop up form css */
.popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(13, 27, 42, 0.85);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 2000;
  padding: 20px;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.popup-overlay.active {
  display: flex;
  opacity: 1;
}

.popup-container {
  background: var(--bg-white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  width: 100%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s ease;
}

.popup-overlay.active .popup-container {
  transform: translateY(0);
}

.popup-close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: none;
  border: none;
  font-size: 20px;
  color: var(--text-light);
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  z-index: 10;
}

.popup-close:hover {
  background: var(--bg-light);
  color: var(--text-dark);
}

.popup-header {
  padding: 32px 32px 0;
  text-align: center;
}

.popup-header h2 {
  font-family: 'Sora', sans-serif;
  font-size: 28px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.popup-header p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.5;
}

.popup-form {
  padding: 24px 32px 32px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 14px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--border-light);
  background: var(--bg-light);
  font-family: 'Inter', sans-serif;
  font-size: 15px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: white;
}

.form-group textarea {
  resize: vertical;
  min-height: 80px;
}

.submit-btn {
  width: 100%;
  padding: 14px 24px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: white;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 700;
  font-size: 16px;
  cursor: pointer;
  transition: var(--transition);
  margin-top: 8px;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-lg);
}

/* Thank You Message */
.thank-you-message {
  text-align: center;
  padding: 40px 32px;
}

.thank-you-icon {
  font-size: 48px;
  color: var(--accent);
  margin-bottom: 16px;
}

.thank-you-message h3 {
  font-family: 'Sora', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.thank-you-message p {
  color: var(--text-medium);
  font-size: 16px;
  line-height: 1.6;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .popup-container {
    max-width: 100%;
    margin: 0 16px;
  }
  
  .popup-header,
  .popup-form {
    padding-left: 24px;
    padding-right: 24px;
  }
  
  .popup-header h2 {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .popup-overlay {
    padding: 10px;
  }
  
  .popup-header,
  .popup-form {
    padding-left: 20px;
    padding-right: 20px;
  }
  
  .popup-header h2 {
    font-size: 22px;
  }
  
  .form-group input,
  .form-group select,
  .form-group textarea {
    padding: 10px 14px;
    font-size: 14px;
  }
}
/* Features Row */
.features-row {
  display: flex;
  gap: 16px;
  margin-top: 32px;
  flex-wrap: wrap;
  justify-content: center;
  animation: fadeInUp 0.8s ease 0.6s backwards;
}

.feature-pill {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(10px);
  padding: 12px 18px;
  border-radius: var(--radius-full);
  color: white;
  font-weight: 600;
  font-size: 14px;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.feature-pill:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.feature-pill i {
  font-size: 16px;
  color: var(--accent);
}

/* ✅ Mobile: 2 per row, perfectly centered, no shape change */
@media (max-width: 768px) {
  .features-row {
    display: grid;
    grid-template-columns: repeat(2, auto); /* exactly 2 per row */
    justify-content: center; /* center both columns */
    gap: 16px 20px;
  }

  .feature-pill {
    flex: none;
    justify-content: center;
  }
}
