/* ========================================
   DEEP CARE DENTAL - GLOBAL STYLES
   ======================================== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'Inter', sans-serif; color: #1a1a2e; background: #fff; line-height: 1.6; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; object-fit: cover; }
ul { list-style: none; }

/* ===== CSS VARIABLES ===== */
:root {
  --primary: #0a1628;
  --primary-mid: #112244;
  --teal: #00d4b8;
  --teal-dark: #00a896;
  --teal-light: rgba(0,212,184,0.12);
  --gold: #f0a500;
  --gold-light: rgba(240,165,0,0.15);
  --white: #ffffff;
  --off-white: #f8fafc;
  --gray: #6b7280;
  --light: #eef2f7;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 40px;
  --shadow: 0 4px 24px rgba(0,0,0,0.08);
  --shadow-md: 0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg: 0 20px 60px rgba(0,0,0,0.18);
  --shadow-teal: 0 8px 32px rgba(0,212,184,0.3);
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.15);
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --transition-slow: 0.6s cubic-bezier(0.4,0,0.2,1);
}

/* ===== UTILITY ===== */
.container { max-width: 1240px; margin: 0 auto; padding: 0 28px; }
.section-tag {
  display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--teal); background: var(--teal-light);
  padding: 6px 16px; border-radius: 50px; margin-bottom: 16px;
}
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 4vw, 3rem); color: var(--primary); line-height: 1.15; margin-bottom: 16px; }
.section-header p { font-size: 1.05rem; color: var(--gray); max-width: 580px; margin: 0 auto; }
.section-header.white h2 { color: var(--white); }
.section-header.white p { color: rgba(255,255,255,0.7); }
.text-teal { color: var(--teal); }
.text-gold { color: var(--gold); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 15px 36px; border-radius: 50px; font-weight: 600; font-size: 0.95rem;
  cursor: pointer; transition: all var(--transition); border: 2px solid transparent;
  white-space: nowrap; letter-spacing: 0.3px;
}
.btn-primary {
  background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  color: var(--primary); border-color: var(--teal);
  box-shadow: 0 4px 20px rgba(0,212,184,0.35);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(0,212,184,0.5); }
.btn-white { background: var(--white); color: var(--primary); }
.btn-white:hover { background: var(--teal); color: var(--primary); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-gold { background: linear-gradient(135deg, var(--gold), #e09000); color: var(--white); box-shadow: 0 4px 20px rgba(240,165,0,0.35); }
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 8px 32px rgba(240,165,0,0.5); }
.btn-lg { padding: 18px 44px; font-size: 1.05rem; }
.btn-sm { padding: 10px 24px; font-size: 0.85rem; }

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  transition: all 0.4s ease; padding: 8px 0;
}
.navbar.transparent { background: transparent; }
.navbar.scrolled {
  background: rgba(10,22,40,0.97); backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.3); padding: 4px 0;
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.logo { display: flex; align-items: center; gap: 12px; }
.logo-mark {
  width: 42px; height: 42px; background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 900; color: var(--primary); flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.1; }
.logo-text span:first-child { font-size: 0.7rem; color: rgba(255,255,255,0.55); font-weight: 500; letter-spacing: 1px; text-transform: uppercase; }
.logo-text span:last-child { font-size: 1rem; font-weight: 700; color: var(--white); }
.logo-text span:last-child em { color: var(--teal); font-style: normal; }
.nav-links { display: flex; align-items: center; gap: 8px; }
.nav-links a { font-size: 0.88rem; font-weight: 500; color: rgba(255,255,255,0.8); padding: 8px 14px; border-radius: 8px; transition: all var(--transition); }
.nav-links a:hover, .nav-links a.active { color: var(--teal); background: rgba(0,212,184,0.1); }
.nav-cta { margin-left: 8px; }
.hamburger { display: none; background: none; border: 1px solid rgba(255,255,255,0.2); color: var(--white); cursor: pointer; width: 42px; height: 42px; border-radius: 10px; font-size: 1.1rem; align-items: center; justify-content: center; }
.mobile-menu { display: none; flex-direction: column; background: var(--primary-mid); padding: 16px 28px 24px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.mobile-menu a { padding: 12px 0; font-weight: 500; color: rgba(255,255,255,0.85); border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 0.95rem; }
.mobile-menu.open { display: flex; }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  position: relative; padding: 160px 0 80px; overflow: hidden;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 60%, #1a3a5c 100%);
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(ellipse at 80% 50%, rgba(0,212,184,0.18) 0%, transparent 60%),
    radial-gradient(ellipse at 20% 80%, rgba(240,165,0,0.08) 0%, transparent 50%);
}
.page-hero-img {
  position: absolute; inset: 0; object-fit: cover; width: 100%; height: 100%; opacity: 0.12;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero-content .breadcrumb { font-size: 0.8rem; color: rgba(255,255,255,0.5); margin-bottom: 16px; }
.page-hero-content .breadcrumb a { color: var(--teal); }
.page-hero-content .breadcrumb span { margin: 0 8px; }
.page-hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(2.4rem, 5vw, 3.5rem); color: var(--white); line-height: 1.15; margin-bottom: 16px; }
.page-hero-content p { font-size: 1.1rem; color: rgba(255,255,255,0.7); max-width: 560px; }

/* ===== HERO (homepage) ===== */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #050e1f 0%, #0a1f3d 50%, #0d2a4a 100%);
}
.hero-bg-img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; opacity: 0.22;
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(90deg, rgba(5,14,31,0.95) 35%, rgba(5,14,31,0.4) 100%);
}
.hero-shapes { position: absolute; inset: 0; overflow: hidden; }
.hero-shape {
  position: absolute; border-radius: 50%; filter: blur(80px); animation: float 8s ease-in-out infinite;
}
.hero-shape-1 { width: 500px; height: 500px; background: rgba(0,212,184,0.12); top: -100px; right: 10%; animation-delay: 0s; }
.hero-shape-2 { width: 300px; height: 300px; background: rgba(240,165,0,0.08); bottom: 10%; right: 30%; animation-delay: 3s; }
.hero-shape-3 { width: 200px; height: 200px; background: rgba(0,212,184,0.1); top: 40%; right: 5%; animation-delay: 5s; }
@keyframes float { 0%,100% { transform: translateY(0) scale(1); } 50% { transform: translateY(-30px) scale(1.05); } }
.hero-content { position: relative; z-index: 2; padding: 130px 0 80px; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(0,212,184,0.15); border: 1px solid rgba(0,212,184,0.3);
  padding: 8px 20px; border-radius: 50px; margin-bottom: 28px;
  font-size: 0.82rem; font-weight: 600; color: var(--teal); letter-spacing: 1px; text-transform: uppercase;
}
.hero-badge span { width: 6px; height: 6px; background: var(--teal); border-radius: 50%; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.3; } }
.hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(3rem, 6vw, 5.5rem); color: var(--white); line-height: 1.1; margin-bottom: 24px; max-width: 700px; }
.hero h1 .highlight { color: var(--teal); position: relative; }
.hero h1 .highlight::after {
  content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 3px;
  background: var(--teal); opacity: 0.4; border-radius: 2px;
}
.hero-sub { font-size: 1.15rem; color: rgba(255,255,255,0.7); max-width: 520px; margin-bottom: 44px; line-height: 1.75; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 72px; }
.hero-trust { display: flex; align-items: center; gap: 16px; }
.hero-trust-avatars { display: flex; }
.hero-trust-avatar {
  width: 40px; height: 40px; border-radius: 50%; border: 2px solid rgba(0,212,184,0.5);
  margin-left: -10px; overflow: hidden; background: var(--primary-mid);
  display: flex; align-items: center; justify-content: center; font-size: 0.8rem; color: var(--teal); font-weight: 700;
}
.hero-trust-avatar:first-child { margin-left: 0; }
.hero-trust-text { font-size: 0.85rem; }
.hero-trust-text strong { display: block; color: var(--white); font-size: 1rem; }
.hero-trust-text span { color: rgba(255,255,255,0.55); }
.hero-trust-stars { color: var(--gold); font-size: 0.85rem; }
.hero-right { position: relative; }
.hero-card-float {
  position: absolute; background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; padding: 20px 24px;
  animation: floatCard 4s ease-in-out infinite;
}
@keyframes floatCard { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }
.hero-card-float.card-1 { top: 20%; right: -20px; }
.hero-card-float.card-2 { bottom: 25%; left: -30px; animation-delay: 2s; }
.hero-img-main {
  width: 100%; max-width: 540px; border-radius: 32px; overflow: hidden;
  box-shadow: 0 40px 80px rgba(0,0,0,0.4);
}
.hero-img-main img { width: 100%; height: 580px; object-fit: cover; }

/* ===== STATS BAND ===== */
.stats-band { background: linear-gradient(135deg, var(--teal), var(--teal-dark)); padding: 40px 0; }
.stats-band-inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; }
.stat-item { text-align: center; padding: 0 24px; border-right: 1px solid rgba(255,255,255,0.2); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.8rem; font-weight: 800; color: var(--primary); line-height: 1; display: block; }
.stat-label { font-size: 0.82rem; font-weight: 600; color: rgba(10,22,40,0.7); text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }

/* ===== SERVICES PREVIEW ===== */
.services-preview { padding: 100px 0; background: var(--off-white); }
.services-grid-fancy { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card-fancy {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow); transition: all var(--transition); group;
  border: 1px solid rgba(0,0,0,0.04);
}
.service-card-fancy:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.service-card-img { height: 220px; overflow: hidden; position: relative; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card-fancy:hover .service-card-img img { transform: scale(1.08); }
.service-card-img-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,22,40,0.7) 100%);
}
.service-card-icon {
  position: absolute; top: 16px; left: 16px;
  width: 48px; height: 48px; background: var(--teal); border-radius: 12px;
  display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.service-card-body { padding: 24px; }
.service-card-body h3 { font-size: 1.15rem; font-weight: 700; color: var(--primary); margin-bottom: 10px; }
.service-card-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.65; margin-bottom: 20px; }
.service-card-link {
  display: inline-flex; align-items: center; gap: 6px; font-size: 0.85rem;
  font-weight: 700; color: var(--teal); transition: gap var(--transition);
}
.service-card-link:hover { gap: 10px; }

/* ===== WHY US ===== */
.why-section { padding: 100px 0; background: var(--white); }
.why-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-img-wrapper { position: relative; }
.why-img-main { width: 100%; border-radius: 28px; overflow: hidden; height: 560px; }
.why-img-main img { width: 100%; height: 100%; object-fit: cover; }
.why-badge-float {
  position: absolute; bottom: 32px; right: -28px;
  background: var(--white); border-radius: 20px; padding: 20px 28px; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; gap: 16px; min-width: 220px;
}
.why-badge-icon { width: 52px; height: 52px; background: var(--teal-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; flex-shrink: 0; }
.why-badge-text strong { display: block; font-size: 1.5rem; font-weight: 800; color: var(--primary); line-height: 1; }
.why-badge-text span { font-size: 0.78rem; color: var(--gray); }
.why-badge-float-2 {
  position: absolute; top: 32px; left: -28px;
  background: var(--teal); border-radius: 20px; padding: 18px 24px; box-shadow: var(--shadow-teal);
}
.why-badge-float-2 strong { display: block; font-size: 1.4rem; font-weight: 800; color: var(--primary); }
.why-badge-float-2 span { font-size: 0.78rem; color: rgba(10,22,40,0.7); }
.why-text-inner .section-tag { margin-bottom: 12px; }
.why-text-inner h2 { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 2.8rem); color: var(--primary); margin-bottom: 20px; line-height: 1.2; }
.why-text-inner > p { font-size: 1rem; color: var(--gray); margin-bottom: 36px; line-height: 1.8; }
.feature-list { display: flex; flex-direction: column; gap: 16px; margin-bottom: 44px; }
.feature-item { display: flex; align-items: flex-start; gap: 16px; padding: 16px 20px; background: var(--off-white); border-radius: 14px; border: 1px solid var(--light); }
.feature-item-icon { width: 44px; height: 44px; background: var(--teal-light); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; flex-shrink: 0; }
.feature-item-text strong { display: block; font-size: 0.92rem; font-weight: 700; color: var(--primary); margin-bottom: 2px; }
.feature-item-text span { font-size: 0.82rem; color: var(--gray); }

/* ===== BEFORE/AFTER ===== */
.beforeafter { padding: 100px 0; background: var(--primary); position: relative; overflow: hidden; }
.beforeafter::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse at 50% 0%, rgba(0,212,184,0.12) 0%, transparent 60%); }
.beforeafter-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.ba-card {
  border-radius: var(--radius-lg); overflow: hidden; position: relative;
  box-shadow: var(--shadow-lg);
}
.ba-card-images { display: grid; grid-template-columns: 1fr 1fr; height: 280px; }
.ba-card-images img { width: 100%; height: 100%; object-fit: cover; }
.ba-divider {
  position: absolute; top: 0; left: 50%; bottom: 0; width: 3px;
  background: var(--teal); z-index: 2;
}
.ba-divider::before, .ba-divider::after {
  content: ''; position: absolute; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px; background: var(--teal); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
}
.ba-divider::before { top: 50%; transform: translate(-50%, -50%); }
.ba-label {
  position: absolute; background: rgba(0,0,0,0.65); color: var(--white);
  font-size: 0.72rem; font-weight: 700; letter-spacing: 1px; text-transform: uppercase;
  padding: 5px 12px; border-radius: 20px; top: 12px;
}
.ba-label.before { left: 12px; }
.ba-label.after { right: 12px; }
.ba-card-info { background: var(--white); padding: 20px 24px; }
.ba-card-info h4 { font-weight: 700; color: var(--primary); margin-bottom: 4px; font-size: 0.95rem; }
.ba-card-info p { font-size: 0.82rem; color: var(--gray); }

/* ===== TESTIMONIALS ===== */
.testimonials { padding: 100px 0; background: var(--off-white); }
.swiper-testimonials { padding: 20px 4px 50px !important; }
.testimonial-slide {
  background: var(--white); border-radius: var(--radius-lg); padding: 36px;
  box-shadow: var(--shadow-md); border: 1px solid rgba(0,0,0,0.04);
  position: relative; overflow: hidden;
}
.testimonial-slide::before { content: '"'; position: absolute; top: -10px; left: 20px; font-size: 8rem; font-family: 'Playfair Display', serif; color: var(--teal); opacity: 0.12; line-height: 1; }
.t-stars { color: var(--gold); font-size: 1rem; margin-bottom: 16px; letter-spacing: 2px; }
.t-text { font-size: 0.97rem; color: #374151; line-height: 1.75; margin-bottom: 28px; font-style: italic; }
.t-reviewer { display: flex; align-items: center; gap: 14px; }
.t-avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; border: 2px solid var(--teal); flex-shrink: 0; background: var(--teal-light); display: flex; align-items: center; justify-content: center; font-weight: 700; color: var(--teal); }
.t-reviewer-name { font-weight: 700; color: var(--primary); font-size: 0.95rem; display: block; }
.t-reviewer-info { font-size: 0.8rem; color: var(--gray); }
.t-tag { display: inline-block; font-size: 0.72rem; font-weight: 600; background: var(--teal-light); color: var(--teal); padding: 3px 10px; border-radius: 20px; margin-top: 4px; }
.swiper-pagination-bullet { background: var(--primary); }
.swiper-pagination-bullet-active { background: var(--teal); }

/* ===== TEAM ===== */
.team-section { padding: 100px 0; background: var(--white); }
.team-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.team-card { text-align: center; }
.team-img { width: 100%; height: 280px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 20px; position: relative; }
.team-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(0,212,184,0.5) 0%, transparent 50%); opacity: 0; transition: opacity var(--transition); }
.team-card:hover .team-img-overlay { opacity: 1; }
.team-social { position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%); display: flex; gap: 8px; opacity: 0; transition: opacity var(--transition); }
.team-card:hover .team-social { opacity: 1; }
.team-social a { width: 36px; height: 36px; background: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--primary); font-size: 0.9rem; transition: all var(--transition); }
.team-social a:hover { background: var(--teal); }
.team-card h3 { font-weight: 700; color: var(--primary); font-size: 1rem; margin-bottom: 4px; }
.team-card span { font-size: 0.83rem; color: var(--teal); font-weight: 500; }

/* ===== CTA SECTION ===== */
.cta-section { padding: 100px 0; position: relative; overflow: hidden; }
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,22,40,0.94) 0%, rgba(0,70,70,0.9) 100%); }
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 { font-family: 'Playfair Display', serif; font-size: clamp(2.2rem, 4vw, 3.2rem); color: var(--white); margin-bottom: 16px; line-height: 1.2; }
.cta-content p { font-size: 1.05rem; color: rgba(255,255,255,0.75); margin-bottom: 40px; max-width: 540px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-phone { display: inline-flex; align-items: center; gap: 12px; font-size: 1.2rem; font-weight: 700; color: var(--teal); text-decoration: none; padding: 16px 32px; border: 2px solid rgba(0,212,184,0.4); border-radius: 50px; transition: all var(--transition); }
.cta-phone:hover { background: rgba(0,212,184,0.1); border-color: var(--teal); }

/* ===== SERVICES PAGE ===== */
.services-list { padding: 80px 0; background: var(--white); }
.service-detail { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; margin-bottom: 100px; }
.service-detail:nth-child(even) { direction: rtl; }
.service-detail:nth-child(even) > * { direction: ltr; }
.service-detail-img { border-radius: var(--radius-lg); overflow: hidden; height: 420px; box-shadow: var(--shadow-lg); }
.service-detail-img img { width: 100%; height: 100%; object-fit: cover; }
.service-detail-content h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--primary); margin-bottom: 16px; }
.service-detail-content p { color: var(--gray); line-height: 1.8; margin-bottom: 20px; }
.service-includes { margin: 24px 0 32px; }
.service-includes h4 { font-size: 0.85rem; font-weight: 700; color: var(--primary); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 12px; }
.service-include-item { display: flex; align-items: center; gap: 10px; padding: 8px 0; font-size: 0.9rem; color: var(--gray); border-bottom: 1px solid var(--light); }
.service-include-item::before { content: '✓'; color: var(--teal); font-weight: 700; flex-shrink: 0; }
.price-badge { display: inline-flex; align-items: center; gap: 8px; background: var(--gold-light); border: 1px solid rgba(240,165,0,0.3); padding: 8px 20px; border-radius: 50px; font-size: 0.9rem; font-weight: 700; color: var(--primary); margin-bottom: 24px; }
.price-badge span { color: var(--gold); }

/* FAQ */
.faq-section { padding: 80px 0; background: var(--off-white); }
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { background: var(--white); border-radius: var(--radius); margin-bottom: 16px; overflow: hidden; border: 1px solid var(--light); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 22px 28px; cursor: pointer; font-weight: 600; color: var(--primary); font-size: 0.97rem; }
.faq-icon { width: 32px; height: 32px; background: var(--off-white); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--teal); flex-shrink: 0; transition: all var(--transition); font-size: 1rem; }
.faq-item.open .faq-icon { background: var(--teal); color: var(--primary); transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s; }
.faq-answer-inner { padding: 0 28px 22px; font-size: 0.92rem; color: var(--gray); line-height: 1.75; }
.faq-item.open .faq-answer { max-height: 300px; }

/* ===== ABOUT PAGE ===== */
.about-story { padding: 100px 0; background: var(--white); }
.about-story-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-img-group { position: relative; }
.about-img-main { width: 80%; border-radius: var(--radius-lg); overflow: hidden; height: 500px; }
.about-img-main img { width: 100%; height: 100%; object-fit: cover; }
.about-img-secondary {
  position: absolute; bottom: -32px; right: 0; width: 55%; height: 260px;
  border-radius: var(--radius-lg); overflow: hidden; border: 4px solid var(--white);
  box-shadow: var(--shadow-lg);
}
.about-img-secondary img { width: 100%; height: 100%; object-fit: cover; }
.about-story-text .section-tag { margin-bottom: 12px; }
.about-story-text h2 { font-family: 'Playfair Display', serif; font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; line-height: 1.2; }
.about-story-text p { color: var(--gray); line-height: 1.8; margin-bottom: 16px; }
.about-values-section { padding: 80px 0; background: var(--primary); }
.values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.value-card {
  background: var(--glass); border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
  padding: 40px 32px; text-align: center; transition: all var(--transition);
  backdrop-filter: blur(10px);
}
.value-card:hover { background: rgba(0,212,184,0.1); border-color: rgba(0,212,184,0.3); transform: translateY(-6px); }
.value-icon { width: 72px; height: 72px; background: rgba(0,212,184,0.15); border-radius: 20px; margin: 0 auto 24px; display: flex; align-items: center; justify-content: center; font-size: 2rem; }
.value-card h3 { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--white); margin-bottom: 12px; }
.value-card p { font-size: 0.88rem; color: rgba(255,255,255,0.65); line-height: 1.7; }

/* ===== CONTACT PAGE ===== */
.contact-section { padding: 80px 0; background: var(--white); }
.contact-main { display: grid; grid-template-columns: 1fr 1.4fr; gap: 64px; }
.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }
.contact-card {
  display: flex; align-items: flex-start; gap: 18px;
  background: var(--off-white); border-radius: var(--radius); padding: 24px;
  border: 1px solid var(--light); transition: all var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); border-color: var(--teal); }
.contact-card-icon { width: 52px; height: 52px; background: var(--teal-light); border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 1.3rem; flex-shrink: 0; }
.contact-card-body strong { display: block; font-size: 0.8rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--teal); margin-bottom: 4px; }
.contact-card-body a, .contact-card-body p { font-size: 0.95rem; color: var(--primary); font-weight: 500; line-height: 1.6; }
.contact-card-body a { color: var(--primary); transition: color var(--transition); }
.contact-card-body a:hover { color: var(--teal); }
.social-row { display: flex; gap: 12px; margin-top: 8px; }
.social-icon-btn {
  width: 44px; height: 44px; border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1rem; transition: all var(--transition); color: var(--white);
}
.social-icon-btn.fb { background: #1877f2; }
.social-icon-btn.ig { background: linear-gradient(45deg, #f09433, #dc2743, #bc1888); }
.social-icon-btn.wa { background: #25d366; }
.social-icon-btn.tw { background: #1da1f2; }
.social-icon-btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.contact-form-card { background: var(--white); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-lg); border: 1px solid var(--light); }
.contact-form-card h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; color: var(--primary); margin-bottom: 8px; }
.contact-form-card > p { font-size: 0.9rem; color: var(--gray); margin-bottom: 32px; }
.map-section { padding: 0 0 80px; background: var(--white); }
.map-wrapper { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); height: 420px; background: var(--light); display: flex; align-items: center; justify-content: center; }
.map-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ===== BOOKING PAGE ===== */
.booking-page { padding: 80px 0; background: var(--off-white); }
.booking-layout { display: grid; grid-template-columns: 1fr 2fr; gap: 48px; align-items: start; }
.booking-sidebar { background: var(--primary); border-radius: var(--radius-lg); padding: 40px; color: var(--white); position: sticky; top: 100px; }
.booking-sidebar h3 { font-family: 'Playfair Display', serif; font-size: 1.4rem; margin-bottom: 8px; }
.booking-sidebar > p { font-size: 0.85rem; color: rgba(255,255,255,0.6); margin-bottom: 32px; }
.booking-info-item { display: flex; align-items: center; gap: 14px; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.1); font-size: 0.88rem; color: rgba(255,255,255,0.75); }
.booking-info-item span:first-child { font-size: 1.2rem; flex-shrink: 0; }
.booking-info-item a { color: var(--teal); }
.booking-main-card { background: var(--white); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-lg); }
.booking-steps { display: flex; align-items: center; gap: 0; margin-bottom: 44px; }
.booking-step { display: flex; align-items: center; gap: 12px; flex: 1; }
.booking-step-num { width: 36px; height: 36px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.88rem; flex-shrink: 0; }
.booking-step.active .booking-step-num { background: var(--teal); color: var(--primary); }
.booking-step.done .booking-step-num { background: var(--primary); color: var(--white); }
.booking-step.pending .booking-step-num { background: var(--light); color: var(--gray); }
.booking-step-label { font-size: 0.8rem; font-weight: 600; }
.booking-step.active .booking-step-label { color: var(--primary); }
.booking-step.pending .booking-step-label { color: var(--gray); }
.booking-step-line { flex: 1; height: 2px; background: var(--light); margin: 0 8px; }
.booking-step-line.done { background: var(--teal); }

/* ===== FORMS (shared) ===== */
.form-section { margin-bottom: 32px; }
.form-section h4 { font-size: 0.8rem; font-weight: 700; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--light); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 700; color: var(--primary); margin-bottom: 8px; letter-spacing: 0.3px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 14px 18px; border: 2px solid var(--light);
  border-radius: 12px; font-size: 0.93rem; font-family: inherit; color: var(--primary);
  transition: all var(--transition); background: var(--off-white); outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--teal); background: var(--white); box-shadow: 0 0 0 4px rgba(0,212,184,0.1); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-note { text-align: center; font-size: 0.8rem; color: var(--gray); margin-top: 12px; }
.btn-full { width: 100%; }
.form-success { text-align: center; padding: 40px 20px; }
.form-success .success-icon { font-size: 3.5rem; display: block; margin-bottom: 16px; }
.form-success h3 { font-size: 1.4rem; color: var(--primary); margin-bottom: 8px; }
.form-success p { color: var(--gray); }

/* ===== AI CHAT WIDGET ===== */
#chatWidget { position: fixed; bottom: 28px; right: 28px; z-index: 9999; }
#chatBtn {
  width: 64px; height: 64px; background: linear-gradient(135deg, var(--teal), var(--teal-dark));
  border-radius: 50%; border: none; cursor: pointer; box-shadow: 0 8px 32px rgba(0,212,184,0.5);
  display: flex; align-items: center; justify-content: center; transition: all var(--transition);
  position: relative;
}
#chatBtn:hover { transform: scale(1.1); box-shadow: 0 12px 40px rgba(0,212,184,0.6); }
#chatBtn svg { width: 28px; height: 28px; fill: var(--primary); }
#chatBtn .chat-pulse {
  position: absolute; top: 0; right: 0; width: 16px; height: 16px;
  background: #ef4444; border-radius: 50%; border: 2px solid var(--white);
  animation: chatPulse 2s infinite;
}
@keyframes chatPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.2); } }
#chatBox {
  position: absolute; bottom: 80px; right: 0;
  width: 360px; background: var(--white); border-radius: 24px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.18); overflow: hidden;
  transform: scale(0.8) translateY(20px); transform-origin: bottom right;
  opacity: 0; pointer-events: none; transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  border: 1px solid rgba(0,0,0,0.08);
}
#chatBox.open { transform: scale(1) translateY(0); opacity: 1; pointer-events: all; }
.chat-header {
  background: linear-gradient(135deg, var(--primary), #1a3a5c);
  padding: 20px 20px 16px; display: flex; align-items: center; gap: 12px;
}
.chat-header-avatar { width: 44px; height: 44px; border-radius: 50%; background: var(--teal); display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.chat-header-info h4 { font-size: 0.92rem; font-weight: 700; color: var(--white); }
.chat-header-info span { font-size: 0.75rem; color: rgba(255,255,255,0.6); display: flex; align-items: center; gap: 4px; }
.chat-header-info span::before { content: ''; width: 6px; height: 6px; background: #22c55e; border-radius: 50%; display: inline-block; }
.chat-close { margin-left: auto; background: rgba(255,255,255,0.1); border: none; color: rgba(255,255,255,0.7); cursor: pointer; width: 32px; height: 32px; border-radius: 50%; font-size: 1.1rem; display: flex; align-items: center; justify-content: center; }
.chat-msgs { height: 300px; overflow-y: auto; padding: 16px; display: flex; flex-direction: column; gap: 12px; scroll-behavior: smooth; }
.chat-msgs::-webkit-scrollbar { width: 4px; }
.chat-msgs::-webkit-scrollbar-thumb { background: var(--light); border-radius: 2px; }
.chat-msg { max-width: 80%; animation: msgIn 0.3s ease; }
@keyframes msgIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
.chat-msg.bot { align-self: flex-start; }
.chat-msg.user { align-self: flex-end; }
.chat-msg-bubble { padding: 11px 16px; border-radius: 16px; font-size: 0.85rem; line-height: 1.55; }
.chat-msg.bot .chat-msg-bubble { background: var(--off-white); color: var(--primary); border-bottom-left-radius: 4px; }
.chat-msg.user .chat-msg-bubble { background: var(--teal); color: var(--primary); font-weight: 500; border-bottom-right-radius: 4px; }
.chat-msg-time { font-size: 0.7rem; color: var(--gray); margin-top: 4px; padding: 0 4px; }
.chat-msg.user .chat-msg-time { text-align: right; }
.chat-quick { display: flex; gap: 6px; flex-wrap: wrap; padding: 8px 16px 4px; }
.chat-quick-btn { background: var(--off-white); border: 1px solid var(--light); color: var(--primary); border-radius: 20px; padding: 6px 12px; font-size: 0.75rem; font-weight: 600; cursor: pointer; transition: all var(--transition); }
.chat-quick-btn:hover { background: var(--teal-light); border-color: var(--teal); color: var(--teal); }
.chat-input-row { display: flex; gap: 8px; padding: 12px 16px 16px; border-top: 1px solid var(--light); }
.chat-input { flex: 1; border: 1px solid var(--light); border-radius: 12px; padding: 10px 14px; font-size: 0.85rem; font-family: inherit; outline: none; color: var(--primary); transition: border-color var(--transition); }
.chat-input:focus { border-color: var(--teal); }
.chat-send { width: 40px; height: 40px; background: var(--teal); border: none; border-radius: 10px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: all var(--transition); flex-shrink: 0; }
.chat-send:hover { background: var(--teal-dark); transform: scale(1.05); }
.chat-send svg { width: 18px; height: 18px; fill: var(--primary); }
.chat-typing { display: flex; align-items: center; gap: 4px; padding: 10px 14px; background: var(--off-white); border-radius: 16px; border-bottom-left-radius: 4px; width: fit-content; }
.typing-dot { width: 6px; height: 6px; background: var(--gray); border-radius: 50%; animation: typingAnim 1.2s infinite; }
.typing-dot:nth-child(2) { animation-delay: 0.2s; }
.typing-dot:nth-child(3) { animation-delay: 0.4s; }
@keyframes typingAnim { 0%,60%,100% { transform: translateY(0); } 30% { transform: translateY(-6px); } }

/* ===== FOOTER ===== */
.footer { background: var(--primary); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2.5fr 1fr 1fr 1.5fr; gap: 56px; margin-bottom: 64px; }
.footer-brand .logo { margin-bottom: 20px; }
.footer-brand > p { font-size: 0.87rem; color: rgba(255,255,255,0.5); line-height: 1.75; max-width: 280px; margin-bottom: 24px; }
.footer-rating { display: flex; align-items: center; gap: 10px; }
.footer-rating .stars { color: var(--gold); }
.footer-rating span { font-size: 0.82rem; color: rgba(255,255,255,0.5); }
.footer-col h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.footer-col a { display: block; font-size: 0.88rem; color: rgba(255,255,255,0.65); padding: 5px 0; transition: color var(--transition); }
.footer-col a:hover { color: var(--teal); }
.footer-newsletter h4 { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 2px; color: rgba(255,255,255,0.4); margin-bottom: 24px; }
.footer-newsletter > p { font-size: 0.85rem; color: rgba(255,255,255,0.55); margin-bottom: 16px; line-height: 1.6; }
.newsletter-form { display: flex; gap: 8px; }
.newsletter-form input { flex: 1; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15); border-radius: 10px; padding: 12px 14px; color: var(--white); font-size: 0.85rem; font-family: inherit; outline: none; }
.newsletter-form input::placeholder { color: rgba(255,255,255,0.35); }
.newsletter-form button { background: var(--teal); border: none; border-radius: 10px; padding: 0 18px; color: var(--primary); font-weight: 700; cursor: pointer; transition: all var(--transition); }
.newsletter-form button:hover { background: var(--teal-dark); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.3); }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a { font-size: 0.8rem; color: rgba(255,255,255,0.35); transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--teal); }
.footer-socials { display: flex; gap: 10px; margin-top: 20px; }
.footer-social { width: 38px; height: 38px; background: rgba(255,255,255,0.07); border-radius: 10px; display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6); font-size: 0.9rem; transition: all var(--transition); }
.footer-social:hover { background: var(--teal); color: var(--primary); transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1100px) {
  .hero { flex-direction: column; }
  .hero-img-main { max-width: 100%; }
  .stats-band-inner { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.2); padding-bottom: 24px; }
  .stat-item:last-child { border-bottom: none; }
  .services-grid-fancy { grid-template-columns: repeat(2, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .hero h1 { font-size: 2.5rem; }
  .services-grid-fancy { grid-template-columns: 1fr; }
  .beforeafter-grid { grid-template-columns: 1fr; }
  .service-detail { grid-template-columns: 1fr; gap: 40px; direction: ltr !important; }
  .service-detail:nth-child(even) { direction: ltr !important; }
  .about-story-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-img-secondary { display: none; }
  .values-grid { grid-template-columns: 1fr; }
  .contact-main { grid-template-columns: 1fr; gap: 40px; }
  .booking-layout { grid-template-columns: 1fr; }
  .booking-sidebar { position: static; }
  .form-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .cta-actions { flex-direction: column; align-items: center; }
  #chatBox { width: 300px; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; }
}
@media (max-width: 480px) {
  .container { padding: 0 20px; }
  .hero-card-float { display: none; }
  .why-badge-float, .why-badge-float-2 { display: none; }
  .stats-band-inner { grid-template-columns: 1fr 1fr; }
}
