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

/* ==========================================================================
   VARIABLES & DESIGN SYSTEM
   ========================================================================== */
:root {
  /* Colors */
  --bg-color: #FAF8F5;       /* Warm Alabaster Off-white */
  --bg-secondary: #F0EFEA;   /* Muted Warm Stone */
  --card-bg: #FFFFFF;        /* Pure White */
  --primary: #8A9A86;        /* Elegant Sage Green */
  --primary-hover: #72826F;  /* Deep Sage */
  --secondary: #E0E4DC;      /* Soft Eucalyptus Nude */
  --secondary-hover: #CBD2C6;
  --accent: #D4AF37;         /* Subtle Gold */
  --accent-hover: #BCA030;
  --text-main: #2D332B;      /* Dark Forest Spruce */
  --text-muted: #5D665B;     /* Muted Olive Slate */
  --text-light: #FAF8F5;
  --border-color: #E2E4DF;
  --success: #6E8E75;        /* Sage success */
  
  /* Typography */
  --font-heading: 'Playfair Display', serif;
  --font-body: 'Montserrat', sans-serif;
  
  /* Shadows */
  --shadow-sm: 0 4px 6px -1px rgba(45, 51, 43, 0.05), 0 2px 4px -1px rgba(45, 51, 43, 0.03);
  --shadow-md: 0 10px 15px -3px rgba(45, 51, 43, 0.08), 0 4px 6px -2px rgba(45, 51, 43, 0.04);
  --shadow-lg: 0 20px 25px -5px rgba(45, 51, 43, 0.12), 0 10px 10px -5px rgba(45, 51, 43, 0.04);
  
  /* Border Radius */
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-full: 9999px;
  
  /* Transitions */
  --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-color);
  color: var(--text-main);
  line-height: 1.6;
  font-weight: 400;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Headings */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--text-main);
}

h1 {
  font-size: 2.5rem;
  margin-bottom: 1.5rem;
}

h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  position: relative;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

p {
  margin-bottom: 1rem;
}

a {
  color: var(--text-main);
  text-decoration: none;
  transition: var(--transition-smooth);
}

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

ul {
  list-style: none;
}

/* Focus outline helper */
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
}

/* ==========================================================================
   LAYOUT UTILITIES
   ========================================================================== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

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

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
}

.section-title {
  display: inline-block;
  margin-bottom: 1rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background-color: var(--primary);
  margin: 0.75rem auto 0 auto;
}

.section-subtitle {
  font-family: var(--font-body);
  color: var(--text-muted);
  font-size: 1.05rem;
  font-weight: 300;
}

.grid {
  display: grid;
  gap: 2rem;
}

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

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

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

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

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

/* Flex alignments */
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

.flex-between {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.gap-1 { gap: 1rem; }
.gap-2 { gap: 2rem; }

/* ==========================================================================
   NAVIGATION / HEADER
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(138, 154, 134, 0.92); /* Sage green matching logo background exactly */
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 228, 223, 0.25);
  transition: var(--transition-smooth);
}

.header.scrolled {
  padding: 0.25rem 0;
  background-color: rgba(138, 154, 134, 0.98);
  box-shadow: var(--shadow-sm);
}

/* Logo Image responsive resizing */
.logo-img {
  height: 60px;
  width: auto;
  transition: var(--transition-smooth);
  display: block;
  border-radius: var(--radius-sm);
}

.header.scrolled .logo-img {
  height: 48px;
}

.footer-logo-img {
  height: 70px;
  width: auto;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  transition: var(--transition-smooth);
}

.header.scrolled .nav-container {
  height: 65px;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--text-main);
  display: flex;
  align-items: center;
}

.logo-dot {
  color: var(--primary);
  margin-left: 2px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.nav-link {
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(250, 248, 245, 0.85); /* Light cream for green navbar */
  position: relative;
  padding: 0.25rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background-color: var(--accent); /* Gold line indicator */
  transition: var(--transition-smooth);
}

.nav-link:hover {
  color: #FFFFFF;
}

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

.nav-link.active {
  color: #FFFFFF;
  font-weight: 600;
}

/* Navigation Badges */
.nav-badge {
  font-size: 0.65rem;
  font-weight: 600;
  text-transform: uppercase;
  background-color: var(--accent); /* Theme Gold */
  color: var(--text-main);
  padding: 0.15rem 0.4rem;
  border-radius: var(--radius-sm);
  margin-left: 0.4rem;
  vertical-align: middle;
  display: inline-block;
  letter-spacing: 0.5px;
  line-height: 1.2;
}

@media (max-width: 768px) {
  .nav-badge {
    background-color: var(--primary);
    color: #FFFFFF;
  }
}


/* Mobile Toggle (Hamburger) */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 1001;
}

.hamburger {
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FAF8F5; /* Light cream to stand out on green navbar */
  position: relative;
  transition: var(--transition-smooth);
}

.hamburger::before,
.hamburger::after {
  content: '';
  display: block;
  width: 24px;
  height: 2px;
  background-color: #FAF8F5;
  position: absolute;
  left: 0;
  transition: var(--transition-smooth);
}

.hamburger::before { top: -6px; }
.hamburger::after { top: 6px; }

/* Hamburger open state */
.nav-toggle.open .hamburger {
  background-color: transparent;
}
.nav-toggle.open .hamburger::before {
  transform: rotate(45deg);
  top: 0;
}
.nav-toggle.open .hamburger::after {
  transform: rotate(-45deg);
  top: 0;
}

@media (max-width: 768px) {
  .nav-toggle {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 320px;
    height: 100vh;
    background-color: var(--bg-color);
    box-shadow: var(--shadow-lg);
    flex-direction: column;
    justify-content: center;
    gap: 2.5rem;
    transition: var(--transition-slow);
    z-index: 1000;
    padding: 2rem;
  }
  
  .nav-menu.open {
    right: 0;
  }
  
  .nav-link {
    font-size: 1.2rem;
    color: var(--text-main); /* Ensure dark green-grey inside cream drawer */
  }

  .nav-link:hover,
  .nav-link.active {
    color: var(--primary); /* Hover uses active sage green */
  }
}

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

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

.btn-primary:hover {
  background-color: var(--primary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-main);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-gold {
  background-color: transparent;
  border: 1px solid var(--accent);
  color: var(--text-main);
}

.btn-gold:hover {
  background-color: var(--accent);
  color: var(--text-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
}

.btn-outline:hover {
  border-color: var(--primary);
  color: var(--text-main);
  background-color: rgba(138, 154, 134, 0.05);
}

.btn-large {
  padding: 1rem 2.2rem;
  font-size: 0.95rem;
}

.btn-full {
  width: 100%;
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero {
  min-height: 90vh;
  padding-top: 120px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-main);
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(250, 246, 240, 0.95) 0%, rgba(250, 246, 240, 0.8) 50%, rgba(250, 246, 240, 0.4) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 2rem 0;
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-subtitle-top {
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 3px;
  margin-bottom: 1rem;
  display: block;
}

.hero-title {
  font-size: 3.5rem;
  margin-bottom: 1.5rem;
  line-height: 1.15;
}

.hero-description {
  font-size: 1.1rem;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
}

@media (max-width: 768px) {
  .hero {
    min-height: 80vh;
    padding-top: 100px;
    background-position: center right 30%;
  }
  
  .hero-overlay {
    background: linear-gradient(180deg, rgba(250, 246, 240, 0.95) 0%, rgba(250, 246, 240, 0.85) 100%);
  }
  
  .hero-title {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1rem;
  }
}

/* ==========================================================================
   CARDS & SECTIONS
   ========================================================================== */

/* Service Card */
.service-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--primary);
}

.service-img-wrapper {
  position: relative;
  height: 240px;
  overflow: hidden;
  background-color: var(--bg-secondary);
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card:hover .service-img {
  transform: scale(1.05);
}

.service-content {
  padding: 1.75rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-card-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-meta {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
}

.service-duration, .service-price {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.service-price {
  color: var(--primary);
  font-weight: 700;
  font-size: 0.95rem;
}

.service-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-footer {
  margin-top: auto;
}

/* Feature/Why Us Card */
.feature-card {
  text-align: center;
  padding: 2.5rem 1.5rem;
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

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

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-full);
  background-color: rgba(138, 154, 134, 0.1);
  color: var(--primary);
  margin: 0 auto 1.5rem auto;
  font-size: 1.5rem;
}

.feature-card h3 {
  margin-bottom: 0.75rem;
}

.feature-card p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

/* Testimonial Card */
.testimonial-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.stars {
  color: var(--accent);
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--text-muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-main);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: var(--secondary);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-main);
}

/* Call to Action Banner */
.cta-banner {
  background-color: var(--bg-secondary);
  border-radius: var(--radius-lg);
  padding: 4rem 2rem;
  border: 1px solid var(--border-color);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(138, 154, 134, 0.05) 0%, transparent 70%);
  pointer-events: none;
}

.cta-banner h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

/* Promo Banner (Accueil) */
.promo-banner {
  background-color: rgba(138, 154, 134, 0.1);
  border: 1px dashed var(--primary);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1.5rem;
  margin-bottom: 4rem;
}

@media (min-width: 768px) {
  .promo-banner {
    flex-direction: row;
    text-align: left;
    justify-content: space-between;
    padding: 3rem;
  }
}

.promo-tag {
  background-color: var(--primary);
  color: var(--text-light);
  padding: 0.25rem 0.75rem;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 0.75rem;
  display: inline-block;
}

.promo-title {
  margin-bottom: 0.5rem;
}

.promo-desc {
  color: var(--text-muted);
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */
.form-card {
  background-color: var(--card-bg);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

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

.form-label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: var(--text-main);
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: var(--font-body);
  font-size: 0.95rem;
  background-color: var(--bg-color);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  color: var(--text-main);
  transition: var(--transition-smooth);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: #a4928e;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--primary);
  background-color: var(--card-bg);
  box-shadow: 0 0 0 4px rgba(138, 154, 134, 0.1);
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

/* Validation styling */
.form-input.is-invalid, .form-select.is-invalid, .form-textarea.is-invalid {
  border-color: #d9534f;
  background-color: rgba(217, 83, 79, 0.02);
}

.form-feedback {
  font-size: 0.8rem;
  color: #d9534f;
  margin-top: 0.25rem;
  display: none;
}

.form-input.is-invalid + .form-feedback,
.form-select.is-invalid + .form-feedback,
.form-textarea.is-invalid + .form-feedback {
  display: block;
}

.form-success-msg {
  display: none;
  background-color: rgba(110, 142, 117, 0.15);
  border: 1px solid var(--success);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  margin-bottom: 2rem;
  color: #2b3a2e;
  text-align: center;
  animation: fadeIn 0.4s ease;
}

/* ==========================================================================
   GALERIE (Filtres & Lightbox)
   ========================================================================== */
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 3rem;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1.5rem;
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 320px;
  cursor: pointer;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-smooth);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

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

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

.gallery-item-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(45, 51, 43, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: var(--transition-smooth);
}

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

.gallery-item-tag {
  align-self: flex-start;
  background-color: var(--primary);
  color: var(--text-light);
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.2rem 0.6rem;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.gallery-item-title {
  color: var(--bg-color);
  font-size: 1.1rem;
}

/* Before / After Slider */
.before-after-container {
  position: relative;
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  margin: 2rem 0;
}

.before-after-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.before-after-before {
  z-index: 1;
}

.before-after-after {
  z-index: 2;
  clip-path: polygon(0 0, 50% 0, 50% 100%, 0 100%);
}

.before-after-slider-input {
  position: absolute;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 100%;
  background: transparent;
  outline: none;
  margin: 0;
  z-index: 3;
  cursor: ew-resize;
}

.before-after-line {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 2px;
  background-color: #FFFFFF;
  z-index: 2;
  left: 50%;
  pointer-events: none;
  box-shadow: 0 0 10px rgba(0,0,0,0.5);
}

.before-after-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40px;
  height: 40px;
  border-radius: var(--radius-full);
  background-color: #FFFFFF;
  color: var(--text-main);
  box-shadow: var(--shadow-md);
  z-index: 2;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 0.8rem;
}

.before-after-label {
  position: absolute;
  bottom: 1.5rem;
  padding: 0.4rem 0.8rem;
  background-color: rgba(45, 51, 43, 0.7);
  color: var(--bg-color);
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: var(--radius-sm);
  z-index: 2;
  pointer-events: none;
}

.before-after-label-before {
  left: 1.5rem;
}

.before-after-label-after {
  right: 1.5rem;
}

/* ==========================================================================
   FAQ & ACCORDION
   ========================================================================== */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  margin-bottom: 1rem;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: var(--primary);
}

.faq-question {
  width: 100%;
  padding: 1.25rem 1.5rem;
  background: none;
  border: none;
  text-align: left;
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-main);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.faq-icon {
  font-size: 0.9rem;
  transition: var(--transition-smooth);
  color: var(--primary);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.faq-answer-inner {
  padding: 0 1.5rem 1.5rem 1.5rem;
  font-size: 0.95rem;
  color: var(--text-muted);
}

/* Active FAQ */
.faq-item.active {
  box-shadow: var(--shadow-sm);
  border-color: var(--primary);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer {
  background-color: var(--bg-secondary);
  border-top: 1px solid var(--border-color);
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  gap: 3rem;
  margin-bottom: 3.5rem;
}

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

.footer-brand h3 {
  font-size: 1.6rem;
  margin-bottom: 1rem;
}

.footer-desc {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 1.5rem;
  max-width: 320px;
}

.social-links {
  display: flex;
  gap: 1rem;
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  background-color: var(--card-bg);
  border: 1px solid var(--border-color);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-size: 1rem;
  transition: var(--transition-smooth);
}

.social-icon:hover {
  background-color: var(--primary);
  color: var(--text-light);
  border-color: var(--primary);
  transform: translateY(-2px);
}

.footer-title {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.25rem;
  position: relative;
}

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

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

.footer-link:hover {
  color: var(--primary);
  padding-left: 3px;
}

.footer-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-info-item {
  display: flex;
  gap: 0.75rem;
}

.footer-info-icon {
  color: var(--primary);
  width: 16px;
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  text-align: center;
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* ==========================================================================
   LANDING PAGE GOOGLE ADS SPECIFICS
   ========================================================================== */
.landing-header {
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid var(--border-color);
  background-color: var(--bg-color);
}

.trust-badge-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}

.trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text-muted);
  background-color: var(--card-bg);
  padding: 0.5rem 1rem;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-color);
}

.trust-badge-icon {
  color: var(--success);
}

/* Sticky Action Bar for Mobile Conversions */
.sticky-call-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background-color: var(--card-bg);
  box-shadow: 0 -4px 10px rgba(45, 51, 43, 0.08);
  border-top: 1px solid var(--border-color);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  z-index: 999;
}

.sticky-call-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 1rem 0;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  text-align: center;
}

.sticky-call-btn.btn-phone {
  background-color: var(--bg-color);
  color: var(--text-main);
  border-right: 1px solid var(--border-color);
}

.sticky-call-btn.btn-book {
  background-color: var(--primary);
  color: var(--text-light);
}

@media (min-width: 769px) {
  .sticky-call-bar {
    display: none; /* Hide on desktop */
  }
}

/* Adjust landing layout for mobile spacing with sticky bar */
@media (max-width: 768px) {
  body.has-sticky-bar {
    padding-bottom: 60px;
  }
}

/* ==========================================================================
   ANIMATIONS
   ========================================================================== */
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.animate-fade-in {
  animation: fadeIn 0.8s ease forwards;
}

.animate-slide-up {
  animation: slideUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}
