/* ==========================================================================
   FunCut Design System — Nordic Noir
   Dark luxe theme: deep petrol-black, warm amber/orange, Scandinavian precision
   ========================================================================== */

/* ===== CUSTOM PROPERTIES ===== */
:root {
  --bg-deep: #0B1215;
  --bg-surface: #111B1F;
  --bg-card: #152025;
  --bg-elevated: #1A2A30;
  --bg-hover: #1E3038;

  --petrol: #1A5F6E;
  --petrol-dark: #134B58;
  --petrol-glow: #2A8A9E;
  --orange: #E07B3C;
  --orange-dark: #C86A2E;
  --orange-glow: rgba(224, 123, 60, 0.25);
  --brown: #5C3D2E;

  --text-primary: #E8E4DF;
  --text-secondary: #9B9590;
  --text-muted: #6B6560;
  --text-light: #FAFAFA;
  --text-accent: var(--orange);

  --petrol-subtle: rgba(26, 95, 110, 0.12);
  --petrol-border: rgba(42, 138, 158, 0.2);
  --petrol-glow-shadow: rgba(42, 138, 158, 0.15);

  --border-subtle: rgba(224, 123, 60, 0.08);
  --border-dim: rgba(255, 255, 255, 0.06);
  --border-active: rgba(224, 123, 60, 0.3);

  --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --space-2xs: 0.25rem;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.5rem;
  --space-lg: 2.5rem;
  --space-xl: 4rem;
  --space-2xl: 6rem;
  --space-3xl: 8rem;

  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 16px;
  --radius-pill: 100px;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
  --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 12px 48px rgba(0, 0, 0, 0.5);
  --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.6);
  --shadow-glow: 0 0 40px rgba(224, 123, 60, 0.15);

  --transition-fast: 0.15s ease;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);

  --max-width: 1200px;
  --nav-height: 72px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-padding-top: var(--nav-height);
}

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-primary);
  background: var(--bg-deep);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* ===== TYPOGRAPHY ===== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  color: var(--text-light);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.2rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); letter-spacing: -0.01em; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
h4 { font-size: 1.1rem; }

p { max-width: 65ch; }

.text-muted { color: var(--text-muted); }
.text-center { text-align: center; }

/* ===== LAYOUT ===== */
.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
}

.section {
  padding: var(--space-2xl) 0;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.section-header h2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
}

.section-header h2::before {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--petrol-glow));
  flex-shrink: 0;
}

.section-header h2::after {
  content: '';
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, var(--petrol-glow), transparent);
  flex-shrink: 0;
}

.section-header p {
  margin: var(--space-sm) auto 0;
  color: var(--text-secondary);
  font-size: 1.05rem;
  max-width: 55ch;
  font-style: italic;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 0.85rem 2rem;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all var(--transition);
  white-space: nowrap;
  position: relative;
  overflow: hidden;
}

.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  opacity: 0;
  transition: opacity var(--transition-fast);
  background: rgba(255,255,255,0.08);
}
.btn:hover::after { opacity: 1; }

.btn-primary {
  background: var(--orange);
  color: var(--bg-deep);
  box-shadow: 0 4px 20px var(--orange-glow);
  font-weight: 700;
}
.btn-primary:hover {
  background: var(--orange-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(224, 123, 60, 0.4);
}
.btn-primary:active { transform: translateY(0); }

.btn-secondary {
  background: var(--petrol);
  color: var(--text-light);
}
.btn-secondary:hover {
  background: var(--petrol-dark);
  transform: translateY(-2px);
}

.btn-outline {
  border: 1.5px solid var(--orange);
  color: var(--orange);
  background: transparent;
}
.btn-outline:hover {
  background: var(--orange);
  color: var(--bg-deep);
}

.btn-sm { padding: 0.55rem 1.25rem; font-size: 0.8rem; }
.btn-lg { padding: 1.1rem 2.8rem; font-size: 1rem; }

/* ===== CARDS ===== */
.card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: all var(--transition);
  border: 1px solid var(--border-dim);
}
.card:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

/* ===== FORM ELEMENTS ===== */
.form-group {
  margin-bottom: var(--space-md);
}

.form-group label {
  display: block;
  font-weight: 500;
  font-size: 0.85rem;
  margin-bottom: var(--space-2xs);
  color: var(--text-secondary);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.form-input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-sm);
  background: var(--bg-surface);
  color: var(--text-primary);
  font-size: 1rem;
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-color: var(--petrol-glow);
  box-shadow: 0 0 0 3px var(--petrol-glow-shadow);
}

.form-input::placeholder { color: var(--text-muted); }

textarea.form-input {
  min-height: 120px;
  resize: vertical;
}

/* ===== BADGE ===== */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0.4rem 1rem;
  border-radius: var(--radius-pill);
  font-size: 0.85rem;
  font-weight: 500;
}

.badge-location {
  background: rgba(224, 123, 60, 0.12);
  color: var(--orange);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(224, 123, 60, 0.2);
}

/* ===== NAVIGATION ===== */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--nav-height);
  z-index: 1000;
  transition: all var(--transition);
}

.nav.scrolled {
  background: rgba(11, 18, 21, 0.92);
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 var(--border-dim);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-light);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

/* SVG badge logo sizing */
.nav-logo svg {
  height: 48px;
  width: 48px;
}
.nav-logo .logo-accent { color: var(--orange); }

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(232, 228, 223, 0.7);
  transition: color var(--transition-fast);
  position: relative;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--orange);
  transition: width var(--transition);
}
.nav-links a:hover::after { width: 100%; }
.nav-links a:hover { color: var(--orange); }

.nav-cta {
  padding: 0.55rem 1.4rem;
  background: transparent;
  color: var(--orange) !important;
  border: 1.5px solid var(--orange);
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: all var(--transition) !important;
}
.nav-cta:hover {
  background: var(--orange);
  color: var(--bg-deep) !important;
}
.nav-cta::after { display: none !important; }

.nav-lang {
  display: flex;
  gap: 2px;
  margin-left: var(--space-xs);
  background: rgba(255,255,255,0.06);
  border-radius: var(--radius-sm);
  padding: 3px;
}

.nav-lang button {
  padding: 4px 10px;
  font-size: 0.7rem;
  font-weight: 600;
  color: var(--text-muted);
  border-radius: var(--radius-sm);
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-lang button.active {
  background: var(--orange);
  color: var(--bg-deep);
}

/* Hamburger */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav-hamburger span {
  display: block;
  height: 2px;
  background: var(--text-light);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* Mobile menu */
.nav-mobile {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100vh;
  height: 100dvh;
  background: var(--bg-deep);
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--space-lg);
  transition: right var(--transition-slow);
}
.nav-mobile.open { right: 0; }

.nav-mobile a {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--text-light);
  transition: color var(--transition-fast);
}
.nav-mobile a:hover { color: var(--orange); }

.nav-mobile .nav-lang {
  margin-left: 0;
  margin-top: var(--space-md);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100dvh;
  display: flex;
  align-items: center;
  background: var(--bg-deep);
  background-image: url('/images/hero-bg.jpeg');
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(11, 18, 21, 0.92) 0%, rgba(11, 18, 21, 0.7) 40%, rgba(11, 18, 21, 0.85) 100%),
    radial-gradient(ellipse 80% 60% at 65% 30%, rgba(26, 95, 110, 0.15) 0%, transparent 60%),
    radial-gradient(ellipse 50% 50% at 20% 70%, rgba(224, 123, 60, 0.06) 0%, transparent 60%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
  padding: calc(var(--nav-height) + var(--space-xl)) 0 var(--space-3xl);
}

.hero h1 {
  color: var(--text-light);
  margin-bottom: var(--space-md);
}

.hero h1 em {
  font-style: italic;
  color: var(--orange);
}

.hero-subtitle {
  font-size: clamp(1.05rem, 1.8vw, 1.2rem);
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
  line-height: 1.7;
  max-width: 50ch;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: var(--space-md);
  flex-wrap: wrap;
}

.hero-location {
  margin-top: var(--space-xl);
}

.hero-decorative {
  position: absolute;
  right: -5%;
  top: 50%;
  transform: translateY(-50%);
  width: 45%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(26, 95, 110, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

/* Decorative scissors SVG in hero */
.hero-deco-scissors {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%) rotate(-15deg);
  width: 320px;
  height: 320px;
  opacity: 0.04;
  pointer-events: none;
  z-index: 1;
}

.wave-divider {
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  z-index: 3;
  line-height: 0;
}
.wave-divider svg {
  display: block;
  width: 100%;
  height: 60px;
}

/* ===== SERVICES ===== */
.services {
  background: var(--bg-surface);
  position: relative;
}

/* Subtle top border glow */
.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 300px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--petrol-glow), var(--orange), var(--petrol-glow), transparent);
}

.services-filter {
  display: flex;
  justify-content: center;
  gap: var(--space-xs);
  margin-bottom: var(--space-xl);
  flex-wrap: wrap;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-muted);
  background: transparent;
  border: 1px solid var(--border-dim);
  transition: all var(--transition-fast);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.filter-btn:hover { border-color: var(--orange); color: var(--orange); }
.filter-btn.active {
  background: var(--orange);
  color: var(--bg-deep);
  border-color: var(--orange);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: var(--space-md);
}

.service-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  border: 1px solid var(--border-dim);
  padding: var(--space-lg);
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--petrol-glow), var(--orange));
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }

.service-card:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-glow);
  transform: translateY(-4px);
}

/* Service card icon */
.service-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--petrol-subtle);
  border: 1px solid var(--petrol-border);
}

.service-card-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--petrol-glow);
  fill: none;
  stroke-width: 1.5;
}

.service-card-category {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: var(--space-xs);
}

.service-card h3 {
  margin-bottom: var(--space-xs);
  color: var(--text-light);
}

.service-card-desc {
  color: var(--text-secondary);
  font-size: 0.9rem;
  margin-bottom: var(--space-md);
  line-height: 1.6;
}

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

.service-card-price {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--orange);
}

.service-card-duration {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-card .btn-sm {
  opacity: 0;
  transform: translateY(4px);
  transition: all var(--transition);
}
.service-card:hover .btn-sm {
  opacity: 1;
  transform: translateY(0);
}

/* ===== ABOUT ===== */
.about {
  background: var(--bg-deep);
  position: relative;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.about-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 4/5;
  background: linear-gradient(135deg, var(--bg-card) 0%, var(--bg-elevated) 100%);
  border: 1px solid var(--border-dim);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: var(--petrol-glow);
  opacity: 0.1;
}

.about-content h2 { margin-bottom: var(--space-xs); }

.about-subtitle {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--orange);
  font-weight: 400;
  font-style: italic;
  margin-bottom: var(--space-md);
}

.about-bio {
  color: var(--text-secondary);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: var(--space-lg);
}

.about-credentials {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  padding: var(--space-xs) var(--space-md);
  background: var(--petrol-subtle);
  border: 1px solid var(--petrol-border);
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--petrol-glow);
}

.about-credentials::before {
  content: '\2713';
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--petrol);
  color: var(--text-light);
  border-radius: 50%;
  font-size: 0.7rem;
  font-weight: 700;
}

/* About stats */
.about-stats {
  display: flex;
  gap: var(--space-lg);
  margin-top: var(--space-lg);
  padding-top: var(--space-lg);
  border-top: 1px solid var(--border-dim);
}

.about-stat {
  text-align: left;
}

.about-stat-number {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}

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

.about-stat:nth-child(2) .about-stat-number {
  color: var(--petrol-glow);
}

/* ===== ROUTE ===== */
.route {
  background: var(--bg-surface);
  position: relative;
}

.route-map {
  width: 100%;
  height: 400px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--petrol-border);
  margin-bottom: var(--space-xl);
  overflow: hidden;
}

@media (min-width: 768px) {
  .route-map { height: 500px; }
}

/* Leaflet dark theme overrides */
.leaflet-popup-content-wrapper {
  background: var(--bg-card);
  color: var(--text-primary);
  border-radius: var(--radius-md);
  box-shadow: 0 8px 32px rgba(0,0,0,0.5);
  border: 1px solid var(--border-subtle);
}

.leaflet-popup-tip { background: var(--bg-card); }

.leaflet-popup-content {
  margin: 12px 16px;
  line-height: 1.5;
  font-family: var(--font-body);
  font-size: 0.875rem;
}

.leaflet-popup-content strong {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 1rem;
}

.leaflet-popup-content em {
  color: var(--orange);
  font-style: normal;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.leaflet-control-zoom a {
  background: var(--bg-elevated) !important;
  color: var(--text-primary) !important;
  border-color: var(--border-dim) !important;
}

.leaflet-control-zoom a:hover {
  background: var(--bg-card) !important;
  color: var(--orange) !important;
}

.leaflet-control-attribution {
  background: rgba(11, 18, 21, 0.7) !important;
  color: var(--text-muted) !important;
  font-size: 0.65rem !important;
}

.leaflet-control-attribution a { color: var(--text-secondary) !important; }

.route-timeline {
  position: relative;
  max-width: 650px;
  margin: 0 auto;
}

.route-timeline::before {
  content: '';
  position: absolute;
  top: 0;
  left: 18px;
  bottom: 0;
  width: 1px;
  background: linear-gradient(180deg, var(--orange), var(--petrol), var(--border-dim));
}

.route-stop {
  position: relative;
  padding-left: 56px;
  padding-bottom: var(--space-lg);
}

.route-stop:last-child { padding-bottom: 0; }

.route-dot {
  position: absolute;
  left: 7px;
  top: 4px;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--bg-surface);
  border: 2px solid var(--border-dim);
  z-index: 1;
  transition: all var(--transition);
}

.route-stop.current .route-dot {
  background: var(--orange);
  border-color: var(--orange);
  box-shadow: 0 0 0 6px rgba(224, 123, 60, 0.2);
}

.route-stop.current .route-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(224, 123, 60, 0.3);
  animation: pulse-ring 2s ease-out infinite;
}

.route-stop.upcoming .route-dot {
  border-color: var(--petrol-glow);
  background: var(--petrol-dark);
  box-shadow: 0 0 0 4px rgba(42, 138, 158, 0.1);
}

.route-stop.past .route-dot {
  border-color: var(--border-dim);
  background: var(--bg-card);
}

.route-stop-header {
  display: flex;
  align-items: baseline;
  gap: var(--space-sm);
  margin-bottom: 4px;
}

.route-city {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-light);
}

.route-country {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.route-dates {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.route-stop.current .route-city { color: var(--orange); }

.route-badge {
  display: inline-block;
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 700;
  padding: 2px 10px;
  border-radius: var(--radius-sm);
  margin-left: var(--space-xs);
}

.route-badge-current {
  background: rgba(224, 123, 60, 0.12);
  color: var(--orange);
  border: 1px solid rgba(224, 123, 60, 0.2);
}

/* ===== REVIEWS ===== */
.reviews {
  background: var(--bg-deep);
}

.reviews-summary {
  text-align: center;
  margin-bottom: var(--space-xl);
}

.reviews-stars {
  display: flex;
  justify-content: center;
  gap: 4px;
  margin-bottom: var(--space-xs);
}

.reviews-stars .star {
  font-size: 1.4rem;
  color: var(--orange);
}
.reviews-stars .star.empty { color: var(--text-muted); }

.reviews-average {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-light);
}

.reviews-count {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: var(--space-md);
}

.review-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  position: relative;
  border: 1px solid var(--border-dim);
  transition: all var(--transition);
}
.review-card:hover {
  border-color: var(--border-active);
  box-shadow: var(--shadow-glow);
  transform: translateY(-2px);
}

.review-card-quote {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-md);
  font-family: var(--font-display);
  font-size: 4rem;
  color: rgba(42, 138, 158, 0.12);
  line-height: 1;
  pointer-events: none;
}

.review-card-stars {
  display: flex;
  gap: 3px;
  margin-bottom: var(--space-sm);
  font-size: 1rem;
  color: var(--orange);
}

.review-card-text {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.65;
  margin-bottom: var(--space-md);
  font-style: italic;
}

.review-card-author {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--text-light);
}

.review-card-date {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== BOOKING MODAL ===== */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--space-md);
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open {
  opacity: 1;
  pointer-events: all;
}

.modal {
  background: var(--bg-surface);
  border-radius: var(--radius-lg);
  border: 1px solid var(--border-dim);
  width: 100%;
  max-width: 560px;
  max-height: 90vh;
  max-height: 90dvh;
  overflow-y: auto;
  box-shadow: var(--shadow-xl);
  transform: translateY(20px) scale(0.97);
  transition: transform var(--transition);
}
.modal-overlay.open .modal {
  transform: translateY(0) scale(1);
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-md) var(--space-lg);
  border-bottom: 1px solid var(--border-dim);
}

.modal-header h2 {
  font-size: 1.3rem;
}

.modal-close {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.3rem;
  color: var(--text-muted);
  transition: all var(--transition-fast);
}
.modal-close:hover {
  background: rgba(224, 123, 60, 0.1);
  color: var(--orange);
}

.modal-body {
  padding: var(--space-lg);
}

.modal-footer {
  display: flex;
  justify-content: space-between;
  gap: var(--space-sm);
  padding: var(--space-md) var(--space-lg);
  border-top: 1px solid var(--border-dim);
}

/* Step indicator */
.steps-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: var(--space-md) var(--space-lg) 0;
}

.step-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: color var(--transition);
}
.step-item.active { color: var(--orange); font-weight: 600; }
.step-item.completed { color: var(--orange); }

.step-number {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  border: 2px solid var(--border-dim);
  color: var(--text-muted);
  transition: all var(--transition);
}
.step-item.active .step-number {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--bg-deep);
}
.step-item.completed .step-number {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--bg-deep);
}

.step-line {
  width: 40px;
  height: 1px;
  background: var(--border-dim);
  margin: 0 6px;
  transition: background var(--transition);
}
.step-line.completed { background: var(--orange); }

/* Booking step content */
.booking-step { display: none; }
.booking-step.active { display: block; }

/* Service selection in booking */
.booking-services {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
}

.booking-service-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  border: 1.5px solid var(--border-dim);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.booking-service-item:hover { border-color: var(--orange); }
.booking-service-item.selected {
  border-color: var(--orange);
  background: rgba(224, 123, 60, 0.06);
}

.booking-service-info h4 { font-size: 0.95rem; margin-bottom: 2px; }
.booking-service-meta {
  font-size: 0.8rem;
  color: var(--text-muted);
}
.booking-service-price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--orange);
}

/* Calendar */
.calendar {
  margin-bottom: var(--space-md);
}

.calendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--space-sm);
}

.calendar-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--text-light);
}

.calendar-nav {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-dim);
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: all var(--transition-fast);
}
.calendar-nav:hover {
  border-color: var(--orange);
  color: var(--orange);
}

.calendar-weekdays {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
  margin-bottom: 4px;
}

.calendar-weekday {
  text-align: center;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  padding: 4px 0;
}

.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 2px;
}

.calendar-day {
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-primary);
}
.calendar-day:hover:not(.disabled):not(.empty) {
  background: rgba(224, 123, 60, 0.1);
}
.calendar-day.selected {
  background: var(--orange);
  color: var(--bg-deep);
}
.calendar-day.disabled {
  color: var(--text-muted);
  opacity: 0.3;
  cursor: default;
}
.calendar-day.today {
  border: 1.5px solid var(--orange);
}
.calendar-day.empty {
  cursor: default;
}

/* Time slots */
.time-slots {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-xs);
}

.time-slots-label {
  width: 100%;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 4px;
  color: var(--text-secondary);
}

.time-slot {
  padding: 0.5rem 1rem;
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition-fast);
  color: var(--text-primary);
}
.time-slot:hover { border-color: var(--orange); color: var(--orange); }
.time-slot.selected {
  background: var(--orange);
  color: var(--bg-deep);
  border-color: var(--orange);
}
.time-slot.booked {
  opacity: 0.3;
  cursor: not-allowed;
  text-decoration: line-through;
}

/* Payment options */
.payment-options {
  display: flex;
  flex-direction: column;
  gap: var(--space-xs);
  margin-top: var(--space-md);
}

.payment-option {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  padding: var(--space-sm) var(--space-md);
  border: 1.5px solid var(--border-dim);
  border-radius: var(--radius-sm);
  cursor: pointer;
  transition: all var(--transition-fast);
}
.payment-option:hover { border-color: var(--orange); }
.payment-option.selected {
  border-color: var(--orange);
  background: rgba(224, 123, 60, 0.06);
}

.payment-radio {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid var(--border-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color var(--transition-fast);
}
.payment-option.selected .payment-radio {
  border-color: var(--orange);
}
.payment-option.selected .payment-radio::after {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

.payment-label { font-weight: 500; font-size: 0.9rem; color: var(--text-primary); }
.payment-desc { font-size: 0.8rem; color: var(--text-muted); }

/* Booking summary */
.booking-summary {
  background: var(--bg-card);
  border: 1px solid var(--border-dim);
  border-radius: var(--radius-sm);
  padding: var(--space-md);
  margin-bottom: var(--space-md);
}

.booking-summary-row {
  display: flex;
  justify-content: space-between;
  padding: 6px 0;
  font-size: 0.9rem;
  color: var(--text-secondary);
}

.booking-summary-row:not(:last-child) {
  border-bottom: 1px solid var(--border-dim);
}

.booking-summary-total {
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--orange);
}

/* Booking success */
.booking-success {
  text-align: center;
  padding: var(--space-xl) var(--space-md);
}

.booking-success-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgba(224, 123, 60, 0.1);
  color: var(--orange);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto var(--space-md);
  border: 1px solid rgba(224, 123, 60, 0.2);
}

/* ===== GALLERY ===== */
.gallery { background: var(--bg-deep); }

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-auto-rows: 220px;
  gap: var(--space-sm);
}

.gallery-item {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease, filter 0.6s ease;
  filter: brightness(0.8) saturate(0.9);
}

.gallery-item:hover img {
  transform: scale(1.08);
  filter: brightness(1) saturate(1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11, 18, 21, 0.4) 0%, transparent 50%);
  pointer-events: none;
  transition: opacity var(--transition);
}

.gallery-item:hover::after {
  opacity: 0.3;
}

.gallery-item-tall {
  grid-row: span 2;
}

.gallery-item-wide {
  grid-column: span 2;
}

@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }
  .gallery-item-wide { grid-column: span 1; }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 200px;
  }
  .gallery-item-tall { grid-row: span 1; }
}

/* ===== CONTACT ===== */
.contact {
  background: var(--bg-surface);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  align-items: start;
}

.contact-info h3 {
  margin-bottom: var(--space-sm);
}

.contact-info p {
  color: var(--text-secondary);
  margin-bottom: var(--space-lg);
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
  font-size: 0.95rem;
  color: var(--text-primary);
}

.contact-email-link {
  color: inherit;
  text-decoration: none;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--petrol-subtle);
  border: 1px solid var(--petrol-border);
  color: var(--petrol-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-form {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  padding: var(--space-lg);
  border: 1px solid var(--petrol-border);
}

.form-success {
  display: none;
  text-align: center;
  padding: var(--space-lg);
  color: var(--orange);
  font-weight: 500;
}

.form-success.show {
  display: block;
}

/* ===== FOOTER ===== */
.footer {
  background: linear-gradient(180deg, var(--bg-surface) 0%, var(--bg-deep) 100%);
  color: var(--text-secondary);
  padding: var(--space-xl) 0 var(--space-lg);
  border-top: 1px solid var(--petrol-border);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: var(--space-xl);
  margin-bottom: var(--space-xl);
}

.footer-brand {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: var(--space-sm);
}

.footer-brand .logo-accent { color: var(--orange); }

/* Footer badge logo */
.footer-logo svg {
  height: 80px;
  width: 80px;
  margin-bottom: var(--space-sm);
}

.footer-tagline {
  font-size: 0.9rem;
  font-style: italic;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

.footer h4 {
  color: var(--orange);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  margin-bottom: var(--space-sm);
  font-family: var(--font-body);
  font-weight: 700;
}

.footer a {
  display: block;
  padding: 4px 0;
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition-fast);
}
.footer a:hover { color: var(--orange); }

.footer-social {
  display: flex;
  gap: var(--space-sm);
  margin-top: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--petrol-subtle);
  border: 1px solid var(--petrol-border);
  color: var(--petrol-glow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: all var(--transition-fast);
}
.footer-social a:hover {
  background: var(--petrol);
  border-color: var(--petrol-glow);
  color: var(--text-light);
}

.footer-bottom {
  padding-top: var(--space-md);
  border-top: 1px solid var(--border-dim);
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
              transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes pulse-ring {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.6); opacity: 0; }
}

@keyframes fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

@keyframes counter-in {
  from { opacity: 0; transform: scale(0.5); }
  to { opacity: 1; transform: scale(1); }
}

.hero-content > * {
  animation: fade-up 0.9s cubic-bezier(0.4, 0, 0.2, 1) both;
}
.hero-content > *:nth-child(1) { animation-delay: 0.2s; }
.hero-content > *:nth-child(2) { animation-delay: 0.4s; }
.hero-content > *:nth-child(3) { animation-delay: 0.6s; }
.hero-content > *:nth-child(4) { animation-delay: 0.8s; }

/* ===== TOAST ===== */
.toast {
  position: fixed;
  bottom: var(--space-lg);
  right: var(--space-lg);
  background: var(--bg-elevated);
  color: var(--text-light);
  padding: var(--space-sm) var(--space-md);
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-dim);
  box-shadow: var(--shadow-lg);
  z-index: 3000;
  transform: translateY(100px);
  opacity: 0;
  transition: all var(--transition);
  font-size: 0.9rem;
}
.toast.show {
  transform: translateY(0);
  opacity: 1;
}
.toast.error {
  background: #5a1a1a;
  border-color: rgba(192, 57, 43, 0.3);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; gap: var(--space-lg); }
  .about-image { max-height: 400px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .about-stats { flex-wrap: wrap; }
}

@media (max-width: 768px) {
  .section { padding: var(--space-xl) 0; }

  .nav-links { display: none; }
  .nav-hamburger { display: flex; }

  .hero-content { padding: calc(var(--nav-height) + var(--space-lg)) 0 calc(var(--space-2xl) + 40px); }
  .hero-decorative,
  .hero-deco-scissors { display: none; }

  .services-grid { grid-template-columns: 1fr; }
  .service-card .btn-sm { opacity: 1; transform: none; }

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

  .modal {
    max-width: 100%;
    max-height: 100vh;
    max-height: 100dvh;
    border-radius: 0;
    height: 100%;
  }

  .footer-grid { grid-template-columns: 1fr; gap: var(--space-lg); }

  .toast { left: var(--space-md); right: var(--space-md); bottom: var(--space-md); }

  .section-header h2::before,
  .section-header h2::after { width: 30px; }
}

@media (max-width: 480px) {
  h1 { font-size: 2rem; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn-lg { width: 100%; }
  .services-filter { gap: 4px; }
  .filter-btn { padding: 0.4rem 0.9rem; font-size: 0.75rem; }
  .calendar-day { font-size: 0.75rem; }
  .about-stats { gap: var(--space-md); }
}

/* ===== PRINT ===== */
@media print {
  .nav, .modal-overlay, .toast, .nav-mobile { display: none !important; }
  .hero { min-height: auto; background: #fff; color: #222; padding: var(--space-lg) 0; }
  .hero h1, .hero .hero-subtitle { color: #222; }
  .section { padding: var(--space-lg) 0; background: #fff; color: #222; }
  .wave-divider { display: none; }
  body { background: #fff; color: #222; }
}
