/* ==========================================================================
   G&G TAXI - Modern Luxury Design System (Dark & Light Theme)
   ========================================================================== */

/* ---------------------------------------------------------
   Theme Variables (Dark Theme - Default)
   --------------------------------------------------------- */
:root, [data-theme="dark"] {
  --bg-main: #070A10;
  --bg-surface: #0E131F;
  --bg-surface-elevated: #151C2C;
  --bg-card: rgba(14, 19, 31, 0.88);
  --bg-card-hover: rgba(22, 30, 48, 0.95);
  --bg-input: #090D16;

  --brand-gold: #F59E0B;
  --brand-gold-bright: #FBBF24;
  --brand-gold-dark: #D97706;
  --brand-gold-light: rgba(245, 158, 11, 0.12);
  --brand-gold-glow: rgba(245, 158, 11, 0.35);

  --wa-green: #25D366;
  --wa-green-hover: #128C7E;
  --wa-green-light: rgba(37, 211, 102, 0.12);

  --text-primary: #FFFFFF;
  --text-secondary: #94A3B8;
  --text-muted: #64748B;
  --text-gold: #FDE68A;

  --border-subtle: rgba(255, 255, 255, 0.08);
  --border-gold: rgba(245, 158, 11, 0.28);
  --border-gold-solid: #F59E0B;

  --header-bg: rgba(7, 10, 16, 0.88);
  --footer-bg: #04060A;

  /* Typography */
  --font-display: 'Cinzel', Georgia, serif;
  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Elevation */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.25);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45);
  --shadow-lg: 0 16px 44px rgba(0, 0, 0, 0.65);
  --shadow-gold: 0 4px 20px rgba(245, 158, 11, 0.3);

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 18px;
  --radius-xl: 22px;
  --radius-full: 9999px;

  --transition-fast: 0.18s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.26s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---------------------------------------------------------
   Theme Variables (Light Theme)
   --------------------------------------------------------- */
[data-theme="light"] {
  --bg-main: #F8FAFC;
  --bg-surface: #FFFFFF;
  --bg-surface-elevated: #F1F5F9;
  --bg-card: rgba(255, 255, 255, 0.96);
  --bg-card-hover: #FFFFFF;
  --bg-input: #FFFFFF;

  --brand-gold: #D97706;
  --brand-gold-bright: #B45309;
  --brand-gold-dark: #92400E;
  --brand-gold-light: rgba(217, 119, 6, 0.12);
  --brand-gold-glow: rgba(217, 119, 6, 0.25);

  --wa-green: #1EBE5D;
  --wa-green-hover: #128C7E;
  --wa-green-light: rgba(30, 190, 93, 0.12);

  --text-primary: #0F172A;
  --text-secondary: #475569;
  --text-muted: #64748B;
  --text-gold: #B45309;

  --border-subtle: rgba(15, 23, 42, 0.1);
  --border-gold: rgba(217, 119, 6, 0.35);
  --border-gold-solid: #D97706;

  --header-bg: rgba(248, 250, 252, 0.92);
  --footer-bg: #E2E8F0;

  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.09);
  --shadow-lg: 0 16px 44px rgba(0, 0, 0, 0.14);
  --shadow-gold: 0 4px 20px rgba(217, 119, 6, 0.2);
}

/* Base & Reset */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--bg-main);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transition: background-color 0.3s ease, color 0.3s ease;
}

/* Background Gradients */
[data-theme="dark"] body {
  background-image: 
    radial-gradient(circle at 50% -10%, rgba(245, 158, 11, 0.09) 0%, transparent 60%),
    radial-gradient(circle at 85% 35%, rgba(37, 211, 102, 0.04) 0%, transparent 45%),
    radial-gradient(circle at 15% 75%, rgba(245, 158, 11, 0.05) 0%, transparent 50%);
  background-attachment: fixed;
}

[data-theme="light"] body {
  background-image: 
    radial-gradient(circle at 50% -10%, rgba(217, 119, 6, 0.07) 0%, transparent 60%),
    radial-gradient(circle at 85% 35%, rgba(30, 190, 93, 0.04) 0%, transparent 45%);
  background-attachment: fixed;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.25;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--transition-fast);
}

button {
  cursor: pointer;
  border: none;
  outline: none;
  font-family: inherit;
}

input, select, textarea {
  font-family: inherit;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* Section Header Utility */
.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px auto;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  background: var(--brand-gold-light);
  border: 1px solid var(--border-gold);
  color: var(--brand-gold-bright);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border-radius: var(--radius-full);
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.8rem, 3.2vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}

.section-subtitle {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* ==========================================================================
   Main Unified Navigation Bar (Centered & Clean)
   ========================================================================== */

.main-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 12px 0;
  background: var(--header-bg);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(245, 158, 11, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.5), 0 1px 15px rgba(245, 158, 11, 0.25);
  transition: all var(--transition-normal);
  position: fixed;
}

/* Golden Glow Line across full width under Navbar */
.main-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(245, 158, 11, 0.6) 15%, rgba(251, 191, 36, 1) 50%, rgba(245, 158, 11, 0.6) 85%, transparent 100%);
  box-shadow: 0 0 10px rgba(245, 158, 11, 0.8), 0 0 20px rgba(245, 158, 11, 0.45);
  pointer-events: none;
}

[data-theme="light"] .main-header {
  border-bottom: 1px solid rgba(217, 119, 6, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08), 0 1px 12px rgba(217, 119, 6, 0.2);
}

[data-theme="light"] .main-header::after {
  background: linear-gradient(90deg, transparent 0%, rgba(217, 119, 6, 0.6) 15%, rgba(245, 158, 11, 1) 50%, rgba(217, 119, 6, 0.6) 85%, transparent 100%);
  box-shadow: 0 0 8px rgba(217, 119, 6, 0.6);
}

.main-header.scrolled {
  padding: 8px 0;
  box-shadow: var(--shadow-md);
}

.header-navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* Brand Logo (Left) */
.brand-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-image-box {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 1.5px solid var(--border-gold-solid);
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.35);
  transition: transform var(--transition-fast);
}

.brand-logo:hover .logo-image-box {
  transform: scale(1.08);
}

.brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.logo-text-group {
  display: flex;
  flex-direction: column;
}

.logo-name {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 900;
  letter-spacing: 0.5px;
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 5px;
}

.logo-gg {
  font-family: inherit;
  color: var(--text-primary);
  font-weight: 900;
  line-height: 1;
  display: inline-block;
}

.logo-taxi {
  font-family: inherit;
  color: var(--brand-gold-bright);
  font-weight: 900;
  letter-spacing: 1px;
  line-height: 1;
  display: inline-block;
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 700;
  color: var(--text-secondary);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

/* Centered Navigation Menu Links */
.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}

.nav-menu-list {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 26px;
}

.nav-link {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-secondary);
  padding: 6px 4px;
  position: relative;
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--text-primary);
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--brand-gold-bright);
  border-radius: var(--radius-full);
}

/* Header Right Group */
.header-right-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* Theme Switcher Button */
.theme-toggle-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--text-primary);
  transition: all var(--transition-fast);
}

.theme-toggle-btn:hover {
  background: var(--brand-gold-light);
  border-color: var(--border-gold);
  transform: scale(1.08);
}

[data-theme="dark"] .sun-icon { display: block; }
[data-theme="dark"] .moon-icon { display: none; }
[data-theme="light"] .sun-icon { display: none; }
[data-theme="light"] .moon-icon { display: block; }

/* Language Selector Pill */
.lang-selector-pill {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  padding: 2px;
}

[data-theme="light"] .lang-selector-pill {
  background: #E2E8F0;
}

.lang-btn {
  padding: 4px 8px;
  border-radius: var(--radius-full);
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--text-secondary);
  background: transparent;
  transition: all var(--transition-fast);
}

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

.lang-btn.active {
  background: var(--brand-gold-bright);
  color: #080B11;
}

[data-theme="light"] .lang-btn.active {
  color: #FFFFFF;
}

/* Phone Button in ONE clean line */
.btn-nav-call {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-primary);
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  border-radius: var(--radius-full);
  transition: all var(--transition-fast);
}

[data-theme="light"] .btn-nav-call {
  background: #FFFFFF;
  border-color: #CBD5E1;
}

.btn-nav-call svg {
  color: var(--brand-gold-bright);
  flex-shrink: 0;
}

.btn-nav-call:hover {
  background: var(--brand-gold-light);
  border-color: var(--border-gold);
  color: var(--brand-gold-bright);
  transform: translateY(-1px);
}

.nav-phone-text {
  white-space: nowrap;
}

/* WhatsApp Button */
.btn-nav-wa {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 14px;
  background: var(--wa-green);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.85rem;
  white-space: nowrap;
  border-radius: var(--radius-full);
  box-shadow: 0 2px 10px rgba(37, 211, 102, 0.28);
  transition: all var(--transition-fast);
}

.btn-nav-wa:hover {
  background: #1eb857;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.4);
}

.mobile-toggle-btn {
  display: none;
  background: transparent;
  color: var(--text-primary);
  padding: 6px;
}

/* ==========================================================================
   Hero & Center Header Elements (Prestigious Luxury Typography)
   ========================================================================== */

.hero-section {
  position: relative;
  padding-top: 100px;
  padding-bottom: 50px;
  overflow: hidden;
}

.hero-glow-backdrop {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 500px;
  background: radial-gradient(ellipse at top, rgba(245, 158, 11, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

[data-theme="light"] .hero-glow-backdrop {
  background: radial-gradient(ellipse at top, rgba(217, 119, 6, 0.1) 0%, transparent 70%);
}

.hero-center-header-wrapper {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 960px;
  width: 100%;
  margin: 0 auto 26px auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 1. Oblačić Badge (3D Embossed Luxury Effect) */
.hero-badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 22px;
  background: linear-gradient(180deg, rgba(251, 191, 36, 0.22) 0%, rgba(245, 158, 11, 0.08) 50%, rgba(14, 19, 31, 0.6) 100%);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--brand-gold-bright);
  font-size: 0.88rem;
  font-weight: 700;
  margin-bottom: 18px;
  box-shadow: 
    0 6px 20px rgba(0, 0, 0, 0.4),
    0 0 15px var(--brand-gold-glow),
    inset 0 1px 2px rgba(255, 255, 255, 0.4),
    inset 0 -2px 5px rgba(0, 0, 0, 0.5);
  transform: perspective(600px) translateZ(0);
  transition: all var(--transition-normal);
  position: relative;
  overflow: hidden;
}

[data-theme="light"] .hero-badge-pill {
  background: linear-gradient(180deg, #FFFBEB 0%, #FEF3C7 60%, #FDE68A 100%);
  border: 1.5px solid var(--border-gold-solid);
  color: #92400E;
  box-shadow: 
    0 4px 14px rgba(217, 119, 6, 0.22),
    inset 0 1px 2px rgba(255, 255, 255, 0.8),
    inset 0 -2px 4px rgba(217, 119, 6, 0.15);
}

.hero-badge-pill:hover {
  transform: perspective(600px) translateY(-2px) scale(1.02);
  box-shadow: 
    0 10px 26px rgba(245, 158, 11, 0.35),
    inset 0 1px 3px rgba(255, 255, 255, 0.6),
    inset 0 -2px 5px rgba(0, 0, 0, 0.3);
}

.hero-badge-icon-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold-bright);
  filter: drop-shadow(0 0 4px var(--brand-gold-bright));
}

/* 2. Središnji Originalni 3D Logo s Animacijom (gganimacija.mp4) */
.hero-center-logo-box {
  margin-bottom: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-logo-frame {
  width: 175px;
  height: 175px;
  border-radius: 32px;
  padding: 3px;
  background: linear-gradient(135deg, rgba(245, 158, 11, 0.8) 0%, rgba(14, 19, 31, 0.9) 50%, rgba(245, 158, 11, 0.6) 100%);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.6), 0 0 30px var(--brand-gold-glow);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform var(--transition-normal), box-shadow var(--transition-normal);
  position: relative;
  cursor: pointer;
}

.hero-logo-frame:hover {
  transform: scale(1.04);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.7), 0 0 40px var(--brand-gold-glow);
}

.hero-center-logo-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
  display: block;
}

.hero-center-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 28px;
}

/* 3. Naziv Tvrtke - Prestižan & Savršeno Poravnat Dizajn */
.hero-brand-title-wrap {
  margin-bottom: 18px;
  text-align: center;
}

.hero-brand-title {
  font-family: var(--font-heading);
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 900;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  letter-spacing: 2px;
}

.title-brand-gg {
  font-family: inherit;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #FFFFFF 20%, #E2E8F0 50%, #94A3B8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 2px 14px rgba(255, 255, 255, 0.2);
  display: inline-block;
}

[data-theme="light"] .title-brand-gg {
  background: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-brand-divider {
  font-family: inherit;
  font-weight: 300;
  color: var(--brand-gold-bright);
  opacity: 0.7;
  display: inline-block;
  line-height: 1;
  font-size: 0.9em;
}

.title-brand-taxi {
  font-family: inherit;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #FFF0B3 0%, #FBBF24 40%, #F59E0B 70%, #D97706 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 4px;
  filter: drop-shadow(0 2px 12px rgba(245, 158, 11, 0.35));
  display: inline-block;
}

[data-theme="light"] .title-brand-taxi {
  background: linear-gradient(135deg, #D97706 0%, #B45309 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-brand-decor-line {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 6px;
}

.decor-wing {
  width: 40px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--brand-gold-bright));
}

.decor-wing:last-child {
  background: linear-gradient(90deg, var(--brand-gold-bright), transparent);
}

.decor-diamond {
  color: var(--brand-gold-bright);
  font-size: 0.75rem;
}

.decor-text {
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  color: var(--text-gold);
  text-transform: uppercase;
}

/* 4. Četiri Kartice s Pogodnostima (Proširena visina & 2 retka teksta) */
.hero-trust-cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  width: 100%;
  max-width: 960px;
  margin: 6px auto 0 auto;
  box-sizing: border-box;
}

.trust-feature-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 12px 14px;
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35), inset 0 0 10px rgba(245, 158, 11, 0.06);
  transition: all var(--transition-fast);
  box-sizing: border-box;
  min-width: 0;
  position: relative;
}

[data-theme="light"] .trust-feature-card {
  border: 1.5px solid var(--border-gold-solid);
  background: #FFFFFF;
  box-shadow: 0 4px 14px rgba(217, 119, 6, 0.14), inset 0 0 8px rgba(217, 119, 6, 0.04);
}

.trust-feature-card:hover {
  border-color: var(--brand-gold-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(245, 158, 11, 0.25), inset 0 0 14px rgba(245, 158, 11, 0.1);
}

.trust-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--brand-gold-bright);
  flex-shrink: 0;
  filter: drop-shadow(0 0 4px rgba(245, 158, 11, 0.35));
}

.trust-card-text {
  font-size: 0.84rem;
  font-weight: 700;
  color: var(--text-primary);
  line-height: 1.3;
  white-space: normal;
  word-break: normal;
  text-align: left;
}

/* ==========================================================================
   Popular Routes Section
   ========================================================================== */

.popular-routes-section {
  padding: 60px 0;
  background: var(--bg-surface);
  border-top: 1px solid var(--border-subtle);
  border-bottom: 1px solid var(--border-subtle);
}

.popular-routes-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.popular-route-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 20px;
  cursor: pointer;
  transition: all var(--transition-normal);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: var(--shadow-sm);
}

.popular-route-card:hover {
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.route-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--brand-gold-bright);
  margin-bottom: 10px;
}

.route-path {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 16px;
}

.route-node {
  display: flex;
  align-items: center;
  gap: 8px;
}

.node-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.from-dot {
  background: var(--brand-gold-bright);
  box-shadow: 0 0 6px var(--brand-gold-bright);
}

.to-dot {
  background: var(--wa-green);
  box-shadow: 0 0 6px var(--wa-green);
}

.node-text {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-primary);
}

.route-line-visual {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-left: 15px;
  margin: -2px 0;
  border-left: 2px dashed var(--border-subtle);
  font-size: 0.75rem;
  color: var(--text-muted);
}

.route-card-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 10px;
  border-top: 1px solid var(--border-subtle);
}

.route-price-from {
  font-size: 0.7rem;
  color: var(--text-muted);
  display: block;
}

.route-price-val {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-gold-bright);
  font-family: var(--font-heading);
}

.btn-apply-route {
  padding: 5px 10px;
  background: transparent;
  color: var(--brand-gold-bright);
  font-size: 0.82rem;
  font-weight: 700;
}

/* ==========================================================================
   Contact CTA Banner Section
   ========================================================================== */

.contact-cta-section {
  padding: 50px 0;
}

.cta-banner-card {
  background: linear-gradient(135deg, var(--brand-gold-light) 0%, var(--bg-card) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-xl);
  padding: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: var(--shadow-md);
}

.cta-info h2 {
  font-size: 1.8rem;
  margin-bottom: 8px;
}

.cta-info p {
  font-size: 0.95rem;
  color: var(--text-secondary);
  max-width: 540px;
}

.cta-action-group {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
}

.btn-big-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 26px;
  background: var(--brand-gold-bright);
  color: #080B11;
  font-size: 1.1rem;
  font-weight: 800;
  border-radius: var(--radius-full);
  box-shadow: var(--shadow-gold);
  transition: all var(--transition-normal);
}

[data-theme="light"] .btn-big-phone {
  color: #FFFFFF;
}

.btn-big-phone:hover {
  background: var(--brand-gold-dark);
  transform: translateY(-2px);
}

.btn-big-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 22px;
  background: var(--wa-green);
  color: #FFFFFF;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: var(--radius-full);
  transition: all var(--transition-normal);
}

.btn-big-wa:hover {
  background: #1eb857;
  transform: translateY(-2px);
}

/* ==========================================================================
   Footer
   ========================================================================== */

.main-footer {
  background: var(--footer-bg);
  border-top: 1px solid var(--border-subtle);
  padding: 44px 0 20px 0;
  font-size: 0.88rem;
  color: var(--text-muted);
}

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

.footer-brand-p {
  color: var(--text-secondary);
  margin-top: 10px;
  max-width: 320px;
  line-height: 1.6;
}

.footer-col-title {
  color: var(--text-primary);
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer-links a:hover {
  color: var(--brand-gold-bright);
}

.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
}

.footer-contact-item svg {
  color: var(--brand-gold-bright);
  flex-shrink: 0;
}

.footer-bottom-bar {
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}

/* Powered by ZYD Digital Badge */
.footer-powered-wrap {
  display: flex;
  align-items: center;
}

.powered-by-zyd {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-full);
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  transition: all var(--transition-fast);
  text-decoration: none;
}

[data-theme="light"] .powered-by-zyd {
  background: #FFFFFF;
  border-color: #CBD5E1;
}

.powered-by-zyd:hover {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(96, 165, 250, 0.6);
  color: #FFFFFF;
  transform: translateY(-1px);
  box-shadow: 0 2px 10px rgba(96, 165, 250, 0.25);
}

[data-theme="light"] .powered-by-zyd:hover {
  color: #0F172A;
}

.powered-text {
  font-size: 0.74rem;
  opacity: 0.8;
}

.zyd-footer-logo {
  width: 17px;
  height: 17px;
  object-fit: contain;
  filter: drop-shadow(0 0 4px rgba(96, 165, 250, 0.6));
}

.zyd-brand-name {
  font-weight: 800;
  letter-spacing: 0.3px;
  background: linear-gradient(135deg, #93C5FD 0%, #A855F7 50%, #EC4899 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Footer Legal Links (Pravila privatnosti & Zaštita podataka) */
.footer-legal-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.78rem;
}

.footer-legal-btn {
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  padding: 2px 4px;
  transition: color var(--transition-fast);
  text-decoration: underline;
  text-underline-offset: 3px;
  text-decoration-color: rgba(255, 255, 255, 0.2);
}

[data-theme="light"] .footer-legal-btn {
  text-decoration-color: rgba(0, 0, 0, 0.2);
}

.footer-legal-btn:hover {
  color: var(--brand-gold-bright);
  text-decoration-color: var(--brand-gold-bright);
}

.legal-sep {
  color: var(--text-muted);
  opacity: 0.5;
}

/* ==========================================================================
   Subtle Cookie Consent Floating Pill
   ========================================================================== */
.cookie-consent-pill {
  position: fixed;
  bottom: 24px;
  right: 24px;
  max-width: 420px;
  width: calc(100% - 48px);
  background: rgba(14, 19, 31, 0.94);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-lg);
  padding: 16px 20px;
  z-index: 999;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5), 0 0 20px var(--brand-gold-glow);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  animation: slideUpFade 0.4s ease-out;
}

[data-theme="light"] .cookie-consent-pill {
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15), 0 0 20px rgba(245, 158, 11, 0.2);
}

.cookie-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cookie-icon {
  font-size: 1.5rem;
  flex-shrink: 0;
}

.cookie-text {
  font-size: 0.78rem;
  color: var(--text-secondary);
  line-height: 1.4;
  margin: 0;
}

.cookie-link-btn {
  background: none;
  border: none;
  color: var(--brand-gold-bright);
  font-size: 0.78rem;
  font-weight: 700;
  cursor: pointer;
  padding: 0;
  text-decoration: underline;
  margin-left: 4px;
}

.btn-cookie-accept {
  padding: 8px 16px;
  background: linear-gradient(135deg, #F59E0B 0%, #D97706 100%);
  color: #080B11;
  font-weight: 800;
  font-size: 0.8rem;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

.btn-cookie-accept:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(245, 158, 11, 0.45);
}

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

/* ==========================================================================
   Privacy Policy & Data Protection Modal
   ========================================================================== */
.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.75);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition-normal);
}

.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.privacy-modal-card {
  background: var(--bg-card);
  border: 1.5px solid var(--border-gold);
  border-radius: var(--radius-xl);
  max-width: 620px;
  width: 100%;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-xl), 0 0 35px var(--brand-gold-glow);
  transform: scale(0.95);
  transition: transform var(--transition-normal);
}

.modal-overlay.active .privacy-modal-card {
  transform: scale(1);
}

.modal-header {
  padding: 20px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.modal-badge {
  display: inline-block;
  padding: 3px 10px;
  background: var(--brand-gold-light);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius-full);
  color: var(--brand-gold-bright);
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.modal-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 2px;
}

.modal-sub {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.btn-close-modal {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  color: var(--text-secondary);
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-close-modal:hover {
  background: rgba(239, 68, 68, 0.2);
  color: #EF4444;
  border-color: #EF4444;
}

.privacy-body-content {
  padding: 24px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  font-size: 0.88rem;
  color: var(--text-secondary);
  line-height: 1.6;
}

.privacy-section h3 {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.privacy-section p {
  margin-bottom: 8px;
}

.privacy-email-link {
  color: var(--brand-gold-bright);
  font-weight: 700;
  text-decoration: underline;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: flex-end;
}

.btn-modal-primary {
  padding: 10px 24px;
  background: var(--brand-gold-bright);
  color: #080B11;
  border: none;
  border-radius: var(--radius-md);
  font-weight: 800;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition-fast);
}

.btn-modal-primary:hover {
  background: #FBBF24;
  transform: translateY(-1px);
}


