@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&family=Outfit:wght@400;500;600;700;800;900&display=swap');

/* ═══════════════════════════════════════════
   DESIGN TOKENS
   ═══════════════════════════════════════════ */
:root {
  /* Dark Mode (Default) */
  --bg-base: #07090e;
  --bg-elevated: #0d1117;
  --bg-card: rgba(16, 22, 36, 0.75);
  --bg-card-solid: #101624;
  --bg-input: #151b2b;
  --bg-overlay: rgba(7, 9, 14, 0.85);

  --accent: #ff7a00;
  --accent-hover: #ff9a33;
  --accent-glow: rgba(255, 122, 0, 0.35);
  --accent-subtle: rgba(255, 122, 0, 0.08);
  --accent-border: rgba(255, 122, 0, 0.2);

  --green: #22c55e;
  --green-glow: rgba(34, 197, 94, 0.15);
  --green-border: rgba(34, 197, 94, 0.25);

  --red: #ef4444;
  --blue: #3b82f6;
  --yellow: #f5b800;

  --text: #f1f5f9;
  --text-secondary: #94a3b8;
  --text-tertiary: #64748b;
  --text-inverse: #0f172a;

  --border: rgba(255, 255, 255, 0.06);
  --border-hover: rgba(255, 255, 255, 0.12);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.5);
  --shadow-glow: 0 0 30px var(--accent-glow);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Radii */
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 100px;

  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ═══════════════════════════════════════════
   LIGHT MODE
   ═══════════════════════════════════════════ */
body.light-mode {
  --bg-base: #f8fafc;
  --bg-elevated: #ffffff;
  --bg-card: rgba(255, 255, 255, 0.8);
  --bg-card-solid: #ffffff;
  --bg-input: #f1f5f9;
  --bg-overlay: rgba(248, 250, 252, 0.9);

  --text: #0f172a;
  --text-secondary: #475569;
  --text-tertiary: #94a3b8;

  --border: rgba(15, 23, 42, 0.08);
  --border-hover: rgba(15, 23, 42, 0.15);

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.1);
}

body.light-mode .topbar {
  background: rgba(255, 255, 255, 0.8);
}

body.light-mode .hero { background: var(--bg-base); }

body.light-mode .hero::before {
  background: radial-gradient(ellipse at 20% 50%, rgba(255, 122, 0, 0.06) 0%, transparent 60%),
              radial-gradient(ellipse at 80% 20%, rgba(34, 197, 94, 0.04) 0%, transparent 50%);
}

body.light-mode .service-card,
body.light-mode .review-card,
body.light-mode .stat-card {
  box-shadow: var(--shadow-sm);
}

body.light-mode .form-control {
  background: #ffffff;
  border-color: #e2e8f0;
}

body.light-mode .form-control::placeholder { color: #94a3b8; }


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

html { scroll-behavior: smooth; }

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

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; height: auto; display: block; }
button { font-family: var(--font-display); }

/* Scrollbar */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-base); }
::-webkit-scrollbar-thumb {
  background: var(--bg-input);
  border-radius: var(--radius-sm);
}
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

/* ═══════════════════════════════════════════
   LAYOUT
   ═══════════════════════════════════════════ */
.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
}

.section-label::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 20px;
  max-width: 700px;
}

.section-subtitle {
  font-size: 1.1rem;
  color: var(--text-secondary);
  max-width: 600px;
  line-height: 1.7;
}

.section-header {
  margin-bottom: 64px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-title,
.section-header.center .section-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ═══════════════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════════════ */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 14px 0;
  background: var(--bg-overlay);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  transition: all 0.3s var(--ease);
}

.topbar.scrolled {
  padding: 10px 0;
  box-shadow: var(--shadow-md);
}

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

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
}

.brand-logo {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
  object-fit: contain;
}

.brand-text {
  display: flex;
  flex-direction: column;
}

.brand-name {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.2rem;
  color: var(--text);
  letter-spacing: -0.01em;
}

.brand-tagline {
  font-size: 0.7rem;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 700;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s var(--ease);
}

.nav-link:hover { color: var(--text); }
.nav-link:hover::after { width: 100%; }

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

/* Mobile Menu */
.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: var(--text);
  font-size: 1.5rem;
  cursor: pointer;
  padding: 4px;
}

/* ═══════════════════════════════════════════
   BUTTONS
   ═══════════════════════════════════════════ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  font-size: 0.9rem;
  font-weight: 600;
  font-family: var(--font-display);
  border: none;
  border-radius: var(--radius-md);
  cursor: pointer;
  transition: all 0.3s var(--ease);
  text-decoration: none;
  white-space: nowrap;
}

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

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

.btn-secondary {
  background: var(--bg-input);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-secondary:hover {
  border-color: var(--accent);
  background: var(--accent-subtle);
}

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

.btn-outline:hover {
  border-color: var(--accent);
  background: var(--accent-subtle);
}

.btn-ghost {
  background: transparent;
  color: var(--text-secondary);
  padding: 8px 12px;
}

.btn-ghost:hover { color: var(--text); }

.btn-success {
  background: var(--green);
  color: #fff;
}

.btn-success:hover {
  background: #16a34a;
  box-shadow: 0 0 20px var(--green-glow);
}

.btn-sm { padding: 8px 16px; font-size: 0.8rem; }
.btn-lg { padding: 16px 32px; font-size: 1rem; }
.btn-icon { padding: 10px; }

/* ═══════════════════════════════════════════
   HERO SECTION
   ═══════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 50%, rgba(255, 122, 0, 0.1) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 20%, rgba(34, 197, 94, 0.05) 0%, transparent 50%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  padding: 8px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  color: var(--accent);
  font-weight: 600;
  margin-bottom: 28px;
  animation: fadeInUp 0.6s var(--ease) both;
}

.hero-badge .pulse-dot {
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(0.9); opacity: 0.5; }
  50% { transform: scale(1.3); opacity: 1; box-shadow: 0 0 12px var(--accent); }
}

.hero-title {
  font-size: clamp(2.8rem, 5.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.05;
  margin-bottom: 24px;
  animation: fadeInUp 0.6s var(--ease) 0.1s both;
}

.hero-title .accent { color: var(--accent); }

.hero-description {
  font-size: 1.15rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 40px;
  max-width: 520px;
  animation: fadeInUp 0.6s var(--ease) 0.2s both;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  margin-bottom: 48px;
  animation: fadeInUp 0.6s var(--ease) 0.3s both;
}

.hero-trust {
  display: flex;
  align-items: center;
  gap: 20px;
  animation: fadeInUp 0.6s var(--ease) 0.4s both;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.trust-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--green-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
}

.trust-divider {
  width: 1px;
  height: 32px;
  background: var(--border);
}

/* Hero Visual */
.hero-visual {
  position: relative;
  animation: fadeInUp 0.8s var(--ease) 0.2s both;
}

.hero-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.hero-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 122, 0, 0.1), transparent 50%);
  pointer-events: none;
}

.hero-image {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.hero-float-card {
  position: absolute;
  bottom: -20px;
  left: -20px;
  background: var(--bg-card-solid);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: var(--shadow-md);
  animation: floatCard 3s ease-in-out infinite;
  z-index: 2;
}

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

.float-card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
}

.float-card-text strong {
  display: block;
  font-size: 1.1rem;
  font-family: var(--font-display);
  font-weight: 800;
  color: var(--accent);
}

.float-card-text span {
  font-size: 0.8rem;
  color: var(--text-secondary);
}

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

/* ═══════════════════════════════════════════
   STATS BAR
   ═══════════════════════════════════════════ */
.stats-bar {
  padding: 0;
  margin-top: -50px;
  position: relative;
  z-index: 10;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.stat-card {
  background: var(--bg-card-solid);
  padding: 36px 30px;
  text-align: center;
  transition: all 0.3s var(--ease);
}

.stat-card:hover {
  background: var(--bg-elevated);
}

.stat-icon {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  margin-bottom: 6px;
}

.stat-label {
  font-size: 0.8rem;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 600;
}

/* ═══════════════════════════════════════════
   ABOUT SECTION
   ═══════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-image-wrapper {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-image {
  width: 100%;
  height: 480px;
  object-fit: cover;
}

.about-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(7, 9, 14, 0.3), transparent 40%);
  pointer-events: none;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 36px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.3s var(--ease);
}

.about-feature:hover {
  border-color: var(--accent-border);
  transform: translateY(-3px);
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--accent-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.feature-text h4 {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.feature-text p {
  font-size: 0.8rem;
  color: var(--text-secondary);
  line-height: 1.5;
}

/* ═══════════════════════════════════════════
   SERVICES
   ═══════════════════════════════════════════ */
.services-bg {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  transition: all 0.4s var(--ease);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--accent-hover));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}

.service-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-8px);
  box-shadow: var(--shadow-md);
}

.service-card:hover::before { transform: scaleX(1); }

.service-number {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255, 122, 0, 0.1);
  line-height: 1;
  margin-bottom: 20px;
}

.service-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  background: var(--accent-subtle);
  border: 1px solid var(--accent-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}

.service-card p {
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 24px;
  flex: 1;
}

.service-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  margin-top: auto;
}

.service-price-label {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.service-price {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text);
}

/* ═══════════════════════════════════════════
   REVIEWS
   ═══════════════════════════════════════════ */
.reviews-header-card {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 48px;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 48px;
  margin-bottom: 48px;
  align-items: center;
}

.reviews-score-block {
  text-align: center;
  padding-right: 48px;
  border-right: 1px solid var(--border);
}

.reviews-big-score {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
}

.reviews-stars {
  color: var(--yellow);
  font-size: 1.5rem;
  margin: 8px 0;
  letter-spacing: 2px;
}

.reviews-count {
  font-size: 0.85rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.reviews-summary h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.reviews-summary p {
  color: var(--text-secondary);
  line-height: 1.7;
  font-size: 1rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: all 0.3s var(--ease);
  display: flex;
  flex-direction: column;
}

.review-card:hover {
  border-color: var(--accent-border);
  transform: translateY(-4px);
}

.review-stars {
  color: var(--yellow);
  font-size: 1rem;
  margin-bottom: 16px;
  letter-spacing: 2px;
}

.review-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  font-style: italic;
  margin-bottom: 24px;
  flex: 1;
}

.review-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.review-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--text-inverse);
}

.review-author-info strong {
  font-size: 0.9rem;
  display: block;
}

.review-author-info span {
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════
   BOOKING SECTION
   ═══════════════════════════════════════════ */
.booking-bg {
  background: var(--bg-elevated);
  border-top: 1px solid var(--border);
}

.booking-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 64px;
  align-items: start;
}



/* Coverage */
.coverage-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px;
}

.coverage-box h4 {
  font-size: 1.1rem;
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.coverage-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.coverage-tag {
  background: var(--bg-input);
  border: 1px solid var(--border);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
}

.coverage-tag.active {
  color: var(--green);
  border-color: var(--green-border);
  background: var(--green-glow);
}

/* Wizard */
.wizard-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-lg);
}



.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 8px;
}

.form-control {
  width: 100%;
  max-width: 100%;
  min-width: 0;
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 12px 16px;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 0.9rem;
  transition: all 0.3s var(--ease);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 12px rgba(255, 122, 0, 0.12);
}

.form-control::placeholder { color: var(--text-tertiary); }

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

/* Service Option Selectors */


/* Form Status */
.form-status {
  text-align: center;
  font-weight: 600;
  margin-top: 16px;
}

.form-status.success { color: var(--green); }
.form-status.error { color: var(--red); }

/* ═══════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════ */
.cta-section {
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, var(--accent-subtle), transparent 60%);
}

.cta-card {
  position: relative;
  background: var(--bg-card);
  border: 1px solid var(--accent-border);
  border-radius: var(--radius-xl);
  padding: 64px;
  max-width: 720px;
  margin: 0 auto;
  box-shadow: var(--shadow-glow);
}

.cta-card h2 {
  font-size: 2.5rem;
  margin-bottom: 16px;
}

.cta-card p {
  color: var(--text-secondary);
  font-size: 1.1rem;
  margin-bottom: 36px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* ═══════════════════════════════════════════
   FOOTER
   ═══════════════════════════════════════════ */
.footer {
  background: #050710;
  border-top: 1px solid var(--border);
  padding: 60px 0 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand-block .brand {
  margin-bottom: 16px;
}

.footer-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-sm);
  background: var(--bg-input);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all 0.3s var(--ease);
}

.social-link:hover {
  border-color: var(--accent);
  background: var(--accent-subtle);
  transform: translateY(-2px);
}

.footer-col h4 {
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
  color: var(--text);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-secondary);
  transition: color 0.3s var(--ease);
}

.footer-link:hover { color: var(--accent); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  font-size: 0.8rem;
  color: var(--text-tertiary);
}

/* ═══════════════════════════════════════════
   ADMIN (kept minimal for dashboard page)
   ═══════════════════════════════════════════ */
.admin-shell {
  min-height: 100vh;
  background: var(--bg-base);
  display: grid;
  grid-template-columns: 260px 1fr;
}

.admin-sidebar {
  background: var(--bg-elevated);
  border-right: 1px solid var(--border);
  padding: 24px;
  display: flex;
  flex-direction: column;
}

.admin-brand { display: flex; align-items: center; gap: 10px; margin-bottom: 40px; }

.admin-nav { display: flex; flex-direction: column; gap: 6px; }

.admin-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-secondary);
  transition: all 0.3s var(--ease);
}

.admin-nav-item:hover, .admin-nav-item.active {
  background: var(--accent-subtle);
  color: var(--text);
}

.admin-nav-item.active {
  border-left: 3px solid var(--accent);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

.admin-badge {
  background: var(--accent);
  color: var(--text-inverse);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: var(--radius-full);
}

.admin-content {
  display: flex;
  flex-direction: column;
  height: 100vh;
  overflow: hidden;
}

.admin-header {
  height: 72px;
  background: var(--bg-elevated);
  border-bottom: 1px solid var(--border);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 36px;
  flex-shrink: 0;
}

.admin-header h1 { font-size: 1.35rem; }

.admin-header-actions { display: flex; align-items: center; gap: 16px; }

.admin-board {
  flex: 1;
  display: grid;
  grid-template-columns: 1fr 380px;
  overflow: hidden;
}

.admin-queue-section {
  padding: 28px 36px;
  overflow-y: auto;
}

.admin-filters { display: flex; gap: 10px; margin-bottom: 20px; }

.filter-btn {
  background: var(--bg-input);
  border: 1px solid var(--border);
  color: var(--text-secondary);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s var(--ease);
}

.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  color: var(--text);
  background: var(--accent-subtle);
}

.filter-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.dot-indicator {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
}
.dot-new { background: var(--accent); }
.dot-confirmed { background: var(--green); }
.dot-archived { background: var(--text-tertiary); }

.requests-table {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.requests-list { display: flex; flex-direction: column; }

.request-card {
  display: grid;
  grid-template-columns: 1fr 1fr 1.2fr 0.8fr 0.8fr;
  padding: 18px 24px;
  align-items: center;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  transition: all 0.2s var(--ease);
}

.request-card:hover { background: rgba(255, 255, 255, 0.02); }

.request-card.selected {
  background: var(--accent-subtle);
  border-left: 3px solid var(--accent);
}

.request-col-title { font-weight: 700; }
.request-col-meta { font-size: 0.85rem; color: var(--text-secondary); }

.request-plate-badge {
  display: inline-block;
  background: var(--yellow);
  color: var(--text-inverse);
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.75rem;
  padding: 3px 8px;
  border-radius: var(--radius-sm);
  border: 1px solid #000;
}

.status-badge {
  display: inline-flex;
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  text-transform: uppercase;
}

.status-new { background: rgba(255, 122, 0, 0.12); color: var(--accent); }
.status-confirmed { background: var(--green-glow); color: var(--green); }
.status-archived { background: rgba(255, 255, 255, 0.06); color: var(--text-tertiary); }

.admin-details-panel {
  background: var(--bg-elevated);
  border-left: 1px solid var(--border);
  overflow-y: auto;
}

.panel-header {
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.panel-header h3 { font-size: 1.2rem; margin-bottom: 4px; }

.panel-body {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.panel-section-title {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--text-tertiary);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.85rem;
}

.detail-row span:first-child { color: var(--text-secondary); }
.detail-row span:last-child { font-weight: 500; }

.quote-builder-box {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 16px;
}

.quote-line-item {
  display: flex;
  justify-content: space-between;
  font-size: 0.85rem;
  padding: 6px 0;
  border-bottom: 1px solid var(--border);
}

.quote-line-item .remove-btn {
  color: var(--red);
  cursor: pointer;
  margin-left: 8px;
}

.quote-total {
  display: flex;
  justify-content: space-between;
  font-weight: 700;
  margin-top: 16px;
  color: var(--accent);
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.quote-add-form {
  display: grid;
  grid-template-columns: 1fr 80px 40px;
  gap: 8px;
  margin-top: 16px;
}

.quote-add-form input {
  background: var(--bg-input);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  color: var(--text);
  padding: 6px 8px;
  font-size: 0.8rem;
}

.empty-queue {
  text-align: center;
  padding: 60px 20px;
  color: var(--text-secondary);
}

/* ═══════════════════════════════════════════
   ANIMATIONS  (scroll reveal via JS)
   ═══════════════════════════════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Stagger children */
.reveal-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s var(--ease), transform 0.5s var(--ease);
}

/* Make all children visible when parent is visible */
.reveal-stagger.visible > * {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger transition delays */
.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }
.reveal-stagger.visible > *:nth-child(7) { transition-delay: 0.48s; }
.reveal-stagger.visible > *:nth-child(8) { transition-delay: 0.56s; }
.reveal-stagger.visible > *:nth-child(9) { transition-delay: 0.64s; }

/* ═══════════════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-ctas { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-visual { max-width: 600px; margin: 0 auto; }
  .hero-float-card { left: 50%; transform: translateX(-50%); bottom: -16px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }

  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image-wrapper { max-height: 340px; }

  .booking-layout { grid-template-columns: 1fr; }

  .reviews-header-card { grid-template-columns: 1fr; text-align: center; }
  .reviews-score-block { border-right: none; padding-right: 0; padding-bottom: 24px; border-bottom: 1px solid var(--border); }

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

  .admin-shell { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
  .admin-board { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .mobile-menu-btn { display: block; }

  /* Responsive Topbar Header */
  .brand-logo {
    height: 36px;
  }
  .brand {
    gap: 8px;
  }
  .brand-name {
    font-size: 1.05rem;
    white-space: nowrap;
  }
  .brand-tagline {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
  }
  .topbar .btn-primary {
    padding: 10px 14px;
  }
  .nav-actions {
    gap: 8px;
  }

  .section { padding: 80px 0; }
  .hero { padding: 120px 0 80px; min-height: auto; }
  .hero-title { font-size: 2.2rem; }
  .hero-image { height: 320px; }
  .hero-ctas { flex-direction: column; }
  .hero-trust { flex-direction: column; gap: 12px; }
  .trust-divider { width: 40px; height: 1px; }

  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-card { padding: 24px 16px; }
  .stat-number { font-size: 2rem; }

  .about-features { grid-template-columns: 1fr; }

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

  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-header-card { padding: 28px; }

  .form-row { grid-template-columns: 1fr; }
  .service-options { grid-template-columns: 1fr; }

  .cta-card { padding: 40px 24px; }
  .cta-card h2 { font-size: 1.8rem; }
  .cta-actions { flex-direction: column; }

  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }

  .request-card { grid-template-columns: 1fr 1fr; gap: 8px; }
  .admin-details-panel { border-left: none; border-top: 1px solid var(--border); }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-badge { font-size: 0.75rem; }
  .wizard-card { padding: 24px; }
  .hero-float-card { display: none; }

  /* Extreme Mobile Topbar styling */
  .brand-logo {
    height: 32px;
  }
  .brand-tagline {
    display: none;
  }
  .brand-name {
    font-size: 0.95rem;
  }
  .topbar .btn-primary {
    padding: 10px;
  }
  .topbar .btn-primary span {
    display: none;
  }
  .topbar .btn-primary svg {
    margin: 0;
  }
  .nav-actions {
    gap: 6px;
  }
}
