/* ============================================
   RF UNISEX SALOON - PREMIUM STYLES (FIXED)
   ============================================ */

/* Premium Color Palette */
:root {
  --charcoal: #0B0F14;
  --gold: #C9A24B;
  --gold-light: #D4B76A;
  --ivory: #F7F4EE;
  --slate: #6B7280;
  --mint: #7BD389;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(11, 15, 20, 0.04);
  --shadow-md: 0 4px 16px rgba(11, 15, 20, 0.08);
  --shadow-lg: 0 12px 40px rgba(11, 15, 20, 0.12);
  --shadow-xl: 0 20px 60px rgba(11, 15, 20, 0.16);
}

/* Base Typography & Resets */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html, body {
  margin: 0;
  padding: 0;
  height: 100%;
}

body {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: var(--charcoal);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  line-height: 1.6;
  overflow-x: hidden;
}

/* Premium Typography */
.site-title,
h1, h2, h3, h4, h5, h6 {
  font-family: "Playfair Display", Georgia, serif;
  color: var(--charcoal);
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 0 0 1rem 0;
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }

p {
  font-size: 1.0625rem;
  line-height: 1.7;
  margin: 0 0 1rem 0;
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
}

/* ============================================
   PREMIUM HEADER - FIXED
   ============================================ */
.site-header {
  background: rgba(255, 255, 255, 0.98);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1030;
  backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 1rem;
  padding-bottom: 1rem;
}

/* Brand */
.site-header .brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  transition: transform 0.3s ease;
  z-index: 1;
}

.site-header .brand:hover {
  transform: scale(1.02);
}

.site-header .brand img {
  margin-right: 12px;
  height: 46px;
}

.site-header .brand-text {
  display: block;
}

.site-header .brand-text .site-title {
  font-size: 1.4rem;
  margin-bottom: 0;
  line-height: 1;
  background: linear-gradient(135deg, var(--charcoal) 0%, var(--gold) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.site-header .brand-text small {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--slate);
  display: block;
  margin-top: 2px;
}

/* Desktop Navigation */
.site-header nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}

.site-header nav .nav {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 0.25rem;
}

.site-header .nav-item {
  margin: 0;
}

.site-header .nav-link {
  color: var(--charcoal);
  padding: 0.8rem 1rem;
  font-weight: 500;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  position: relative;
  display: block;
  white-space: nowrap;
}

.site-header .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: all 0.3s ease;
  transform: translateX(-50%);
}

.site-header .nav-link:hover {
  color: var(--gold);
  text-decoration: none;
}

.site-header .nav-link:hover::after {
  width: 60%;
}

.site-header .nav-item.ml-3 {
  margin-left: 1rem !important;
}

/* Right side actions container */
.site-header .header-actions {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-left: auto;
}

/* Phone link in header */
.site-header .phone-link {
  color: var(--charcoal);
  font-size: 0.95rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  white-space: nowrap;
  padding: 8px 16px;
  border-radius: 8px;
}

.site-header .phone-link:hover {
  color: var(--gold);
  background: rgba(201, 162, 75, 0.1);
  text-decoration: none;
}

.site-header .phone-link i {
  font-size: 1rem;
  color: var(--gold);
}

/* Hide mobile menu by default */
#mobileMenu {
  display: none;
}

#mobileMenu.show {
  display: block;
}

/* Mobile toggle button */
.site-header .mobile-toggle {
  display: none;
  background: transparent;
  border: 2px solid var(--charcoal);
  padding: 10px 14px;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.3s ease;
  color: var(--charcoal);
}

.site-header .mobile-toggle:hover {
  background: var(--charcoal);
  color: var(--white);
}

.site-header .mobile-toggle i {
  font-size: 1.1rem;
}

/* ============================================
   PREMIUM BUTTONS
   ============================================ */
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  color: var(--charcoal);
  border: none;
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  font-size: 1rem;
  box-shadow: 0 8px 24px rgba(201, 162, 75, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
  line-height: 1;
}

.btn-gold::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
  transition: left 0.5s;
}

.btn-gold:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(201, 162, 75, 0.35);
  color: var(--charcoal);
  text-decoration: none;
}

.btn-gold:hover::before {
  left: 100%;
}

.btn-gold.btn-sm {
  padding: 10px 24px;
  font-size: 0.9rem;
}

.btn-gold.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-outline-light {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  padding: 14px 32px;
  border-radius: 12px;
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  color: var(--white);
  text-decoration: none;
}

.btn-outline-light.btn-lg {
  padding: 16px 40px;
  font-size: 1.1rem;
}

.btn-outline-dark {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--charcoal);
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
}

.btn-outline-dark:hover {
  background: var(--charcoal);
  color: var(--white);
  transform: translateY(-2px);
  text-decoration: none;
}

/* ============================================
   MAIN CONTENT SPACING
   ============================================ */
.site-main {
  padding-top: 76px;
  min-height: calc(100vh - 200px);
}

/* ============================================
   HERO SECTION - PREMIUM WITH SLIDER
   ============================================ */
.hero {
  color: var(--white);
  padding: 120px 0 100px;
  position: relative;
  overflow: hidden;
  text-align: center;
  min-height: 600px;
}

/* Hero Background Slider */
.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  display: flex;
}

.hero-slide {
  position: absolute;
  top: 0;
  left: 100%;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: left 1s ease-in-out;
}

.hero-slide.active {
  left: 0;
  z-index: 1;
}

.hero-slide.prev {
  left: -100%;
}

/* Gradient Overlay */
.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(11, 15, 20, 0.7) 0%, rgba(11, 15, 20, 0.5) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 50%, rgba(201, 162, 75, 0.15) 0%, transparent 60%);
  z-index: 2;
  pointer-events: none;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero .display-4 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 700;
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  letter-spacing: -0.03em;
  color: var(--white);
}

.hero .lead {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 2.5rem;
  font-weight: 400;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.hero .mt-4 {
  margin-top: 2rem;
  display: flex;
  gap: 1rem;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.hero .mr-2 {
  margin-right: 0;
}

/* Trust Bar - Premium */
.trust-bar {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  padding: 24px 40px;
  border-radius: 16px;
  display: inline-flex;
  align-items: center;
  gap: 32px;
  margin-top: 3rem;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.trust-bar > div {
  text-align: center;
}

.trust-bar .h4,
.trust-bar .h6 {
  color: var(--white);
  margin: 0 0 4px 0;
  font-weight: 700;
  font-size: 1.8rem;
}

.trust-bar .small {
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-top: 4px;
  display: block;
}

.trust-bar .mx-3 {
  color: rgba(255, 255, 255, 0.5);
  font-size: 1.5rem;
}

/* ============================================
   SERVICES SECTION - PREMIUM CARDS
   ============================================ */
.bg-light-ivory {
  background: var(--ivory);
}

#services {
  padding: 100px 0;
  position: relative;
}

#services h2 {
  text-align: center;
  margin-bottom: 4rem;
  position: relative;
}

#services h2::after {
  content: '';
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 2px;
}

/* Row spacing */
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
  padding-left: 15px;
  padding-right: 15px;
}

.mb-4 {
  margin-bottom: 2rem;
}

/* Premium Service Cards */
.card {
  background: var(--white);
  border: none;
  border-radius: 20px;
  padding: 2rem;
  height: 100%;
  box-shadow: var(--shadow-sm);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

.card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.card:hover::before {
  transform: scaleX(1);
}

.card h5 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
  font-weight: 700;
}

.card p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  line-height: 1.6;
  flex-grow: 1;
}

.card .mt-auto {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.card strong {
  font-size: 1.8rem;
  color: var(--gold);
  font-family: "Playfair Display", serif;
}

.text-center {
  text-align: center;
}

.mt-3 {
  margin-top: 2rem;
}

/* ============================================
   FOOTER - PREMIUM
   ============================================ */
.site-footer {
  background: linear-gradient(135deg, #0B0F14 0%, #1a1f2e 100%);
  color: var(--white);
  padding: 80px 0 40px;
  position: relative;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 75, 0.5), transparent);
}

.site-footer .row {
  margin-bottom: 2rem;
}

.site-footer .col-md-4,
.site-footer .col-md-3,
.site-footer .col-md-2 {
  padding: 0 15px;
}

.site-footer .col-md-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.site-footer .col-md-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.site-footer .col-md-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.site-footer h5,
.site-footer h6 {
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 1.5rem;
  font-size: 1.1rem;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: all 0.3s ease;
}

.site-footer a:hover {
  color: var(--gold);
  text-decoration: none;
}

.site-footer .list-unstyled li {
  margin-bottom: 0.8rem;
}

.site-footer i {
  color: var(--gold);
  margin-right: 8px;
}

.site-footer .border-top {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 2rem;
}

.site-footer .d-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.site-footer .small {
  font-size: 0.9rem;
}

/* ============================================
   WHATSAPP BUTTON - PREMIUM
   ============================================ */
.whatsapp-fab {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  color: var(--white);
  padding: 16px 24px;
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
  display: inline-flex;
  align-items: center;
  z-index: 2000;
  text-decoration: none;
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% {
    box-shadow: 0 8px 32px rgba(37, 211, 102, 0.3);
  }
  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.5);
  }
}

.whatsapp-fab:hover {
  transform: translateY(-4px) scale(1.05);
  box-shadow: 0 12px 40px rgba(37, 211, 102, 0.4);
  text-decoration: none;
  color: var(--white);
}

.whatsapp-fab i {
  font-size: 24px;
  margin-right: 10px;
}

.whatsapp-fab .whatsapp-text {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--white);
}

/* ============================================
   UTILITY CLASSES
   ============================================ */
.text-gold {
  color: var(--gold) !important;
}

.text-muted {
  color: var(--slate) !important;
}

.text-light {
  color: rgba(255, 255, 255, 0.9) !important;
}

.text-uppercase {
  text-transform: uppercase;
}

.text-right {
  text-align: right;
}

.mb-0 { margin-bottom: 0 !important; }
.mb-1 { margin-bottom: 0.5rem !important; }
.mb-3 { margin-bottom: 1.5rem !important; }
.mt-2 { margin-top: 1rem !important; }
.mt-4 { margin-top: 2rem !important; }
.mr-2 { margin-right: 1rem !important; }
.mr-3 { margin-right: 1.5rem !important; }
.ml-3 { margin-left: 1.5rem !important; }
.mx-3 { margin-left: 1.5rem !important; margin-right: 1.5rem !important; }

.py-3 { padding-top: 1.5rem !important; padding-bottom: 1.5rem !important; }
.py-5 { padding-top: 3rem !important; padding-bottom: 3rem !important; }
.p-3 { padding: 1.5rem !important; }
.p-4 { padding: 2rem !important; }

.d-flex {
  display: flex !important;
}

.d-block {
  display: block !important;
}

.d-inline-flex {
  display: inline-flex !important;
}

.align-items-center {
  align-items: center !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.justify-content-center {
  justify-content: center !important;
}

.h-100 {
  height: 100% !important;
}

/* ============================================
   MODAL ENHANCEMENTS
   ============================================ */
.modal {
  display: none;
  position: fixed;
  z-index: 1400;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.5);
}

.modal.show {
  display: flex !important;
  align-items: center;
  justify-content: center;
}

.modal-dialog {
  position: relative;
  width: auto;
  max-width: 500px;
  margin: 1rem;
}

.modal-content {
  border-radius: 20px;
  border: none;
  box-shadow: var(--shadow-xl);
  background: var(--white);
}

.modal-body {
  padding: 2.5rem;
}

.modal-body h5 {
  color: var(--charcoal);
  margin-bottom: 1rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 992px) {
  .hero {
    padding: 100px 0 80px;
  }
  
  #services {
    padding: 60px 0;
  }
  
  .trust-bar {
    flex-direction: column;
    gap: 16px;
    padding: 24px 32px;
  }
  
  .col-md-4,
  .col-md-3,
  .col-md-2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  /* Hide desktop nav, show mobile button */
  .site-header nav.d-none {
    display: none !important;
  }
  
  .site-header .mobile-toggle {
    display: block !important;
  }
  
  /* Mobile menu */
  #mobileMenu {
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow-md);
  }
  
  #mobileMenu nav {
    padding: 1rem 0;
  }
  
  #mobileMenu a {
    display: block;
    padding: 0.8rem 1rem;
    color: var(--charcoal);
    font-weight: 500;
    transition: all 0.3s ease;
  }
  
  #mobileMenu a:hover {
    background: var(--ivory);
    color: var(--gold);
  }
  
  /* Hide brand text on mobile */
  .site-header .brand-text {
    display: none !important;
  }
  
  .site-header .brand img {
    margin-right: 0;
  }
  
  /* Hide phone link on mobile */
  .site-header .phone-link {
    display: none !important;
  }
  
  .hero {
    padding: 80px 0 60px;
  }
  
  .hero .mt-4 {
    flex-direction: column;
  }
  
  .whatsapp-fab .whatsapp-text {
    display: none !important;
  }
  
  .whatsapp-fab {
    padding: 16px;
    border-radius: 50%;
    width: 56px;
    height: 56px;
    justify-content: center;
  }
  
  .whatsapp-fab i {
    margin-right: 0;
  }
  
  /* Form responsive */
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .form-row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .form-row > .form-group {
    padding-left: 0;
    padding-right: 0;
  }
}

@media (max-width: 576px) {
  .btn-gold,
  .btn-outline-light,
  .btn-outline-dark {
    padding: 12px 24px;
    font-size: 0.95rem;
  }
  
  .btn-gold.btn-lg,
  .btn-outline-light.btn-lg {
    padding: 14px 28px;
    font-size: 1rem;
  }
  
  .site-footer {
    padding: 60px 0 30px;
  }
  
  .site-footer .d-flex {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
}

/* ============================================
   FORM STYLES - PREMIUM
   ============================================ */
.form-group {
  margin-bottom: 1.5rem;
}

.form-group label {
  display: block;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.5rem;
  font-size: 0.95rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--charcoal);
  background-color: var(--white);
  border: 2px solid #E5E7EB;
  border-radius: 10px;
  transition: all 0.3s ease;
  font-family: inherit;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201, 162, 75, 0.1);
}

.form-control:hover {
  border-color: var(--gold-light);
}

textarea.form-control {
  resize: vertical;
  min-height: 100px;
}

select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236B7280' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 36px;
  appearance: none;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.form-row > .form-group {
  padding-left: 15px;
  padding-right: 15px;
}

.col-md-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

/* Success button for WhatsApp */
.btn-success {
  background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
  color: var(--white);
  border: none;
  padding: 12px 28px;
  border-radius: 12px;
  font-weight: 600;
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-block;
  cursor: pointer;
  text-align: center;
}

.btn-success:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
  color: var(--white);
  text-decoration: none;
}

.btn-block {
  display: block;
  width: 100%;
}

/* ============================================
   BOOKING PAGE SPECIFIC
   ============================================ */
.booking-page-section {
  padding: 80px 0;
  background: #FAFAFA;
}

.booking-form-wrapper {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #E5E7EB;
  margin-bottom: 2rem;
}

.booking-form-wrapper h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.booking-form-wrapper .text-muted {
  font-size: 1rem;
  color: var(--slate);
  margin-bottom: 2rem;
}

.booking-sidebar-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #E5E7EB;
  margin-bottom: 1.5rem;
}

.booking-sidebar-card h5,
.booking-sidebar-card h6 {
  font-size: 1.2rem;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 1.25rem;
}

.booking-sidebar-card p {
  margin-bottom: 1.25rem;
  color: var(--slate);
  font-size: 0.95rem;
}

.booking-sidebar-card .small {
  font-size: 0.9rem;
  line-height: 1.6;
}

.booking-sidebar-card .btn {
  margin-bottom: 0.75rem;
}

.booking-sidebar-card .btn:last-child {
  margin-bottom: 0;
}

/* Thank you page */
.thank-you-section {
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 0;
  background: #FAFAFA;
}

.thank-you-card {
  background: var(--white);
  border-radius: 12px;
  padding: 4rem 3rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #E5E7EB;
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.thank-you-card h1 {
  font-size: 3rem;
  margin-bottom: 1rem;
  color: var(--charcoal);
}

.thank-you-card .lead {
  font-size: 1.2rem;
  color: var(--slate);
  margin-bottom: 2rem;
  line-height: 1.7;
}

.thank-you-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 2rem;
  font-size: 2.5rem;
  color: var(--white);
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991px) {
  .contact-row-spacing {
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .contact-row-spacing > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
  
  .booking-sidebar-card {
    margin-top: 2rem;
  }
}

@media (max-width: 768px) {
  .page-section {
    padding: 60px 0;
  }
  
  .page-section h1 {
    font-size: 2rem;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .gallery-item {
    margin-bottom: 2rem;
  }
  
  .gallery-item img {
    height: 220px;
  }
  
  .testimonial-card {
    margin-bottom: 2rem;
    height: auto;
  }
  
  /* Form responsive */
  .col-md-6 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  
  .form-row {
    margin-left: 0;
    margin-right: 0;
  }
  
  .form-row > .form-group {
    padding-left: 0;
    padding-right: 0;
  }
  
  .booking-page-section {
    padding: 60px 0;
  }
  
  .booking-form-wrapper {
    padding: 2rem;
  }
  
  .booking-form-wrapper h1 {
    font-size: 2rem;
  }
  
  .booking-sidebar-card {
    padding: 1.5rem;
  }
  
  .thank-you-section {
    padding: 60px 0;
  }
  
  .thank-you-card {
    padding: 3rem 2rem;
  }
  
  .thank-you-card h1 {
    font-size: 2.5rem;
  }
}

/* ============================================
   PAGE SECTIONS - CLEAN & PROFESSIONAL
   ============================================ */
.page-section {
  padding: 80px 0;
  background: #FAFAFA;
}

.page-section h1 {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
  color: var(--charcoal);
}

.page-section .lead,
.page-section .text-muted {
  font-size: 1.1rem;
  color: var(--slate);
  margin-bottom: 3rem;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-info-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #E5E7EB;
  height: 100%;
  margin-bottom: 2rem;
}

.contact-info-card h6 {
  font-size: 1.3rem;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 2rem;
}

.contact-info-card p {
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--slate);
}

.contact-info-card strong {
  color: var(--charcoal);
  font-weight: 600;
  margin-right: 0.5rem;
  display: inline-block;
  min-width: 100px;
}

.contact-info-card a {
  color: var(--gold);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-info-card a:hover {
  color: var(--gold-light);
  text-decoration: underline;
}

.contact-form-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2.5rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #E5E7EB;
  margin-bottom: 2rem;
}

.contact-form-card h6 {
  font-size: 1.3rem;
  color: var(--charcoal);
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Add spacing between contact cards */
.contact-row-spacing {
  margin-left: -20px;
  margin-right: -20px;
}

.contact-row-spacing > [class*='col-'] {
  padding-left: 20px;
  padding-right: 20px;
}

/* ============================================
   GALLERY PAGE
   ============================================ */
.gallery-item {
  background: var(--white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #E5E7EB;
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gallery-item img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
}

/* ============================================
   TESTIMONIALS PAGE
   ============================================ */
.testimonial-card {
  background: var(--white);
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  border: 1px solid #E5E7EB;
  margin-bottom: 2.5rem;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: calc(100% - 2.5rem);
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.testimonial-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  flex-shrink: 0;
}

.testimonial-content {
  flex: 1;
}

.testimonial-content strong {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--charcoal);
  display: block;
  margin-bottom: 0.5rem;
}

.testimonial-rating {
  color: #FFA500;
  font-size: 1rem;
  margin-bottom: 1rem;
  display: block;
}

.testimonial-content p {
  color: var(--slate);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ============================================
   RESPONSIVE ADJUSTMENTS
   ============================================ */
@media (max-width: 991px) {
  .contact-row-spacing {
    margin-left: -15px;
    margin-right: -15px;
  }
  
  .contact-row-spacing > [class*='col-'] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (max-width: 768px) {
  .page-section {
    padding: 60px 0;
  }
  
  .page-section h1 {
    font-size: 2rem;
  }
  
  .contact-info-card,
  .contact-form-card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
  
  .gallery-item {
    margin-bottom: 2rem;
  }
  
  .gallery-item img {
    height: 220px;
  }
  
  .testimonial-card {
    margin-bottom: 2rem;
    height: auto;
  }
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#services .card {
  animation: fadeInUp 0.6s ease-out forwards;
}

#services .card:nth-child(1) { animation-delay: 0.1s; }
#services .card:nth-child(2) { animation-delay: 0.2s; }
#services .card:nth-child(3) { animation-delay: 0.3s; }