/* ==========================================================================
   BVOTI BEACH RESORT - Custom Luxury Styling
   ========================================================================== */

:root {
  --primary-navy: #0B192C;
  --secondary-navy: #1E3E62;
  --accent-gold: #D4AF37;
  --accent-gold-hover: #B59226;
  --bg-sand: #F8F9FA;
  --text-dark: #1F2937;
  --text-muted: #6B7280;
  --font-serif: 'Cinzel', serif;
  --font-sans: 'Plus Jakarta Sans', sans-serif;
}

body {
  font-family: var(--font-sans);
  color: var(--text-dark);
  background-color: #ffffff;
}

h1, h2, h3, h4, .hero-title, .section-heading {
  font-family: var(--font-serif);
  letter-spacing: -0.02em;
}

/* --- Navigation Styling --- */
.rd-navbar-classic {
  background: rgba(11, 25, 44, 0.9) !important;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
}

.rd-nav-link {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.3s ease;
}

.rd-nav-link:hover {
  color: var(--accent-gold) !important;
  text-decoration: none;
}

/* --- Buttons --- */
.btn-resort-primary {
  background-color: var(--accent-gold);
  color: #ffffff !important;
  padding: 14px 28px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none !important;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.btn-resort-primary:hover {
  background-color: var(--accent-gold-hover);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.btn-resort-outline {
  border: 2px solid #ffffff;
  color: #ffffff !important;
  padding: 12px 26px;
  border-radius: 4px;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 13px;
  letter-spacing: 1px;
  display: inline-block;
  text-decoration: none !important;
  margin-left: 12px;
  transition: all 0.3s ease;
}

.btn-resort-outline:hover {
  background: #ffffff;
  color: var(--primary-navy) !important;
}

/* --- Hero Section --- */
.resort-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  transition: transform 6s ease;
}

.resort-hero:hover .hero-bg {
  transform: scale(1.0);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(11, 25, 44, 0.6) 0%, rgba(11, 25, 44, 0.85) 100%);
}

.hero-container {
  position: relative;
  z-index: 2;
  color: #ffffff;
  padding-top: 60px;
}

.hero-subtitle {
  color: var(--accent-gold);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 3px;
  display: block;
  margin-bottom: 12px;
}

.hero-title {
  font-size: 3.5rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-description {
  max-width: 680px;
  margin: 0 auto 30px auto;
  font-size: 17px;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
}

/* --- Quick Info Bar --- */
.quick-info-bar {
  background: var(--primary-navy);
  color: #ffffff;
  padding: 25px 0;
  border-bottom: 3px solid var(--accent-gold);
}

.info-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}

.icon-gold {
  color: var(--accent-gold);
  font-size: 24px;
}

.info-item h6 {
  color: #ffffff;
  margin: 0;
  font-size: 15px;
  font-weight: 600;
}

.info-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
}

/* --- About Section --- */
.resort-about {
  padding: 90px 0;
}

.section-tag {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  display: block;
  margin-bottom: 8px;
}

.section-heading {
  font-size: 2.4rem;
  color: var(--primary-navy);
  margin-bottom: 20px;
}

.text-lead {
  font-size: 18px;
  font-weight: 500;
  color: var(--secondary-navy);
  margin-bottom: 15px;
}

.text-body-muted {
  color: var(--text-muted);
  line-height: 1.7;
}

.about-image-grid {
  position: relative;
  padding-bottom: 40px;
}

.img-wrapper img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.sub-img {
  position: absolute;
  bottom: 0;
  right: -20px;
  width: 55%;
  border: 5px solid #ffffff;
  border-radius: 8px;
}

.feature-grid {
  margin-top: 30px;
}

.feature-card {
  margin-bottom: 20px;
}

.feature-icon {
  width: 45px;
  height: 45px;
  background: rgba(212, 175, 55, 0.15);
  color: var(--accent-gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 10px;
}

.feature-card h5 {
  font-size: 16px;
  margin-bottom: 5px;
  color: var(--primary-navy);
}

.feature-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin: 0;
}

/* --- Services Grid --- */
.bg-light-sand {
  background-color: var(--bg-sand);
}

.resort-services {
  padding: 90px 0;
}

.section-header-wrap {
  margin-bottom: 50px;
}

.section-subtext {
  color: var(--text-muted);
  font-size: 15px;
}

.resort-card {
  background: #ffffff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(0,0,0,0.06);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resort-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

.resort-card-img {
  position: relative;
  overflow: hidden;
  height: 240px;
}

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

.resort-card:hover .resort-card-img img {
  transform: scale(1.08);
}

.card-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: rgba(11, 25, 44, 0.85);
  color: var(--accent-gold);
  padding: 4px 12px;
  font-size: 11px;
  font-weight: 600;
  border-radius: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.resort-card-body {
  padding: 25px;
}

.resort-card-body h4 {
  font-size: 20px;
  color: var(--primary-navy);
  margin-bottom: 10px;
}

.resort-card-body p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 18px;
}

.card-link {
  color: var(--accent-gold);
  font-weight: 700;
  font-size: 13px;
  text-decoration: none !important;
  transition: color 0.2s ease;
}

.card-link:hover {
  color: var(--primary-navy);
}

/* --- Contact Banner --- */
.contact-banner {
  background: linear-gradient(rgba(11, 25, 44, 0.9), rgba(11, 25, 44, 0.9)), url('../images/parallax-img-2.jpg');
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 80px 0;
}

.contact-banner h2 {
  color: #ffffff;
  font-size: 2.2rem;
  margin-bottom: 12px;
}

.contact-banner p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  margin-bottom: 30px;
}

.contact-details {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
}

.contact-email {
  color: #ffffff;
  font-size: 18px;
  font-weight: 500;
  text-decoration: none !important;
}

.contact-email:hover {
  color: var(--accent-gold);
}

/* --- Footer --- */
.resort-footer {
  background: #070e17;
  padding: 35px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.copyright-text {
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
  margin: 0;
}

.footer-socials a {
  color: #ffffff;
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
  margin-left: 8px;
  transition: background 0.3s ease, color 0.3s ease;
}

.footer-socials a:hover {
  background: var(--accent-gold);
  color: var(--primary-navy);
}

/* --- Responsive Adjustments --- */
@media (max-width: 768px) {
  .hero-title {
    font-size: 2.3rem;
  }
  .btn-resort-outline {
    margin-left: 0;
    margin-top: 10px;
    display: block;
  }
  .sub-img {
    display: none;
  }
}



/* --- Navbar Alignment Fix --- */
.rd-navbar-classic {
  background: #0B192C !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
}

/* Force horizontal layout across header elements */
/*.rd-navbar-main {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
}

.rd-navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  gap: 25px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

.rd-nav-item {
  display: inline-block !important;
}

.rd-nav-link {
  color: #ffffff !important;
  font-weight: 500;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
}

.rd-nav-link:hover {
  color: #D4AF37 !important;
}*/

/* --- Contained Header Layout --- */
.rd-navbar-classic {
  background: #0B192C !important;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 12px 0;
  width: 100%;
}

.rd-navbar-main-outer {
  max-width: 1200px; /* Constrains header width */
  margin: 0 auto;
  padding: 0 15px;
}

.rd-navbar-main {
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  width: 100%;
}

.rd-navbar-nav-wrap {
  display: flex;
  align-items: center;
}

.rd-navbar-nav {
  display: flex !important;
  flex-direction: row !important;
  gap: 30px !important;
  margin: 0 !important;
  padding: 0 !important;
  list-style: none !important;
}

/* Adjust button alignment within contained space */
.nav-cta {
  margin-left: 20px;
}

/* Hide stray mobile toggle on desktop screens */
@media (min-width: 992px) {
  .rd-navbar-toggle {
    display: none !important;
  }
}


/* ==========================================================================
   ABOUT SECTION ENHANCEMENTS
   ========================================================================== */

.resort-about {
  padding: 100px 0;
  background-color: #ffffff;
}

/* --- Image Grid & Overlays --- */
.about-image-wrapper {
  position: relative;
  padding-bottom: 50px;
  padding-right: 30px;
}

.main-image-card {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(11, 25, 44, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.main-image-card img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
}

.secondary-image-card {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 58%;
  border-radius: 14px;
  overflow: hidden;
  border: 6px solid #ffffff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  background: #ffffff;
}

.secondary-image-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.experience-badge {
  position: absolute;
  bottom: 12px;
  right: 12px;
  background: rgba(11, 25, 44, 0.88);
  backdrop-filter: blur(8px);
  padding: 6px 14px;
  border-radius: 8px;
  border: 1px solid rgba(212, 175, 55, 0.4);
  color: #ffffff;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge-number {
  color: #D4AF37;
  font-weight: 700;
  font-size: 13px;
}

.badge-text {
  font-size: 11px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #e2e8f0;
}

/* --- Content Typography --- */
.section-tag-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.section-tag {
  color: #D4AF37;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.tag-line {
  width: 40px;
  height: 2px;
  background: #D4AF37;
}

.section-heading {
  font-family: 'Cinzel', serif;
  font-size: 2.3rem;
  font-weight: 700;
  color: #0B192C;
  line-height: 1.25;
  margin-bottom: 20px;
}

.text-lead {
  font-size: 17px;
  font-weight: 600;
  color: #1E3E62;
  line-height: 1.6;
  margin-bottom: 14px;
}

.text-body-dark {
  font-size: 15px;
  color: #4B5563; /* High contrast dark gray */
  line-height: 1.7;
  margin-bottom: 30px;
}

/* --- Mini Feature Cards --- */
.feature-cards-row {
  margin-top: 25px;
}

.mini-feature-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 16px;
  background: #F8F9FA;
  border-radius: 12px;
  border: 1px solid #E5E7EB;
  transition: all 0.3s ease;
}

.mini-feature-card:hover {
  background: #ffffff;
  border-color: #D4AF37;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(212, 175, 55, 0.12);
}

.feature-icon-badge {
  width: 44px;
  height: 44px;
  min-width: 44px;
  background: #0B192C;
  color: #D4AF37;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.feature-card-info h5 {
  font-size: 15px;
  font-weight: 700;
  color: #0B192C;
  margin: 0 0 4px 0;
}

.feature-card-info p {
  font-size: 12px;
  color: #6B7280;
  margin: 0;
  line-height: 1.4;
}

/* Mobile Responsiveness */
@media (max-width: 767px) {
  .about-image-wrapper {
    padding-right: 0;
    margin-bottom: 30px;
  }
  .secondary-image-card {
    position: relative;
    width: 100%;
    margin-top: -40px;
    right: auto;
    bottom: auto;
  }
  .mini-feature-card {
    margin-bottom: 15px;
  }
}



/* --- Fix Back-to-Top Floating Button --- */
#ui-to-top, 
.ui-to-top {
  position: fixed !important;
  right: 25px !important;
  bottom: 25px !important;
  width: 44px !important;
  height: 44px !important;
  background-color: #D4AF37 !important; /* Gold Accent */
  color: #0B192C !important; /* Navy Icon */
  border-radius: 50% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3) !important;
  z-index: 99999 !important;
  transition: all 0.3s ease !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 1 !important;
}

#ui-to-top:hover, 
.ui-to-top:hover {
  background-color: #0B192C !important;
  color: #D4AF37 !important;
  text-decoration: none;
  transform: translateY(-4px) !important;
}

/* Ensure the green text/arrow is styled cleanly */
#ui-to-top::before,
.ui-to-top::before {
  color: inherit !important;
  font-size: 16px !important;
}

/* --- Hide Back-to-Top Button --- */
/*#ui-to-top, 
.ui-to-top {
  display: none !important;
}*/


/* --- Force Normal Font Style on All Icons --- */
i, 
.fa, 
[class^="fa-"], 
[class*=" fa-"],
.footer-socials a,
.footer-socials i {
  font-style: normal !important;
}


/* --- Preloader Positioning & Hide Fix --- */
.preloader {
  position: fixed !important;
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  background: #0B192C !important; /* Dark theme background */
  z-index: 999999 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  color: #ffffff !important;
}

/* Hide preloader when JS adds the loaded class or when page finishes loading */
.preloader.loaded,
html.loaded .preloader {
  opacity: 0 !important;
  visibility: hidden !important;
  pointer-events: none !important;
  transition: opacity 0.4s ease, visibility 0.4s ease !important;
}

/* Prevent text overflow */
.preloader p {
  color: #D4AF37 !important;
  font-size: 14px !important;
  letter-spacing: 1px !important;
  margin-top: 15px !important;
}



/* ==========================================================================
   FLOATING QUICK INFO CARDS
   ========================================================================== */

.quick-info-section {
  position: relative;
  z-index: 10;
  margin-top: -50px; /* Overlaps hero section for depth */
  padding-bottom: 30px;
}

.info-card {
  background: rgba(11, 25, 44, 0.95); /* Deep rich navy */
  border: 1px solid rgba(212, 175, 55, 0.3); /* Subtle gold border */
  border-radius: 12px;
  padding: 22px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(8px);
  transition: all 0.3s ease;
}

.info-card:hover {
  transform: translateY(-5px);
  border-color: #D4AF37; /* Brighter gold hover */
  box-shadow: 0 15px 35px rgba(212, 175, 55, 0.2);
  background: #0B192C;
}

/* Icon Container Styling */
.info-icon-wrapper {
  width: 48px;
  height: 48px;
  min-width: 48px;
  background: rgba(212, 175, 55, 0.15); /* Soft gold circle tint */
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.info-icon-wrapper i {
  color: #D4AF37 !important;
  font-size: 20px !important;
  font-style: normal !important;
}

/* Typography Enhancements */
.info-card-text h6 {
  color: #ffffff !important;
  font-size: 16px !important;
  font-weight: 700 !important;
  margin: 0 0 4px 0 !important;
  letter-spacing: 0.5px;
}

.info-card-text p {
  color: #E2E8F0 !important; /* Brighter readable white/gray */
  font-size: 13px !important;
  margin: 0 !important;
  line-height: 1.4;
}

/* Responsive Support */
@media (max-width: 767px) {
  .quick-info-section {
    margin-top: -30px;
  }
  .info-card {
    margin-bottom: 12px;
  }
}


/* ==========================================================================
   MODERN LUXURY FOOTER
   ========================================================================== */

.resort-footer-modern {
  background: #08121E; /* Deep navy tone */
  color: #A0AEC0;
  font-size: 14px;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-top {
  padding: 70px 0 50px 0;
}

.footer-logo {
  max-width: 210px;
  height: auto;
}

.footer-about-text {
  color: #94A3B8;
  line-height: 1.6;
  margin-bottom: 20px;
  font-size: 14px;
}

.footer-heading {
  color: #ffffff;
  font-family: 'Cinzel', serif;
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 22px;
  position: relative;
  letter-spacing: 0.5px;
}

.footer-heading::after {
  content: '';
  display: block;
  width: 30px;
  height: 2px;
  background: #D4AF37; /* Accent gold line */
  margin-top: 8px;
}

/* Footer Navigation Links */
.footer-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-menu li {
  margin-bottom: 10px;
}

.footer-menu a {
  color: #CBD5E1;
  text-decoration: none;
  transition: all 0.25s ease;
  display: inline-block;
}

.footer-menu a:hover {
  color: #D4AF37 !important;
  transform: translateX(4px);
}

/* Contact List */
.footer-contact-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  color: #CBD5E1;
}

.footer-contact-list i {
  color: #D4AF37 !important;
  font-size: 16px !important;
  margin-top: 3px;
  font-style: normal !important;
}

.footer-contact-list a {
  color: #CBD5E1;
  text-decoration: none;
  transition: color 0.25s ease;
}

.footer-contact-list a:hover {
  color: #D4AF37 !important;
}

/* Social Icon Buttons */
.footer-social-links {
  display: flex;
  gap: 10px;
}

.footer-social-links a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-social-links a i {
  font-style: normal !important;
  font-size: 15px;
}

.footer-social-links a:hover {
  background: #D4AF37;
  color: #0B192C;
  border-color: #D4AF37;
  transform: translateY(-3px);
}

/* Bottom Bar */
.footer-bottom {
  background: #050C14;
  padding: 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.copyright-text {
  margin: 0;
  color: #64748B;
  font-size: 13px;
}

.footer-legal-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: flex-end;
  gap: 20px;
}

.footer-legal-links a {
  color: #64748B;
  text-decoration: none;
  font-size: 13px;
  transition: color 0.2s ease;
}

.footer-legal-links a:hover {
  color: #D4AF37;
}

@media (max-width: 767px) {
  .footer-legal-links {
    justify-content: center;
    margin-top: 10px;
  }
}

/* --- Push Copyright Text to Far Left --- */
.footer-bottom .copyright-text,
.footer-bottom col-md-6:first-child p {
  text-align: left !important;
  margin-left: 0 !important;
  padding-left: 0 !important;
}


/* ==========================================================================
   WHITE NAVBAR STYLES
   ========================================================================== */

/**/

/* ==========================================================================
   CLASSY HERO TYPOGRAPHY & BUTTONS
   ========================================================================== */

.resort-hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-overlay {
  background: linear-gradient(180deg, rgba(15, 23, 42, 0.55) 0%, rgba(15, 23, 42, 0.75) 100%);
}

/* Subtitle Tag */
.hero-subtitle {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: #EAB308; /* Bright luxury gold */
  letter-spacing: 4px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 16px;
  background: rgba(234, 179, 8, 0.12);
  padding: 6px 18px;
  border-radius: 50px;
  border: 1px solid rgba(234, 179, 8, 0.3);
}

/* Main Heading */
.hero-title {
  font-family: 'Cinzel', serif;
  font-size: clamp(2.5rem, 5vw, 4.2rem);
  font-weight: 700;
  color: #FFFFFF;
  letter-spacing: 2px;
  line-height: 1.15;
  margin-bottom: 20px;
  text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

/* Description Text */
.hero-description {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 17px;
  font-weight: 300;
  color: #F1F5F9;
  max-width: 680px;
  margin: 0 auto 32px auto;
  line-height: 1.7;
  letter-spacing: 0.2px;
}

/* Primary Button */
.btn-resort-primary {
  background: linear-gradient(135deg, #D4AF37 0%, #AA820A 100%);
  color: #0F172A !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  border: none;
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.35);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.btn-resort-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
  color: #000000 !important;
}

/* Outline Button */
.btn-resort-outline {
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #FFFFFF !important;
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 14px 32px;
  border-radius: 4px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(4px);
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
  margin-left: 12px;
}

.btn-resort-outline:hover {
  background: #FFFFFF;
  color: #0F172A !important;
  border-color: #FFFFFF;
  transform: translateY(-2px);
}


/* ==========================================================================
   QUICK CONTACT SECTION (ABOVE FOOTER)
   ========================================================================== */

.quick-contact-section {
  padding: 80px 0;
  background-color: #060E18; /* Dark subtle gradient background */
  position: relative;
}

.quick-contact-card {
  background: #0B192C;
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
}

.section-tag-gold {
  color: #D4AF37;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.contact-title {
  font-family: 'Cinzel', serif;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.contact-desc {
  color: #94A3B8;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Contact Details Badge */
.direct-contact-items {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.03);
  padding: 12px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.contact-item i {
  color: #D4AF37;
  font-size: 18px;
}

.contact-item small {
  display: block;
  color: #64748B;
  font-size: 11px;
  text-transform: uppercase;
}

.contact-item a {
  color: #FFFFFF;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: color 0.2s ease;
}

.contact-item a:hover {
  color: #D4AF37;
}

/* Inputs styling */
.quick-form .custom-input {
  background: #08121E;
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-radius: 6px;
  padding: 12px 15px;
  font-size: 14px;
  transition: all 0.25s ease;
}

.quick-form .custom-input:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
  background: #0B192C;
  color: #ffffff;
}

.quick-form label {
  color: #CBD5E1;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
}

@media (max-width: 767px) {
  .quick-contact-card {
    padding: 25px 20px;
  }
}

/* ==========================================================================
   LIGHT / WHITE QUICK CONTACT SECTION
   ========================================================================== */

.quick-contact-section-light {
  padding: 80px 0;
  background-color: #F8FAFC; /* Light slate background */
  position: relative;
}

.quick-contact-card-light {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 48px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.section-tag-amber {
  color: #D97706; /* Rich amber gold */
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 10px;
}

.contact-title-light {
  font-family: 'Cinzel', serif;
  color: #0F172A; /* Dark navy heading */
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 15px;
}

.contact-desc-light {
  color: #475569;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 25px;
}

/* Contact Info Items */
.direct-contact-items-light {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item-light {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #F8FAFC;
  padding: 14px 18px;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
  transition: border-color 0.25s ease;
}

.contact-item-light:hover {
  border-color: #D97706;
}

.contact-item-light i {
  color: #D97706;
  font-size: 18px;
}

.contact-item-light small {
  display: block;
  color: #64748B;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item-light a,
.contact-item-light span {
  color: #0F172A;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  transition: color 0.2s ease;
}

.contact-item-light a:hover {
  color: #D97706;
}

/* ==========================================================================
   ENHANCED FORM SPACING & TURNSTILE WRAPPER
   ========================================================================== */

/* Uniform Input Padding & Label Distance */
.quick-form-light label {
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px; /* Gives breathable gap under label */
  display: block;
}

.quick-form-light .custom-input-light {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  color: #0F172A;
  border-radius: 10px;
  padding: 14px 18px; /* Taller input fields for a modern feel */
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
  transition: all 0.25s ease-in-out;
}

.quick-form-light .custom-input-light::placeholder {
  color: #94A3B8;
}

.quick-form-light .custom-input-light:focus {
  background: #FFFFFF;
  border-color: #D97706;
  outline: none;
  box-shadow: 0 0 0 4px rgba(217, 119, 6, 0.12);
}

/* Prevent raw textarea resizing distortion */
.quick-form-light textarea.custom-input-light {
  resize: vertical;
  min-height: 120px;
}

/* Turnstile Box Container & Link Styling */
.turnstile-wrapper {
  background: transparent;
  /*border: 1px solid #E2E8F0;*/
  border-radius: 10px;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 70px;
  margin-top: 4px;
  margin-bottom: 6px;
}

/* Clean up fallback links like "Troubleshoot" inside Turnstile */
.turnstile-wrapper a {
  color: #64748B !important;
  font-size: 12px !important;
  text-decoration: underline !important;
  margin-top: 6px;
  display: inline-block;
}

.turnstile-wrapper a:hover {
  color: #D97706 !important;
}

/* Enhanced Submit Button */
.btn-resort-amber {
  background: #F59E0B;
  color: #0F172A !important;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 16px 28px; /* Taller CTA button */
  border-radius: 10px;
  border: none;
  cursor: pointer;
  width: 100%;
  box-shadow: 0 4px 12px rgba(245, 158, 11, 0.2);
  transition: all 0.25s ease-in-out;
}

.btn-resort-amber:hover {
  background: #D97706;
  color: #FFFFFF !important;
  box-shadow: 0 6px 18px rgba(217, 119, 6, 0.3);
  transform: translateY(-1px);
}

@media (max-width: 767px) {
  .quick-contact-card-light {
    padding: 24px 20px;
  }
}

/* Container & Card Framing */
.quick-contact-section-light {
  padding: 60px 0;
  background-color: #F8FAFC;
}

.quick-contact-card-light {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
}

/* Typography Constraints */
.section-tag-amber {
  color: #D97706;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 8px;
}

.contact-title-light {
  font-family: 'Cinzel', serif;
  color: #0F172A;
  font-size: 1.75rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 12px;
}

.contact-desc-light {
  color: #475569;
  font-size: 14px;
  line-height: 1.5;
  margin-bottom: 24px;
}

/* Contact Badges & Icon Box Lock */
.direct-contact-items-light {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-item-light {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #F8FAFC;
  padding: 12px 16px;
  border-radius: 10px;
  border: 1px solid #E2E8F0;
}

/* Strictly constrain icon dimensions */
.contact-item-light .icon-box {
  width: 40px;
  height: 40px;
  min-width: 40px;
  min-height: 40px;
  background: #FEF3C7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-item-light i,
.contact-item-light svg {
  color: #D97706;
  font-size: 16px !important;
  width: 16px !important;
  height: 16px !important;
  max-width: 16px !important;
  max-height: 16px !important;
}

.contact-item-light small {
  display: block;
  color: #64748B;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.contact-item-light a {
  color: #0F172A;
  text-decoration: none;
  font-weight: 700;
  font-size: 13px;
}

/* Form Styles */
.quick-form-light label {
  color: #334155;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 6px;
  display: block;
}

.quick-form-light .custom-input-light {
  background: #F8FAFC;
  border: 1px solid #CBD5E1;
  color: #0F172A;
  border-radius: 8px;
  padding: 10px 14px;
  font-size: 14px;
  width: 100%;
  box-sizing: border-box;
}

.quick-form-light .custom-input-light:focus {
  background: #FFFFFF;
  border-color: #D97706;
  outline: none;
  box-shadow: 0 0 0 3px rgba(217, 119, 6, 0.15);
}

.btn-resort-amber {
  background: #F59E0B;
  color: #0F172A !important;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 12px 24px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  width: 100%;
  transition: background 0.2s ease;
}

.btn-resort-amber:hover {
  background: #D97706;
  color: #FFFFFF !important;
}



/* Bordered Button Styling for Staff Portal */
      /* Bordered Button Styling for Staff Portal */
.staff-portal-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid #d4af37 !important;
  color: #d4af37 !important;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  background: transparent;
}

/* Hover state fix */
.staff-portal-btn:hover {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border: 1px solid #d4af37 !important;
  color: #d4af37 !important;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-decoration: none !important;
  transition: all 0.3s ease;
  background: transparent;
}

      /* Modal Styling */
      .staff-modal-content {
        background: #0b192c;
        border: 1px solid rgba(212, 175, 55, 0.3);
        border-radius: 12px;
        color: #ffffff;
        box-shadow: 0 15px 35px rgba(0,0,0,0.6);
      }
      .staff-modal-header {
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 20px 25px;
        position: relative;
      }
      .staff-modal-title {
        font-family: 'Cinzel', serif;
        color: #d4af37;
        letter-spacing: 1px;
        font-size: 1.25rem;
        margin: 0;
      }
      .staff-modal-body {
        padding: 25px;
      }
      .staff-modal-footer {
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding: 15px 25px;
      }
      .btn-webmail-link {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        background: #d4af37;
        color: #0b192c !important;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 1px;
        padding: 12px 20px;
        border-radius: 6px;
        text-decoration: none;
        transition: all 0.3s ease;
        width: 100%;
      }
      .btn-webmail-link:hover {
        background: #f3e5ab;
        color: #000 !important;
        text-decoration: none;
        box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
      }
      .modal-close-custom {
        background: transparent;
        border: none;
        color: #ffffff;
        font-size: 1.5rem;
        opacity: 0.7;
        cursor: pointer;
      }
      .modal-close-custom:hover {
        opacity: 1;
        color: #d4af37;
      }