@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;1,400&display=swap');

:root {
  --color-primary: #4A0E17;
  /* Dark Royal Maroon */
  --color-primary-light: #6F222F;
  --color-accent: #c0a172;
  /* Gold/Beige */
  --color-accent-hover: #d2b385;
  --color-bg: #f7f4ec;
  /* Cream off-white */
  --color-bg-alt: #ffffff;
  --color-text-dark: #222222;
  --color-text-muted: #555555;
  --color-border: #e2dcd0;
  --color-white: #ffffff;

  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Inter', sans-serif;

  --transition: all 0.3s ease;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--color-bg);
  color: var(--color-text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: var(--font-sans);
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 2rem;
}

@media (min-width: 1200px) {
  .container {
    padding: 0 6rem;
  }
}

@media (min-width: 1400px) {
  .container {
    padding: 0 8rem;
    max-width: 1440px;
  }
}


/* Utilities */
.text-center {
  text-align: center;
}

.text-accent {
  color: var(--color-accent);
}

.text-primary {
  color: var(--color-primary);
}

.bg-primary {
  background-color: var(--color-primary);
}

.bg-white {
  background-color: var(--color-white);
}

.italic {
  font-style: italic;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  border-radius: 4px;
  font-size: 0.875rem;
  font-weight: 500;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  text-transform: uppercase;
  letter-spacing: 1px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.2);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  z-index: -1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.btn:hover::before {
  transform: scaleX(1);
  transform-origin: left;
}

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

.btn-primary:hover {
  background-color: var(--color-primary-light);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid #ffffff;
  color: #ffffff;
}

.btn-outline:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.section-padding {
  padding: 6rem 0;
}

.section-title {
  font-size: 3rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 0.5rem;
  display: block;
}

.hero-content .section-subtitle {
  color: #ffffff;
}

/* Fancy pattern for background overlay */
.bg-pattern {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c0a172' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

/* Scroll Reveal Animations */
.reveal-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-up.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-left.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.reveal-right.visible {
  opacity: 1;
  transform: translateX(0);
}

.reveal-fade {
  opacity: 0;
  transition: opacity 1s ease-in-out;
}

.reveal-fade.visible {
  opacity: 1;
}

.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 1.75rem 0;
  /* Taller navbar: ~84px-90px height unscrolled */
  z-index: 100;
  transition: all 0.3s ease;
  background-color: rgba(255, 255, 255, 0.12);
  /* Subtle separation overlay */
  backdrop-filter: blur(14px);
  /* Glass blur unscrolled */
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  /* Light glass border */
}

.navbar.scrolled {
  background-color: rgba(255, 255, 255, 0.92);
  /* 92% opaque white */
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.05);
  /* Soft shadow */
  padding: 0.85rem 0;
  /* Shrinks slightly on scroll to ~70px */
}

.navbar-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 0 1.5rem;
  margin: 0 auto;
}

@media (min-width: 992px) {
  .navbar-container {
    padding: 0 2rem;
  }
}


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

.nav-logo-img {
  height: 70px;
  width: auto;
  border-radius: 4px;
  transition: var(--transition);
  margin-top: -6px;
  /* Offset alignment shift due to "Project By" visual center */
  margin-left: -12px;
  /* Visual left offset alignment */
}

.navbar.scrolled .nav-logo-img {
  height: 52px;
  margin-top: -4px;
  /* Maintain offset alignment on scroll */
  margin-left: -8px;
  /* Maintain visual left offset on scroll */
}


.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 2px;
  color: var(--color-primary);
  line-height: 1.2;
}

.logo-subtitle {
  font-size: 0.6rem;
  letter-spacing: 3px;
  color: var(--color-accent);
  text-transform: uppercase;
}

.navbar-links {
  display: none;
}

@media (min-width: 992px) {
  .navbar-links {
    display: flex;
    gap: 2.25rem;
    /* Reduced gap: 36px spacing */
  }

  .navbar:not(.scrolled) .navbar-links li.hide-on-top {
    display: none;
  }
}

.navbar-links a {
  font-size: 15px;
  /* Premium larger 15px font */
  text-transform: uppercase;
  letter-spacing: 0.08em;
  /* 0.08em letter spacing */
  font-weight: 500;
  /* Bolder font weight */
  color: var(--color-text-dark);
  transition: color 0.3s ease;
  position: relative;
  padding: 0.4rem 0;
}

.navbar-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: width 250ms ease;
  /* Underline hover animation 250ms ease */
}

.navbar-links a:hover {
  color: var(--color-accent);
}

.navbar-links a:hover::after,
.navbar-links a.active::after {
  width: 100%;
  /* active gold underline indicator & hover width 100% */
}

.navbar-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-btn {
  display: none;
}

@media (min-width: 768px) {
  .nav-btn {
    display: inline-flex;
    padding: 0.85rem 1.65rem !important;
    /* Larger premium padding */
    font-size: 0.8rem !important;
    height: 52px;
    /* Taller 52px height */
    border-radius: 12px !important;
    /* 12px border radius */
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
  }

  /* Primary Button (Book Visit) styling */
  .navbar-actions .btn-primary {
    background-color: var(--color-primary);
    /* Burgundy background */
    color: var(--color-white);
    border: 1px solid var(--color-primary);
    box-shadow: 0 4px 12px rgba(74, 14, 23, 0.2);
    /* Slight shadow */
  }

  .navbar-actions .btn-primary:hover {
    background-color: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(74, 14, 23, 0.3);
  }

  /* Secondary Button (Brochure) styling */
  .navbar-actions .btn-outline {
    border: 1px solid var(--color-primary);
    /* Burgundy border */
    color: var(--color-primary);
    /* Burgundy text */
    background-color: transparent;
    /* Transparent background */
  }

  .navbar-actions .btn-outline:hover {
    background-color: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
  }

  /* Contrast adjustments for unscrolled transparent state over dark rendering image background */
  .navbar:not(.scrolled) .navbar-actions .btn-outline {
    border-color: rgba(8, 8, 8, 0.7);
    color: #050505;
  }

  .navbar:not(.scrolled) .navbar-actions .btn-outline:hover {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
    color: #ffffff;
  }
}


.menu-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--color-border);
  color: var(--color-primary);
  transition: var(--transition);
}

.menu-btn:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
}

@media (min-width: 992px) {
  .menu-btn {
    display: none;
  }
}

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('../assests/SCUBEBANNER.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-content {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.hero-main {
  text-align: center;
}

.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Center-aligned Download Brochure button in minimal hero */
#btn-download-brochure {
  padding: 1.25rem 2.5rem;
  font-size: 1rem;
  font-weight: 600;
  background-color: var(--color-primary);
  color: var(--color-white);
  border: 1px solid var(--color-primary);
  border-radius: 4px;
  box-shadow: 0 10px 30px rgba(74, 14, 23, 0.3);
  transition: all 0.3s ease;
}

#btn-download-brochure:hover {
  background-color: var(--color-primary-light);
  border-color: var(--color-primary-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 40px rgba(74, 14, 23, 0.4);
}


@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 3rem;
  }

  .hero-stats {
    flex-direction: row;
    justify-content: space-between;
    gap: 1.5rem;
    padding: 1.25rem 0;
  }

  .hero-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
  }

  .scroll-indicator {
    align-self: center;
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.about-video-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.play-button-large {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.play-button-large:hover {
  background: var(--color-primary);
  color: var(--color-white);
  transform: translate(-50%, -50%) scale(1.1);
}

.video-label {
  position: absolute;
  bottom: 2rem;
  left: 2rem;
  background: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(4px);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.about-desc {
  font-size: 1.125rem;
  color: var(--color-text-muted);
  margin-bottom: 2.5rem;
  max-width: 500px;
}

.about-stats-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
}

@media (min-width: 576px) {
  .about-stats-grid {
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  }
}

.about-stat {
  display: flex;
  flex-direction: column;
}

.stat-num {
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-text-dark);
}

.stat-text {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

/* Feature Strip Styling */
.feature-strip {
  background-color: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 2rem 0;
  position: relative;
  z-index: 5;
}

.feature-strip-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.feature-strip-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--color-primary);
}

.feature-strip-item i {
  color: var(--color-accent);
  width: 20px;
  height: 20px;
}

.timeline {
  position: relative;
  padding-top: 1.5rem;
}

.timeline-line {
  position: absolute;
  top: 1.8rem;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--color-border);
  z-index: 1;
}

.timeline-points {
  display: flex;
  justify-content: space-between;
  position: relative;
  z-index: 2;
}

.timeline-point {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 80px;
}

.point-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--color-border);
  margin-bottom: 0.5rem;
  transition: all 0.3s ease;
  border: 2px solid var(--color-white);
}

.timeline-point.active .point-dot {
  background-color: var(--color-accent);
  box-shadow: 0 0 0 4px rgba(192, 161, 114, 0.2);
}

.point-title {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.25rem;
  line-height: 1.2;
}

.point-date {
  font-size: 0.65rem;
  color: var(--color-text-muted);
}

/* Mobile/Tablet: Keep scrollable horizontal layout */
@media (max-width: 991px) {
  .amenities-scroll-container {
    overflow-x: auto;
    padding-bottom: 2rem;
    padding-top: 1.5rem;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }

  .amenities-scroll-container::-webkit-scrollbar {
    display: none;
  }

  .amenities-grid {
    display: flex;
    gap: 1.5rem;
    min-width: max-content;
    align-items: stretch;
  }
}

/* Desktop: Wrap items, no scroll */
@media (min-width: 992px) {
  .amenities-scroll-container {
    overflow: visible;
    padding-bottom: 0;
    padding-top: 1.5rem;
  }

  .amenities-grid {
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    min-width: 100%;
    gap: 1.5rem;
  }

  .amenity-item {
    flex: 0 1 90px;
    min-width: 0;
  }

  .amenity-icon-wrapper {
    width: 60px;
    height: 60px;
  }

  .amenity-name {
    font-size: 0.7rem;
    white-space: normal;
  }
}

.amenity-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  width: 100px;
  gap: 1rem;
}

.amenity-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.9);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: var(--color-text-dark);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}

.amenity-item:hover .amenity-icon-wrapper {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
  transform: translateY(-8px) scale(1.05);
  box-shadow: 0 10px 25px rgba(74, 14, 23, 0.2);
}

.amenity-name {
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.2;
}

.amenity-explore {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-radius: 8px;
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  min-width: 140px;
  transition: all 0.3s ease;
  cursor: pointer;
}

.amenity-explore:hover {
  background-color: var(--color-primary-light);
  transform: translateY(-5px);
}

.amenity-explore span {
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.3;
}

.mt-2 {
  margin-top: 0.5rem;
}

.gallery-header {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 2rem;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .gallery-header {
    flex-direction: row;
    align-items: flex-end;
  }
}

.gallery-tabs {
  display: flex;
  gap: 0.5rem;
  background-color: var(--color-white);
  padding: 0.5rem;
  border-radius: 30px;
  border: 1px solid var(--color-border);
}

.tab-btn {
  padding: 0.5rem 1.5rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
}

.tab-btn:hover {
  color: var(--color-primary);
}

.tab-btn.active {
  background-color: var(--color-primary);
  color: var(--color-white);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, 250px);
  }

  .gallery-item.large {
    grid-column: span 1;
    grid-row: span 2;
  }
}

.gallery-item {
  border-radius: 12px;
  overflow: hidden;
  position: relative;
  height: 250px;
}

@media (min-width: 768px) {
  .gallery-item.large {
    height: 100%;
  }
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.mb-0 {
  margin-bottom: 0;
}

.mt-4 {
  margin-top: 2rem;
}

.video-header {
  margin-bottom: 2rem;
  max-width: 600px;
}

.video-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

@media (min-width: 768px) {
  .video-container {
    height: 600px;
  }
}

.video-thumbnail {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.video-container:hover .video-thumbnail {
  transform: scale(1.03);
}

.video-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
}

.play-button-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
}

.play-button-container:hover .play-button-large {
  background: var(--color-primary);
  color: var(--color-white);
  transform: scale(1.1);
}

.play-text {
  color: var(--color-white);
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.85rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.features-section {
  background-color: var(--color-bg);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1.5rem;
  margin-top: 2rem;
}

@media (min-width: 576px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  .features-grid {
    grid-template-columns: repeat(6, 1fr);
  }
}

.feature-card {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 1.5rem;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.03);
}

.feature-card:hover {
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  transform: translateY(-8px);
  border-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.9);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: var(--color-bg);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-title {
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-text-dark);
  margin-bottom: 0.5rem;
}

.feature-desc {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.developer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
}

@media (min-width: 992px) {
  .developer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.developer-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
  margin-bottom: 2rem;
  max-width: 500px;
}

.founder-section {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.signature {
  font-family: 'Brush Script MT', cursive, var(--font-serif);
  font-size: 2rem;
  color: var(--color-text-dark);
}

.founder-title {
  font-size: 0.8rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.developer-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-bottom: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--color-border);
}

@media (min-width: 576px) {
  .developer-stats {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dev-stat {
  display: flex;
  flex-direction: column;
}

.dev-stat-num {
  font-size: 1.5rem;
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--color-text-dark);
  line-height: 1.2;
  margin-bottom: 0.5rem;
}

.dev-stat-text {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.developer-badges {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

@media (min-width: 576px) {
  .developer-badges {
    grid-template-columns: repeat(4, 1fr);
  }
}

.dev-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.dev-badge span {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 1px;
}

.developer-image-wrapper {
  position: relative;
  height: 600px;
  border-radius: 12px;
  overflow: hidden;
}

.developer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center left;
}

.developer-img-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(74, 14, 23, 0.9) 0%, rgba(74, 14, 23, 0.4) 50%, rgba(74, 14, 23, 0.1) 100%);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
}

.overlay-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  letter-spacing: 4px;
  margin-top: 1rem;
  margin-bottom: 0.5rem;
}

.overlay-subtitle {
  font-size: 0.8rem;
  letter-spacing: 4px;
  color: var(--color-accent);
}

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
}

@media (min-width: 992px) {
  .location-grid {
    grid-template-columns: 1fr 1.5fr 1fr;
    align-items: stretch;
  }

  .location-grid>div {
    display: flex;
    flex-direction: column;
    height: 100%;
  }

  .location-map-col {
    height: 100%;
  }

  .location-card-col {
    height: 100%;
  }

  .map-container {
    min-height: 450px;
  }
}

.location-list-col {
  padding-right: 1rem;
}

.mb-8 {
  margin-bottom: 2rem;
}

.connectivity-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.conn-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.conn-icon {
  width: 40px;
  height: 40px;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.conn-text {
  display: flex;
  flex-direction: column;
}

.conn-name {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.conn-time {
  font-size: 0.7rem;
  color: var(--color-text-muted);
}

.map-container {
  position: relative;
  height: 100%;
  min-height: 350px;
  border-radius: 12px;
  overflow: hidden;
}

.map-container iframe {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
}

.map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(10%) contrast(110%);
}

.map-pin-overlay {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.pin-icon {
  animation: bounce 2s infinite;
}

.pin-label {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.75rem;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.location-card-col {
  display: flex;
}

.location-card {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: 3rem 2rem;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
}

.loc-card-title {
  font-family: var(--font-serif);
  font-size: 2rem;
  margin-bottom: 1rem;
  color: var(--color-white);
}

.loc-card-desc {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.testimonials-carousel-wrapper {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

@media (min-width: 768px) {
  .testimonials-carousel-wrapper .carousel-nav {
    display: none;
  }

  #testimonial-dots {
    display: none;
  }
}

.carousel-nav {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background-color: var(--color-white);
  border: 1px solid var(--color-border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text-muted);
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.carousel-nav:hover {
  background-color: var(--color-primary);
  color: var(--color-white);
  border-color: var(--color-primary);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 2rem;
  width: 100%;
}

@media (min-width: 768px) {
  .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.testimonial-card {
  display: flex;
  align-items: flex-start;
  gap: 1.5rem;
  padding: 1rem;
}

.test-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.test-content {
  display: flex;
  flex-direction: column;
}

.test-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.25rem;
}

.test-name {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--color-text-dark);
}

.test-stars {
  display: flex;
  gap: 2px;
}

.test-role {
  font-size: 0.75rem;
  color: var(--color-text-muted);
  margin-bottom: 0.75rem;
}

.test-review {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  line-height: 1.5;
  font-style: italic;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 3rem;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--color-border);
  transition: all 0.3s ease;
  cursor: pointer;
}

.dot.active {
  background-color: var(--color-primary);
  width: 24px;
  border-radius: 4px;
}

.footer-section {
  background-color: var(--color-bg);
}

.contact-section {
  background-color: #F8F5EF;
  padding: 4.5rem 0;
}

.contact-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 1.5rem 0;
}

@media (min-width: 992px) {
  .contact-card {
    grid-template-columns: 1.15fr 1fr;
    gap: 4.5rem;
    align-items: start;
  }
}

.contact-info-col {
  display: flex;
  flex-direction: column;
}

.contact-benefits {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.5rem;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.benefit-item p {
  font-size: 1rem;
  line-height: 1.4;
  color: var(--color-text-dark);
  font-weight: 500;
}

.contact-details {
  border-top: 1px solid var(--color-border);
  padding-top: 2rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.contact-details-heading {
  font-family: var(--font-serif);
  font-size: 1.25rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.contact-detail-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.95rem;
  color: var(--color-text-dark);
}

.contact-detail-item i {
  color: var(--color-accent);
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}

.contact-detail-item a {
  color: inherit;
  transition: color 0.3s ease;
}

.contact-detail-item a:hover {
  color: var(--color-primary);
}

.contact-form-col {
  background: var(--color-white);
  padding: 3rem 2.5rem;
  border-radius: 12px;
  border: 1px solid var(--color-border);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.06);
}

/* Sales Advisor Card inside form */
.sales-advisor-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background-color: #F8F5EF;
  padding: 0.75rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.75rem;
  border: 1px solid var(--color-border);
}

.advisor-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
}

.advisor-info {
  display: flex;
  flex-direction: column;
}

.advisor-name {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-primary);
  line-height: 1.3;
}

.advisor-title {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.advisor-status {
  margin-left: auto;
  font-size: 0.75rem;
  font-weight: 500;
  color: #2e7d32;
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.status-dot {
  width: 6px;
  height: 6px;
  background-color: #2e7d32;
  border-radius: 50%;
  display: inline-block;
  animation: pulse 1.8s infinite;
}

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(46, 125, 50, 0.7);
  }

  70% {
    box-shadow: 0 0 0 6px rgba(46, 125, 50, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(46, 125, 50, 0);
  }
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.contact-form-subtitle {
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  line-height: 1.4;
}

.form-group-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

@media (min-width: 576px) {
  .form-group-row {
    grid-template-columns: repeat(2, 1fr);
  }
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  font-weight: 500;
  color: var(--color-text-muted);
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  border: 1px solid var(--color-border);
  border-radius: 4px;
  font-family: var(--font-sans);
  font-size: 0.85rem;
  background-color: rgba(247, 244, 236, 0.5);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  transition: all 0.3s ease;
}

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

.form-group.full-width {
  margin-bottom: 1.25rem;
}

.social-proof-line {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  margin-top: 0.25rem;
}

.social-proof-line i {
  width: 12px;
  height: 12px;
  fill: var(--color-accent);
  color: var(--color-accent);
}

.form-actions {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.full-width-btn {
  width: 100%;
  padding: 0.875rem 1.5rem;
}

.callback-text-link {
  text-align: center;
  font-size: 0.85rem;
  color: var(--color-text-muted);
  margin-top: 1.25rem;
}

.callback-text-link a {
  color: var(--color-accent);
  font-weight: 600;
  text-decoration: underline;
  transition: color 0.3s ease;
}

.callback-text-link a:hover {
  color: var(--color-primary);
}

.contact-success-col {
  display: flex;
  align-items: center;
  justify-content: center;
}

.success-box {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px dashed var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
}

.success-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--color-primary);
  margin-bottom: 0.5rem;
}

.success-text {
  font-size: 0.85rem;
  color: var(--color-text-muted);
}

.footer-bottom {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  padding: 4rem 0 2rem;
}

@media (min-width: 768px) {
  .footer-bottom {
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
  }
}

.footer-logo-text {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
}

.footer-desc {
  font-size: 0.8rem;
  color: var(--color-text-muted);
}

.footer-heading {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 2px;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.85rem;
  color: var(--color-text-dark);
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--color-accent);
}

.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.85rem;
  color: var(--color-text-dark);
}

.footer-contact-list li svg {
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}

/* Mobile Navigation Additions */
@media (max-width: 991px) {
  .navbar-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: rgba(247, 244, 236, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 2rem;
    gap: 1.5rem;
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 99;
    align-items: center;
  }
}

/* Floor Plans and Specifications Additions */
.floorplan-cards-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
  /* Spacing between cards - Issue 13 */
  justify-content: center;
  align-items: stretch;
  /* Stretch cards to the same height - Issue 1 */
}

@media (min-width: 1200px) {
  .floorplan-cards-container {
    grid-template-columns: repeat(3, 1fr);
  }
}

.floor-plan-card {
  max-width: 400px;
  /* Limit card width - Issue 6 */
  width: 100%;
  margin: 0 auto;
  background: var(--color-white);
  border-radius: 12px;
  padding: 2rem;
  border: 1px solid #d6b16c;
  /* Increased border contrast - Issue 5 */
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.04);
  /* Subtle shadow - Issue 5 */
  display: flex;
  flex-direction: column;
  height: 100%;
  /* Stretch cards to the same height - Issue 1 */
  box-sizing: border-box;
  transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  /* Lift feedback - Issue 12 */
}

.floor-plan-card:hover {
  transform: translateY(-4px);
  /* Lift 4px - Issue 12 */
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08) !important;
  /* Shadow increases - Issue 12 */
  border-color: var(--color-primary) !important;
  /* Border darkens - Issue 12 */
}

.floor-plan-image-container {
  height: 320px;
  /* Fixed height for image container - Issue 1 & 2 */
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(74, 14, 23, 0.03);
  /* Unified image bg - Issue 7 */
  border-radius: 8px;
  padding: 20px;
  /* Internal padding to avoid cropping - Issue 11 */
  margin-bottom: 24px;
  /* 24px spacing from title/description - Issue 4 */
  box-sizing: border-box;
}

.floor-plan-image-container img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  /* Prevent stretching/cropping - Issue 2 */
}

.floor-card-title {
  font-size: 32px;
  /* Floor Title 32px - Issue 8 */
  font-weight: 600;
  /* Font Weight 600 - Issue 8 */
  color: var(--color-primary);
  font-family: var(--font-serif);
  text-align: center;
  margin-bottom: 0.5rem;
}

.floor-card-desc {
  font-size: 17px;
  /* Description 17px - Issue 8 */
  font-weight: 400;
  /* Font Weight 400 - Issue 8 */
  color: #333;
  text-align: center;
  margin-bottom: 1.5rem;
  line-height: 1.4;
}

.floor-plan-divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-border);
  margin-bottom: 1.5rem;
  /* Separation - Issue 9 */
}

.floor-plan-rooms {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem 1.25rem;
  text-align: left;
}

.floor-plan-rooms li {
  display: flex;
  align-items: center;
  font-size: 15px;
  /* Measurements font size 15px */
  color: #444;
  /* Darker gray for readability */
  font-weight: 500;
  line-height: 1.3;
}

.floor-plan-rooms li::before {
  content: "•";
  color: var(--color-accent);
  font-weight: bold;
  display: inline-block;
  width: 1em;
  margin-left: -0.25em;
  font-size: 1.2rem;
}

.spec-card {
  transition: all 0.4s ease;
}

.spec-card:hover {
  background: var(--color-white) !important;
  transform: translateY(-6px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
  border-color: var(--color-accent) !important;
}

/* Full-Width Developer Logo Section Styles */
.developer-logo-section {
  width: 100%;
  background: var(--color-white);
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 4rem 0;
  margin: 3rem 0;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.developer-logo-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.logo-card-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-text-muted);
  margin-bottom: 1.25rem;
  font-weight: 500;
  display: block;
}

.logo-card-img-wrapper {
  height: 120px;
  /* Maximum height: 100-120px */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  width: 100%;
}

.logo-card-img-wrapper img {
  max-height: 100%;
  max-width: 100%;
  object-fit: contain;
  /* Use object-fit: contain */
}

.logo-card-tagline {
  font-size: 0.95rem;
  color: var(--color-primary);
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Transparent Navbar Overrides for Hero Section Visibility */
.navbar:not(.scrolled) .navbar-links a {
  color: #000000;
}

.navbar:not(.scrolled) .menu-btn {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.4);
}

.navbar:not(.scrolled) .menu-btn:hover {
  background-color: #ffffff;
  color: var(--color-primary);
}

/* Clubhouse Section Styling */
.clubhouse-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .clubhouse-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }
}

.clubhouse-content-col {
  padding-right: 0;
}

@media (min-width: 992px) {
  .clubhouse-content-col {
    padding-right: 2rem;
  }
}

/* Feature checklist styling */
.feature-icon-wrapper i {
  display: block;
}

.feature-text strong {
  font-family: var(--font-sans);
}

/* Clubhouse Carousel Styling */
.clubhouse-carousel-col {
  width: 100%;
}

.clubhouse-carousel {
  position: relative;
  height: 350px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(74, 14, 23, 0.1);
  border: 1px solid var(--color-border);
  background-color: #000;
}

@media (min-width: 576px) {
  .clubhouse-carousel {
    height: 400px;
  }
}

@media (min-width: 992px) {
  .clubhouse-carousel {
    height: 500px;
  }
}

.clubhouse-slides-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.clubhouse-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.clubhouse-slide.active {
  opacity: 1;
  z-index: 2;
}

.clubhouse-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease-in-out;
}

.clubhouse-slide.active img {
  transform: scale(1);
}

.slide-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 3rem 2rem 2rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.4) 60%, rgba(0, 0, 0, 0) 100%);
  color: var(--color-white);
  z-index: 3;
}

.slide-overlay h4 {
  font-size: 1.5rem;
  font-family: var(--font-serif);
  color: #e8ca99;
  margin-bottom: 0.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.slide-overlay p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  font-weight: 300;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

/* Dots Styling (No side arrow buttons needed) */
.clubhouse-carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.clubhouse-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.clubhouse-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.clubhouse-dot.active {
  background-color: var(--color-accent);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(192, 161, 114, 0.5);
}

/* Other Amenities Section Styling */
.other-amenities-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 992px) {
  .other-amenities-grid {
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
  }

  .other-amenities-grid .amenities-carousel-col {
    order: 1;
  }

  .other-amenities-grid .amenities-content-col {
    order: 2;
  }
}

.amenities-content-col {
  padding-left: 0;
}

@media (min-width: 992px) {
  .amenities-content-col {
    padding-left: 2rem;
  }
}

/* Other Amenities Carousel Styling */
.amenities-carousel-col {
  width: 100%;
}

.amenities-carousel {
  position: relative;
  height: 350px;
  width: 100%;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(74, 14, 23, 0.1);
  border: 1px solid var(--color-border);
  background-color: #000;
}

@media (min-width: 576px) {
  .amenities-carousel {
    height: 400px;
  }
}

@media (min-width: 992px) {
  .amenities-carousel {
    height: 500px;
  }
}

.amenities-slides-container {
  width: 100%;
  height: 100%;
  position: relative;
}

.amenities-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: 1;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
}

.amenities-slide.active {
  opacity: 1;
  z-index: 2;
}

.amenities-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.05);
  transition: transform 6s ease-in-out;
}

.amenities-slide.active img {
  transform: scale(1);
}

/* Dots Styling (No side arrow buttons needed) */
.amenities-carousel-dots {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  display: flex;
  gap: 8px;
  z-index: 10;
}

.amenities-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.amenities-dot:hover {
  background-color: rgba(255, 255, 255, 0.8);
}

.amenities-dot.active {
  background-color: var(--color-accent);
  width: 24px;
  border-radius: 4px;
  box-shadow: 0 0 8px rgba(192, 161, 114, 0.5);
}

/* ==========================================================================
   GALLERY LIGHTBOX STYLE TUNING
   ========================================================================== */
.gallery-item img {
  cursor: pointer;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
  filter: brightness(0.9);
}

.lightbox {
  display: none;
  position: fixed;
  z-index: 1100;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: rgba(18, 11, 13, 0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.lightbox.active {
  display: flex;
  opacity: 1;
}

.lightbox-content-wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 90%;
  max-height: 85%;
  transform: scale(0.95);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.lightbox.active .lightbox-content-wrapper {
  transform: scale(1);
}

.lightbox-content {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-caption {
  margin-top: 1.25rem;
  color: #ffffff;
  font-family: var(--font-serif);
  font-size: 1.15rem;
  text-align: center;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

/* Lightbox Controls */
.lightbox-close {
  position: absolute;
  top: 2rem;
  right: 2rem;
  color: #ffffff;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 1102;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--color-accent);
  transform: rotate(90deg);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: #ffffff;
  font-size: 2rem;
  font-weight: bold;
  padding: 1rem;
  cursor: pointer;
  background: none;
  border: none;
  transition: color 0.3s ease, transform 0.3s ease;
  z-index: 1101;
  user-select: none;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  color: var(--color-accent);
}

.lightbox-prev {
  left: 2rem;
}

.lightbox-next {
  right: 2rem;
}

.lightbox-prev:active {
  transform: translateY(-50%) translateX(-4px);
}

.lightbox-next:active {
  transform: translateY(-50%) translateX(4px);
}

/* Adjustments for Mobile Screens */
@media (max-width: 768px) {
  .lightbox-prev {
    left: 0.5rem;
  }

  .lightbox-next {
    right: 0.5rem;
  }

  .lightbox-close {
    top: 1rem;
    right: 1rem;
  }

  .lightbox-caption {
    font-size: 1rem;
  }
}

/* ==========================================================================
   MOBILE & TABLET RESPONSIVENESS OVERRIDES
   ========================================================================== */

/* Global and Container adjustments */
html,
body {
  overflow-x: hidden;
  width: 100%;
}

@media (max-width: 576px) {
  .container {
    padding: 0 1rem;
  }
}

/* Navbar mobile adjustments */
@media (max-width: 991px) {
  .navbar-container {
    padding: 0 1rem;
  }

  .nav-logo-img {
    height: 52px;
    margin-left: 0;
    margin-top: 0;
  }

  .navbar.scrolled .nav-logo-img {
    height: 44px;
    margin-left: 0;
    margin-top: 0;
  }

  .mobile-only-action {
    display: block;
    width: 100%;
    text-align: center;
    margin-top: 0.5rem;
  }

  .drawer-btn {
    display: inline-flex !important;
    width: 100%;
    max-width: 280px;
    justify-content: center;
    align-items: center;
    padding: 0.85rem 1.5rem !important;
    border-radius: 8px !important;
    font-size: 0.85rem !important;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

  .navbar-links.active {
    display: flex !important;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #f7f4ec;
    border-bottom: 1px solid var(--color-border);
    padding: 2.5rem 1.5rem;
    gap: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    z-index: 99;
    align-items: center;
    max-height: 85vh;
    overflow-y: auto;
  }

  .navbar-links.active li {
    width: 100%;
    text-align: center;
  }

  .navbar-links.active a {
    display: block;
    font-size: 1.1rem;
    padding: 0.5rem 0;
  }
}

@media (min-width: 992px) {
  .mobile-only-action {
    display: none;
  }
}

/* Hero Section mobile adjustments */
@media (max-width: 1024px) {
  .hero {
    min-height: 100vh;
    padding-top: 0;
    background-color: #ffffff;
  }

  .hero-bg {
    top: 108px;
    height: calc(100% - 108px);
    background-image: url('../assests/SCUBEMobile.jpg');
  }

  .navbar:not(.scrolled) .menu-btn {
    color: var(--color-primary);
    border-color: var(--color-border);
  }
}

/* About & Timeline Section mobile adjustments */
@media (max-width: 576px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .timeline-line {
    display: none;
  }

  .timeline-points {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
    padding-left: 1rem;
  }

  .timeline-point {
    flex-direction: row;
    text-align: left;
    width: 100%;
    gap: 1.25rem;
    align-items: center;
  }

  .point-dot {
    margin-bottom: 0;
    flex-shrink: 0;
  }
}

/* Clubhouse & Amenities Carousel mobile fixes */
@media (max-width: 991px) {

  .clubhouse-carousel,
  .amenities-carousel {
    height: 300px;
  }

  .slide-overlay h4 {
    font-size: 1.25rem;
  }

  .slide-overlay p {
    font-size: 0.8rem;
  }

  .clubhouse-carousel-dots,
  .amenities-carousel-dots {
    right: 50%;
    transform: translateX(50%);
    bottom: 1rem;
  }
}

@media (max-width: 576px) {

  .clubhouse-carousel,
  .amenities-carousel {
    height: 250px;
  }
}

/* Floor Plans tabs and card responsiveness */
@media (max-width: 768px) {
  .floorplan-tabs {
    flex-direction: column;
    border-radius: 12px !important;
    width: 100%;
    padding: 0.75rem !important;
  }

  .floorplan-tabs .tab-btn {
    width: 100%;
    text-align: center;
    border-radius: 6px !important;
    padding: 0.75rem 1rem !important;
  }

  .floorplan-cards-container {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .floor-plan-card {
    max-width: 100%;
  }

  .floor-plan-image-container {
    height: 240px;
    padding: 10px;
  }
}

/* Testimonials mobile slider adjustments */
@media (max-width: 768px) {
  .testimonials-carousel-wrapper {
    gap: 0.5rem;
    width: 100%;
    justify-content: space-between;
  }

  .testimonials-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .testimonial-card {
    padding: 1.5rem 1rem;
    width: 100%;
  }

  .carousel-nav {
    width: 40px;
    height: 40px;
  }
}

/* Contact Form and Details spacing */
@media (max-width: 768px) {
  .contact-section {
    padding: 3rem 0;
  }

  .contact-card {
    gap: 2rem;
  }

  .contact-form-col {
    padding: 2rem 1.5rem;
  }

  .section-title {
    font-size: 2.25rem;
  }
}

/* Footer layout vertical stacking on mobile */
@media (max-width: 768px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 0 1.5rem;
    text-align: center;
  }

  .footer-logo-col {
    align-items: center;
    display: flex;
    flex-direction: column;
  }

  .footer-logo-text {
    align-items: center;
  }

  .footer-contact-list li {
    justify-content: center;
  }
}

/* ===========================
   PHP ALERT BANNERS
   =========================== */
.php-alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  border-radius: 8px;
  margin-bottom: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.5;
}

.php-alert-success {
  background-color: #ecfdf5;
  border: 1px solid #6ee7b7;
  color: #065f46;
}

.php-alert-error {
  background-color: #fff1f2;
  border: 1px solid #fca5a5;
  color: #9b1c1c;
}

.address-link {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease;
}

.address-link:hover {
  color: var(--color-accent) !important;
  opacity: 0.9;
}