/* ===== CSS Variables ===== */
:root {
  --primary: #c41e1e;
  --primary-dark: #9a1515;
  --accent: #d4a843;
  --accent-light: #f0d78c;
  --accent-gradient: linear-gradient(135deg, #d4a843, #f0d78c, #d4a843);
  --dark: #0a0a0a;
  --dark-2: #1a1a1a;
  --dark-3: #2d2d2d;
  --gray-900: #111;
  --gray-700: #444;
  --gray-500: #888;
  --gray-300: #ccc;
  --gray-100: #f7f7f8;
  --white: #ffffff;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.06);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.1);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  --font: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --font-display: 'Playfair Display', Georgia, serif;
  --container-max: 1200px;
  --container-gutter: 24px;
}

/* ===== Dark Mode ===== */
body.dark-mode {
  --dark: #dedede;
  --dark-2: #1a1a1a;
  --dark-3: #2d2d2d;
  --gray-900: #efefef;
  --gray-700: #ccc;
  --gray-500: #bbb;
  --gray-300: #666;
  --gray-100: #1a1a1a;
  --white: #111111;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.3);
  --shadow: 0 4px 20px rgba(0,0,0,0.3);
  --shadow-lg: 0 16px 48px rgba(0,0,0,0.4);
  --shadow-xl: 0 24px 64px rgba(0,0,0,0.5);
}
body.dark-mode { background: #111111; color: #dedede; }
body.dark-mode .navbar.scrolled { background: rgba(17,17,17,0.92); box-shadow: 0 1px 0 rgba(255,255,255,0.06); }
body.dark-mode .navbar.scrolled .nav-links a { color: #dedede; }
body.dark-mode .navbar.scrolled .logo-text { color: #dedede; }
body.dark-mode .btn-outline { color: #ffffff; border-color: rgba(255,255,255,0.35); }
body.dark-mode .btn-outline:hover { background: rgba(255,255,255,0.1); color: #ffffff; border-color: rgba(255,255,255,0.5); }
body.dark-mode .navbar.scrolled .btn-outline { color: #dedede; border-color: #333; }
body.dark-mode .navbar.scrolled .btn-outline:hover { background: #222; color: #dedede; border-color: #333; }
body.dark-mode .nav-cta { color: #ffffff; }
body.dark-mode .navbar.scrolled .nav-cta { color: #ffffff; }
body.dark-mode .navbar.scrolled .hamburger span { background: #dedede; }
body.dark-mode .navbar.scrolled .btn-lang { background: #222; border-color: #333; }
body.dark-mode .navbar.scrolled .lang-flag { color: #dedede; }
body.dark-mode .service-card,
body.dark-mode .individual-card,
body.dark-mode .testimonial-card,
body.dark-mode .pricing-card { background: #1a1a1a; border-color: #2a2a2a; }
body.dark-mode .pricing-card:hover,
body.dark-mode .service-card:hover,
body.dark-mode .individual-card:hover,
body.dark-mode .testimonial-card:hover { border-color: transparent; }
body.dark-mode .pricing-card.popular { border-color: var(--primary); }
body.dark-mode .pricing-price { border-bottom-color: #2a2a2a; }
body.dark-mode .price-amount { color: #dedede; }
body.dark-mode .service-number { color: #555; }
body.dark-mode .stats-strip { background: #111111; border-bottom-color: #222; }
body.dark-mode .contact-form-wrapper { background: #1a1a1a; }
body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea { background: #222; border-color: #333; color: #dedede; }
body.dark-mode input:focus,
body.dark-mode select:focus,
body.dark-mode textarea:focus { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(196,30,30,0.15); }
body.dark-mode select { background: #222 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E") no-repeat right 16px center; }
body.dark-mode .modal { background: #1a1a1a; }
body.dark-mode .modal-close { background: #2a2a2a; }
body.dark-mode .modal-tabs { border-bottom-color: #2a2a2a; }
body.dark-mode .payment-summary { background: #222; }
body.dark-mode .contact-note { background: #1a1a1a; }
body.dark-mode .user-dropdown { background: #1a1a1a; }
body.dark-mode .user-greeting { border-bottom-color: #2a2a2a; }
body.dark-mode .toast { background: #1a1a1a; }
body.dark-mode .chatbot-window { background: #1a1a1a; }
body.dark-mode .chat-message.bot .message-bubble { background: #222; }
body.dark-mode .chatbot-quick-replies { border-top-color: #2a2a2a; }
body.dark-mode .chatbot-quick-replies button { background: #222; color: #bbb; }
body.dark-mode .chatbot-input { border-top-color: #2a2a2a; }
body.dark-mode .chatbot-input input { background: #1a1a1a; border: none; color: #dedede; }
body.dark-mode .nav-links.active { background: #1a1a1a; }
body.dark-mode .nav-links.active a { color: #dedede; }
body.dark-mode .mobile-nav-buttons .btn-outline { color: #dedede; border-color: #333; }
body.dark-mode .cookie-banner { background: #1a1a1a; color: #bbb; }

/* Keep originally-dark sections dark in dark mode */
body.dark-mode .logo-text { color: #ffffff; }
body.dark-mode .logo-icon { color: #ffffff; }
body.dark-mode .nav-links a:hover { color: #ffffff; }
body.dark-mode .nav-cta { color: #ffffff; }
body.dark-mode .nav-cta:hover { background: #ffffff; color: #0a0a0a; }
body.dark-mode .hero { background: #0a0a0a; color: #ffffff; }
body.dark-mode .hero-title { color: #ffffff; }
body.dark-mode .hero-description { color: rgba(255,255,255,0.6); }
body.dark-mode .hero .btn-ghost { color: #ffffff; border-color: rgba(255,255,255,0.3); }
body.dark-mode .hero .btn-ghost:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.5); }
body.dark-mode .cta-banner { background: #0a0a0a; }
body.dark-mode .cta-content h2 { color: #ffffff; }
body.dark-mode .cta-content p { color: rgba(255,255,255,0.5); }
body.dark-mode .btn-white { background: #ffffff; color: #0a0a0a; }
body.dark-mode .footer { background: #0a0a0a; color: #ffffff; }
body.dark-mode .footer-brand .logo-text { color: #ffffff; }
body.dark-mode .footer-brand p { color: rgba(255,255,255,0.4); }
body.dark-mode .footer-links h4 { color: rgba(255,255,255,0.5); }
body.dark-mode .footer-links a { color: rgba(255,255,255,0.6); }
body.dark-mode .footer-links a:hover { color: #ffffff; }
body.dark-mode .footer-bottom { border-top-color: rgba(255,255,255,0.08); color: rgba(255,255,255,0.3); }

/* Dark mode toggle */
.dark-toggle {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
}
.dark-toggle:hover { background: rgba(255,255,255,0.2); }
.navbar.scrolled .dark-toggle { background: var(--gray-100); border-color: #e2e2e2; }
body.dark-mode .navbar.scrolled .dark-toggle { background: #222; border-color: #333; }
.dark-toggle .sun,
.dark-toggle .moon { position: absolute; transition: opacity 0.3s, transform 0.3s; }
.dark-toggle .sun { opacity: 1; transform: scale(1); }
.dark-toggle .moon { opacity: 0; transform: scale(0.5); }
body.dark-mode .dark-toggle .sun { opacity: 0; transform: scale(0.5); }
body.dark-mode .dark-toggle .moon { opacity: 1; transform: scale(1); }

*, *::before, *::after { transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease; }

/* ===== Reset & Base ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--dark);
  line-height: 1.7;
  overflow-x: hidden;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }
button { cursor: pointer; border: none; font-family: inherit; }
input, select, textarea {
  font-family: inherit;
  font-size: 0.95rem;
  border: 1.5px solid #e2e2e2;
  border-radius: 10px;
  padding: 14px 18px;
  width: 100%;
  transition: var(--transition);
  outline: none;
  background: var(--white);
}
input:focus, select:focus, textarea:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(196,30,30,0.08);
}
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 var(--container-gutter); }

/* ===== Typography ===== */
.text-gradient {
  background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===== Animations ===== */
.anim-fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.anim-fade-right {
  opacity: 0;
  transform: translateX(-60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.anim-fade-left {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.anim-visible {
  opacity: 1 !important;
  transform: translate(0) !important;
}
.anim-delay-1 { transition-delay: 0.1s; }
.anim-delay-2 { transition-delay: 0.2s; }
.anim-delay-3 { transition-delay: 0.3s; }
.anim-delay-4 { transition-delay: 0.4s; }

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 28px;
  font-size: 0.9rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  border: 2px solid transparent;
  letter-spacing: 0.01em;
}
.btn-sm { padding: 10px 22px; font-size: 0.85rem; }
.btn-lg { padding: 16px 40px; font-size: 1rem; }
.btn-block { width: 100%; }
.btn-primary {
  background: var(--primary);
  color: #ffffff;
  border-color: var(--primary);
}
.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,30,30,0.25);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--dark);
  border-color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.5);
}
.btn-white {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
}
.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ===== Navbar ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
  padding: 12px 0;
}
.navbar.scrolled .nav-links a { color: var(--dark); }
.navbar.scrolled .btn-outline { color: var(--dark); border-color: #e2e2e2; }
.navbar.scrolled .btn-outline:hover { background: var(--gray-100); color: var(--dark); border-color: #e2e2e2; }
.navbar.scrolled .nav-cta { background: var(--primary); color: #ffffff; border-color: var(--primary); }
.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}
.logo-icon {
  width: 38px;
  height: 38px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  color: var(--white);
  font-size: 1.1rem;
}
.logo-text { color: var(--white); }
.navbar.scrolled .logo-text { color: var(--dark); }
.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  color: rgba(255,255,255,0.8);
  font-weight: 500;
  font-size: 0.9rem;
  transition: var(--transition);
  position: relative;
}
.nav-links a:hover { color: var(--white); }
.navbar.scrolled .nav-links a:hover { color: var(--primary); }
.nav-actions { display: flex; align-items: center; gap: 12px; }
.mobile-nav-buttons { display: none; }
.nav-cta {
  background: rgba(255,255,255,0.15);
  color: var(--white);
  border-color: rgba(255,255,255,0.2);
}
.nav-cta:hover {
  background: var(--white);
  color: var(--dark);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  padding: 5px;
}
.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--white);
  transition: var(--transition);
  border-radius: 1px;
}
.navbar.scrolled .hamburger span { background: var(--dark); }

/* Language Toggle */
.btn-lang {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1.5px solid rgba(255,255,255,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  cursor: pointer;
}
.btn-lang:hover { background: rgba(255,255,255,0.2); }
.navbar.scrolled .btn-lang {
  background: var(--gray-100);
  border-color: #e2e2e2;
}
.lang-flag {
  font-weight: 700;
  font-size: 0.7rem;
  color: #ffffff;
  letter-spacing: 0.5px;
}
.navbar.scrolled .lang-flag { color: var(--dark); }

/* ===== Hero ===== */
.hero {
  min-height: 100vh;
  background: var(--dark);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 0 100px;
  text-align: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}
.hero-gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
}
.hero-orb-1 {
  width: 600px;
  height: 600px;
  background: rgba(196,30,30,0.15);
  top: -200px;
  right: -100px;
  animation: orbFloat 12s ease-in-out infinite;
}
.hero-orb-2 {
  width: 500px;
  height: 500px;
  background: rgba(212,168,67,0.1);
  bottom: -200px;
  left: -100px;
  animation: orbFloat 10s ease-in-out infinite reverse;
}
.hero-grid-pattern {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 80px 80px;
}
@keyframes orbFloat {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-40px) scale(1.05); }
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
}
.hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(196,30,30,0.15);
  border: 1px solid rgba(196,30,30,0.25);
  border-radius: 50px;
  color: var(--accent);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 32px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6vw, 4.5rem);
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.hero-description {
  color: rgba(255,255,255,0.6);
  font-size: 1.1rem;
  margin-bottom: 44px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.3);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; height: 48px; }
  50% { opacity: 0.8; height: 64px; }
}

/* ===== Stats Strip ===== */
.stats-strip {
  background: var(--white);
  padding: 64px 0;
  border-bottom: 1px solid #f0f0f0;
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.stat-item {
  text-align: center;
  flex: 1;
  padding: 0 32px;
}
.stat-number {
  display: block;
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-plus {
  font-size: 2rem;
  font-weight: 700;
  color: var(--primary);
}
.stat-label {
  color: var(--gray-500);
  font-size: 0.85rem;
  font-weight: 500;
}
.stat-divider {
  width: 1px;
  height: 48px;
  background: #e8e8e8;
  flex-shrink: 0;
}

/* ===== Section Styles ===== */
.section { padding: 120px 0; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
  line-height: 1.2;
  color: var(--dark);
}
.section-subtitle {
  color: var(--gray-500);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}
.subsection-title {
  font-family: var(--font-display);
  font-size: 1.8rem;
  text-align: center;
  margin: 80px 0 40px;
  color: var(--dark);
  letter-spacing: -0.01em;
}

/* ===== About ===== */
.about { background: var(--white); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrapper {
  position: relative;
}
.about-avatar {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--gray-100);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.about-avatar-inner {
  font-size: 6rem;
  font-weight: 900;
  color: var(--gray-300);
  letter-spacing: -0.03em;
}
.about-image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  background: var(--primary);
  border-radius: var(--radius-lg);
  opacity: 0.1;
  z-index: -1;
}
.about-right .section-label { text-align: left; }
.about-right .section-title { text-align: left; }
.about-text {
  color: var(--gray-500);
  font-size: 1.05rem;
  margin-bottom: 32px;
  line-height: 1.8;
}
.about-credentials {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 32px;
}
.credential {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 500;
  font-size: 0.95rem;
}
.credential-check {
  width: 28px;
  height: 28px;
  min-width: 28px;
  background: rgba(196,30,30,0.08);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 700;
}
.about-quote {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--gray-700);
  padding-left: 20px;
  border-left: 3px solid var(--primary);
  line-height: 1.6;
}

/* ===== Services ===== */
.services { background: var(--gray-100); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  border: 1px solid #f0f0f0;
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover .service-number { color: var(--primary); }
.service-card:hover .service-arrow { opacity: 1; transform: translateX(0); }
.service-number {
  font-size: 3rem;
  font-weight: 800;
  color: var(--gray-300);
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  transition: var(--transition);
  line-height: 1;
}
.service-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
  color: var(--dark);
  font-weight: 700;
}
.service-card p {
  color: var(--gray-500);
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 20px;
}
.service-arrow {
  font-size: 1.5rem;
  color: var(--primary);
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

/* Individual Services */
.individual-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.individual-card {
  background: var(--white);
  padding: 36px 28px;
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid #f0f0f0;
  transition: var(--transition);
}
.individual-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.individual-card-icon {
  width: 64px;
  height: 64px;
  background: rgba(196,30,30,0.06);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--primary);
}
.individual-card h4 { margin-bottom: 12px; font-size: 1.05rem; font-weight: 700; }
.individual-card p { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 20px; line-height: 1.7; }

/* ===== Programs / Pricing ===== */
.programs { background: var(--white); }
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  border: 1px solid #ebebeb;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
  grid-column: span 2;
}
.pricing-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.pricing-card.popular {
  border: 2px solid var(--primary);
}
.pricing-card.premium {
  background: var(--dark-2);
  color: var(--white);
  border-color: var(--dark-2);
}
.pricing-card.premium .pricing-tagline { color: rgba(255,255,255,0.5); }
.pricing-card.premium .pricing-features li { color: rgba(255,255,255,0.7); }
.pricing-card.premium .price-currency { color: rgba(255,255,255,0.5); }
.pricing-card.mentorship {
  background: linear-gradient(180deg, #1a1510 0%, #0f0d0a 100%);
  color: var(--white);
  border-color: #1a1510;
}
.pricing-card.mentorship .pricing-tagline { color: rgba(255,255,255,0.5); }
.pricing-card.mentorship .pricing-features li { color: rgba(255,255,255,0.7); }
.pricing-card.mentorship .price-currency { color: rgba(255,255,255,0.5); }
.pricing-tier {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 16px;
}
.pricing-card.premium .pricing-tier,
.pricing-card.mentorship .pricing-tier { color: var(--accent); }
.pricing-popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--primary);
  color: var(--white);
  padding: 4px 14px;
  border-radius: 50px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.pricing-name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 4px;
  font-weight: 800;
}
.pricing-tagline {
  color: var(--gray-500);
  font-size: 0.85rem;
  margin-bottom: 24px;
}
.pricing-price {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid #f0f0f0;
}
.pricing-card.premium .pricing-price,
.pricing-card.mentorship .pricing-price { border-bottom-color: rgba(255,255,255,0.08); }
.price-amount {
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.02em;
}
.pricing-card.premium .price-amount,
.pricing-card.mentorship .price-amount { color: var(--accent); }
.price-currency {
  font-size: 0.9rem;
  color: var(--gray-500);
  margin-left: 4px;
}
.pricing-features { margin-bottom: 28px; }
.pricing-features li {
  padding: 6px 0;
  padding-left: 24px;
  position: relative;
  font-size: 0.9rem;
  color: var(--gray-700);
}
.pricing-features li::before {
  content: '\2713';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.8rem;
}
.pricing-card .btn {
  margin-top: auto;
}
.pricing-grid > .pricing-card:nth-child(4):nth-last-child(2) {
  grid-column: 2 / span 2;
}
.pricing-grid > .pricing-card:nth-child(5):last-child {
  grid-column: 4 / span 2;
}

/* ===== Testimonials ===== */
.testimonials { background: var(--gray-100); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px 32px;
  border-radius: var(--radius-lg);
  border: 1px solid #f0f0f0;
  transition: var(--transition);
  position: relative;
}
.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.testimonial-quote {
  font-family: var(--font-display);
  font-size: 4rem;
  color: var(--primary);
  opacity: 0.2;
  line-height: 1;
  margin-bottom: -16px;
}
.testimonial-card p {
  color: var(--gray-700);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 44px;
  height: 44px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--white);
}
.author-info strong { display: block; font-size: 0.9rem; font-weight: 700; }
.author-info span { font-size: 0.8rem; color: var(--gray-500); }

/* ===== Video Reviews ===== */
.video-reviews-wrap {
  margin-top: 56px;
}
.video-reviews-title {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--gray-800);
  text-align: center;
  margin-bottom: 32px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.video-reviews-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
.video-review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid #f0f0f0;
  overflow: hidden;
  cursor: pointer;
  transition: var(--transition);
}
.video-review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.video-review-thumb {
  position: relative;
  aspect-ratio: 9 / 16;
  overflow: hidden;
  background: #111;
}
.video-review-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
video.video-review-poster {
  display: block;
  pointer-events: none;
}
.video-play-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  transition: background 0.2s;
}
.video-review-card:hover .video-play-overlay {
  background: rgba(0, 0, 0, 0.45);
}
.play-circle {
  width: 52px;
  height: 52px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
  transition: transform 0.2s;
}
.video-review-card:hover .play-circle {
  transform: scale(1.1);
}
.play-circle svg { margin-left: 3px; }
.video-review-info {
  padding: 14px 16px;
}
.video-review-info strong {
  display: block;
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 2px;
}
.video-review-info span {
  font-size: 0.78rem;
  color: var(--gray-500);
}

/* Video Review Modal */
.video-review-modal {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.88);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.video-review-modal.is-open {
  display: flex;
}
.video-review-modal-inner {
  position: relative;
  width: 100%;
  max-width: 380px;  /* vertical by default (9:16) */
  background: #000;
  border-radius: 16px;
  overflow: hidden;
}
.video-review-modal.is-horizontal .video-review-modal-inner {
  max-width: 800px;  /* wider for YouTube / landscape */
}
#videoReviewBody {
  aspect-ratio: 9 / 16;
}
.video-review-modal.is-horizontal #videoReviewBody {
  aspect-ratio: 16 / 9;
}
.video-review-close {
  position: fixed;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.15);
  border: none;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  z-index: 10001;
}
.video-review-close:hover {
  background: rgba(255,255,255,0.3);
}

body.dark-mode .video-review-card {
  background: var(--gray-800);
  border-color: transparent;
}
body.dark-mode .video-reviews-title {
  color: var(--gray-200);
}

/* ===== CTA Banner ===== */
.cta-banner {
  background: var(--dark);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: rgba(196,30,30,0.1);
  border-radius: 50%;
  filter: blur(100px);
}
.cta-content {
  text-align: center;
  position: relative;
  z-index: 1;
}
.cta-content h2 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  color: var(--white);
  margin-bottom: 16px;
  font-weight: 800;
  letter-spacing: -0.02em;
}
.cta-content p {
  color: rgba(255,255,255,0.5);
  font-size: 1.05rem;
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
}

/* ===== Contact ===== */
.contact { background: var(--white); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-form-wrapper {
  background: var(--gray-100);
  padding: 40px;
  border-radius: var(--radius-xl);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gray-700);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.radio-group {
  display: flex;
  gap: 20px;
  margin-top: 8px;
}
.radio-group label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 500;
  cursor: pointer;
  font-size: 0.9rem;
}
select {
  appearance: none;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23888' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E") no-repeat right 16px center;
}

/* Phone input group (country code + number) */
.phone-input-group {
  display: flex;
}
.phone-input-group .country-code-select {
  width: 110px;
  min-width: 110px;
  flex-shrink: 0;
  border-radius: 10px 0 0 10px;
  border-right: none;
  padding-right: 28px;
  font-size: 0.85rem;
}
.phone-input-group input[type="tel"] {
  flex: 1;
  border-radius: 0 10px 10px 0;
  min-width: 0;
}
body.dark-mode .phone-input-group .country-code-select {
  background: #222 url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23999' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E") no-repeat right 16px center;
}
.contact-info h3 {
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 24px;
  font-weight: 800;
}
.social-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 28px;
}
.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  border-radius: var(--radius);
  color: var(--white);
  font-weight: 600;
  font-size: 0.9rem;
  transition: var(--transition);
}
.social-link:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.15); }
.social-link.whatsapp { background: #25D366; }
.social-link.telegram { background: #0088cc; }
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.youtube { background: #FF0000; }
.contact-note {
  background: var(--gray-100);
  padding: 24px;
  border-radius: var(--radius);
}
.contact-note h4 { color: var(--primary); margin-bottom: 8px; font-size: 0.95rem; }
.contact-note p { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; }

/* ===== Footer ===== */
.footer {
  background: var(--dark);
  color: var(--white);
  padding: 80px 0 40px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand p { color: rgba(255,255,255,0.4); margin-top: 16px; font-size: 0.9rem; line-height: 1.7; }
.footer-brand .logo { margin-bottom: 8px; }
.footer-brand .logo-text { color: var(--white); }
.footer-links h4 {
  margin-bottom: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}
.footer-links a {
  display: block;
  color: rgba(255,255,255,0.6);
  padding: 5px 0;
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 32px;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
}

/* ===== Modals ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 2000;
  display: none;
  justify-content: center;
  align-items: center;
  padding: 20px;
}
.modal-overlay.active { display: flex; }
.modal {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px;
  max-width: 480px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes modalIn {
  from { opacity: 0; transform: scale(0.95) translateY(16px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--gray-100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--gray-500);
  transition: var(--transition);
}
.modal-close:hover { background: var(--primary); color: var(--white); }
.modal-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 28px;
  border-bottom: 1.5px solid #f0f0f0;
}
.tab-btn {
  flex: 1;
  padding: 12px;
  background: none;
  font-weight: 600;
  color: var(--gray-500);
  border-bottom: 2px solid transparent;
  margin-bottom: -1.5px;
  transition: var(--transition);
  font-size: 0.9rem;
}
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.modal-form h2 {
  font-family: var(--font-display);
  margin-bottom: 8px;
  font-size: 1.6rem;
  font-weight: 800;
}
.modal-description {
  color: var(--gray-500);
  font-size: 0.9rem;
  margin-bottom: 28px;
  line-height: 1.7;
}
.form-note { text-align: center; font-size: 0.85rem; color: var(--gray-500); margin-top: 16px; }
.form-note a { color: var(--primary); font-weight: 600; }
.modal-success { text-align: center; padding: 48px 40px; }
.success-icon {
  width: 72px;
  height: 72px;
  background: #22c55e;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  color: var(--white);
  margin: 0 auto 20px;
}
.modal-success h2 { margin-bottom: 12px; }
.modal-success p { color: var(--gray-500); margin-bottom: 28px; }
.payment-summary {
  background: var(--gray-100);
  padding: 20px;
  border-radius: var(--radius);
  margin-bottom: 24px;
}
.payment-summary h3 { font-size: 1rem; margin-bottom: 4px; }
.payment-summary .payment-amount { font-size: 1.8rem; font-weight: 800; color: var(--primary); }
.payment-secure {
  text-align: center;
  font-size: 0.8rem;
  color: var(--gray-500);
  margin-top: 12px;
}
.notification-select { margin-bottom: 20px; }
.notification-select > label { font-weight: 600; font-size: 0.85rem; }

.admin-modal {
  max-width: 980px;
}
.admin-panel-body {
  display: grid;
  gap: 20px;
}
.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.admin-stat-card {
  background: var(--gray-100);
  border-radius: var(--radius);
  padding: 14px;
}
.admin-stat-card strong {
  display: block;
  font-size: 1.6rem;
  line-height: 1.1;
}
.admin-stat-label {
  display: block;
  color: var(--gray-500);
  font-size: 0.8rem;
  margin-bottom: 6px;
}
.admin-section h3 {
  margin-bottom: 10px;
  font-size: 1rem;
}
.admin-table-wrap {
  border: 1px solid #ececec;
  border-radius: var(--radius);
  overflow-x: auto;
}
.admin-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}
.admin-table th,
.admin-table td {
  padding: 10px 12px;
  font-size: 0.86rem;
  text-align: left;
  border-bottom: 1px solid #f2f2f2;
}
.admin-table th {
  background: #fafafa;
  color: var(--gray-500);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.admin-empty,
.admin-empty-row {
  color: var(--gray-500);
  text-align: center;
}
.admin-empty {
  margin: 10px 0;
}
.admin-filter-bar {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}
.admin-filter-input,
.admin-filter-select,
.admin-status-select,
.admin-note-input {
  border: 1px solid #e2e2e2;
  border-radius: 10px;
  font-size: 0.86rem;
  padding: 8px 10px;
}
.admin-filter-input {
  flex: 1 1 280px;
}
.admin-filter-select {
  min-width: 180px;
}
.admin-booking-actions {
  display: flex;
  gap: 8px;
  align-items: center;
  min-width: 360px;
}
.admin-status-select {
  min-width: 130px;
}
.admin-note-input {
  flex: 1;
  min-width: 140px;
}
.admin-table .btn {
  white-space: nowrap;
}

/* ===== Chatbot ===== */
.chatbot-widget {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 1500;
}
.chatbot-toggle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 4px 16px rgba(196,30,30,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  color: var(--white);
  transition: var(--transition);
}
.chatbot-toggle:hover { transform: scale(1.08); box-shadow: 0 6px 24px rgba(196,30,30,0.4); }
.chatbot-window {
  position: absolute;
  bottom: 68px;
  right: 0;
  width: 380px;
  max-height: 500px;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  display: none;
  flex-direction: column;
  overflow: hidden;
  animation: modalIn 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.chatbot-window.active { display: flex; }
.chatbot-header {
  background: var(--dark);
  color: var(--white);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.chatbot-header-info { display: flex; align-items: center; gap: 12px; }
.chatbot-avatar {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.75rem;
  color: var(--white);
}
.chatbot-header-info strong { display: block; font-size: 0.9rem; }
.chatbot-status { font-size: 0.75rem; color: #22c55e; }
.chatbot-minimize { background: none; color: var(--white); font-size: 1.5rem; }
.chatbot-messages {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  max-height: 300px;
}
.chat-message { margin-bottom: 12px; display: flex; }
.chat-message.bot { justify-content: flex-start; }
.chat-message.user { justify-content: flex-end; }
.message-bubble {
  max-width: 85%;
  padding: 12px 16px;
  border-radius: 16px;
  font-size: 0.9rem;
  line-height: 1.6;
  white-space: pre-line;
}
.chat-message.bot .message-bubble {
  background: var(--gray-100);
  border-bottom-left-radius: 4px;
}
.chat-message.user .message-bubble {
  background: var(--primary);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.chatbot-quick-replies {
  padding: 8px 16px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  border-top: 1px solid #f0f0f0;
}
.chatbot-quick-replies button {
  padding: 6px 14px;
  background: var(--gray-100);
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--transition);
  color: var(--gray-700);
}
.chatbot-quick-replies button:hover { background: var(--primary); color: var(--white); }
.chatbot-input {
  display: flex;
  gap: 8px;
  padding: 12px 16px;
  border-top: 1px solid #f0f0f0;
}
.chatbot-input input {
  flex: 1;
  border: none;
  padding: 10px;
  font-size: 0.9rem;
}
.chatbot-input input:focus { box-shadow: none; }
.chatbot-input button {
  width: 40px;
  height: 40px;
  background: var(--primary);
  border-radius: 50%;
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
}
.chatbot-input button:hover { background: var(--primary-dark); }

/* ===== User Menu ===== */
.user-menu {
  position: relative;
  z-index: 1002;
}
.user-menu-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
}
.user-dropdown {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 16px;
  min-width: 220px;
}
.user-greeting {
  padding-bottom: 12px;
  margin-bottom: 12px;
  border-bottom: 1px solid #f0f0f0;
  font-size: 0.9rem;
}
.user-dropdown a {
  display: block;
  padding: 8px 0;
  font-size: 0.9rem;
  color: var(--gray-500);
  transition: var(--transition);
}
.user-dropdown a:hover { color: var(--primary); }

/* ===== Toast ===== */
.toast {
  position: fixed;
  top: 80px;
  right: 20px;
  background: var(--white);
  padding: 16px 24px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  display: flex;
  align-items: center;
  gap: 12px;
  animation: toastIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  max-width: 400px;
  font-size: 0.9rem;
}
.toast.success { border-left: 4px solid #22c55e; }
.toast.error { border-left: 4px solid var(--primary); }
.toast.info { border-left: 4px solid #3b82f6; }
@keyframes toastIn {
  from { transform: translateX(100%); opacity: 0; }
  to { transform: translateX(0); opacity: 1; }
}

/* ===== Loading ===== */
.loading { display: inline-flex; align-items: center; gap: 8px; }
.spinner {
  width: 18px;
  height: 18px;
  border: 2px solid rgba(255,255,255,0.2);
  border-top-color: var(--white);
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== Responsive ===== */
@media (max-width: 1200px) {
  .nav-links { gap: 20px; }
  .nav-actions { gap: 8px; }
  .nav-actions .btn { padding: 8px 16px; font-size: 0.8rem; }
}
@media (max-width: 1024px) {
  .nav-links { gap: 16px; }
  .nav-links a { font-size: 0.85rem; }
  .nav-actions .btn { padding: 8px 14px; font-size: 0.78rem; }
  .btn-lang { width: 34px; height: 34px; }
  .lang-flag { font-size: 0.65rem; }
  .hero-buttons { gap: 12px; }
  .hero-buttons .btn { padding: 14px 28px; font-size: 0.9rem; }
  .about-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-left { max-width: 400px; margin: 0 auto; }
  .about-right .section-label,
  .about-right .section-title { text-align: center; }
  .about-text { text-align: center; }
  .about-credentials { align-items: center; }
  .about-quote { text-align: center; border-left: none; padding-left: 0; border-top: 3px solid var(--primary); padding-top: 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .individual-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .pricing-card { grid-column: auto; }
  .pricing-grid > .pricing-card:nth-child(4):nth-last-child(2),
  .pricing-grid > .pricing-card:nth-child(5):last-child { grid-column: auto; }
  .testimonials-grid { grid-template-columns: 1fr; max-width: 600px; margin: 0 auto; }
  .video-reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { flex-wrap: wrap; gap: 24px; }
  .stat-divider { display: none; }
  .stat-item { flex: 0 0 calc(50% - 12px); padding: 0; }
}
@media (max-width: 768px) {
  .section { padding: 80px 0; }
  .admin-modal {
    padding: 24px 16px;
    max-height: 92vh;
  }
  .admin-stats-grid {
    grid-template-columns: 1fr;
  }
  .admin-filter-bar {
    flex-direction: column;
    align-items: stretch;
  }
  .admin-filter-input,
  .admin-filter-select {
    width: 100%;
    min-width: 0;
  }
  .admin-booking-actions {
    flex-direction: column;
    align-items: stretch;
    min-width: 220px;
  }
  .admin-status-select,
  .admin-note-input {
    width: 100%;
    min-width: 0;
  }
  .section-title { font-size: 1.8rem; }
  .nav-links { display: none; }
  .nav-links.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 20px 24px;
    box-shadow: var(--shadow);
    gap: 4px;
    border-radius: 0 0 var(--radius) var(--radius);
  }
  .nav-links.active a {
    color: var(--dark);
    padding: 10px 0;
    font-size: 0.9rem;
  }
  .mobile-nav-buttons {
    display: flex !important;
    gap: 12px;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid #f0f0f0;
  }
  .mobile-nav-buttons .btn {
    flex: 1;
    text-align: center;
  }
  .mobile-nav-buttons .btn-outline {
    color: var(--dark);
    border-color: #e2e2e2;
  }
  .hamburger { display: flex; }
  .nav-actions .btn.btn-outline { display: none; }
  .nav-actions .btn.nav-cta { display: none; }
  .hero { padding: 120px 0 80px; }
  .hero-title { font-size: 2.2rem; }
  .hero-description { font-size: 1rem; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-buttons .btn { width: 100%; max-width: 320px; }
  .stat-number { font-size: 2.2rem; }
  .stat-plus { font-size: 1.5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .individual-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card .btn-block { padding: 14px; font-size: 0.9rem; }
  .social-links { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .modal { padding: 28px 20px; border-radius: var(--radius-lg); }
  .chatbot-window { width: calc(100vw - 48px); right: -12px; }
  .contact-form-wrapper { padding: 28px 20px; }
  .cta-content .btn { width: 100%; max-width: 320px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-description { font-size: 0.9rem; }
  .hero-buttons .btn { padding: 14px 24px; font-size: 0.85rem; }
  .section { padding: 60px 0; }
  .section-title { font-size: 1.5rem; }
  .stat-number { font-size: 1.8rem; }
  .stat-label { font-size: 0.75rem; }
  .pricing-card { padding: 28px 20px; }
  .individual-card { padding: 28px 20px; }
}


/* ===== Extended Responsive ===== */
@media (min-width: 1440px) {
  :root {
    --container-max: 1360px;
    --container-gutter: 32px;
  }
  .section { padding: 132px 0; }
  .hero-content { max-width: 920px; }
  .services-grid,
  .individual-grid,
  .pricing-grid,
  .testimonials-grid { gap: 32px; }
}

@media (min-width: 1920px) {
  :root {
    --container-max: 1620px;
    --container-gutter: 48px;
  }
  body { font-size: 18px; }
  .hero { padding: 170px 0 120px; }
  .hero-content { max-width: 1080px; }
  .chatbot-window { width: 440px; max-height: 620px; }
}

@media (min-width: 2560px) {
  :root {
    --container-max: 1880px;
    --container-gutter: 64px;
  }
  body { font-size: 20px; }
  .hero-title { font-size: clamp(4rem, 4.2vw, 5.6rem); }
  .section-title { font-size: clamp(2.6rem, 2.2vw, 3.8rem); }
}

@media (min-width: 1025px) and (max-width: 1280px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .video-reviews-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  :root { --container-gutter: 20px; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-buttons .btn { width: min(100%, 340px); }
  .scroll-indicator { display: none; }
  .chatbot-widget { right: 16px; bottom: 16px; }
}

@media (max-width: 640px) {
  :root { --container-gutter: 16px; }
  .navbar { padding: 14px 0; }
  .logo { font-size: 1.1rem; }
  .logo-icon { width: 34px; height: 34px; font-size: 1rem; }
  .hero { min-height: auto; padding: 108px 0 64px; }
  .hero-badge { font-size: 0.68rem; padding: 7px 14px; margin-bottom: 20px; }
  .hero-title { font-size: clamp(1.8rem, 8vw, 2.4rem); margin-bottom: 20px; }
  .hero-description { font-size: 0.95rem; margin-bottom: 28px; }
  .stats-strip { padding: 44px 0; }
  .stat-item { flex: 0 0 100%; }
  .stat-number { font-size: 1.9rem; }
  .stat-plus { font-size: 1.2rem; }
  .section { padding: 64px 0; }
  .section-header { margin-bottom: 44px; }
  .section-title { font-size: 1.55rem; }
  .section-subtitle { font-size: 0.95rem; }
  .service-card,
  .individual-card,
  .pricing-card,
  .testimonial-card { padding: 28px 22px; }
  .cta-banner { padding: 76px 0; }
  .contact-grid { gap: 32px; }
  .contact-form-wrapper { padding: 24px 18px; border-radius: 20px; }
  .social-link { padding: 12px 14px; font-size: 0.85rem; }
  .modal-overlay { padding: 12px; }
  .modal { padding: 24px 16px; max-height: 92vh; }
  .chatbot-window { width: calc(100vw - 24px); right: -2px; bottom: 62px; }
}

@media (max-width: 480px) {
  .user-dropdown { min-width: 180px; max-width: calc(100vw - 24px); }
  .nav-actions { gap: 8px; }
  .btn-lang,
  .user-menu-toggle { width: 34px; height: 34px; }
  .hero-title { font-size: 1.65rem; }
  .price-amount { font-size: 1.8rem; }
  .pricing-features li { font-size: 0.85rem; padding-left: 20px; }
  .footer { padding: 64px 0 32px; }
  .toast { left: 12px; right: 12px; max-width: none; }
  .chatbot-widget { right: 12px; bottom: 12px; }
  .chatbot-toggle { width: 52px; height: 52px; }
  .chatbot-window { width: calc(100vw - 16px); right: -4px; max-height: 68vh; }
}

/* ===== Profile Modal ===== */
.profile-modal { max-width: 520px; }

.profile-modal-header {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--gray-300);
}

.dark-mode .profile-modal-header { border-color: #333; }

.profile-avatar-lg {
  width: 64px;
  height: 64px;
  min-width: 64px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 700;
  font-family: var(--font-display);
}

.profile-display-name {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 4px;
}

.dark-mode .profile-display-name { color: var(--white); }

.profile-meta {
  font-size: 0.82rem;
  color: var(--gray-500);
}

.profile-section-title {
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 16px;
  color: var(--dark);
}

.dark-mode .profile-section-title { color: var(--white); }

.profile-password-note {
  font-size: 0.82rem;
  color: var(--gray-500);
  margin-top: 12px;
  margin-bottom: 28px;
}

.profile-password-note a { color: var(--primary); text-decoration: underline; }

.profile-bookings-section { margin-top: 8px; }

.profile-bookings-list { display: flex; flex-direction: column; gap: 10px; }

.profile-booking-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  background: var(--gray-100);
  border-radius: var(--radius);
  gap: 12px;
}

.dark-mode .profile-booking-item { background: #222; }

.profile-booking-info {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.profile-booking-service {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--dark);
}

.dark-mode .profile-booking-service { color: var(--white); }

.profile-booking-date {
  font-size: 0.78rem;
  color: var(--gray-500);
}

.profile-no-bookings {
  font-size: 0.88rem;
  color: var(--gray-500);
  text-align: center;
  padding: 20px 0;
}

.booking-status {
  font-size: 0.72rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px;
  white-space: nowrap;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.booking-status--pending,
.booking-status--new { background: #fef3c7; color: #92400e; }
.booking-status--in_progress { background: #dbeafe; color: #1e40af; }
.booking-status--done { background: #d1fae5; color: #065f46; }
.booking-status--cancelled { background: #f3f4f6; color: #6b7280; }
