/* ===== DESIGN TOKENS ===== */
:root {
  /* Colors */
  --clr-bg-dark: #0a0a0f;
  --clr-bg-section: #111118;
  --clr-bg-card: rgba(255, 255, 255, 0.04);
  --clr-bg-card-hover: rgba(255, 255, 255, 0.08);
  --clr-surface: #1a1a24;
  --clr-gold: #c9a84c;
  --clr-gold-light: #e0c97f;
  --clr-gold-dark: #9a7b2e;
  --clr-accent: #7b68ee;
  --clr-accent-light: #9d8df0;
  --clr-white: #ffffff;
  --clr-text: #e4e4e8;
  --clr-text-muted: #9999a8;
  --clr-text-dim: #666678;
  --clr-border: rgba(255, 255, 255, 0.08);
  --clr-border-gold: rgba(201, 168, 76, 0.3);
  --clr-success: #4ade80;
  --clr-overlay: rgba(10, 10, 15, 0.7);

  /* Glass */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 20px;

  /* Typography */
  --ff-heading: 'Playfair Display', Georgia, serif;
  --ff-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  --fs-hero: clamp(2.8rem, 7vw, 5.5rem);
  --fs-h1: clamp(2rem, 4vw, 3.2rem);
  --fs-h2: clamp(1.6rem, 3vw, 2.4rem);
  --fs-h3: clamp(1.2rem, 2vw, 1.6rem);
  --fs-body: 1rem;
  --fs-small: 0.875rem;
  --fs-xs: 0.75rem;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-semibold: 600;
  --fw-bold: 700;

  /* Spacing */
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  /* Misc */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 50%;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
  --shadow-gold: 0 4px 30px rgba(201, 168, 76, 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);
}

/* ===== LIGHT THEME ===== */
[data-theme="light"] {
  --clr-bg-dark: #f8f6f1;
  --clr-bg-section: #ffffff;
  --clr-bg-card: rgba(0, 0, 0, 0.03);
  --clr-bg-card-hover: rgba(0, 0, 0, 0.06);
  --clr-surface: #edeae3;
  --clr-gold: #a8872e;
  --clr-gold-light: #c9a84c;
  --clr-gold-dark: #8a6d1f;
  --clr-white: #1a1a24;
  --clr-text: #3a3a4a;
  --clr-text-muted: #6a6a7a;
  --clr-text-dim: #8a8a9a;
  --clr-border: rgba(0, 0, 0, 0.08);
  --clr-border-gold: rgba(168, 135, 46, 0.25);
  --clr-overlay: rgba(248, 246, 241, 0.85);
  --glass-bg: rgba(255, 255, 255, 0.7);
  --glass-border: rgba(0, 0, 0, 0.08);
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.1);
  --shadow-gold: 0 4px 30px rgba(168, 135, 46, 0.1);
}

/* Smooth theme transition */
html {
  transition: background-color 0.4s ease, color 0.4s ease;
}

/* Theme toggle button */
.theme-toggle {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  border: none;
  background: var(--clr-surface);
  color: var(--clr-gold);
  font-size: 1.4rem;
  cursor: pointer;
  z-index: 9999;
  box-shadow: var(--shadow-md);
  transition: transform 0.3s ease, background 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.theme-toggle:hover {
  transform: scale(1.1);
}

/* ===== LIGHT MODE — COMPREHENSIVE OVERRIDES ===== */

/* Hero section */
[data-theme="light"] .hero {
  background: #f8f6f1;
}

[data-theme="light"] .hero-bg {
  background: #f8f6f1 !important;
}

[data-theme="light"] .hero-bg::before {
  background: none !important;
}

[data-theme="light"] .hero-bg::after {
  background: linear-gradient(to top, #f8f6f1, transparent) !important;
}

[data-theme="light"] .hero-bg-img {
  opacity: 0.35;
}

[data-theme="light"] .hero-particles {
  display: none;
}

[data-theme="light"] .hero-content {
  padding-top: 100px;
}

[data-theme="light"] .hero h1 {
  color: #1a1a24;
}

[data-theme="light"] .hero h1 .highlight {
  color: var(--clr-gold);
}

[data-theme="light"] .hero-subtitle {
  color: #3a3a4a;
}

[data-theme="light"] .hero-badge {
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}

[data-theme="light"] .stat-value {
  color: var(--clr-gold);
}

[data-theme="light"] .stat-label {
  color: #6a6a7a;
}

[data-theme="light"] .hero-review {
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

[data-theme="light"] .hero-review-text {
  color: #3a3a4a;
}

[data-theme="light"] .hero-review-stars {
  color: var(--clr-gold);
}

[data-theme="light"] .hero-review-source {
  color: #6a6a7a;
}

/* Navbar */
[data-theme="light"] .navbar {
  background: transparent;
  border-bottom: none;
}

[data-theme="light"] .navbar.scrolled {
  background: rgba(248, 246, 241, 0.95);
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  backdrop-filter: blur(10px);
}

[data-theme="light"] .nav-logo-img {
  filter: none;
}

[data-theme="light"] .nav-links a {
  color: #1a1a24;
}

[data-theme="light"] .nav-links a:hover {
  color: var(--clr-gold);
}

[data-theme="light"] .hamburger span {
  background: #1a1a24;
}

/* Trust banner */
[data-theme="light"] .trust-banner {
  background: linear-gradient(180deg, #f8f6f1 0%, #ffffff 100%);
}

/* Section headers & text */
[data-theme="light"] .section-header h2 {
  color: #1a1a24;
}

[data-theme="light"] .section-header p {
  color: #4a4a5a;
}

[data-theme="light"] .section-tag {
  color: var(--clr-gold);
}

[data-theme="light"] .section-tag .line {
  background: var(--clr-gold);
}

/* Service cards */
[data-theme="light"] .service-card {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .service-card:hover {
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .service-card h3 {
  color: #1a1a24;
}

[data-theme="light"] .service-card p,
[data-theme="light"] .service-card-body p {
  color: #4a4a5a;
}

[data-theme="light"] .service-arrow {
  color: var(--clr-gold);
}

/* Placeholder cards */
[data-theme="light"] .placeholder-img {
  background: linear-gradient(135deg, #edeae3, #ddd8cc) !important;
}

[data-theme="light"] .placeholder-content {
  color: var(--clr-gold);
}

[data-theme="light"] .placeholder-content svg {
  color: var(--clr-gold);
}

/* Reviews */
[data-theme="light"] #reviews {
  background: #f8f6f1;
}

[data-theme="light"] .score-circle {
  border-color: var(--clr-gold);
}

[data-theme="light"] .score-num {
  color: var(--clr-gold);
}

[data-theme="light"] .review-count {
  color: #1a1a24;
}

[data-theme="light"] .review-source {
  color: #6a6a7a;
}

[data-theme="light"] .marquee-card {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .marquee-card:hover {
  background: #ffffff;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}

[data-theme="light"] .marquee-card p {
  color: #3a3a4a;
}

[data-theme="light"] .author-name {
  color: #1a1a24;
}

[data-theme="light"] .author-source {
  color: #6a6a7a;
}

/* Team */
[data-theme="light"] .team-card {
  background: #ffffff;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

[data-theme="light"] .team-card h3 {
  color: #1a1a24;
}

[data-theme="light"] .team-card p {
  color: #4a4a5a;
}

/* About features */
[data-theme="light"] .about-feature {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.03);
}

[data-theme="light"] .about-feature h4 {
  color: #1a1a24;
}

[data-theme="light"] .about-feature p {
  color: #4a4a5a;
}

/* Contact */
[data-theme="light"] .contact-form input,
[data-theme="light"] .contact-form textarea,
[data-theme="light"] .contact-form select {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #1a1a24;
}

[data-theme="light"] .contact-form input::placeholder,
[data-theme="light"] .contact-form textarea::placeholder {
  color: #8a8a9a;
}

[data-theme="light"] .contact-icon {
  background: rgba(168, 135, 46, 0.08);
}

[data-theme="light"] .contact-text strong {
  color: #1a1a24;
}

[data-theme="light"] .contact-text a,
[data-theme="light"] .contact-text span {
  color: #4a4a5a;
}

/* Modal */
[data-theme="light"] .modal {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

[data-theme="light"] .modal h2,
[data-theme="light"] .modal h3 {
  color: #1a1a24;
}

[data-theme="light"] .modal p,
[data-theme="light"] .modal li {
  color: #3a3a4a;
}

[data-theme="light"] .modal-overlay {
  background: rgba(0, 0, 0, 0.4);
}

[data-theme="light"] .modal-close {
  color: #1a1a24;
}

/* Buttons */
[data-theme="light"] .btn-primary {
  color: #ffffff;
}

[data-theme="light"] .btn-secondary {
  color: var(--clr-gold);
  border-color: var(--clr-gold);
}

[data-theme="light"] .btn-outline {
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

/* Footer stays dark */
[data-theme="light"] footer {
  background: #1a1a24;
  color: #c8c8d0;
}

[data-theme="light"] footer a {
  color: #c8c8d0;
}

[data-theme="light"] footer a:hover {
  color: var(--clr-gold-light);
}

[data-theme="light"] footer h4 {
  color: #ffffff;
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 80px;
}

body {
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-regular);
  color: var(--clr-text);
  background: var(--clr-bg-dark);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  color: var(--clr-gold);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--clr-gold-light);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

h1,
h2,
h3,
h4 {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  line-height: 1.2;
  color: var(--clr-white);
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 var(--space-md);
}

section {
  padding: var(--space-3xl) 0;
  position: relative;
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: var(--space-sm) 0;
  transition: var(--transition);
  background: transparent;
}

.navbar.scrolled {
  background: rgba(10, 10, 15, 0.85);
  backdrop-filter: blur(var(--glass-blur));
  -webkit-backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  padding: var(--space-xs) 0;
}

.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  font-weight: var(--fw-bold);
  color: var(--clr-white);
  letter-spacing: 1px;
}

.nav-logo .logo-icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: var(--fw-bold);
  color: var(--clr-bg-dark);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
  list-style: none;
}

.nav-links a {
  color: var(--clr-text-muted);
  font-size: var(--fs-small);
  font-weight: var(--fw-medium);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: var(--space-xs) 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--clr-gold);
  transition: var(--transition);
}

.nav-links a:hover {
  color: var(--clr-white);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-cta {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-bg-dark) !important;
  padding: 10px 24px !important;
  border-radius: var(--radius-xl);
  font-weight: var(--fw-semibold) !important;
  letter-spacing: 0.5px !important;
  text-transform: none !important;
  transition: var(--transition) !important;
  box-shadow: var(--shadow-gold);
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 30px rgba(201, 168, 76, 0.3);
  color: var(--clr-bg-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--clr-white);
  transition: var(--transition);
  border-radius: 2px;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  z-index: 0;
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(201, 168, 76, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(123, 104, 238, 0.1) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 80%, rgba(201, 168, 76, 0.08) 0%, transparent 40%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 200px;
  background: linear-gradient(to top, var(--clr-bg-dark), transparent);
  z-index: 1;
}

.hero-particles {
  position: absolute;
  inset: 0;
  overflow: hidden;
  z-index: 1;
}

.particle {
  position: absolute;
  width: 2px;
  height: 2px;
  background: var(--clr-gold);
  border-radius: var(--radius-full);
  opacity: 0;
  animation: float-particle 8s infinite;
}

@keyframes float-particle {
  0% {
    opacity: 0;
    transform: translateY(100vh) scale(0);
  }

  10% {
    opacity: 0.6;
  }

  90% {
    opacity: 0.6;
  }

  100% {
    opacity: 0;
    transform: translateY(-10vh) scale(1);
  }
}

.particle:nth-child(1) {
  left: 10%;
  animation-delay: 0s;
  animation-duration: 7s;
}

.particle:nth-child(2) {
  left: 20%;
  animation-delay: 1.5s;
  animation-duration: 9s;
}

.particle:nth-child(3) {
  left: 35%;
  animation-delay: 0.8s;
  animation-duration: 6s;
}

.particle:nth-child(4) {
  left: 50%;
  animation-delay: 2.2s;
  animation-duration: 8s;
}

.particle:nth-child(5) {
  left: 65%;
  animation-delay: 3.1s;
  animation-duration: 10s;
}

.particle:nth-child(6) {
  left: 75%;
  animation-delay: 0.5s;
  animation-duration: 7.5s;
}

.particle:nth-child(7) {
  left: 85%;
  animation-delay: 1.8s;
  animation-duration: 8.5s;
}

.particle:nth-child(8) {
  left: 45%;
  animation-delay: 2.8s;
  animation-duration: 6.5s;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  max-width: 900px;
  padding: 0 var(--space-md);
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  background: var(--glass-bg);
  border: 1px solid var(--clr-border-gold);
  backdrop-filter: blur(10px);
  padding: 8px 20px;
  border-radius: var(--radius-xl);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: var(--space-lg);
  animation: fadeInDown 0.8s ease-out;
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  background: var(--clr-gold);
  border-radius: var(--radius-full);
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {

  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.3;
  }
}

.hero h1 {
  font-size: var(--fs-hero);
  font-weight: var(--fw-bold);
  line-height: 1.05;
  margin-bottom: var(--space-md);
  animation: fadeInUp 0.8s ease-out 0.2s both;
}

.hero h1 .highlight {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-subtitle {
  font-size: clamp(1rem, 2vw, 1.3rem);
  color: var(--clr-text-muted);
  max-width: 600px;
  margin: 0 auto var(--space-xl);
  line-height: 1.6;
  animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-md);
  flex-wrap: wrap;
  animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  margin-top: var(--space-2xl);
  animation: fadeInUp 0.8s ease-out 0.8s both;
}

.stat {
  text-align: center;
}

.stat-value {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--clr-gold);
  display: block;
}

.stat-label {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.55);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  border-radius: var(--radius-xl);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  font-weight: var(--fw-semibold);
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  letter-spacing: 0.5px;
}

.btn-primary {
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-bg-dark);
  box-shadow: var(--shadow-gold);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 40px rgba(201, 168, 76, 0.35);
  color: var(--clr-bg-dark);
}

.btn-secondary {
  background: var(--glass-bg);
  color: var(--clr-white);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
  transform: translateY(-3px);
}

.btn-outline {
  background: transparent;
  color: var(--clr-gold);
  border: 1px solid var(--clr-border-gold);
}

.btn-outline:hover {
  background: rgba(201, 168, 76, 0.1);
  transform: translateY(-2px);
  color: var(--clr-gold-light);
}

.btn-sm {
  padding: 10px 20px;
  font-size: var(--fs-small);
}

/* ===== SECTION HEADERS ===== */
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto var(--space-2xl);
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--fs-xs);
  font-weight: var(--fw-semibold);
  color: var(--clr-gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: var(--space-sm);
}

.section-tag .line {
  width: 30px;
  height: 1px;
  background: var(--clr-gold);
}

.section-header h2 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-md);
}

.section-header p {
  color: var(--clr-text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

/* ===== SERVICES GRID ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  cursor: pointer;
  text-decoration: none;
  display: block;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--clr-gold), var(--clr-accent));
  opacity: 0;
  transition: var(--transition);
}

.service-card:hover {
  background: var(--clr-bg-card-hover);
  border-color: var(--clr-border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.service-card:hover::before {
  opacity: 1;
}

.service-icon {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1px solid var(--clr-border-gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: var(--space-md);
}

.service-card h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
  font-family: var(--ff-body);
  font-weight: var(--fw-semibold);
  transition: var(--transition);
}

.service-card:hover h3 {
  color: var(--clr-gold);
}

.service-card p {
  color: var(--clr-text-muted);
  font-size: var(--fs-small);
  line-height: 1.6;
}

.service-card .arrow {
  position: absolute;
  bottom: var(--space-lg);
  right: var(--space-lg);
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: rgba(201, 168, 76, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--clr-gold);
  font-size: 0.85rem;
  opacity: 0;
  transform: translateX(-10px);
  transition: var(--transition);
}

.service-card:hover .arrow {
  opacity: 1;
  transform: translateX(0);
}

/* ===== PRICING TABLE ===== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: var(--space-md);
}

.pricing-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  text-align: center;
  transition: var(--transition);
}

.pricing-card:hover {
  border-color: var(--clr-border-gold);
  transform: translateY(-4px);
}

.pricing-card .treatment-name {
  font-family: var(--ff-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  color: var(--clr-white);
  margin-bottom: var(--space-xs);
}

.pricing-card .price {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  color: var(--clr-gold);
  font-weight: var(--fw-bold);
}

.pricing-card .price-note {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  margin-top: 4px;
}

/* ===== REVIEWS ===== */
#reviews {
  background: var(--clr-bg-section);
}

.reviews-score {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  margin-bottom: var(--space-2xl);
  flex-wrap: wrap;
}

.score-circle {
  width: 120px;
  height: 120px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.2), rgba(201, 168, 76, 0.05));
  border: 2px solid var(--clr-gold);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-gold);
}

.score-circle .score-num {
  font-family: var(--ff-heading);
  font-size: 2.5rem;
  font-weight: var(--fw-bold);
  color: var(--clr-gold);
  line-height: 1;
}

.score-circle .score-max {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
}

.score-info {
  text-align: left;
}

.score-info .stars {
  color: var(--clr-gold);
  font-size: 1.4rem;
  margin-bottom: 4px;
  letter-spacing: 2px;
}

.score-info .review-count {
  font-size: var(--fs-body);
  color: var(--clr-text-muted);
}

.score-info .review-source {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
}

.reviews-carousel {
  position: relative;
  overflow: hidden;
  padding: 0 var(--space-md);
}

.reviews-track {
  display: flex;
  gap: var(--space-md);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.review-card {
  min-width: 350px;
  flex-shrink: 0;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  position: relative;
}

.review-card .quote-icon {
  font-size: 2.5rem;
  color: var(--clr-gold);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
  margin-bottom: var(--space-sm);
}

.review-card h4 {
  font-family: var(--ff-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-body);
  color: var(--clr-gold);
  margin-bottom: var(--space-xs);
}

.review-card p {
  color: var(--clr-text-muted);
  font-size: var(--fs-small);
  line-height: 1.7;
  margin-bottom: var(--space-md);
}

.review-card .review-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-sm);
  border-top: 1px solid var(--clr-border);
}

.review-card .reviewer {
  font-size: var(--fs-small);
  color: var(--clr-text-dim);
}

.review-card .review-stars {
  color: var(--clr-gold);
  font-size: var(--fs-small);
  letter-spacing: 2px;
}

.reviews-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-sm);
  margin-top: var(--space-xl);
}

.reviews-nav button {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  color: var(--clr-white);
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}

.reviews-nav button:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.reviews-dots {
  display: flex;
  gap: 8px;
}

.reviews-dots .dot {
  width: 8px;
  height: 8px;
  border-radius: var(--radius-full);
  background: var(--clr-text-dim);
  transition: var(--transition);
  cursor: pointer;
}

.reviews-dots .dot.active {
  background: var(--clr-gold);
  width: 24px;
  border-radius: 4px;
}

.reviews-link {
  display: block;
  text-align: center;
  margin-top: var(--space-lg);
}

/* ===== ABOUT ===== */
#about {
  background: var(--clr-bg-dark);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.about-content h2 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-md);
}

.about-content p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-md);
  line-height: 1.8;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-md);
  margin-top: var(--space-xl);
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
}

.about-feature .feature-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  border-radius: var(--radius-sm);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--clr-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.about-feature h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  margin-bottom: 4px;
}

.about-feature p {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  margin-bottom: 0;
}

.about-visual {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--clr-surface), var(--clr-bg-section));
  border: 1px solid var(--clr-border);
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-floating-card {
  position: absolute;
  bottom: -20px;
  right: -20px;
  background: rgba(10, 10, 15, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--clr-border-gold);
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  text-align: center;
}

.about-floating-card .card-num {
  font-family: var(--ff-heading);
  font-size: var(--fs-h1);
  font-weight: var(--fw-bold);
  color: var(--clr-gold);
  line-height: 1;
}

.about-floating-card .card-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* ===== ANTI-AGING ===== */
#anti-aging {
  background: var(--clr-bg-section);
}

.antiaging-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
  align-items: center;
}

.antiaging-content h2 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-md);
}

.antiaging-content>p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-lg);
  line-height: 1.8;
}

.antiaging-services {
  display: flex;
  flex-direction: column;
  gap: var(--space-sm);
}

.antiaging-item {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-md);
  transition: var(--transition);
  text-decoration: none;
}

.antiaging-item:hover {
  border-color: var(--clr-border-gold);
  background: var(--clr-bg-card-hover);
  transform: translateX(8px);
}

.antiaging-item .item-icon {
  font-size: 1.3rem;
}

.antiaging-item span {
  color: var(--clr-text);
  font-weight: var(--fw-medium);
  font-size: var(--fs-body);
}

.antiaging-item .item-arrow {
  margin-left: auto;
  color: var(--clr-text-dim);
  transition: var(--transition);
}

.antiaging-item:hover .item-arrow {
  color: var(--clr-gold);
  transform: translateX(4px);
}

.antiaging-visual {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.antiaging-card-big {
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
  border: 1px solid var(--clr-border-gold);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
}

.antiaging-card-big .big-icon {
  font-size: 3rem;
  margin-bottom: var(--space-md);
}

.antiaging-card-big h3 {
  font-size: var(--fs-h3);
  margin-bottom: var(--space-xs);
}

.antiaging-card-big p {
  color: var(--clr-text-muted);
  font-size: var(--fs-small);
}

/* ===== CONTACT ===== */
#contact {
  background: var(--clr-bg-dark);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-2xl);
}

.contact-info h2 {
  font-size: var(--fs-h1);
  margin-bottom: var(--space-md);
}

.contact-info>p {
  color: var(--clr-text-muted);
  margin-bottom: var(--space-xl);
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: var(--space-md);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-md);
}

.contact-item .contact-icon {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: var(--radius-md);
  background: rgba(201, 168, 76, 0.1);
  border: 1px solid var(--clr-border-gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item .contact-text strong {
  display: block;
  color: var(--clr-white);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  margin-bottom: 2px;
}

.contact-item .contact-text span,
.contact-item .contact-text a {
  font-size: var(--fs-small);
  color: var(--clr-text-muted);
}

.contact-map {
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--clr-border);
  aspect-ratio: 1;
  position: relative;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: grayscale(0.8) brightness(0.7) contrast(1.2);
}

.contact-whatsapp {
  margin-top: var(--space-xl);
}

.btn-whatsapp {
  background: #25D366;
  color: var(--clr-white);
  padding: 14px 28px;
  border-radius: var(--radius-xl);
  font-weight: var(--fw-semibold);
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  transition: var(--transition);
  font-family: var(--ff-body);
  font-size: var(--fs-body);
  text-decoration: none;
  border: none;
  cursor: pointer;
}

.btn-whatsapp:hover {
  background: #1da851;
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.3);
  color: var(--clr-white);
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--clr-bg-section);
  border-top: 1px solid var(--clr-border);
  padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-2xl);
}

.footer-brand .footer-logo {
  font-family: var(--ff-heading);
  font-size: 1.4rem;
  color: var(--clr-white);
  font-weight: var(--fw-bold);
  margin-bottom: var(--space-sm);
}

.footer-brand p {
  color: var(--clr-text-dim);
  font-size: var(--fs-small);
  line-height: 1.7;
  max-width: 300px;
}

.footer-col h4 {
  font-family: var(--ff-body);
  font-size: var(--fs-small);
  font-weight: var(--fw-semibold);
  color: var(--clr-white);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: var(--space-md);
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: var(--space-xs);
}

.footer-col ul li a {
  color: var(--clr-text-dim);
  font-size: var(--fs-small);
  transition: var(--transition);
}

.footer-col ul li a:hover {
  color: var(--clr-gold);
  padding-left: 4px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: var(--space-lg);
  border-top: 1px solid var(--clr-border);
  flex-wrap: wrap;
  gap: var(--space-sm);
}

.footer-bottom p {
  color: var(--clr-text-dim);
  font-size: var(--fs-xs);
}

.footer-bottom a {
  color: var(--clr-text-dim);
  font-size: var(--fs-xs);
}

.footer-bottom a:hover {
  color: var(--clr-gold);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ===== MOBILE ===== */
@media (max-width: 1024px) {

  .about-grid,
  .antiaging-wrapper,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: var(--space-xl);
  }

  .footer-top {
    grid-template-columns: 1fr 1fr;
  }

  .about-floating-card {
    right: 10px;
    bottom: -10px;
  }
}

@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    width: 300px;
    background: rgba(10, 10, 15, 0.97);
    backdrop-filter: blur(30px);
    flex-direction: column;
    padding: 100px var(--space-lg) var(--space-lg);
    gap: var(--space-md);
    border-left: 1px solid var(--glass-border);
  }

  .nav-links.active {
    display: flex;
  }

  .hamburger {
    display: flex;
  }

  .hero-stats {
    gap: var(--space-lg);
  }

  .hero-stats .stat {
    flex: 0 0 auto;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr 1fr;
  }

  .about-features {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-width: 300px;
  }

  .footer-top {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  section {
    padding: var(--space-2xl) 0;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero-stats {
    flex-direction: column;
    gap: var(--space-md);
  }

  .pricing-grid {
    grid-template-columns: 1fr;
  }

  .review-card {
    min-width: 280px;
  }

  .reviews-score {
    flex-direction: column;
    text-align: center;
  }

  .score-info {
    text-align: center;
  }
}

/* ===== MOBILE MENU OVERLAY ===== */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
}

.nav-overlay.active {
  display: block;
}

/* ===== SCROLL INDICATOR ===== */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  animation: fadeInUp 0.8s ease-out 1s both;
}

.scroll-indicator span {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  text-transform: uppercase;
  letter-spacing: 2px;
}

.scroll-mouse {
  width: 24px;
  height: 38px;
  border: 2px solid var(--clr-text-dim);
  border-radius: 12px;
  position: relative;
}

.scroll-mouse::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--clr-gold);
  border-radius: 2px;
  animation: scroll-down 1.5s infinite;
}

@keyframes scroll-down {
  0% {
    opacity: 1;
    top: 8px;
  }

  100% {
    opacity: 0;
    top: 22px;
  }
}

/* ===== NAV LOGO IMG ===== */
.nav-logo-img {
  height: 42px;
  width: auto;
  filter: brightness(1.1);
}

/* ===== HERO BACKGROUND IMAGE ===== */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  opacity: 0.25;
  z-index: 0;
}

.hero-bg::before {
  z-index: 1;
}

/* ===== HERO REVIEW ===== */
.hero-review {
  margin-top: var(--space-xl);
  background: rgba(10, 10, 15, 0.5);
  backdrop-filter: blur(15px);
  border: none;
  border-radius: var(--radius-lg);
  padding: var(--space-md) var(--space-lg);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 0.8s ease-out 0.7s both;
}

.hero-review-stars {
  color: var(--clr-gold);
  font-size: 1.2rem;
  letter-spacing: 3px;
  margin-bottom: 8px;
}

.hero-review-text {
  font-style: italic;
  color: var(--clr-white);
  font-size: var(--fs-small);
  line-height: 1.6;
  margin-bottom: 8px;
}

.hero-review-source {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.6);
}

/* ===== TRUST BANNER ===== */
.trust-banner {
  background: linear-gradient(180deg, var(--clr-bg-dark) 0%, var(--clr-bg-section) 100%);
  padding: var(--space-xl) 0;
  border-bottom: 1px solid var(--clr-border);
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xl);
  flex-wrap: wrap;
}

.trust-item {
  text-align: center;
}

.trust-score {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  font-weight: var(--fw-bold);
  color: var(--clr-gold);
  line-height: 1;
}

.trust-score span {
  font-size: 0.5em;
  color: var(--clr-text-dim);
}

.trust-label {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.trust-divider {
  width: 1px;
  height: 40px;
  background: var(--clr-border);
}

/* ===== SERVICE CARD WITH IMAGE ===== */
.service-card {
  padding: 0;
  display: flex;
  flex-direction: column;
}

.service-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.08);
}

.service-card-body {
  padding: var(--space-md) var(--space-lg) var(--space-lg);
  flex: 1;
  display: flex;
  flex-direction: column;
}

.service-card-body p {
  flex: 1;
}

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: var(--space-md);
  padding-top: var(--space-sm);
  border-top: 1px solid var(--clr-border);
}

.service-price {
  font-family: var(--ff-heading);
  font-weight: var(--fw-bold);
  color: var(--clr-gold);
  font-size: var(--fs-small);
}

.service-arrow {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  transition: var(--transition);
}

.service-card:hover .service-arrow {
  color: var(--clr-gold);
  transform: translateX(4px);
}

/* Placeholder image fallback */
.placeholder-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.placeholder-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--clr-text-dim);
  font-size: var(--fs-small);
}

.placeholder-content span:first-child {
  font-size: 2.5rem;
}

/* ===== FEATURED REVIEW ===== */
.featured-review {
  border-color: var(--clr-border-gold);
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.08), rgba(201, 168, 76, 0.02));
}

.review-badge {
  position: absolute;
  top: var(--space-md);
  right: var(--space-md);
  background: linear-gradient(135deg, var(--clr-gold), var(--clr-gold-dark));
  color: var(--clr-bg-dark);
  font-size: var(--fs-xs);
  font-weight: var(--fw-bold);
  padding: 4px 12px;
  border-radius: var(--radius-xl);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.review-platform {
  display: block;
  margin-top: var(--space-xs);
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  font-style: italic;
}

/* ===== TEAM SECTION ===== */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-lg);
}

.team-card {
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
}

.team-card:hover {
  border-color: var(--clr-border-gold);
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-photo {
  width: 100%;
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--clr-surface);
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  transition: transform 0.5s ease;
}

.team-card:hover .team-photo img {
  transform: scale(1.05);
}

.team-info {
  padding: var(--space-lg);
}

.team-info h3 {
  font-family: var(--ff-body);
  font-size: var(--fs-h3);
  font-weight: var(--fw-semibold);
  margin-bottom: 4px;
}

.team-title {
  display: block;
  font-size: var(--fs-small);
  color: var(--clr-gold);
  font-weight: var(--fw-medium);
  margin-bottom: var(--space-sm);
}

.team-info p {
  color: var(--clr-text-muted);
  font-size: var(--fs-small);
  line-height: 1.6;
  margin-bottom: var(--space-sm);
}

.team-reviews-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: var(--fs-small);
  color: var(--clr-gold);
  font-weight: var(--fw-medium);
  transition: var(--transition);
}

.team-reviews-link:hover {
  color: var(--clr-gold-light);
  transform: translateX(4px);
}

/* ===== MODAL ===== */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  padding: var(--space-lg);
}

.modal-overlay.active {
  display: flex;
}

.modal {
  background: var(--clr-bg-section);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-xl);
  max-width: 800px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  animation: modalIn 0.3s ease-out;
}

@keyframes modalIn {
  from {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
  }

  to {
    opacity: 1;
    transform: scale(1) translateY(0);
  }
}

.modal-close {
  position: sticky;
  top: 0;
  float: right;
  width: 44px;
  height: 44px;
  background: var(--clr-bg-card);
  border: 1px solid var(--clr-border);
  border-radius: var(--radius-full);
  color: var(--clr-white);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  z-index: 10;
  margin: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-close:hover {
  background: rgba(201, 168, 76, 0.15);
  border-color: var(--clr-gold);
  color: var(--clr-gold);
}

.modal-content {
  padding: 0 var(--space-xl) var(--space-xl);
}

.modal-content .modal-hero-img {
  width: calc(100% + var(--space-xl) * 2);
  margin-left: calc(var(--space-xl) * -1);
  margin-top: calc(var(--space-xl) * -1);
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.modal-content h2 {
  font-size: var(--fs-h2);
  margin-bottom: var(--space-md);
}

.modal-content h3 {
  font-size: var(--fs-h3);
  margin-top: var(--space-lg);
  margin-bottom: var(--space-sm);
}

.modal-content p {
  color: var(--clr-text-muted);
  line-height: 1.8;
  margin-bottom: var(--space-md);
}

.modal-content ul {
  list-style: none;
  padding: 0;
}

.modal-content ul li {
  padding: var(--space-xs) 0;
  padding-left: var(--space-md);
  position: relative;
  color: var(--clr-text-muted);
  font-size: var(--fs-small);
  line-height: 1.7;
}

.modal-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--clr-gold);
  font-weight: bold;
}

.modal-price-tag {
  display: inline-block;
  background: linear-gradient(135deg, rgba(201, 168, 76, 0.15), rgba(201, 168, 76, 0.05));
  border: 1px solid var(--clr-border-gold);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-md);
  margin: var(--space-md) 0;
}

.modal-price-tag .modal-price {
  font-family: var(--ff-heading);
  font-size: var(--fs-h2);
  color: var(--clr-gold);
  font-weight: var(--fw-bold);
}

.modal-price-tag .modal-price-note {
  font-size: var(--fs-xs);
  color: var(--clr-text-dim);
  display: block;
}

.modal-cta {
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--clr-border);
  display: flex;
  gap: var(--space-md);
  flex-wrap: wrap;
}

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1024px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .team-grid {
    grid-template-columns: 1fr;
  }

  .trust-items {
    gap: var(--space-md);
  }

  .trust-divider {
    display: none;
  }

  .trust-items {
    justify-content: space-around;
  }

  .hero-review {
    padding: var(--space-sm) var(--space-md);
  }

  .service-card-img {
    height: 160px;
  }

  .modal-content .modal-hero-img {
    height: 200px;
  }
}

@media (max-width: 480px) {
  .trust-items {
    gap: var(--space-sm);
  }

  .trust-score {
    font-size: var(--fs-h3);
  }
}

/* ===== MARQUEE REVIEWS ===== */
.marquee-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: var(--space-xl) 0;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.marquee-track {
  display: flex;
  gap: var(--space-lg);
  width: max-content;
  animation: marqueeScroll 60s linear infinite;
}

.marquee-track:hover {
  animation-play-state: paused;
}

.marquee-card {
  flex-shrink: 0;
  width: 360px;
  padding: var(--space-lg) var(--space-xl);
  background: rgba(255, 255, 255, 0.03);
  border-radius: var(--radius-lg);
  transition: background 0.3s ease, transform 0.3s ease;
  cursor: default;
}

.marquee-card:hover {
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-4px);
}

.marquee-stars {
  color: var(--clr-gold);
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: var(--space-sm);
}

.marquee-card p {
  color: var(--clr-text);
  font-size: var(--fs-small);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.marquee-author {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.author-name {
  color: var(--clr-white);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-small);
}

.author-source {
  color: var(--clr-text-dim);
  font-size: var(--fs-xs);
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .marquee-card {
    width: 300px;
    padding: var(--space-md) var(--space-lg);
  }

  .hero-badge {
    display: none;
  }
}