/* ==============================================
   PRIYA BEAUTY PARLOUR - STYLESHEET
   Luxury Plum, Gold, and Rose Gold Styling System
   ============================================== */

/* --- CSS Variables & Design Tokens --- */
:root {
  /* Color Palette */
  --color-primary: #1e1218;       /* Deep warm luxury charcoal/plum */
  --color-secondary: #2d1b24;     /* Rich dark plum for dark backgrounds */
  --color-primary-rgb: 30, 18, 24;
  --color-accent: #c5a880;        /* Elegant champagne gold */
  --color-accent-hover: #b3946a;
  --color-accent-light: #e5a8a0;  /* Soft blush rose gold */
  --color-bg-light: #fdf9f9;      /* Creamy soft blush for light sections */
  --color-white: #ffffff;
  
  /* Text Colors */
  --color-text-dark: #201319;
  --color-text-light: #fdf9f9;
  --color-text-muted: #85747c;
  --color-text-muted-light: #d8ccd0;

  /* Typography */
  --font-header: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;

  /* Spacing */
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 2rem;
  --spacing-lg: 4rem;
  --spacing-xl: 6rem;

  /* Shadows */
  --shadow-sm: 0 4px 6px rgba(30, 18, 24, 0.04);
  --shadow-md: 0 10px 20px rgba(30, 18, 24, 0.08);
  --shadow-lg: 0 20px 40px rgba(30, 18, 24, 0.12);
  --shadow-accent: 0 8px 24px rgba(197, 168, 128, 0.2);

  /* Glassmorphism */
  --glass-bg: rgba(45, 27, 36, 0.85);
  --glass-bg-light: rgba(255, 255, 255, 0.8);
  --glass-border: rgba(197, 168, 128, 0.2);
  --glass-blur: blur(12px);

  /* Borders & Radius */
  --border-radius-sm: 4px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  --border-radius-circle: 50%;
  
  /* Transitions */
  --transition-fast: all 0.2s ease;
  --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ==============================================
   BASE & RESET STYLES
   ============================================== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-size: 16px;
  scroll-behavior: auto; /* Managed via script.js for smooth offset scroll */
  scroll-padding-top: 80px; /* Account for sticky header */
}

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-header);
  font-weight: 600;
  line-height: 1.25;
  color: var(--color-primary);
}

p {
  color: var(--color-text-muted);
  font-weight: 400;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* ==============================================
   REUSABLE UTILITIES & LAYOUT
   ============================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }
.text-gold { color: var(--color-accent); }
.text-light { color: var(--color-text-light); }
.text-muted { color: var(--color-text-muted-light); }

.grid {
  display: grid;
  gap: var(--spacing-md);
}

.grid-2 {
  grid-template-columns: 1fr;
}

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

.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: var(--spacing-md);
}

.section-subtitle {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-accent);
  display: inline-block;
  margin-bottom: var(--spacing-xs);
  position: relative;
}

.section-title {
  font-size: 2.25rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
  position: relative;
}

.section-desc {
  max-width: 600px;
  margin: 0 auto var(--spacing-lg);
  font-size: 1rem;
}

/* Custom Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 0.9rem 2rem;
  border-radius: var(--border-radius-sm);
  transition: var(--transition-smooth);
  cursor: pointer;
  border: 1px solid transparent;
}

.btn-sm {
  padding: 0.5rem 1.25rem;
  font-size: 0.8rem;
}

.btn-lg {
  padding: 1.1rem 2.5rem;
  font-size: 0.95rem;
}

.btn-primary {
  background-color: var(--color-accent);
  color: var(--color-primary);
  box-shadow: var(--shadow-accent);
}

.btn-primary:hover {
  background-color: var(--color-accent-hover);
  transform: translateY(-3px);
  box-shadow: 0 12px 28px rgba(197, 168, 128, 0.35);
}

.btn-outline {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-accent);
}

.btn-outline:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  transform: translateY(-3px);
}

.btn-block {
  display: flex;
  width: 100%;
}

/* Badges */
.badge {
  display: inline-block;
  padding: 0.35rem 0.8rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-radius: 50px;
  background-color: var(--color-bg-light);
  color: var(--color-primary);
}

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

/* Form Styling */
.form-group {
  margin-bottom: var(--spacing-sm);
  text-align: left;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--color-text-dark);
}

.required {
  color: #e57c7c;
}

.input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.input-icon {
  position: absolute;
  left: 15px;
  color: var(--color-accent);
  font-size: 0.9rem;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
  width: 100%;
  padding: 0.85rem 1rem 0.85rem 2.6rem;
  border: 1px solid rgba(45, 27, 36, 0.15);
  border-radius: var(--border-radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--color-text-dark);
  background-color: var(--color-white);
  transition: var(--transition-fast);
}

.input-wrapper textarea {
  padding-left: 1rem;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
  outline: none;
  border-color: var(--color-accent);
  box-shadow: 0 0 0 3px rgba(197, 168, 128, 0.2);
}

/* Scroll Lock */
.no-scroll {
  overflow: hidden !important;
}

/* ==============================================
   HEADER & NAVIGATION
   ============================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: var(--transition-smooth);
  padding: var(--spacing-sm) 0;
  background-color: transparent;
}

.header.scrolled {
  background-color: var(--glass-bg);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--glass-border);
  padding: 0.65rem 0;
  box-shadow: var(--shadow-md);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
}

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

.logo-main {
  font-family: var(--font-header);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--color-accent);
  letter-spacing: 1px;
  line-height: 1;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 3px;
  color: var(--color-white);
  margin-top: 2px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: var(--spacing-md);
}

.nav-link {
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-light);
  opacity: 0.85;
  padding: 6px 0;
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-fast);
}

.nav-link:hover, .nav-link.active {
  opacity: 1;
  color: var(--color-accent);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
}

.btn-desktop-cta {
  display: none;
}

@media (min-width: 992px) {
  .btn-desktop-cta {
    display: inline-flex;
  }
}

.nav-mobile-cta {
  display: block;
  width: 100%;
  margin-top: var(--spacing-md);
  padding: 0 var(--spacing-md);
}

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

/* Mobile Hamburger Menu */
.mobile-menu-btn {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 24px;
  height: 18px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-menu-btn .bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-white);
  transition: var(--transition-fast);
  transform-origin: left center;
}

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

/* Hamburger animations */
.mobile-menu-btn.active .bar:nth-child(1) {
  transform: rotate(45deg) translate(0px, 0px);
  background-color: var(--color-accent);
}

.mobile-menu-btn.active .bar:nth-child(2) {
  opacity: 0;
}

.mobile-menu-btn.active .bar:nth-child(3) {
  transform: rotate(-45deg) translate(0px, -1px);
  background-color: var(--color-accent);
}

/* Mobile Navigation Drawer */
@media (max-width: 991px) {
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--color-secondary);
    box-shadow: -10px 0 30px rgba(0,0,0,0.25);
    padding: var(--spacing-xl) 0 var(--spacing-md);
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    z-index: 999;
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 var(--spacing-md);
    gap: var(--spacing-sm);
    width: 100%;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 10px 0;
    width: 100%;
    display: block;
  }
}

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

/* ==============================================
   HERO SECTION
   ============================================== */
.hero-section {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-image: url('https://images.unsplash.com/photo-1596462502278-27bfdc403348?q=80&w=1600&auto=format&fit=crop');
  background-size: cover;
  background-position: center 30%;
  color: var(--color-white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(30, 18, 24, 0.92) 20%, rgba(30, 18, 24, 0.4) 100%);
  z-index: 1;
}

.hero-content-wrapper {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--spacing-md);
  flex-grow: 1;
  display: flex;
  align-items: center;
}

.hero-text {
  max-width: 650px;
}

.hero-tag {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 4px;
  color: var(--color-accent);
  display: inline-block;
  margin-bottom: var(--spacing-sm);
  animation: pulseGold 2.5s infinite;
}

.hero-title {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--spacing-sm);
  letter-spacing: 0.5px;
}

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

.hero-description {
  font-size: 1rem;
  color: var(--color-text-muted-light);
  margin-bottom: var(--spacing-md);
  max-width: 550px;
  line-height: 1.7;
}

@media (min-width: 768px) {
  .hero-description {
    font-size: 1.1rem;
  }
}

.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

@media (min-width: 480px) {
  .hero-cta-group {
    flex-direction: row;
  }
}

/* Hero Highlights Bar */
.hero-highlights {
  position: relative;
  z-index: 2;
  background-color: var(--color-secondary);
  border-top: 2px solid var(--color-accent);
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 1200px;
  margin: var(--spacing-md) auto 0;
  box-shadow: var(--shadow-lg);
}

@media (min-width: 768px) {
  .hero-highlights {
    grid-template-columns: repeat(3, 1fr);
    margin-top: 0;
    border-radius: var(--border-radius-sm);
    transform: translateY(30%);
  }
}

.highlight-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  border-bottom: 1px solid rgba(197, 168, 128, 0.1);
}

@media (min-width: 768px) {
  .highlight-item {
    border-bottom: none;
    border-right: 1px solid rgba(197, 168, 128, 0.1);
  }
  .highlight-item:last-child {
    border-right: none;
  }
}

.highlight-icon {
  font-size: 1.8rem;
  color: var(--color-accent);
}

.highlight-info h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 2px;
}

.highlight-info p {
  font-size: 0.75rem;
  color: var(--color-text-muted-light);
}

/* ==============================================
   ABOUT SECTION
   ============================================== */
.about-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-white);
}

@media (min-width: 768px) {
  .about-section {
    padding-top: var(--spacing-xl);
  }
}

.about-visuals {
  position: relative;
  padding-bottom: 30px;
}

.about-card-back {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100%;
  height: 380px;
  border: 2px solid var(--color-accent);
  z-index: 1;
  border-radius: var(--border-radius-sm);
}

.about-card-front {
  position: relative;
  width: 100%;
  height: 380px;
  background-size: cover;
  background-position: center;
  z-index: 2;
  box-shadow: var(--shadow-lg);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
}

.about-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30,18,24,0.6) 0%, transparent 100%);
}

.badge-google-rating {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 3;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: var(--glass-blur);
  padding: var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  border-left: 4px solid var(--color-accent);
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  box-shadow: var(--shadow-md);
}

.google-logo {
  font-size: 2.2rem;
}

.rating-stars {
  display: flex;
  flex-direction: column;
}

.rating-num {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--color-primary);
  margin-right: 4px;
}

.stars {
  color: #f1c40f;
  font-size: 0.8rem;
  margin-bottom: 2px;
}

.rating-count {
  font-size: 0.7rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.about-text-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-paragraph {
  margin-bottom: var(--spacing-sm);
  font-size: 0.95rem;
  line-height: 1.8;
}

.about-features-list {
  margin-top: var(--spacing-sm);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-sm);
}

.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
}

.feature-marker {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  background-color: rgba(197, 168, 128, 0.15);
  color: var(--color-accent);
  border-radius: var(--border-radius-circle);
  font-size: 0.7rem;
  flex-shrink: 0;
  margin-top: 4px;
}

.about-feature-item strong {
  display: block;
  font-size: 0.95rem;
  color: var(--color-primary);
  margin-bottom: 2px;
}

.about-feature-item p {
  font-size: 0.85rem;
}

/* Stats Counter Layout */
.about-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
  margin-top: var(--spacing-lg);
}

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

.stat-card {
  background-color: var(--color-bg-light);
  padding: var(--spacing-md) var(--spacing-sm);
  border-radius: var(--border-radius-sm);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border-bottom: 2px solid transparent;
  transition: var(--transition-smooth);
}

.stat-card:hover {
  transform: translateY(-5px);
  border-color: var(--color-accent);
  box-shadow: var(--shadow-md);
}

.stat-number {
  display: block;
  font-family: var(--font-header);
  font-size: 2.25rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted);
}

/* ==============================================
   SERVICES SECTION
   ============================================== */
.services-section {
  background-color: var(--color-primary);
  padding: var(--spacing-xl) 0;
  position: relative;
}

.tabs-nav-wrapper {
  overflow-x: auto;
  margin-bottom: var(--spacing-lg);
  padding-bottom: 6px;
  -webkit-overflow-scrolling: touch;
}

/* Hide scrollbar for standard design */
.tabs-nav-wrapper::-webkit-scrollbar {
  display: none;
}

.tabs-nav {
  display: flex;
  justify-content: flex-start;
  min-width: max-content;
  margin: 0 auto;
  border-bottom: 1px solid rgba(197, 168, 128, 0.15);
  gap: var(--spacing-sm);
}

@media (min-width: 992px) {
  .tabs-nav {
    justify-content: center;
    width: fit-content;
  }
}

.tab-btn {
  background: transparent;
  border: none;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--color-text-muted-light);
  padding: var(--spacing-sm) var(--spacing-md);
  cursor: pointer;
  position: relative;
  transition: var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.tab-btn i {
  font-size: 0.95rem;
  color: var(--color-accent);
}

.tab-btn::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--color-accent);
  transition: var(--transition-fast);
}

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

.tab-btn.active {
  color: var(--color-accent);
}

.tab-btn.active::after {
  width: 100%;
}

/* Tab Pane Fade-In Animation */
.tab-pane {
  display: none;
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.tab-pane.active {
  display: block;
  opacity: 1;
  transform: translateY(0);
}

/* Service Card Layout */
.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-md);
}

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

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

.service-card {
  background-color: var(--color-secondary);
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(197, 168, 128, 0.08);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
  text-align: left;
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: var(--color-accent);
  box-shadow: 0 15px 35px rgba(0,0,0,0.3);
}

.service-card-image {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
  transition: var(--transition-smooth);
}

.service-card:hover .service-card-image {
  transform: scale(1.03);
}

.service-details {
  padding: var(--spacing-md);
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-price {
  font-family: var(--font-header);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--color-accent);
  margin-bottom: var(--spacing-xs);
}

.service-details h3 {
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--color-white);
  margin-bottom: 4px;
}

.service-duration {
  font-size: 0.75rem;
  color: var(--color-text-muted-light);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-bottom: var(--spacing-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.service-duration i {
  color: var(--color-accent);
}

.service-details p {
  font-size: 0.85rem;
  color: var(--color-text-muted-light);
  line-height: 1.6;
  margin-bottom: var(--spacing-md);
  flex-grow: 1;
}

/* ==============================================
   GALLERY SECTION
   ============================================== */
.gallery-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-bg-light);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

@media (min-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-sm);
  }
}

.gallery-item {
  position: relative;
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  height: 200px;
}

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

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-smooth);
}

.gallery-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, rgba(30, 18, 24, 0.9) 10%, rgba(30, 18, 24, 0.2) 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: var(--spacing-sm);
  opacity: 0;
  transition: var(--transition-smooth);
}

.gallery-tag {
  font-size: 0.65rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: 2px;
}

.gallery-overlay h4 {
  font-size: 1rem;
  color: var(--color-white);
  font-weight: 600;
}

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

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

/* ==============================================
   TESTIMONIALS SECTION
   ============================================== */
.testimonials-section {
  background-color: var(--color-secondary);
  padding: var(--spacing-xl) 0;
  position: relative;
}

.testimonials-carousel-wrapper {
  position: relative;
  max-width: 800px;
  margin: var(--spacing-md) auto 0;
  display: flex;
  align-items: center;
}

.testimonials-carousel {
  width: 100%;
  position: relative;
  min-height: 280px;
  overflow: hidden;
}

.testimonial-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.95);
  visibility: hidden;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0.5s;
  padding: 0 var(--spacing-sm);
}

.testimonial-slide.active {
  opacity: 1;
  transform: scale(1);
  visibility: visible;
  transition: opacity 0.5s ease, transform 0.5s ease, visibility 0s 0s;
  position: relative;
}

.testimonial-slide .rating-stars {
  flex-direction: row;
  justify-content: center;
  color: #f1c40f;
  margin-bottom: var(--spacing-sm);
  font-size: 1.05rem;
}

.testimonial-text {
  font-family: var(--font-header);
  font-size: 1.15rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--color-text-muted-light);
  margin-bottom: var(--spacing-md);
}

@media (min-width: 768px) {
  .testimonial-text {
    font-size: 1.35rem;
  }
}

.client-profile {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-sm);
}

.client-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--border-radius-circle);
  background-size: cover;
  background-position: center;
  border: 2px solid var(--color-accent);
}

.client-info {
  text-align: left;
}

.client-info h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 2px;
}

.client-info span {
  font-size: 0.75rem;
  color: var(--color-accent);
}

/* Slider buttons */
.carousel-btn {
  background: transparent;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: var(--border-radius-circle);
  border: 1px solid rgba(197, 168, 128, 0.3);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  z-index: 10;
  flex-shrink: 0;
}

.carousel-btn:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
}

.carousel-btn.prev {
  margin-right: var(--spacing-sm);
}

.carousel-btn.next {
  margin-left: var(--spacing-sm);
}

@media (max-width: 576px) {
  .carousel-btn {
    display: none;
  }
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: var(--spacing-md);
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: var(--border-radius-circle);
  background-color: rgba(197, 168, 128, 0.3);
  cursor: pointer;
  transition: var(--transition-fast);
}

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

/* ==============================================
   CONTACT & BOOKING SECTION
   ============================================== */
.contact-section {
  padding: var(--spacing-xl) 0;
  background-color: var(--color-white);
}

.form-container {
  background-color: var(--color-bg-light);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-md);
  border-top: 3px solid var(--color-accent);
}

@media (min-width: 576px) {
  .form-container {
    padding: var(--spacing-lg);
  }
}

.form-container h3 {
  font-size: 1.5rem;
  margin-bottom: var(--spacing-xs);
}

.form-instructions {
  font-size: 0.85rem;
  margin-bottom: var(--spacing-md);
}

.grid-2-sm {
  display: grid;
  grid-template-columns: 1fr;
}

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

.contact-info-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: var(--spacing-md);
}

.info-block {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--spacing-md);
  border-radius: var(--border-radius-sm);
  box-shadow: var(--shadow-md);
  border-left: 3px solid var(--color-accent);
}

@media (min-width: 576px) {
  .info-block {
    padding: var(--spacing-lg);
  }
}

.info-block h3 {
  font-size: 1.5rem;
  color: var(--color-white);
  margin-bottom: var(--spacing-md);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-md);
}

.info-item:last-child {
  margin-bottom: 0;
}

.info-icon {
  font-size: 1.4rem;
  color: var(--color-accent);
  margin-top: 4px;
}

.info-text h4 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: 4px;
}

.info-text p {
  font-size: 0.85rem;
  color: var(--color-text-muted-light);
  line-height: 1.6;
}

.sub-label {
  display: block;
  font-size: 0.75rem;
  color: var(--color-accent);
  margin-top: 2px;
}

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

/* Map frame design styling */
.map-embed-container {
  border-radius: var(--border-radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 2px solid rgba(197, 168, 128, 0.2);
  height: 250px;
}

.map-embed-container iframe {
  width: 100%;
  height: 100%;
}

/* ==============================================
   SUCCESS MODAL
   ============================================== */
.booking-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(30, 18, 24, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-md);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.booking-modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.booking-modal-card {
  background-color: var(--color-white);
  border-radius: var(--border-radius-sm);
  width: 100%;
  max-width: 500px;
  position: relative;
  box-shadow: var(--shadow-lg);
  border-top: 6px solid var(--color-accent);
  transform: translateY(30px);
  transition: transform 0.4s ease;
}

.booking-modal-overlay.active .booking-modal-card {
  transform: translateY(0);
}

.modal-close {
  position: absolute;
  top: 15px;
  right: 15px;
  background: transparent;
  border: none;
  font-size: 1.25rem;
  color: var(--color-text-muted);
  cursor: pointer;
  transition: var(--transition-fast);
}

.modal-close:hover {
  color: var(--color-primary);
}

.modal-body {
  padding: var(--spacing-lg) var(--spacing-md);
}

@media (min-width: 576px) {
  .modal-body {
    padding: var(--spacing-lg);
  }
}

.success-icon-wrapper {
  margin-bottom: var(--spacing-sm);
  display: flex;
  justify-content: center;
}

.success-icon {
  width: 60px;
  height: 60px;
  background-color: rgba(197, 168, 128, 0.15);
  border: 2px solid var(--color-accent);
  border-radius: var(--border-radius-circle);
  color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  animation: pulseGold 2s infinite;
}

.modal-body h2 {
  font-size: 1.65rem;
  margin-bottom: var(--spacing-xs);
}

.modal-body p {
  font-size: 0.9rem;
  margin-bottom: var(--spacing-md);
}

.summary-card {
  background-color: var(--color-bg-light);
  padding: var(--spacing-sm) var(--spacing-md);
  border-radius: var(--border-radius-sm);
  border-left: 3px solid var(--color-accent);
  margin-bottom: var(--spacing-md);
  font-size: 0.85rem;
  color: var(--color-text-dark);
}

.summary-card h4 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--color-primary);
  margin-bottom: 6px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* ==============================================
   FOOTER
   ============================================== */
.footer {
  background-color: var(--color-primary);
  color: var(--color-white);
  padding: var(--spacing-xl) 0 var(--spacing-md);
  border-top: 1px solid rgba(197, 168, 128, 0.15);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-lg);
  margin-bottom: var(--spacing-lg);
}

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

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

.footer-brand .logo {
  margin-bottom: var(--spacing-sm);
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--color-text-muted-light);
  margin-bottom: var(--spacing-sm);
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(197, 168, 128, 0.2);
  border-radius: var(--border-radius-circle);
  color: var(--color-accent);
  transition: var(--transition-fast);
  font-size: 0.9rem;
}

.social-links a:hover {
  background-color: var(--color-accent);
  color: var(--color-primary);
  border-color: var(--color-accent);
  transform: translateY(-2px);
}

.footer-grid h3 {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--color-accent);
  margin-bottom: var(--spacing-md);
}

.footer-links ul,
.footer-services ul {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xs);
}

.footer-links a,
.footer-services a {
  font-size: 0.85rem;
  color: var(--color-text-muted-light);
  transition: var(--transition-fast);
}

.footer-links a:hover,
.footer-services a:hover {
  color: var(--color-accent);
  padding-left: 4px;
}

.footer-contact p {
  font-size: 0.85rem;
  color: var(--color-text-muted-light);
  margin-bottom: var(--spacing-xs);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.footer-contact p i {
  color: var(--color-accent);
  margin-top: 3px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: var(--spacing-md);
  text-align: center;
}

.footer-bottom p {
  font-size: 0.75rem;
  color: var(--color-text-muted-light);
}

/* ==============================================
   ANIMATIONS & ENTRY EFFECTS
   ============================================== */
@keyframes pulseGold {
  0% {
    box-shadow: 0 0 0 0 rgba(197, 168, 128, 0.4);
  }
  70% {
    box-shadow: 0 0 0 10px rgba(197, 168, 128, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(197, 168, 128, 0);
  }
}

/* Scroll reveal class setup */
.reveal-on-scroll {
  opacity: 0;
  transform: translateY(35px);
  transition: opacity 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94),
              transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.reveal-on-scroll.revealed {
  opacity: 1;
  transform: translateY(0);
}
