/* ============================================
   Équi-Libre Sonore — Design 2: Immersive
   ============================================ */

:root {
  --white: #EEEEEE;
  --green-light: #6FCF97;
  --green-mid: #2FA084;
  --green-dark: #1F6F5F;
  --green-darker: #174f44;
  --text-dark: #1a1a1a;
  --text-light: #f0f0f0;
  --text-muted: #666;
  --bg-cream: #f8f7f4;
  --bg-section-alt: #f1f0ec;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--bg-cream);
  line-height: 1.7;
  overflow-x: hidden;
  cursor: default;
}

h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.6rem); }

p { max-width: 65ch; }

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

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* ============================================
   SCROLL PROGRESS BAR
   ============================================ */

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--green-light), var(--green-mid));
  z-index: 10000;
  width: 0%;
  transition: width 0.1s linear;
}

/* ============================================
   CURSOR FOLLOWER
   ============================================ */

.cursor-follower {
  position: fixed;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(111,207,151,0.4) 0%, transparent 70%);
  pointer-events: none;
  z-index: 9999;
  transform: translate(-50%, -50%);
  transition: width 0.3s, height 0.3s, opacity 0.3s;
  mix-blend-mode: screen;
}

.cursor-follower.hover {
  width: 50px;
  height: 50px;
}

/* ============================================
   PILL NAVBAR
   ============================================ */

.pill-nav {
  position: fixed;
  top: 1.2rem;
  left: 50%;
  transform: translateX(-50%) translateY(-100px);
  z-index: 1000;
  background: rgba(23, 79, 68, 0.85);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-radius: 50px;
  padding: 0.5rem 0.7rem;
  display: flex;
  align-items: center;
  gap: 0.3rem;
  box-shadow: 0 4px 30px rgba(0,0,0,0.2);
  border: 1px solid rgba(111, 207, 151, 0.15);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.5s;
  opacity: 0;
}

.pill-nav.visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
}

.pill-nav a {
  color: rgba(255,255,255,0.8);
  font-size: 0.82rem;
  font-weight: 500;
  padding: 0.45rem 0.9rem;
  border-radius: 50px;
  transition: all var(--transition);
  white-space: nowrap;
}

.pill-nav a:hover,
.pill-nav a.active {
  color: #fff;
  background: rgba(111, 207, 151, 0.2);
}

.pill-nav .nav-brand-pill {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--green-light);
  padding: 0.45rem 1rem;
  margin-right: 0.3rem;
}

.pill-nav .pill-cta {
  background: var(--green-light);
  color: var(--green-darker);
  font-weight: 600;
  padding: 0.45rem 1rem;
}

.pill-nav .pill-cta:hover {
  background: #5cc084;
}

.pill-nav .lang-toggle {
  background: rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.3rem 0.6rem;
  border-radius: 6px;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
  text-transform: uppercase;
}

.pill-nav .lang-toggle:hover {
  background: rgba(255,255,255,0.2);
}

.pill-nav .design-toggle {
  background: rgba(111, 207, 151, 0.15);
  color: var(--green-light);
  border: 1px solid rgba(111, 207, 151, 0.3);
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
  white-space: nowrap;
}

.pill-nav .design-toggle:hover {
  background: rgba(111, 207, 151, 0.3);
  color: #fff;
}

/* Mobile hamburger for pill nav */
.pill-hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}

.pill-hamburger span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--white);
  transition: all var(--transition);
  border-radius: 2px;
}

.pill-hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(4px,4px); }
.pill-hamburger.active span:nth-child(2) { opacity: 0; }
.pill-hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(4px,-4px); }

/* ============================================
   SIDE DOT TRACKER
   ============================================ */

.side-dots {
  position: fixed;
  right: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  z-index: 999;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  align-items: flex-end;
}

.side-dot {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  cursor: pointer;
  flex-direction: row-reverse;
}

.side-dot-circle {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(111, 207, 151, 0.3);
  border: 2px solid transparent;
  transition: all var(--transition);
  flex-shrink: 0;
}

.side-dot.active .side-dot-circle {
  background: var(--green-light);
  border-color: var(--green-light);
  width: 14px;
  height: 14px;
  box-shadow: 0 0 10px rgba(111, 207, 151, 0.5);
}

.side-dot-label {
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--green-mid);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0;
  transform: translateX(5px);
  transition: all var(--transition);
  white-space: nowrap;
}

.side-dot:hover .side-dot-label,
.side-dot.active .side-dot-label {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   HERO — SPLIT SCREEN
   ============================================ */

.hero2 {
  position: relative;
  min-height: 100vh;
  display: grid;
  grid-template-columns: 45fr 55fr;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-darker) 100%);
  overflow: hidden;
  color: var(--white);
}

.hero2-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 4rem 3rem 4rem 6vw;
  position: relative;
  z-index: 2;
}

.hero2-brand {
  font-family: var(--font-heading);
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.02em;
  margin-bottom: 2rem;
  position: relative;
}

.hero2-brand span {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: wordReveal 0.8s forwards;
}

.hero2-brand span:nth-child(2) {
  animation-delay: 0.3s;
  color: var(--green-light);
}

.hero2-line {
  width: 0;
  height: 2px;
  background: var(--green-light);
  margin-bottom: 2rem;
  animation: lineGrow 1s 0.8s forwards;
}

.hero2-headline {
  font-family: var(--font-heading);
  font-size: clamp(1.2rem, 2.5vw, 1.8rem);
  font-weight: 400;
  font-style: italic;
  opacity: 0;
  animation: fadeInUp 0.8s 1.2s forwards;
  margin-bottom: 0.5rem;
}

.hero2-sub {
  font-size: 0.95rem;
  opacity: 0;
  animation: fadeInUp 0.6s 1.5s forwards;
  color: rgba(255,255,255,0.6);
  margin-bottom: 0.5rem;
}

.hero2-tagline {
  font-size: 0.85rem;
  opacity: 0;
  animation: fadeInUp 0.6s 1.7s forwards;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.hero2-ctas {
  display: flex;
  gap: 1rem;
  opacity: 0;
  animation: fadeInUp 0.6s 1.9s forwards;
}

.hero2-right {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero2-rings {
  position: absolute;
  width: 100%;
  height: 100%;
}

.hero2-rings circle {
  fill: none;
  stroke: rgba(111, 207, 151, 0.1);
  stroke-width: 0.8;
  transform-origin: center;
}

.hero2-scroll-cue {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bounceCue 2s infinite;
  z-index: 3;
}

.hero2-scroll-cue svg {
  width: 24px;
  height: 24px;
  stroke: rgba(255,255,255,0.4);
}

@keyframes wordReveal {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes lineGrow {
  to { width: 80px; }
}

@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes bounceCue {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

@keyframes ringPulse {
  0% { r: 30; opacity: 0.8; stroke-width: 1.5; }
  100% { r: 300; opacity: 0; stroke-width: 0.3; }
}

/* ============================================
   BUTTONS (Design 2)
   ============================================ */

.btn2 {
  display: inline-block;
  padding: 0.8rem 1.8rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-align: center;
  position: relative;
}

.btn2-primary {
  background: var(--green-light);
  color: var(--green-darker);
}

.btn2-primary:hover {
  background: #5cc084;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(111, 207, 151, 0.4);
}

.btn2-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.4);
}

.btn2-outline:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}

.btn2-dark {
  background: var(--green-darker);
  color: var(--green-light);
}

.btn2-dark:hover {
  background: var(--green-dark);
  transform: translateY(-2px);
}

/* ============================================
   SERVICES — HORIZONTAL SNAP-SCROLL
   ============================================ */

.services2 {
  padding: 5rem 0 3rem;
  background: var(--bg-cream);
  position: relative;
}

.services2 .section-header2 {
  text-align: center;
  margin-bottom: 2.5rem;
  padding: 0 1.5rem;
}

.section-header2 h2 {
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.section-header2 p {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin: 0 auto;
}

.services2-carousel-wrapper {
  position: relative;
}

.services2-carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  gap: 1.5rem;
  padding: 1rem 1.5rem 2rem;
  scrollbar-width: none;
}

.services2-carousel::-webkit-scrollbar {
  display: none;
}

.service2-slide {
  flex: 0 0 min(75vw, 500px);
  scroll-snap-align: center;
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  min-height: 420px;
  cursor: pointer;
  transition: transform var(--transition);
}

.service2-slide:hover {
  transform: scale(1.02);
}

.service2-slide-bg {
  position: absolute;
  inset: 0;
  transition: transform 0.6s ease;
}

.service2-slide:hover .service2-slide-bg {
  transform: scale(1.05);
}

.service2-slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service2-slide-gradient {
  width: 100%;
  height: 100%;
}

.service2-slide:nth-child(1) .service2-slide-gradient { background: linear-gradient(135deg, #1F6F5F 0%, #2FA084 100%); }
.service2-slide:nth-child(2) .service2-slide-gradient { background: linear-gradient(135deg, #2FA084 0%, #6FCF97 100%); }
.service2-slide:nth-child(3) .service2-slide-gradient { background: linear-gradient(135deg, #174f44 0%, #1F6F5F 100%); }
.service2-slide:nth-child(4) .service2-slide-gradient { background: linear-gradient(135deg, #6FCF97 0%, #2FA084 100%); }

.service2-slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(23,79,68,0.95) 0%, rgba(23,79,68,0.3) 50%, transparent 100%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  transition: background var(--transition);
}

.service2-slide:hover .service2-slide-overlay {
  background: linear-gradient(to top, rgba(23,79,68,0.98) 0%, rgba(23,79,68,0.6) 60%, rgba(23,79,68,0.3) 100%);
}

.service2-slide-title {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.5rem;
}

.service2-slide-meta {
  display: flex;
  gap: 1rem;
  font-size: 0.85rem;
  color: var(--green-light);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.service2-slide-desc {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.6;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
  margin-top: 0;
}

.service2-slide:hover .service2-slide-desc {
  max-height: 200px;
  opacity: 1;
  margin-top: 0.75rem;
}

.service2-slide-cta {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.5s ease, opacity 0.4s 0.1s ease, margin 0.4s ease;
  margin-top: 0;
}

.service2-slide:hover .service2-slide-cta {
  max-height: 60px;
  opacity: 1;
  margin-top: 1rem;
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(255,255,255,0.9);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  transition: all var(--transition);
  z-index: 10;
  color: var(--green-dark);
}

.carousel-arrow:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);
  box-shadow: var(--shadow-lg);
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
}

.carousel-arrow-left { left: 0.75rem; }
.carousel-arrow-right { right: 0.75rem; }

/* ============================================
   ABOUT — IMMERSIVE DARK PANEL
   ============================================ */

.about2 {
  padding: 7rem 0;
  background: var(--green-darker);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.about2-bg-text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-heading);
  font-size: clamp(4rem, 12vw, 10rem);
  font-weight: 700;
  color: rgba(111, 207, 151, 0.04);
  white-space: nowrap;
  pointer-events: none;
  user-select: none;
}

.about2-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.about2-portrait {
  position: relative;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}

.about2-portrait::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  background: conic-gradient(var(--green-light), var(--green-mid), var(--green-dark), var(--green-light));
  animation: glowRing 4s linear infinite;
  z-index: 0;
}

.about2-portrait-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--green-light), var(--green-mid));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: rgba(255,255,255,0.5);
  border: 3px solid var(--green-darker);
}

.about2-portrait-inner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@keyframes glowRing {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.about2-content h2 {
  color: var(--green-light);
  margin-bottom: 1.5rem;
}

.about2-bio {
  color: rgba(255,255,255,0.75);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  line-height: 1.8;
}

.about2-bio.reveal-line {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.about2-bio.reveal-line.visible {
  opacity: 1;
  transform: translateY(0);
}

.about2-credentials {
  list-style: none;
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.about2-credentials li {
  background: rgba(111, 207, 151, 0.12);
  color: var(--green-light);
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  border: 1px solid rgba(111, 207, 151, 0.2);
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.about2-credentials li.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PRICING — HOVER-REVEAL TILES
   ============================================ */

.pricing2 {
  padding: 6rem 0;
  background: var(--bg-cream);
}

.pricing2 .section-header2 {
  text-align: center;
  margin-bottom: 3rem;
}

.pricing2-tiles {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 900px;
  margin: 0 auto;
}

.pricing2-tile {
  background: #fff;
  border-radius: var(--radius);
  border: 2px solid transparent;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
}

.pricing2-tile:hover,
.pricing2-tile.expanded {
  border-color: rgba(47, 160, 132, 0.2);
  box-shadow: var(--shadow-md);
}

.pricing2-tile.featured {
  border-color: var(--green-mid);
}

.pricing2-tile-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 2rem;
  position: relative;
}

.pricing2-tile.featured .pricing2-tile-header::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--green-mid);
  border-radius: 0 4px 4px 0;
}

.pricing2-tile-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing2-tile-badge {
  background: var(--green-mid);
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 700;
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.pricing2-tile-price {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--green-dark);
}

.pricing2-tile-price small {
  font-size: 0.8rem;
  font-weight: 400;
  color: var(--text-muted);
}

.pricing2-tile-chevron {
  width: 24px;
  height: 24px;
  color: var(--green-mid);
  transition: transform var(--transition);
  flex-shrink: 0;
}

.pricing2-tile:hover .pricing2-tile-chevron,
.pricing2-tile.expanded .pricing2-tile-chevron {
  transform: rotate(180deg);
}

.pricing2-tile-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.5s;
  padding: 0 2rem;
}

.pricing2-tile:hover .pricing2-tile-body,
.pricing2-tile.expanded .pricing2-tile-body {
  max-height: 250px;
  padding: 0 2rem 1.5rem;
}

.pricing2-tile-duration {
  color: var(--green-mid);
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.pricing2-tile-desc {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1rem;
}

.pricing2-tile-cta {
  display: inline-block;
}

.pricing2-note {
  text-align: center;
  max-width: 600px;
  margin: 2.5rem auto 0;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.pricing2-note p {
  margin: 0 auto 0.5rem;
}

/* ============================================
   BOOKING — FULL-SCREEN AMBIENT
   ============================================ */

.booking2 {
  position: relative;
  padding: 8rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
  color: var(--white);
}

.booking2-mesh {
  position: absolute;
  inset: 0;
  background: linear-gradient(160deg, var(--green-dark) 0%, var(--green-darker) 100%);
  z-index: 0;
}

.booking2-mesh::before,
.booking2-mesh::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  animation: meshFloat 12s ease-in-out infinite alternate;
}

.booking2-mesh::before {
  width: 500px;
  height: 500px;
  background: rgba(111, 207, 151, 0.15);
  top: -20%;
  right: -10%;
}

.booking2-mesh::after {
  width: 400px;
  height: 400px;
  background: rgba(47, 160, 132, 0.12);
  bottom: -20%;
  left: -10%;
  animation-delay: 6s;
}

@keyframes meshFloat {
  0% { transform: translate(0, 0) scale(1); }
  100% { transform: translate(40px, -30px) scale(1.1); }
}

.booking2-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 0 1.5rem;
}

.booking2-content h2 {
  color: var(--white);
  margin-bottom: 1rem;
}

.booking2-content p {
  color: rgba(255,255,255,0.65);
  font-size: 1.1rem;
  margin: 0 auto 2.5rem;
}

.booking2-content .btn2-magnetic {
  position: relative;
  display: inline-block;
}

/* ============================================
   CONTACT — DARK THREE-COLUMN
   ============================================ */

.contact2 {
  padding: 5rem 0;
  background: var(--green-darker);
  color: var(--white);
}

.contact2 .section-header2 {
  text-align: center;
  margin-bottom: 3rem;
}

.contact2 .section-header2 h2 {
  color: var(--green-light);
}

.contact2 .section-header2 p {
  color: rgba(255,255,255,0.6);
}

.contact2-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}

.contact2-col h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--green-light);
  margin-bottom: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-family: var(--font-body);
}

.contact2-col p,
.contact2-col div {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  line-height: 1.8;
}

.contact2-col a {
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}

.contact2-col a:hover {
  color: var(--green-light);
}

.contact2-map-toggle {
  text-align: center;
  margin-top: 2rem;
}

.contact2-map-btn {
  background: rgba(111, 207, 151, 0.1);
  color: var(--green-light);
  border: 1px solid rgba(111, 207, 151, 0.3);
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
  transition: all var(--transition);
  font-family: var(--font-body);
}

.contact2-map-btn:hover {
  background: rgba(111, 207, 151, 0.2);
  border-color: var(--green-light);
}

.contact2-map {
  margin-top: 2rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.4s, margin 0.4s;
}

.contact2-map.open {
  max-height: 450px;
  opacity: 1;
}

.contact2-map iframe {
  width: 100%;
  height: 400px;
  border: none;
}

/* ============================================
   FOOTER (Design 2)
   ============================================ */

.footer2 {
  background: #0f352e;
  color: rgba(255,255,255,0.5);
  padding: 2rem 0;
}

.footer2 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer2-copy {
  font-size: 0.8rem;
}

.footer2 .back-to-top {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  transition: color var(--transition);
}

.footer2 .back-to-top:hover {
  color: var(--green-light);
}

.footer2 .back-to-top svg {
  width: 16px;
  height: 16px;
}

/* ============================================
   SCROLL REVEAL (Design 2)
   ============================================ */

.reveal2 {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal2.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 900px) {
  .pill-nav {
    width: calc(100% - 2rem);
    border-radius: var(--radius);
    flex-wrap: wrap;
    justify-content: center;
  }

  .pill-nav .nav-links-pill {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    padding-top: 0.5rem;
  }

  .pill-nav .nav-links-pill.open {
    display: flex;
  }

  .pill-hamburger {
    display: flex;
  }

  .side-dots {
    display: none;
  }

  .hero2 {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero2-left {
    padding: 8rem 2rem 3rem;
    text-align: center;
  }

  .hero2-brand {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .hero2-line {
    margin: 0 auto 2rem;
  }

  .hero2-ctas {
    justify-content: center;
  }

  .hero2-right {
    height: 300px;
  }

  .about2-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
    text-align: center;
  }

  .about2-portrait {
    width: 200px;
    height: 200px;
  }

  .about2-credentials {
    justify-content: center;
  }

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

  .carousel-arrow {
    width: 36px;
    height: 36px;
  }

  .carousel-arrow svg {
    width: 16px;
    height: 16px;
  }
}

@media (max-width: 600px) {
  .service2-slide {
    flex: 0 0 85vw;
    min-height: 350px;
  }

  .pricing2-tile-header {
    padding: 1.2rem 1.2rem;
    flex-wrap: wrap;
    gap: 0.5rem;
  }

  .pricing2-tile-name {
    font-size: 1.1rem;
  }

  .pricing2-tile-price {
    font-size: 1.4rem;
  }

  .pricing2-tile-body {
    padding: 0 1.2rem;
  }

  .pricing2-tile:hover .pricing2-tile-body,
  .pricing2-tile.expanded .pricing2-tile-body {
    padding: 0 1.2rem 1.2rem;
  }

  .hero2-left {
    padding: 7rem 1.5rem 2rem;
  }

  .hero2-ctas {
    flex-direction: column;
    align-items: center;
  }
}
