/* =====================================================
   IYRA SPIRE – Custom Stylesheet
   Palette: Deep Navy #0b1d35 | Gold #c5a059 | Cream #f5f0e8 | White #ffffff
===================================================== */

/* ---- Google Fonts (local fallback system fonts) ---- */
@import url("https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Lato:wght@300;400;600;700&display=swap");

/* ---- CSS Variables ---- */
:root {
  --navy: #0b1d35;
  --navy2: #0e2444;
  --gold: #c5a059;
  --gold2: #d4b06a;
  --cream: #f5f0e8;
  --white: #ffffff;
  --dark: #ffffff;
  /* --text: #d0c8bb; */
    --text: #1e1e1e;
  --font-heading: "Playfair Display", Georgia, serif;
  --font-body: "Lato", Arial, sans-serif;
  --transition: 0.35s ease;
}
:root {
    --swiper-navigation-size: 22px;
}
/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  font-family: var(--font-body);
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  padding-top: 84px; /* Height of the navbar */
}
h1,
h2,
h3,
h4,
h5 {
  font-family: var(--font-heading);
  color: var(--white);
}
p {
  line-height: 1.8;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}

/* ---- Section Helpers ---- */
section {
  padding: 90px 0;
  position: relative;
}
.section-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--navy);
  margin-bottom: 10px;
  line-height: 1.2;
}
.section-title span {
  color: var(--gold);
}
.section-subtitle {
  font-size: 0.95rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
  display: block;
}
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold2));
  margin: 16px 0 36px;
  border-radius: 2px;
}

/* ================================================================
   NAVBAR
================================================================ */
#mainNavbar {
  background: var(--navy);
  padding: 15px 0;
  transition:
    background var(--transition),
    padding var(--transition),
    box-shadow var(--transition);
  z-index: 999;
  border-bottom: 1px solid rgba(197, 160, 89, 0.2);
}
#mainNavbar.scrolled {
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}
.navbar-brand img {
  height: 52px;
  filter: brightness(0) invert(1);
  transition: height var(--transition);
}
#mainNavbar.scrolled .navbar-brand img {
  height: 42px;
}
.navbar-nav .nav-link {
  color: rgba(255, 255, 255, 0.85) !important;
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  font-weight: 600;
  padding: 8px 16px !important;
  position: relative;
  transition: color var(--transition);
}
.navbar-nav .nav-link::after {
  content: "";
  position: absolute;
  bottom: 4px;
  left: 16px;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.navbar-nav .nav-link:hover {
  color: var(--gold) !important;
}
.navbar-nav .nav-link:hover::after {
  width: calc(100% - 32px);
}
.navbar-toggler {
  border-color: var(--gold);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(197,160,89,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-enquire {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--dark) !important;
  font-weight: 700;
  border-radius: 3px;
  font-size: 22px;
  padding: 15px 20px !important;
  letter-spacing: 1px;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.btn-enquire:hover {
  box-shadow: 0 6px 20px rgba(197, 160, 89, 0.45);
  transform: translateY(-2px);
}

/* ================================================================
   HERO / VIDEO BANNER
================================================================ */
#hero {
  position: relative;
  width: 100%;
  height: calc(100vh - 84px); /* Adjusted for navbar height */
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
#heroBg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero-container {
  z-index: 2;
  width: 100%;
}
.hero-form-wrapper {
  position: absolute;
  top:20%;
  right: 5%;
  transform: translateY(-50%);
  width: 100%;
  max-width: 420px;
  z-index: 5;
}

@media (max-width: 991px) {
  #hero {
    height: auto;
    min-height: auto;
    display: block;
    padding-top: 0;
  }
  #heroBg {
    position: relative;
    height: 450px;
  }
  .hero-overlay {
    height: 450px;
    bottom: auto;
  }
  .hero-form-wrapper {
    position: relative;
    top: auto;
    right: auto;
    transform: none;
    margin: -50px auto 60px; /* Overlap slightly for style */
    padding: 0 15px;
    max-width: 100%;
  }
  .scroll-indicator {
    display: none; /* Hide on mobile as it won't be centered in the view anymore */
  }
}

.hero-form-box {
background: rgb(255 255 255 / 75%);
  backdrop-filter: blur(15px);
  border: 1px solid rgba(197, 160, 89, 0.3);
  padding: 15px;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.hero-form-box .form-logo{
width: 120px;
margin: 0 auto;
}
.hero-form-box h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  color: var(--navy2);
}
.hero-form-box p {
  font-size: 0.95rem;
  color: var(--navy2);
  margin-bottom: 25px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(8, 15, 28, 0.55) 0%,
    rgba(8, 15, 28, 0.3) 50%,
    rgba(8, 15, 28, 0.8) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 20px;
}
.hero-tag {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 6px 20px;
  border-radius: 2px;
  margin-bottom: 20px;
  animation: fadeInDown 0.9s ease forwards;
}
.hero-title {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  font-family: var(--font-heading);
  color: var(--white);
  line-height: 1.1;
  animation: fadeInUp 1s 0.2s ease both;
}
.hero-title span {
  color: var(--gold);
}
.hero-subtitle {
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 18px auto 30px;
  animation: fadeInUp 1s 0.4s ease both;
  font-weight: 300;
  letter-spacing: 1px;
}
.hero-badges {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 36px;
  animation: fadeInUp 1s 0.55s ease both;
}
.hero-badge {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(197, 160, 89, 0.4);
  color: var(--white);
  font-size: 0.82rem;
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: 1px;
}
.hero-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeInUp 1s 0.7s ease both;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--dark);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 38px;
  border-radius: 3px;
  border: none;
  cursor: pointer;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
  display: inline-block;
}
.btn-gold:hover {
  box-shadow: 0 8px 28px rgba(197, 160, 89, 0.5);
  transform: translateY(-3px);
  color: var(--dark);
}
.btn-outline-gold {
  background: transparent;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 13px 36px;
  border-radius: 3px;
  border: 2px solid var(--gold);
  cursor: pointer;
  transition:
    background var(--transition),
    color var(--transition),
    transform var(--transition);
  display: inline-block;
}
.btn-outline-gold:hover {
  background: var(--gold);
  color: var(--dark);
  transform: translateY(-3px);
}
.scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  animation: bounce 2s infinite;
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-indicator svg {
  width: 24px;
}

/* ================================================================
   OVERVIEW
================================================================ */
#overview {
  background: var(--dark);
}
.overview-img-wrap {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}
.overview-img-wrap img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.overview-img-wrap:hover img {
  transform: scale(1.04);
}
.overview-img-accent {
  position: absolute;
  top: -16px;
  right: -16px;
  width: 120px;
  height: 120px;
  border: 3px solid var(--gold);
  border-radius: 2px;
  z-index: -1;
}
.overview-text p {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.9;
}
.overview-stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 36px;
}
.stat-box {
  flex: 1;
  min-width: 130px;
  background: rgba(197, 160, 89, 0.08);
  border: 1px solid rgba(197, 160, 89, 0.25);
  border-radius: 4px;
  padding: 22px;
  text-align: center;
  transition:
    background var(--transition),
    transform var(--transition);
}
.stat-box:hover {
  background: rgba(197, 160, 89, 0.16);
  transform: translateY(-4px);
}
.stat-box .stat-num {
  font-family: var(--font-heading);
  font-size: 2.4rem;
  color: var(--gold);
  display: block;
}
.stat-box .stat-label {
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}

/* ================================================================
   PROJECT HIGHLIGHTS
================================================================ */
#highlights {
  background: url('../images/IYRA.jpg') no-repeat center center/cover;
  background-attachment: fixed; /* Parallax Effect */
  position: relative;
  padding: 100px 0;
  color: var(--white);
}
#highlights::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 28, 0.75);
  z-index: 1;
}
#highlights .container {
  position: relative;
  z-index: 2;
}

.highlight-card {
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(5px);
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 8px;
  padding: 40px 30px;
  text-align: center;
  height: 100%;
  transition: all 0.35s ease;
  position: relative;
  overflow: hidden;
}
.highlight-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}
.highlight-card:hover {
  background: rgba(197, 160, 89, 0.12);
  border-color: var(--gold);
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4);
}
.highlight-card:hover::before {
  transform: scaleX(1);
}
.highlight-icon {
  width: 120px;
  height: 120px;
  background: rgba(197, 160, 89, 0.1);
  border: 2px solid rgba(197, 160, 89, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  font-size: 2rem;
  transition: all 0.3s ease;
}
/* .highlight-card:hover .highlight-icon {
  background: var(--gold);
  border-color: var(--gold);
  transform: scale(1.1);
  color: var(--dark);
} */
.highlight-card h5 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  color: var(--white);
}
.highlight-card p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

@media (max-width: 991px) {
  #highlights {
    background-attachment: scroll; /* Disable parallax on mobile for performance */
    padding: 80px 0;
  }
  .location-section {
    background-attachment: scroll; 
  }
}

/* ================================================================
   STATUS BANNER
================================================================ */
#status-bar {
  background: linear-gradient(135deg, var(--navy), #0a2240);
  border-top: 1px solid rgba(197, 160, 89, 0.25);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
  padding: 40px 0;
}
.status-item {
  display: flex;
  align-items: center;
  gap: 16px;
  justify-content: center;
}
.status-dot {
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 12px var(--gold);
  animation: pulse 2s infinite;
  flex-shrink: 0;
}
.status-label {
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #fff;
  display: block;
}
.status-value {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--gold);
}

/* ================================================================
   AMENITIES
================================================================ */
#amenities {
  background: var(--dark);
}
.amenity-tabs .nav-pills {
  gap: 10px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.amenity-tabs .nav-link {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 160, 89, 0.2);
  color: var(--text);
  border-radius: 3px;
  font-size: 0.82rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 10px 22px;
  transition: all 0.3s;
}
.amenity-tabs .nav-link.active,
.amenity-tabs .nav-link:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold2));
  color: var(--dark);
  border-color: var(--gold);
}
.amenity-img-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  height: 260px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}
.amenity-img-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.amenity-img-card:hover img {
  transform: scale(1.06);
}
.amenity-img-card .amenity-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(transparent, rgba(8, 15, 28, 0.9));
  color: var(--white);
  font-size: 0.88rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 30px 16px 14px;
  font-weight: 600;
}
.amenity-list-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 16px;
  margin-top: 50px;
}
.amenity-list-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(197, 160, 89, 0.15);
  border-radius: 4px;
  padding: 14px 18px;
  transition: all 0.3s;
}
.amenity-list-item:hover {
  background: rgba(197, 160, 89, 0.1);
  border-color: rgba(197, 160, 89, 0.4);
  transform: translateX(4px);
}
.amenity-list-item .am-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;f
}
.amenity-list-item span {
  font-size: 0.9rem;
  color: var(--text);
}

/* ================================================================
   AMENITY SWIPER
================================================================ */
.amenitySwiper {
  width: 100%;
  padding-bottom: 50px; /* room for pagination */
  padding-left: 4px;
  padding-right: 4px;
}
.amenity-slide {
  height: auto;
}
.amenity-slide .amenity-img-card {
  height: 260px;
}
/* Gold-coloured nav arrows */
.amenity-swiper-prev,
.amenity-swiper-next {
  color: var(--gold) !important;
}
/* Gold pagination bullets */
.amenity-swiper-pagination .swiper-pagination-bullet {
  background: var(--gold);
  opacity: 0.5;
}
.amenity-swiper-pagination .swiper-pagination-bullet-active {
  opacity: 1;
  background: var(--gold);
}
@media (max-width: 767px) {
  .hero-form-box {
    background: rgb(255 255 255);
  }
  .status-value {
font-size: 16px;
margin-bottom: 20px;
}
  .btn-enquire {
  font-size: 18px;
    padding: 12px 15px !important;
  }
  .amenity-slide .amenity-img-card {
    height: 220px;
  }

    .bottom_button {
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        margin: 0 auto;
        z-index: 99;
        display: block;
        width: 100%;
        /* background: linear-gradient(90deg, #00392e, #005b4a 100%); */
        border-top: 1px solid #fff;
        /* background: linear-gradient(90deg, #1A4780, #1A4780 100%); */
     background: linear-gradient(135deg, var(--gold), var(--gold2));
    }

    .formButton {
        padding: 10px 10px;
        width: 50%;
        float: left;
        padding: 10px 30px;
        text-align: center;
        display: block;
        border-right: 1px solid #000;
    }
      .formButton i{
      margin-right: 3px;
    }

    .formButton a {

        width: auto;
        color: #fff;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 14px;
    }

    .contactButtom {
        width: 50%;
        float: right;
        padding: 10px 30px;
        text-align: center;
        display: block;
    }
    .contactButtom i{
      margin-right: 3px;
    }

    .contactButtom a {

        width: auto;
        color: #fff;
        text-transform: uppercase;
        font-weight: 700;
        font-size: 14px;
    }

}


.floorplan-section {
  padding: 80px 0;
  background: var(--dark);
}
.plan-tabs {
  border-bottom: none;
}
.plan-tab-btn {
  color: #1e1e1e !important;
  background: transparent !important;
  border: 1px solid var(--gold) !important;
  border-radius: 0 !important;
  transition: all var(--transition);
}
.plan-tab-btn:hover {
  background-color: rgba(197, 160, 89, 0.2) !important;
}
.plan-tab-btn.active {
  background-color: var(--gold) !important;
  color: var(--dark) !important;
  font-weight: 600;
}
.plan-tab-item-left {
  margin-right: 10px;
}
.plan-img {
  border: 2px solid var(--gold);
}

/* ================================================================
   GALLERY
================================================================ */
#gallery {
  background: var(--navy2);
}
.gallerySwiper {
  width: 100%;
  padding-bottom: 50px; /* Space for pagination */
}
.gallerySwiper .swiper-slide {
  width: 320px;
  height: 400px;
}
@media (max-width: 991px) {
  .gallerySwiper .swiper-slide {
    width: 280px;
    height: 350px;
  }
}
@media (max-width: 575px) {
  .gallerySwiper .swiper-slide {
    width: 260px;
    height: 320px;
  }
}
.gallerySwiper .swiper-pagination-bullet {
  background: var(--gold);
}
.gallery-item {
  display: block;
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  height: 100%;
  width: 100%;
  cursor: pointer;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img {
  transform: scale(1.08);
}
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 28, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
  color: var(--gold);
  font-size: 2rem;
}
.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ================================================================
   LOCATION
================================================================ */
.location-section {
  background: url('../images/location-bg.jpg') no-repeat center center/cover;
  background-attachment: fixed;
  position: relative;
}
.location-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(8, 15, 28, 0.85);
  z-index: 1;
}
.location-section .container {
  position: relative;
  z-index: 2;
}
.text-muted-custom {
  color: var(--text);
}
.location-img {
  border: 2px solid var(--gold);
  border-radius: 4px;
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
  transition: transform var(--transition);
}
.location-img:hover {
  transform: scale(1.02);
}
.location-heading {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.location-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.location-list li {
  margin-bottom: 8px;
  color:#fff;
  font-size: 0.95rem;
}
.location-dot {
  color: var(--gold);
  margin-right: 8px;
}
.location-desc {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--text);
}

/* ================================================================
   ENQUIRY FORM MODAL
================================================================ */
.enquiry-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.enquiry-modal.active {
  display: flex;
}
.enquiry-box {
  background: var(--navy2);
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 8px;
  padding: 44px;
  max-width: 520px;
  width: 100%;
  position: relative;
}
.enquiry-box h3 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}
.enquiry-box p {
  font-size: 0.9rem;
  color: var(--text);
  margin-bottom: 28px;
}
.form-control-dark {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(197, 160, 89, 0.25);
  color: var(--white);
  border-radius: 4px;
  padding: 13px 16px;
  width: 100%;
  margin-bottom: 16px;
  font-size: 0.92rem;
  transition: border-color 0.3s;
  outline: none;
}
.form-control-dark:focus {
  border-color: var(--gold);
}
.form-control-dark::placeholder {
  color: rgba(255, 255, 255, 0.4);
}
.modal-close-btn {
  position: absolute;
  top: 16px;
  right: 20px;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
}

/* ================================================================
   FOOTER
================================================================ */
footer {
  background: var(--dark);
  border-top: 1px solid rgba(197, 160, 89, 0.2);
  padding: 20px 0 ;
}

.disclaimer-text{
  color: #1e1e1e;
font-size: 12px;
line-height: 20px;
text-align: justify;
}
.rera-text,
.copyright-text,
.copyright-text a,
.marketed-text,
.marketed-text a{
   color: #1e1e1e; 
}
.footer-logo img {
  height: 48px;
  filter: brightness(0) invert(1);
  margin-bottom: 16px;
}
.footer-text {
  font-size: 0.88rem;
  color: var(--text);
  line-height: 1.8;
}
.footer-heading {
  font-size: 0.8rem;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
  font-family: var(--font-body);
}
.footer-links {
  list-style: none;
  padding: 0;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links a {
  color: var(--text);
  font-size: 0.9rem;
  transition: color 0.3s;
}
.footer-links a:hover {
  color: var(--gold);
  padding-left: 4px;
}
.footer-bottom {
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.35);
}
.footer-bottom span {
  color: var(--gold);
}

/* ================================================================
   KEYFRAME ANIMATIONS
================================================================ */
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes bounce {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(10px);
  }
}
@keyframes pulse {
  0%,
  100% {
    box-shadow: 0 0 8px var(--gold);
  }
  50% {
    box-shadow:
      0 0 22px var(--gold),
      0 0 6px var(--gold2);
  }
}
@keyframes shimmer {
  0% {
    background-position: -300px 0;
  }
  100% {
    background-position: 300px 0;
  }
}

/* ================================================================
   RESPONSIVE OVERRIDES
================================================================ */
@media (max-width: 991px) {
  .navbar-expand-lg>.container, .navbar-expand-lg>.container-fluid {
         padding-right: 20px; 
         padding-left: 20px; 
    }
  .navbar-collapse {
    background: var(--dark);
    padding: 16px;
    border-radius: 0 0 8px 8px;
  }

  .overview-img-wrap img {
    height: 360px;
  }
}
@media (max-width: 575px) {
  section {
    padding: 60px 0;
  }
  .hero-title {
    font-size: 2.6rem;
  }
  .enquiry-box {
    padding: 28px 22px;
  }
}

.swiper-button-next:after, .swiper-button-prev:after {
    background: #fff;
    padding: 10px;
}
