/* ===== HEADER STYLES ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgb(253 216 174 / 61%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInDown 0.8s ease-out;
  }
  
  @keyframes fadeInDown {
    from {
      opacity: 0;
      transform: translateY(-20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  /* Prevent horizontal scroll */
  html, body {
    max-width: 100%;
    overflow-x: hidden;
  }
  
  .navbar {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    max-width: 100%;
    margin: 0 auto;
    box-sizing: border-box;
  }
  
  .navbar-brand {
    display: flex;
    justify-content: center;
    padding: 5px 0;
    margin: 0;
  }
  
  .header-logo {
    height: 35px;
    width: auto;
    transition: all 0.3s ease;
  }
  
  /* Scrolled state */
  .header.scrolled {
    background: rgba(27, 61, 75, 0.98);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
    padding: 10px 0;
  }
  
  /* Logo animation on scroll */
  .header.scrolled .header-logo {
    transform: scale(0.95);
  }
  
  /* Nav links animation */
  .nav-links {
    display: flex;
    gap: 25px;
    margin: 0;
    padding: 0;
    list-style: none;
  }
  
  .nav-links a {
    position: relative;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 15px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 0;
    transition: all 0.3s ease;
  }
  
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #ffffff, rgba(255, 255, 255, 0.5));
    transition: width 0.3s ease;
  }
  
  .nav-links a:hover,
  .nav-links a:focus {
    color: #fff;
    text-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
  }
  
  .nav-links a:hover::after,
  .nav-links a:focus::after {
    width: 100%;
  }
  
  /* Banner spacing */
  #home {
    padding-top: 60px; /* Space for fixed header */
    position: relative;
    overflow: hidden;
  }
  
  /* Carousel adjustments */
  .carousel {
    margin-top: 0;
    z-index: 1;
    position: relative;
  }
  
  .carousel-inner {
    padding-top: 0;
  }
  
  .carousel-item {
    min-height: 90vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
  }
  
  .carousel-item img {
    object-fit: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  
  /* Hide desktop navigation on mobile */
  .desktop-nav {
    display: none;
  }
  
  /* Desktop styles */
  @media (min-width: 992px) {
    .header {
      background: rgba(255, 255, 255, 0.7);
      -webkit-backdrop-filter: blur(10px);
      backdrop-filter: blur(10px);
      padding: 20px 0;
      transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .header.scrolled {
      background: var(--primary);
    }
    
    .navbar {
      justify-content: space-between;
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 30px;
    }
    
    .navbar-brand {
      padding: 0;
    }
    
    .header-logo {
      height: 40px;
    }
    
    .desktop-nav {
      display: flex;
      align-items: center;
      gap: 30px;
    }
    
    .nav-links {
      display: flex;
      list-style: none;
      margin: 0;
      padding: 0;
      gap: 20px;
    }
    
    .nav-links a {
      color: #4f6849;
      text-decoration: none;
      font-weight: 500;
      font-size: 15px;
      position: relative;
      padding: 5px 0;
      transition: color 0.3s ease;
    }
    
    .nav-links a:after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background-color: white;
      transition: width 0.3s ease;
    }
    
    .nav-links a:hover:after,
    .nav-links a:focus:after {
      width: 100%;
      
    }
    
    .nav-links a:hover {
      color: var(--accent);
    }
    
    .btn-enquire {
      background: linear-gradient(135deg, #4a5f46 0%, #6b955c 100%);
      color: white;
      border: none;
      border-radius: 50px;
      padding: 8px 25px;
      font-size: 14px;
      font-weight: 500;
      cursor: pointer;
      transition: all 0.3s ease;
      white-space: nowrap;
    }
    
    .btn-enquire:hover {
      background: linear-gradient(135deg, #658c58 0%, #4f6849 100%);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    }
  }
  
  /* Fix for content shift when scrollbar appears */
  html {
    overflow-y: scroll;
    overflow-x: hidden;
  }
  
  body {
    padding-top: 80px; /* Height of the header */
    overflow-x: hidden;
    width: 100%;
    position: relative;
    background-color: #f8f9fa;
  }
  
  /* ===== FONT FACES ===== */
  @font-face {
      font-family: 'Futura Bk BT';
      src: url('Fonts/Futura Book Font.ttf') format('truetype');
      font-weight: normal;
      font-style: normal;
      font-display: swap;
    }
    
    @font-face {
      font-family: 'Futura Bk BT';
      src: url('Fonts/Futura Bold font.ttf') format('truetype');
      font-weight: bold;
      font-style: normal;
      font-display: swap;
    }
    
    @font-face {
      font-family: 'Cormorant Garamond';
      src: url('Fonts/CormorantGaramond-SemiBold.ttf') format('truetype');
      font-weight: 600;
      font-style: normal;
      font-display: swap;
    }
    
    @font-face {
      font-family: 'Cormorant Garamond';
      src: url('Fonts/CormorantGaramond-Bold.ttf') format('truetype');
      font-weight: 700;
      font-style: normal;
      font-display: swap;
    }
    
    /* ===== ROOT VARIABLES ===== */
  
    :root {
      --primary: #4a5f46;   /* Primary color */
      --accent: #4b5f46;    /* Accent color */
      --light: #e0e1dc;     /* light gray */
      --dark: #212529;      /* dark gray */
      --heading: 'Cormorant Garamond', serif;
      --body: 'Futura Bk BT', sans-serif;
      --heading-weight: 600;
      --body-weight: normal;
    }
    
    /* Apply base font to body */
    body {
      font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
      font-weight: var(--body-weight);
      color: #000000;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }
    
    .disclaimer {
      font-size: 0.8rem;
      color: #666;
      margin: 2rem auto 0;
      max-width: 800px;
      text-align: center;
      padding: 0 1rem;
    }
    
    p {
      font-size: 14px;
      color: #000000;
      line-height: 1.6;
    }
    
    /* Apply heading font to all headings */
    h1, h2, h3, h4, h5, h6,
    .navbar-brand,
    .hero-title,
    .section-title {
      font-family: var(--heading);
      font-weight: var(--heading-weight);
      color: var(--primary);
      line-height: 1.2;
      margin-bottom: 0.75em;
    }
    
    /* Ensure buttons and inputs use the body font */
    button, input, select, textarea {
      font-family: var(--body);
    }
    
    /* Button styles */
    /* Style all buttons except carousel controls */
    .btn:not(.carousel-control-prev):not(.carousel-control-next),
    .btn-primary,
    .btn-accent,
    #pricing .btn,
    #pricing .table td:last-child a,
    .btn-view-more {
      background: linear-gradient(135deg, #4a5f46 0%, #6b955c 100%);
      border: none;
      border-radius: 50px;
      color: white;
      transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
      padding: 12px 30px;
      font-weight: 500;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      position: relative;
      overflow: hidden;
      z-index: 1;
      box-shadow: 0 4px 15px rgba(46, 103, 122, 0.3);
      display: inline-block;
      text-align: center;
      text-decoration: none;
      cursor: pointer;
      width: 100%;
    }
    
    .btn-primary::before,
    .btn-accent::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 0;
      height: 100%;
      background-color: rgba(255, 255, 255, 0.1);
      transition: all 0.3s ease;
      z-index: -1;
    }
    
    .btn:not(.carousel-control-prev):not(.carousel-control-next):hover,
    .btn-primary:hover,
    .btn-accent:hover,
    #pricing .btn:hover,
    #pricing .table td:last-child a:hover,
    .btn-view-more:hover {
      background: linear-gradient(135deg, #658c58 0%, #4f6849 100%);
      transform: translateY(-3px);
      box-shadow: 0 8px 25px rgba(246, 208, 201, 0.4);
      color: #333;
    }
    
    .btn-primary:hover::before,
    .btn-accent:hover::before {
      width: 100%;
    }
    
    /* Pricing Section */
    #pricing {
      background-color: #fff;
      position: relative;
      overflow: hidden;
    }
    
    #pricing::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(0,0,0,0.1), transparent);
    }
    
    .unlock-price-btn {
      background: transparent;
      color: var(--primary);
      border: 2px solid var(--primary);
      border-radius: 50px;
      padding: 0.5rem 1.25rem;
      font-weight: 500;
      transition: all 0.3s ease;
      min-width: 150px;
      text-transform: uppercase;
      font-size: 0.85rem;
      letter-spacing: 0.5px;
    }
    
    .unlock-price-btn:hover {
      background: var(--primary);
      color: #fff;
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(27, 61, 75, 0.2);
    }
    
    /* Form Styles */
    #enquiryForm .form-control,
    #enquiryForm .form-select {
      padding: 0.75rem 1rem;
      border: 1px solid #e0e0e0;
      border-radius: 8px;
      font-size: 0.95rem;
      transition: all 0.3s ease;
      height: auto;
    }
    
    #enquiryForm .form-control:focus,
    #enquiryForm .form-select:focus {
      border-color: var(--primary);
      box-shadow: 0 0 0 0.25rem rgba(27, 61, 75, 0.1);
    }
    
    #enquiryForm .form-label {
      font-weight: 500;
      margin-bottom: 0.4rem;
      color: #333;
      font-size: 0.9rem;
    }
    
    #enquiryForm .btn-primary {
      background-color: var(--primary);
      border: none;
      font-weight: 500;
      letter-spacing: 0.5px;
      text-transform: uppercase;
      font-size: 0.9rem;
      padding: 0.75rem 1.5rem;
      border-radius: 50px;
      transition: all 0.3s ease;
    }
    
    #enquiryForm .btn-primary:hover {
      background-color: var(--accent);
      transform: translateY(-2px);
      box-shadow: 0 4px 15px rgba(201, 160, 140, 0.3);
    }
    
    #enquiryForm .form-check-input {
      width: 1.2em;
      height: 1.2em;
      margin-top: 0.15em;
      border: 1px solid #ced4da;
    }
    
    #enquiryForm .form-check-input:checked {
      background-color: var(--primary);
      border-color: var(--primary);
    }
    
    #enquiryForm .form-check-label {
      font-size: 0.85rem;
      color: #555;
    }
    
    /* Validation Styles */
    .was-validated .form-control:invalid,
    .was-validated .form-control.is-invalid,
    .was-validated .form-select:invalid,
    .was-validated .form-select.is-invalid {
      border-color: #dc3545;
      padding-right: calc(1.5em + 0.75rem);
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right calc(0.375em + 0.1875rem) center;
      background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    }
    
    .was-validated .form-control:valid,
    .was-validated .form-control.is-valid,
    .was-validated .form-select:valid,
    .was-validated .form-select.is-valid {
      border-color: #198754;
      padding-right: calc(1.5em + 0.75rem);
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
      background-repeat: no-repeat;
      background-position: right calc(0.375em + 0.1875rem) center;
      background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
    }
    
    .invalid-feedback {
      font-size: 0.75rem;
      margin-top: 0.25rem;
      color: #dc3545;
    }
    
    /* Pricing table */
    #pricing .table {
      margin: 1.5rem auto;
      max-width: 100%;
      background: white;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
    }
    
    #pricing .table th,
    #pricing .table td {
      padding: 1rem;
      vertical-align: middle;
      border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    }
    
    #pricing .table th {
      background: #4a5f46;
      color: white;
      font-weight: 500;
      font-size: 0.85rem;
    }
    
    #pricing .table tbody tr:last-child td {
      border-bottom: none;
    }
    
    #pricing .price {
      color: #4a5f46;
      font-weight: 600;
    }
    
    #pricing .btn-enquire {
      background: linear-gradient(135deg, #4a5f46 0%, #6b955c 100%);
      color: white;
      border: none;
      border-radius: 4px;
      padding: 0.5rem 1.25rem;
      font-size: 0.9rem;
      transition: all 0.3s ease;
      display: inline-block;
      text-align: center;
    }
    
    #pricing .btn-enquire:hover {
      background: linear-gradient(135deg, #658c58 0%, #4f6849 100%);
      transform: translateY(-2px);
      box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    }
    
    @media (max-width: 767.98px) {
      #pricing .table th,
      #pricing .table td {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
      }
      
      #pricing .btn-enquire {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
      }
    }
    
    /* Floor Plans Section */
    #floorPlanTabs {
      border: none;
      background: rgba(255, 255, 255, 0.1);
      border-radius: 50px;
      padding: 5px;
      display: inline-flex;
    }
    
    #floorPlanTabs .nav-item {
      margin: 0 2px;
    }
    
    #floorPlanTabs .nav-link {
      color: #4a5f46;
      border-radius: 50px;
      padding: 0.5rem 1.5rem;
      font-weight: 500;
      transition: all 0.3s ease;
      border: 1px solid transparent;
      background: transparent;
    }
    
    #floorPlanTabs .nav-link:hover {
      color: #4a5f46;
      background: rgba(255, 255, 255, 0.2);
    }
    
    #floorPlanTabs .nav-link.active {
      background: linear-gradient(135deg, #4a5f46 0%, #6b955c 100%);
      color: white;
      border-color: transparent;
      box-shadow: 0 4px 15px rgba(46, 103, 122, 0.3);
    }
    
    #floorPlanTabs .nav-link.active:hover {
      background: linear-gradient(135deg, #658c58 0%, #4f6849 100%);
      transform: translateY(-2px);
      box-shadow: 0 6px 20px rgba(246, 208, 201, 0.4);
    }
    
    /* Amenities section */
    #amenities .card {
      height: 100%;
      border: none;
      border-radius: 10px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
    }
    
    #amenities .card {
      height: 100%;
      border: none;
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    #amenities .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    #amenities .card-img-top {
      height: 200px;
      width: 100%;
      object-fit: cover;
    }
    
    /* Special style for Enquire Now button in desktop view */
    @media (min-width: 992px) {
      .navbar .btn-accent {
        background: linear-gradient(135deg, #4a5f46 0%, #6b955c 100%);
        border: none;
        border-radius: 50px;
        padding: 12px 35px;
        margin-left: 20px;
        box-shadow: 0 4px 15px rgba(46, 103, 122, 0.3);
        color: white;
        font-weight: 600;
      }
      
      .navbar .btn-accent:hover {
        background: linear-gradient(135deg, #658c58 0%, #4f6849 100%);
        transform: translateY(-3px) scale(1.05);
        box-shadow: 0 8px 25px rgba(246, 208, 201, 0.4);
        color: #333;
      }
    }
    
    /* Responsive adjustments for amenities */
    @media (max-width: 767.98px) {
      #amenities .carousel {
        padding: 0 30px;
      }
      
      #amenities .carousel-control-prev {
        left: 0;
      }
      
      #amenities .carousel-control-next {
        right: 0;
      }
      
      #amenities .card {
        margin-bottom: 20px;
      }
    }
    
    /* Nav and accent elements */
    .nav-link:hover,
    .nav-link:focus,
    .nav-link.active,
    .accordion-button:not(.collapsed) {
      color: var(--accent);
    }
    
    /* ===== BASE STYLES ===== */
    body {
      padding-top: calc(64px + env(safe-area-inset-top));
      padding-top: 0 !important;
    }
    
    /* ===== AMENITIES SECTION ===== */
    #amenities {
      padding: 80px 0;
      background-color: #f8f9fa;
    }
    
    #amenities h2 {
      color: var(--accent);
      position: relative;
      display: inline-block;
      left: 50%;
      transform: translateX(-50%);
    }
    
    #amenities h2:after {
      content: '';
      position: absolute;
      width: 60px;
      height: 3px;
      background: var(--accent);
      bottom: -10px;
      left: 50%;
      transform: translateX(-50%);
    }
    
    #amenitiesCarousel {
      padding: 0 40px;
      position: relative;
    }
    
    #amenitiesCarousel .carousel-inner {
      padding: 20px 0;
    }
    
    #amenitiesCarousel .carousel-control-prev,
    #amenitiesCarousel .carousel-control-next {
      width: 40px;
      height: 40px;
      background: rgba(21, 50, 28, 0.8);
      border-radius: 50%;
      top: 50%;
      transform: translateY(-50%);
      opacity: 1;
      transition: all 0.3s ease;
    }
    
    #amenitiesCarousel .carousel-control-prev {
      left: 0;
    }
    
    #amenitiesCarousel .carousel-control-next {
      right: 0;
    }
    
    #amenitiesCarousel .carousel-control-prev:hover,
    #amenitiesCarousel .carousel-control-next:hover {
      background: var(--accent);
    }
    
    #amenitiesCarousel .carousel-control-prev-icon,
    #amenitiesCarousel .carousel-control-next-icon {
      width: 20px;
      height: 20px;
      background-size: 100% 100%;
    }
    
    #amenities .card {
      height: 100%;
      border: none;
      border-radius: 12px;
      overflow: hidden;
      transition: transform 0.3s ease, box-shadow 0.3s ease;
      background: white;
      box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    }
    
    #amenities .card:hover {
      transform: translateY(-5px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    }
    
    #amenities .card-img-top {
      height: 200px;
      width: 100%;
      object-fit: cover;
    }
    
    #amenities .card-body {
      padding: 1.5rem;
      text-align: center;
    }
    
    #amenities .card-title {
      color: var(--primary);
      font-weight: 600;
      margin-bottom: 0;
    }
    
    /* Responsive adjustments */
    @media (max-width: 991.98px) {
      #amenities {
        padding: 60px 0;
      }
      
      #amenitiesCarousel {
        padding: 0 30px;
      }
    }
    
    @media (max-width: 767.98px) {
      #amenities {
        padding: 40px 0;
      }
      
      #amenities h2 {
        font-size: calc(1.325rem + .9vw) !important;
        margin-bottom: 30px;
      }
      
      #amenitiesCarousel {
        padding: 0 20px;
      }
      
      #amenities .card {
        margin-bottom: 20px;
      }
      
      #amenitiesCarousel .carousel-control-prev,
      #amenitiesCarousel .carousel-control-next {
        width: 35px;
        height: 35px;
      }
    }
    
    /* ===== AMENITIES SECTION ===== */
  #amenities {
    background: #fff;
    color: var(--primary);
    overflow: hidden;
    padding: 6rem 0;
    font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', sans-serif;
    position: relative;
  }
  
  #amenities::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(27, 61, 75, 0.1), transparent);
  }
  
  #amenities .amenity-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 1px solid rgba(27, 61, 75, 0.08);
  }
  
  #amenities .amenity-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  }
  
  #amenities .amenity-caption {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    padding: 18px 15px;
    background: linear-gradient(0deg, rgb(130 142 127) 0%, rgb(75 95 70) 50%, rgba(27, 61, 75, 0) 100%);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
  }
  
  /* Pagination Styles */
  #amenities .swiper-pagination {
    position: relative;
    margin-top: 2.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
  
  #amenities .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(27, 61, 75, 0.2);
    opacity: 1;
    margin: 0 4px !important;
    transition: all 0.3s ease;
    border-radius: 10px;
    cursor: pointer;
    border: none;
    padding: 0;
    outline: none;
  }
  
  #amenities .swiper-pagination-bullet-active {
    width: 24px;
    background: var(--primary);
    transform: none;
  }
  
  #amenities .swiper-pagination-bullet:focus-visible {
    box-shadow: 0 0 0 2px var(--accent);
  }
  
  /* Smooth transitions for swiper */
  #amenities .swiper-wrapper {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  }
  
  #amenities .section-title {
    font-family: 'Playfair Display', serif;
    color: #1b3d4b;
    margin-bottom: 1rem;
  }
  
  #amenities .section-subtitle {
    color: #6c757d;
    font-size: 1.125rem;
    max-width: 800px;
    margin: 0 auto 3rem;
  }
  
  /* Amenity Card Styles */
  .amenity-card {
    position: relative;
    width: 100%;
    aspect-ratio: 1/1;
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .amenity-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
  }
  
  .amenity-card img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
  }
  
  .amenity-card:hover img {
    transform: scale(1.05);
  }
  
  .amenity-caption {
    position: absolute;
    inset-inline: 0;
    bottom: 0;
    padding: 1rem;
    font-weight: 700;
    font-size: 1.25rem;
    text-align: center;
    background: linear-gradient(0deg, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0) 100%);
    color: #fff;
    margin: 0;
  }
  
  /* Swiper Styles */
  .swiper {
    --swiper-navigation-size: 1.35rem;
    --swiper-theme-color: #000;   /* arrow glyph colour */
    padding: 1rem 0 3rem;
  }
  
  .swiper-button-prev,
  .swiper-button-next {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 50%;
    background: #fff;
    opacity: 0.9;
    box-shadow: 0 1px 4px rgba(0,0,0,0.35);
    transition: all 0.3s ease;
  }
  
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    background: var(--accent);
    opacity: 1;
  }
  
  .swiper-button-prev:after,
  .swiper-button-next:after {
    font-weight: 700;
    color: var(--bg);
  }
  
  .swiper-pagination-bullet {
    width: 0.75rem;
    height: 0.75rem;
    background: #fff;
    opacity: 0.35;
  }
  
  .swiper-pagination-bullet-active {
    background: var(--accent);
    opacity: 1;
  }
  
  /* Responsive adjustments */
  @media (max-width: 767.98px) {
    .swiper-button-prev,
    .swiper-button-next {
      display: none;
    }
    
    .swiper-pagination {
      bottom: 0;
    }
  }
  
  #amenities {
    padding: 5rem 0;
    background-color: #f8f9fa;
    position: relative;
    overflow: hidden;
  }
  
  #amenities h2 {
    color: var(--primary);
    font-size: calc(1.325rem + .9vw) !important;
    font-weight: 700;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
  }
  
  /* #amenities h2:after {
    content: '';
    position: absolute;
    width: 80px;
    height: 4px;
    background: var(--accent);
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
  } */
  
  /* Amenities Carousel */
  .amenities-carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
  }
  
  .amenities-carousel {
    display: flex;
    transition: transform 0.3s ease-in-out;
    overflow: hidden;
    margin: 0 -15px;
    width: 100%;
  }
  
  .amenity-card {
    flex: 0 0 100%;
    min-width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
    transition: transform 0.3s ease;
    flex-shrink: 0;
  }
  
  .amenity-card .card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
  }
  
  .amenity-card .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  }
  
  .amenity-card .card-img-top {
    width: 100%;
    height: 200px;
    object-fit: cover;
  }
  
  .amenity-card .card-body {
    padding: 1.5rem;
  }
  
  .amenity-card .card-title {
    color: var(--primary);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
  }
  
  .amenity-card .card-text {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
  }
  
  .carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background: white;
    border: none;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    color: var(--primary);
    font-size: 1.25rem;
  }
  
  .carousel-nav:hover {
    background: var(--primary);
    color: white;
  }
  
  .carousel-nav.prev {
    left: 0;
  }
  
  .carousel-nav.next {
    right: 0;
  }
  
  .carousel-nav:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #f0f0f0;
    color: #999;
  }
  
  .carousel-indicators {
    display: flex;
    justify-content: center;
    margin-top: 2rem;
    gap: 8px;
  }
  
  .carousel-indicators button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: none;
    background: #ddd;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
  }
  
  .carousel-indicators button.active {
    transform: scale(1.2);
  }
  
  /* Responsive Styles */
  @media (min-width: 576px) {
    .amenity-card {
      flex: 0 0 50%;
    }
  }
  
  @media (min-width: 768px) {
    .amenity-card {
      flex: 0 0 33.333%;
    }
    
    .amenities-carousel-container {
      padding: 0 60px;
    }
    
    .carousel-nav {
      width: 50px;
      height: 50px;
      font-size: 1.5rem;
    }
  }
  
  @media (min-width: 1200px) {
    .amenities-carousel-container {
      padding: 0;
    }
  }
  
  /* Carousel Container */
  #amenities .position-relative {
    position: relative;
    padding: 0 3rem;
  }
  
  /* Card Styles */
  #amenities .card {
    border: none !important;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    margin: 0 0.5rem;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
  }
  
  #amenities .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  }
  
  #amenities .card-img-top {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  #amenities .card:hover .card-img-top {
    transform: scale(1.05);
  }
  
  #amenities .card-body {
    padding: 1.5rem;
    background: #fff;
  }
  
  #amenities .card-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
  }
  
  #amenities .card-text {
    color: #666;
    margin-bottom: 0;
    font-size: 0.95rem;
    line-height: 1.6;
  }
  
  /* Carousel Controls */
  #amenitiesCarousel {
    position: relative;
    padding: 1rem 0;
    overflow: hidden;
  }
  
  #amenitiesCarousel .carousel-inner {
    padding: 1.5rem 0;
  }
  
  /* Custom Navigation Arrows */
  #amenitiesCarousel .carousel-control-prev,
  #amenitiesCarousel .carousel-control-next {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    border: 2px solid transparent;
  }
  
  #amenitiesCarousel .carousel-control-prev {
    left: -25px;
  }
  
  #amenitiesCarousel .carousel-control-next {
    right: -25px;
  }
  
  #amenitiesCarousel .carousel-control-prev-icon,
  #amenitiesCarousel .carousel-control-next-icon {
    width: 24px;
    height: 24px;
    background-color: var(--primary);
    -webkit-mask-size: 100%;
    mask-size: 100%;
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-position: center;
    mask-position: center;
    transition: all 0.3s ease;
  }
  
  #amenitiesCarousel .carousel-control-prev-icon {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M15.41 7.41L14 6l-6 6 6 6 1.41-1.41L10.83 12l4.58-4.59z'/%3E%3C/svg%3E");
  }
  
  #amenitiesCarousel .carousel-control-next-icon {
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M10 6L8.59 7.41 13.17 12l-4.58 4.59L10 18l6-6-6-6z'/%3E%3C/svg%3E");
  }
  
  #amenitiesCarousel .carousel-control-prev:hover,
  #amenitiesCarousel .carousel-control-next:hover {
    background: var(--primary);
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
  }
  
  #amenitiesCarousel .carousel-control-prev:active,
  #amenitiesCarousel .carousel-control-next:active {
    transform: translateY(-50%) scale(0.98);
  }
  
  #amenitiesCarousel .carousel-control-prev:hover .carousel-control-prev-icon,
  #amenitiesCarousel .carousel-control-next:hover .carousel-control-next-icon {
    background-color: #fff;
  }
  
  /* Carousel Indicators */
  #amenities .carousel-indicators {
    position: relative;
    margin: 2rem 0 0;
    padding: 0;
    display: flex;
    justify-content: center;
    list-style: none;
    gap: 10px;
  }
  
  #amenities .carousel-indicators button {
    width: 12px;
    height: 12px;
    padding: 0;
    margin: 0 4px;
    border: none;
    border-radius: 50%;
    background-color: #d1d5db;
    opacity: 0.5;
    transition: all 0.3s ease;
    text-indent: -9999px;
    cursor: pointer;
  }
  
  #amenities .carousel-indicators button.active {
    background-color: var(--primary);
    opacity: 1;
    transform: scale(1.2);
  }
  
  #amenities .carousel-indicators button:hover:not(.active) {
    opacity: 0.8;
    background-color: #9ca3af;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 1199.98px) {
    #amenities .card-img-top {
      height: 200px;
    }
  }
  
  @media (max-width: 991.98px) {
    .header {
      padding: 0;
      height: 60px;
      display: flex;
      align-items: center;
    }
    
    .navbar {
      padding: 0 15px;
    }
    
    .navbar-brand {
      margin: 0;
      padding: 0;
    }
    
    .header-logo {
      height: 50px;
      width: auto;
      max-width: 200px;
      padding: 0;
      transition: all 0.3s ease;
    }
    
    #amenities {
      padding: 4rem 0;
    }
    
    #amenities h2 {
      font-size: 2.25rem;
      margin-bottom: 2.5rem;
    }
    
    #amenities .card-img-top {
      height: 180px;
    }
    
    #amenities .card-body {
      padding: 1.25rem;
    }
    
    #amenities .position-relative {
      padding: 0 2rem;
    }
  }
  
  @media (max-width: 767.98px) {
    #amenities .position-relative {
      padding: 0 1.5rem;
    }
    
    #amenities .card-img-top {
      height: 220px;
    }
    
    #amenitiesCarousel .carousel-control-prev,
    #amenitiesCarousel .carousel-control-next {
      width: 36px;
      height: 36px;
    }
    
    #amenitiesCarousel .carousel-control-prev {
      left: -1rem;
    }
    
    #amenitiesCarousel .carousel-control-next {
      right: -1rem;
    }
    
    #amenities .d-none.d-lg-block {
      display: none !important;
    }
  }
  
  @media (max-width: 575.98px) {
    #amenities {
      padding: 3rem 0;
    }
    
    #amenities h2 {
      font-size: 2rem;
      margin-bottom: 2rem;
    }
    
    #amenities .card-img-top {
      height: 200px;
    }
    
    #amenities .card-body {
      padding: 1rem;
    }
    
    #amenities .card-title {
      font-size: 1.1rem;
    }
    
    #amenities .card-text {
      font-size: 0.9rem;
    }
    
    #amenities .position-relative {
      padding: 0 1rem;
    }
  }
  
  /* ===== GALLERY STYLES ===== */
  #gallery .gallery-item {
    position: relative;
    width: 100%;
    padding-top: 75%; /* 4:3 Aspect Ratio */
    overflow: hidden;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 1.5rem;
  }
  
  #gallery .gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
  }
  
  #gallery .gallery-item a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
  }
  
  #gallery .gallery-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 8px;
  }
  
  #gallery .gallery-item:hover img {
    transform: scale(1.05);
  }
  
  /* Modal Styles */
  #galleryModal .modal-dialog {
    max-width: 90%;
    max-height: 90vh;
  }
  
  #galleryModal .modal-content {
    background: transparent;
    border: none;
  }
  
  #galleryModal .btn-close {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7) !important;
    opacity: 1;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  #galleryModal .btn-close::before {
    content: '×';
    color: white;
    font-size: 1.5rem;
    line-height: 1;
    margin-top: -2px;
  }
  
  #galleryImage {
    max-height: 80vh;
    width: auto;
    max-width: 100%;
    margin: 0 auto;
    display: block;
    border-radius: 8px;
  }
  
  /* Responsive adjustments */
  @media (max-width: 767.98px) {
    #gallery .gallery-item {
      padding-top: 100%; /* 1:1 Aspect Ratio on mobile */
    }
    
    #gallery .col-6 {
      padding: 0 8px 16px;
    }
    
    #gallery .row {
      margin: 0 -8px;
    }
  }
  
  /* ===== CONTACT FORM STYLES ===== */
  #contact {
    background-color: #f9f9f9;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  
  #contact .section-title h2 {
    color: #1b3d4b;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
  }
  
  #contact .section-title p {
    color: #666;
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 3rem;
  }
  
  .contact-form {
    background: #fff;
    padding: 2.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.05);
    height: 100%;
  }
  
  .contact-form .form-control {
    height: 50px;
    border: 1px solid #e0e0e0;
    border-radius: 6px;
    padding: 0.75rem 1.25rem;
    font-size: 1rem;
    transition: all 0.3s ease;
  }
  
  .contact-form .form-control:focus {
    border-color: #c9a08c;
    box-shadow: 0 0 0 0.25rem rgba(201, 160, 140, 0.25);
  }
  
  .contact-form .form-label {
    font-weight: 500;
    color: #1b3d4b;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
  }
  
  .contact-form .btn-primary {
    background-color: #c9a08c;
    border: none;
    padding: 0.8rem 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  
  .contact-form .btn-primary:hover {
    background-color: #b58c79;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  }
  
  .contact-image {
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
  }
  
  .contact-image:hover {
    transform: translateY(-5px);
  }
  
  .contact-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
  }
  
  .contact-image:hover img {
    transform: scale(1.05);
  }
  
  /* Responsive styles */
  @media (max-width: 991.98px) {
    .contact-form {
      margin-bottom: 2rem;
    }
    
    .contact-image {
      height: 400px;
    }
  }
  
  @media (max-width: 767.98px) {
    #contact {
      padding: 0px 0;
    }
    
    #contact .section-title h2 {
      font-size: 25px;
    }
    
    .contact-form {
      padding: 1.5rem;
    }
  }
  
  @media (max-width: 575.98px) {
    .contact-form {
      padding: 1.25rem;
    }
    
    .contact-form .btn-primary {
      width: 100%;
    }
  }
  
  /* ===== SECTION STYLING ===== */
/* Apply background color to specific sections */
#residences,
#highlights {
    background-color: #fdd8af;
}

/* Ensure content has proper spacing */
section {
    padding: 4rem 0;
    position: relative;
}

/* Reset for hero section */
#home,
#hero {
    background-color: transparent !important;
    padding: 0;
}

/* ===== SCROLL SECTIONS IMAGE STYLES ===== */
/* Uniform image heights for Scroll 3-6 */
#views .imgAnimation,
#residences .imgAnimation,
#sundecks .imgAnimation,
#highlights .imgAnimation {
    width: 100%;
    height: 350px; /* Fixed height for all images */
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {
    #views .imgAnimation,
    #residences .imgAnimation,
    #sundecks .imgAnimation,
    #highlights .imgAnimation {
        height: 300px; /* Slightly smaller height for tablets */
        margin-bottom: 1.5rem;
    }
}

@media (max-width: 767.98px) {
    #views .imgAnimation,
    #residences .imgAnimation,
    #sundecks .imgAnimation,
    #highlights .imgAnimation {
        height: 250px; /* Smaller height for mobile */
    }
}

/* Hover effect for better interactivity */
#views .imgAnimation:hover,
#residences .imgAnimation:hover,
#sundecks .imgAnimation:hover,
#highlights .imgAnimation:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

/* ===== CAROUSEL STYLES ===== */
    /* Carousel controls */
    .carousel-control-prev,
    .carousel-control-next {
      width: 8%;
      background: none;
      opacity: 0.7;
      transition: opacity 0.3s ease;
    }
    
    .carousel-control-prev:focus,
    .carousel-control-next:focus,
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background: none !important;
      opacity: 1;
    }
    
    .carousel-control-next {
      right: 20px;
    }
    
    .carousel-control-prev:hover,
    .carousel-control-next:hover {
      background-color: var(--primary);
      opacity: 1;
    }
    
    /* ===== ACCORDION STYLES ===== */
    .accordion-button:not(.collapsed) {
      background-color: rgba(159, 128, 28, 0.1);
      color: var(--primary);
      box-shadow: none;
    }
    
    .accordion-button:focus {
      box-shadow: 0 0 0 0.25rem rgba(159, 128, 28, 0.25);
      border-color: var(--accent);
    }
    
    .accordion-button:not(.collapsed)::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23053b54'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    
    .accordion-button::after {
      background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%239f801c'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
    }
    
    .accordion-item {
      border: 1px solid rgba(0,0,0,0.05);
      margin-bottom: 1rem;
      border-radius: 8px !important;
      overflow: hidden;
      box-shadow: 0 2px 15px rgba(0,0,0,0.03);
    }
    
    .accordion-item:first-of-type {
      border-top-left-radius: 8px;
      border-top-right-radius: 8px;
    }
    
    .accordion-item:last-of-type {
      border-bottom-left-radius: 8px;
      border-bottom-right-radius: 8px;
    }
    
    .accordion-button {
      font-weight: 600;
      padding: 1.25rem;
    }
    
    .accordion-body {
      padding: 1.25rem;
    }
    
    /* ===== FOOTER STYLES ===== */
    footer {
      background: #f8f9fa;
      font-size: 0.875rem;
    }
    
    /* ===== MOBILE ACTION BAR ===== */
    @keyframes shine {
      0% { background-position: 200% 0; }
      100% { background-position: -200% 0; }
    }
    
    .mobile-action-bar {
      height: 54px;
      display: flex;
      align-items: center;
      padding-bottom: env(safe-area-inset-bottom);
      background: var(--primary);
      background-image: linear-gradient(120deg, var(--primary) 25%, #d5bd965c 50%, var(--primary) 75%);
      background-size: 200% 100%;
      animation: shine 8s linear infinite;
    }
    
    .mobile-action-link {
      height: 54px;
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #fff;
      font-weight: 500;
      font-size: 17px;
      text-decoration: none;
    }