:root {
  --orange: #ef4723;
  --dark: #0d0d0d;
  --dark-section: #141414;
  --dark-card: #1a1a1a;
  --text-light: #f5f5f5;
  --text-muted: #a0a0a0;
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Montserrat', sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-light);
  background-color: var(--dark);
  overflow-x: hidden;
  transition: background-color 0.5s ease, color 0.5s ease;
}

/* Smooth transition for themed components */
.navbar,
.navbar.scrolled,
.navbar-nav .nav-link,
.highlight-card,
.amenity-tile,
.config-card,
.location-accordion .accordion-item,
.location-accordion .accordion-button,
.location-accordion .accordion-body,
.site-footer,
.section-title,
.form-control,
.form-select,
.form-label,
.form-check-label,
.btn-close-popup {
  transition: background-color 0.5s ease, color 0.5s ease, border-color 0.5s ease, box-shadow 0.5s ease, transform 0.3s ease;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
}

a {
  color: var(--orange);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--orange);
}

.text-gold {
  color: var(--orange) !important;
}

.text-muted-light {
  color: var(--text-muted) !important;
}

.section-padding {
  padding: 80px 0;
}

.bg-dark-section {
  background-color: var(--dark-section);
}

.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  color: var(--text-light);
  margin-bottom: 0;
}

/* Buttons */
.btn-gold {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange) 100%);
  border: none;
  color: #FFF;
  font-weight: 600;
  letter-spacing: 0.5px;
  padding: 10px 28px;
  transition: all 0.3s ease;
}

.btn-gold:hover {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange) 100%);
  color: var(--dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201, 169, 98, 0.3);
}

.btn-outline-light:hover {
  background-color: var(--orange);
  border-color: var(--orange);
  color: var(--dark);
}

/* Navbar */
.navbar {
  background: transparent;
  padding: 20px 0;
  transition: all 0.4s ease;
}

.navbar .logo,
.navbar .logo-white {
  height: 80px;
  transition: all 0.4s ease;
}

.navbar.scrolled {
  background: rgba(13, 13, 13, 0.95);
  backdrop-filter: blur(10px);
  padding: 0;
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}

.navbar .logo {
  display: none;
}

.navbar.scrolled .logo-white {
  display: none;
}

.navbar.scrolled .logo {
  display: block;
  height: 70px;
}

s .navbar-brand .brand-text {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
  letter-spacing: 1px;
}

.navbar-toggler {
  border-color: var(--orange);
}

.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%28201, 169, 98, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

.navbar-nav .nav-link {
  color: var(--text-light) !important;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  padding: 8px 16px !important;
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--orange);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
  width: 60%;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--orange) !important;
}

/* Hero */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}

/* Hero Background Slider */
.hero-slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
  will-change: opacity, transform;
  animation: none;
}

.hero-slide.active {
  opacity: 1;
  animation: heroKenBurns 8s ease-in-out forwards;
}

@keyframes heroKenBurns {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.08);
  }
}

/* Slider Indicators */
.hero-slider-indicators {
  position: absolute;
  bottom: 80px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
}

.hero-indicator {
  width: 32px;
  height: 4px;
  border: none;
  border-radius: 2px;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  padding: 0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.hero-indicator::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 0%;
  background: var(--orange);
  border-radius: 2px;
  transition: none;
}

.hero-indicator.active::after {
  width: 100%;
  animation: indicatorFill 5s linear forwards;
}

@keyframes indicatorFill {
  0% {
    width: 0%;
  }

  100% {
    width: 100%;
  }
}

.hero-indicator:hover {
  background: rgba(255, 255, 255, 0.55);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-tagline {
  background: var(--orange);
  color: var(--text-lights);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 4px;
  display: inline-block;
  padding: 10px;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-light);
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  max-width: 500px;
}

.hero-scroll {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}

.scroll-down {
  color: var(--orange);
  font-size: 2rem;
  animation: bounce 2s infinite;
}

@keyframes bounce {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-10px);
  }

  60% {
    transform: translateY(-5px);
  }
}

/* Highlights */
.highlight-card {
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.15);
  border-radius: 8px;
  padding: 30px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.highlight-card:hover {
  border-color: var(--orange);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--orange);
  border-radius: 50%;
  color: var(--orange);
  font-size: 1.5rem;
}

.highlight-card h5 {
  font-size: 1.1rem;
  margin-bottom: 8px;
  color: var(--text-light);
}

.highlight-card p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

/* Amenities */
.amenities-carousel .amenity-slide {
  height: 480px;
  background-size: cover;
  background-position: bottom;
  position: relative;
  background-repeat: no-repeat;
  background-color: #f8f9fa;
}

.amenities-carousel .carousel-inner {
  max-width: 1020px;
  margin: 0 auto;
}

.amenity-slide-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(transparent, rgba(13, 13, 13, 0.9));
}

.amenity-slide-caption h3 {
  font-size: clamp(1.25rem, 3vw, 1.75rem);
  color: #FFF;
  margin: 0;
}

.amenity-tile {
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.1);
  border-radius: 8px;
  padding: 24px 16px;
  text-align: center;
  transition: all 0.3s ease;
  height: 100%;
}

.amenity-tile:hover {
  border-color: var(--orange);
  background: rgba(201, 169, 98, 0.05);
}

.amenity-tile i {
  display: block;
  font-size: 1.75rem;
  color: var(--orange);
  margin-bottom: 10px;
}

.amenity-tile span {
  font-size: 0.8rem;
  font-weight: 500;
}

.amenity-tags p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin: 0;
}

.amenity-tags i {
  color: var(--orange);
  margin-right: 8px;
}

.carousel-control-prev-icon,
.carousel-control-next-icon {
  filter: invert(1);
}

/* Configurations */
.config-card {
  background: var(--dark-card);
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(201, 169, 98, 0.1);
  transition: all 0.3s ease;
  position: relative;
}

.config-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
  border-color: var(--orange);
}

.config-card.featured {
  border-color: var(--orange);
}

.config-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: var(--orange);
  color: var(--dark);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  z-index: 2;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.config-image {
  height: 220px;
  background-size: cover;
  background-position: center;
}

.config-body {
  padding: 24px;
}

.config-body h3 {
  font-size: 1.5rem;
  margin-bottom: 8px;
}

.config-body p {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 20px;
}

/* Gallery */
.gallery-carousel {
  position: relative;
}

.gallery-carousel img {
  height: 500px;
  object-fit: cover;
  object-position: bottom;
}

.gallery-counter {
  position: absolute;
  bottom: 20px;
  right: 20px;
  background: rgba(13, 13, 13, 0.8);
  color: var(--orange);
  padding: 8px 16px;
  border-radius: 4px;
  font-weight: 600;
  font-size: 0.9rem;
  z-index: 2;
}

/* Floor Plan */
.floorplan-tabs .nav-link {
  color: var(--text-muted);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 30px;
  padding: 10px 30px;
  margin: 0 6px;
  font-weight: 500;
  transition: all 0.3s ease;
}

.floorplan-tabs .nav-link.active,
.floorplan-tabs .nav-link:hover {
  background: var(--orange);
  color: var(--dark);
  border-color: var(--orange);
}

.floorplan-wrapper {
  background: #fff;
  padding: 20px;
  border-radius: 8px;
  text-align: center;
}

.floorplan-wrapper img {
  max-height: 500px;
  object-fit: contain;
}

.floorplan-gallery {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.floorplan-main {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  background: #FFF;
  padding: 20px;
  text-align: center;
}

.zoom-hint {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.85rem;
  z-index: 1;
}

.floorplan-main img {
  width: 100%;
  max-height: 580px;
  object-fit: contain;
  cursor: zoom-in;
  border-radius: 12px;
}

.floorplan-thumbnails {
  display: flex;
  flex-wrap: nowrap;
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  justify-content: center;
}

.floorplan-thumb {
  border: 2px solid transparent;
  border-radius: 12px;
  padding: 2px;
  background: transparent;
  cursor: pointer;
  flex: 0 0 90px;
  width: 90px;
  height: 90px;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.floorplan-thumb.active,
.floorplan-thumb:hover {
  border-color: var(--orange);
  transform: translateY(-2px);
}

.floorplan-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.zoom-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
  z-index: 1080;
}

.zoom-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.zoom-overlay img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  border-radius: 12px;
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.6);
}

.zoom-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 1;
}

@media (max-width: 767px) {
  .floorplan-main img {
    max-height: 360px;
  }

  .floorplan-thumb {
    flex: 0 0 70px;
    width: 70px;
    height: 70px;
  }
}

/* Locations */
.location-accordion .accordion-item {
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.15);
  margin-bottom: 8px;
  border-radius: 8px !important;
  overflow: hidden;
}

.location-accordion .accordion-button {
  background: var(--dark-card);
  color: var(--text-light);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: none;
}

.location-accordion .accordion-button:not(.collapsed) {
  background: rgba(201, 169, 98, 0.1);
  color: var(--orange);
}

.location-accordion .accordion-button::after {
  filter: invert(1);
}

.location-accordion .accordion-body {
  background: var(--dark-card);
  color: var(--text-muted);
}

.location-accordion ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.location-accordion li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  font-size: 0.9rem;
}

.location-accordion li:last-child {
  border-bottom: none;
}

.location-accordion li::before {
  content: '\2022';
  color: var(--orange);
  margin-right: 10px;
}

/* Stats */
.bg-gold-gradient {
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange) 50%, var(--orange) 100%);
}

.stats-intro {
  color: var(--dark);
  font-size: 1rem;
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.7;
}

.stat-item {
  position: relative;
}

.stat-number {
  display: inline;
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--dark);
}

.stat-suffix {
  font-family: var(--font-heading);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--dark);
}

.stat-item p {
  color: rgba(13, 13, 13, 0.8);
  font-size: 0.85rem;
  font-weight: 500;
  margin-top: 8px;
}

/* Enquire Form */
.enquire-form .form-control,
.enquire-form .form-select,
.enquire-modal .form-control,
.enquire-modal .form-select {
  background: var(--dark-card);
  border: 1px solid rgba(201, 169, 98, 0.2);
  color: var(--text-light);
  padding: 12px 16px;
  border-radius: 6px;
}

.enquire-form .form-control:focus,
.enquire-form .form-select:focus,
.enquire-modal .form-control:focus,
.enquire-modal .form-select:focus {
  background: var(--dark-card);
  border-color: var(--orange);
  color: var(--text-light);
  box-shadow: 0 0 0 0.2rem rgba(201, 169, 98, 0.15);
}

.enquire-form .form-label,
.enquire-modal .form-label {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.enquire-form .form-check-label,
.enquire-modal .form-check-label {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.enquire-form .form-check-input:checked,
.enquire-modal .form-check-input:checked {
  background-color: var(--orange);
  border-color: var(--orange);
}

.contact-info p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.contact-info a {
  color: var(--text-light);
}

.contact-info a:hover {
  color: var(--orange);
}

/* Footer */
.site-footer {
  background: #0a0a0a;
  padding: 50px 0 30px;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

.footer-divider {
  border-color: rgba(201, 169, 98, 0.15);
  margin: 30px 0 20px;
}

.footer-link {
  color: var(--text-muted);
  font-size: 0.85rem;
}

.footer-link:hover {
  color: var(--orange);
}

.disclaimer {
  line-height: 1.6;
}

.footerinfo {
  list-style: none;
  line-height: 25px;
  padding-left: 22px;
  text-align: left;
  font-size: 0.85rem;
  line-height: 1.5;
}

.footerinfo li {
  margin-bottom: 10px;
}

.footerinfo li:before {
  content: "✓";
  font-weight: 800;
  margin-right: 10px;
  font-size: 13px;
  margin-left: -22px
}


/* Floating Actions */
.floating-actions {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1050;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.fab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 50px;
  border: none;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.fab-call {
  background: var(--dark);
  color: var(--text-light);
  border: 1px solid var(--orange);
}

.fab-call:hover {
  background: var(--orange);
  color: var(--text-light);
}

.fab-enquire {
  background: var(--orange);
  color: #FFF;
}

.fab-enquire:hover {
  background: var(--orange);
  color: var(--dark);
}

/* Modal */
.enquire-modal {
  background: var(--dark-section);
  color: var(--text-light);
  border: 1px solid rgba(201, 169, 98, 0.2);
}

.enquire-modal .modal-title {
  font-family: var(--font-heading);
  color: var(--orange);
}

/* Responsive */
@media (max-width: 991px) {
  .navbar-collapse {
    background: rgba(13, 13, 13, 0.98);
    padding: 20px;
    border-radius: 8px;
    margin-top: 12px;
  }

  .section-padding {
    padding: 60px 0;
  }

  .amenities-carousel .amenity-slide {
    height: 300px;
  }

  .gallery-carousel img {
    height: 300px;
  }

  .floating-actions {
    bottom: 0;
    right: 0;
    left: 0;
    flex-direction: row;
    border-radius: 0;
  }

  .fab {
    flex: 1;
    justify-content: center;
    border-radius: 0;
    padding: 16px;
  }

  body {
    padding-bottom: 60px;
  }
}

@media (max-width: 575px) {
  .hero-title {
    font-size: 2rem;
  }

  .floorplan-tabs .nav-link {
    padding: 8px 18px;
    margin: 4px;
    font-size: 0.85rem;
  }

  .fab span {
    display: none;
  }

  .fab {
    padding: 16px;
  }
}

/* White and Orange Theme Override Styles */
body.theme-white-orange {
  --orange: #ff6f00;
  /* Premium Vibrant Orange */
  --orange: #ff8e3c;
  --orange: #cc5a00;
  --dark: #ffffff;
  --dark-section: #f8f9fa;
  --dark-card: #ffffff;
  --text-light: #111111;
  --text-muted: #666666;
}

/* Hero Section text overrides */
body.theme-white-orange .hero-section {
  color: #ffffff;
}

body.theme-white-orange .hero-section .hero-title {
  color: #ffffff;
}

body.theme-white-orange .hero-section .hero-subtitle {
  color: rgba(255, 255, 255, 0.7);
}

/* Navbar theme overrides */
body.theme-white-orange .navbar.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
}

body.theme-white-orange .navbar-nav .nav-link {
  color: #111111 !important;
}

body.theme-white-orange .navbar-nav .nav-link::after {
  background: var(--orange);
}

body.theme-white-orange .navbar-nav .nav-link.active,
body.theme-white-orange .navbar-nav .nav-link:hover {
  color: var(--orange) !important;
}

body.theme-white-orange .navbar-toggler {
  border-color: var(--orange);
}

body.theme-white-orange .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%28255, 111, 0, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Cards & Accordions theme overrides */
body.theme-white-orange .highlight-card {
  border-color: rgba(255, 111, 0, 0.15);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

body.theme-white-orange .highlight-card:hover {
  border-color: var(--orange);
  box-shadow: 0 15px 40px rgba(255, 111, 0, 0.12);
}

body.theme-white-orange .amenity-tile {
  border-color: rgba(255, 111, 0, 0.1);
}

body.theme-white-orange .amenity-tile:hover {
  border-color: var(--orange);
  background: rgba(255, 111, 0, 0.05);
}

body.theme-white-orange .config-card {
  border-color: rgba(255, 111, 0, 0.1);
}

body.theme-white-orange .config-card:hover {
  border-color: var(--orange);
  box-shadow: 0 15px 40px rgba(255, 111, 0, 0.12);
}

body.theme-white-orange .config-card.featured {
  border-color: var(--orange);
}

body.theme-white-orange .location-accordion .accordion-item {
  border-color: rgba(255, 111, 0, 0.15);
}

body.theme-white-orange .location-accordion .accordion-button:not(.collapsed) {
  background: rgba(255, 111, 0, 0.08);
  color: var(--orange);
}

body.theme-white-orange .location-accordion .accordion-button::after {
  filter: invert(0);
}

body.theme-white-orange .floorplan-tabs .nav-link {
  border-color: rgba(255, 111, 0, 0.3);
  color: #666666;
}

body.theme-white-orange .floorplan-tabs .nav-link.active,
body.theme-white-orange .floorplan-tabs .nav-link:hover {
  background: var(--orange);
  color: #ffffff;
  border-color: var(--orange);
}

/* Stats section override for white text readability on orange background */
body.theme-white-orange .stats-intro {
  color: #ffffff;
}

body.theme-white-orange .stat-number,
body.theme-white-orange .stat-suffix {
  color: #ffffff;
}

body.theme-white-orange .stat-item p {
  color: rgba(255, 255, 255, 0.85);
}

/* Form overrides */
body.theme-white-orange .form-control,
body.theme-white-orange .form-select {
  background: #ffffff;
  border-color: rgba(255, 111, 0, 0.2);
  color: #111111;
}

body.theme-white-orange .form-control:focus,
body.theme-white-orange .form-select:focus {
  background: #ffffff;
  border-color: var(--orange);
  color: #111111;
  box-shadow: 0 0 0 0.2rem rgba(255, 111, 0, 0.15);
}

body.theme-white-orange .form-label,
body.theme-white-orange .form-check-label {
  color: #444444;
}

/* Footer overrides */
body.theme-white-orange .site-footer {
  background: #fdfdfd;
  border-top: 1px solid rgba(255, 111, 0, 0.2);
  color: #212529;
}

body.theme-white-orange .footer-divider {
  border-color: rgba(255, 111, 0, 0.15);
}

body.theme-white-orange .site-footer h5,
body.theme-white-orange .site-footer p,
body.theme-white-orange .site-footer a,
body.theme-white-orange .site-footer strong {
  color: #333333 !important;
}

body.theme-white-orange .site-footer .footer-link {
  color: #666666 !important;
}

body.theme-white-orange .site-footer .footer-link:hover {
  color: var(--orange) !important;
}

body.theme-white-orange .enquire-modal .btn-close-white {
  filter: none;
}

/* Scroll Triggered Popup Component */
.scroll-popup {
  position: fixed;
  bottom: 70px;
  right: 20px;
  width: 360px;
  background: var(--dark-section);
  border: 2px solid var(--orange);
  border-radius: 12px;
  padding: 24px;
  z-index: 1060;
  transform: translateY(125%);
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s ease, visibility 0.5s, background-color 0.5s ease, border-color 0.5s ease, color 0.5s ease;
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.3);
}

.scroll-popup.show {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.btn-close-popup {
  position: absolute;
  top: 12px;
  right: 16px;
  background: transparent;
  border: none;
  color: var(--text-muted);
  font-size: 1.5rem;
  line-height: 1;
  cursor: pointer;
}

.btn-close-popup:hover {
  color: var(--orange);
  transform: scale(1.1);
}

.popup-header {
  margin-bottom: 16px;
  padding-right: 20px;
}

.popup-title {
  font-size: 1.25rem;
  color: var(--orange);
  margin-bottom: 4px;
}

.popup-subtitle {
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

.small-label {
  font-size: 0.75rem;
  color: var(--text-muted);
}

/* Desktop layout: adjust floating buttons when popup is active to avoid collision */
@media (min-width: 992px) {
  .scroll-popup.show~.floating-actions {
    transform: translateY(-370px);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }

  .floating-actions {
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

/* Mobile responsive popup */
@media (max-width: 991px) {
  .scroll-popup {
    bottom: 60px;
    /* Above the mobile bottom action bar */
    right: 0;
    left: 0;
    width: 100%;
    border-radius: 12px 12px 0 0;
    border-bottom: none;
    border-left: none;
    border-right: none;
    padding: 20px 16px;
    transform: translateY(100%);
  }

  .scroll-popup.show {
    transform: translateY(0);
  }
}


/* thankyou */
.thank-you-section {
  min-height: 500px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.thank-you-card {
  max-width: 720px;
  width: 100%;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(191, 161, 90, 0.35);
  border-radius: 20px;
  padding: 2.5rem;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
  text-align: center;
  margin: 100px auto 30px;
}

.thank-you-card h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.thank-you-card p {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 2rem;
}