/* =============================================
   SAPP PARKING — Main Stylesheet
   Font: Essential Sans (Bold + Thin via Adobe Fonts / self-hosted fallback)
   Primary: #017bc1
   ============================================= */

@import url('https://fonts.cdnfonts.com/css/essential-sans');

:root {
  /* Brand */
  --blue:       #017bc1;
  --blue-dark:  #015f97;
  --blue-deep:  #01406a;
  --blue-light: #0294e8;
  --blue-pale:  #e8f4fc;
  --blue-ghost: rgba(1,123,193,.08);

  /* Neutrals */
  --white:    #ffffff;
  --off:      #f4f8fb;
  --border:   #dcedf7;
  --gray-100: #f0f4f8;
  --gray-300: #c8d8e4;
  --gray-500: #7a99ad;
  --gray-700: #3d5a6c;
  --dark:     #0b1f2d;

  /* Status */
  --green: #0ea56f;
  --gold:  #e69b2a;

  /* Type */
  --font: 'Essential Sans', 'Arial Nova', 'Trebuchet MS', Arial, sans-serif;

  /* Spacing */
  --max: 1240px;
  --r:   12px;
  --r-lg: 20px;

  /* Shadow */
  --sh-sm: 0 2px 8px rgba(1,123,193,.10);
  --sh-md: 0 8px 32px rgba(1,63,107,.14);
  --sh-lg: 0 20px 60px rgba(1,63,107,.18);

  /* Transition */
  --ease: cubic-bezier(.4,0,.2,1);
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font);
  font-weight: 300; /* thin */
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
h1, h2, h3, h4, h5, h6, .fw-bold {
  font-weight: 700; /* bold */
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
button { font-family: var(--font); cursor: pointer; border: none; background: none; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--off); }
::-webkit-scrollbar-thumb { background: var(--blue); border-radius: 3px; }

/* ===== SELECTION ===== */
::selection { background: var(--blue); color: #fff; }

/* ===== SKIP LINK (accessibility) ===== */
.skip-link {
  position: absolute; top: -100px; left: 20px; z-index: 9999;
  background: var(--blue); color: #fff; padding: 10px 20px; border-radius: 0 0 8px 8px;
  font-weight: 700; font-size: 14px; transition: top .2s;
}
.skip-link:focus { top: 0; }

/* ===== UTILITIES ===== */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.text-blue  { color: var(--blue); }
.text-dark  { color: var(--dark); }
.text-muted { color: var(--gray-500); }
.fw-thin    { font-weight: 300; }
.fw-bold    { font-weight: 700; }
.sr-only { position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0; }

/* ===== SECTION BASE ===== */
.section { padding: 96px 0; }
.section--off { background: var(--off); }
.section--blue { background: var(--blue); }
.section--dark { background: var(--dark); }

.section-label {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase;
  color: var(--blue); margin-bottom: 12px;
}
.section-label::before {
  content: '';
  width: 24px; height: 2px; background: var(--blue); border-radius: 1px;
}
.section--blue .section-label,
.section--dark .section-label { color: rgba(255,255,255,.6); }
.section--blue .section-label::before,
.section--dark .section-label::before { background: rgba(255,255,255,.4); }

.section-title {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  line-height: 1.12;
  color: var(--dark);
  margin-bottom: 16px;
}
.section--blue .section-title,
.section--dark .section-title { color: var(--white); }

.section-desc {
  font-size: 1.05rem;
  font-weight: 300;
  color: var(--gray-700);
  line-height: 1.8;
  max-width: 540px;
}
.section--blue .section-desc,
.section--dark .section-desc { color: rgba(255,255,255,.65); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 14px 30px; border-radius: var(--r);
  font-family: var(--font); font-weight: 700; font-size: 14px;
  letter-spacing: .3px; transition: all .25s var(--ease);
  border: 2px solid transparent; white-space: nowrap;
}
.btn-primary {
  background: var(--blue); color: var(--white);
  box-shadow: 0 4px 16px rgba(1,123,193,.35);
}
.btn-primary:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1,123,193,.4);
}
.btn-outline {
  background: transparent; color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover { background: var(--blue); color: var(--white); }
.btn-white {
  background: var(--white); color: var(--blue);
  box-shadow: 0 4px 16px rgba(0,0,0,.12);
}
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,.16); }
.btn-lg { padding: 18px 40px; font-size: 15px; border-radius: 14px; }
.btn-sm { padding: 10px 20px; font-size: 13px; }
.btn-full { width: 100%; }
.btn:disabled { opacity: .6; pointer-events: none; }

/* ===== BADGE ===== */
.badge {
  display: none!important; align-items: center; gap: 7px;
  background: var(--blue-pale); color: var(--blue);
  font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 14px; border-radius: 100px;
  border: 1px solid rgba(1,123,193,.2);
}
.badge-dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--blue);
  animation: pulse 2s infinite;
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: .4; transform: scale(1.5); }
}

/* ===== TAG CHIP ===== */
.tag {
  display: inline-block;
  padding: 4px 12px; border-radius: 100px;
  font-size: 11px; font-weight: 700; letter-spacing: .5px;
  background: var(--blue-ghost); color: var(--blue);
  border: 1px solid rgba(1,123,193,.18);
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  height: 72px; padding: 0 24px;
  display: flex; align-items: center;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow .3s var(--ease);
}
.navbar.scrolled { box-shadow: var(--sh-md); }
.navbar-inner {
  width: 100%; max-width: var(--max); margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between; gap: 24px;
}
.navbar-logo {
  display: flex;
  align-items: center;
  height: 20px; /* prilagodi po potrebi */
  width: 10%;
}
.navbar-logo-footer {
  display: flex;
  align-items: center;
  height: 20px; /* prilagodi po potrebi */
  width: 30%;
}
.logo-icon {
  width: 40px; height: 40px; border-radius: 10px;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; color: var(--white); letter-spacing: -.5px;
}
.logo-text { display: flex; flex-direction: column; line-height: 1; }
.logo-name { font-size: 18px; font-weight: 700; color: var(--dark); letter-spacing: -.3px; }
.logo-sub { font-size: 9px; font-weight: 300; color: var(--gray-500); letter-spacing: 2px; text-transform: uppercase; margin-top: 1px; }

.navbar-links {
  display: flex; align-items: center; gap: 4px; list-style: none;
}
.navbar-links a {
  display: block; padding: 8px 14px; border-radius: 8px;
  font-size: 14px; font-weight: 300; color: var(--gray-700);
  transition: all .2s var(--ease);
}
.navbar-links a:hover { background: var(--blue-ghost); color: var(--blue); }
.navbar-links a.active { color: var(--blue); font-weight: 700; }

.navbar-right { display: flex; align-items: center; gap: 12px; }

/* Language switch */
.lang-switch {
  display: flex; background: var(--gray-100); border-radius: 8px; padding: 3px; gap: 2px;
}
.lang-btn {
  padding: 5px 12px; border-radius: 6px; font-size: 12px; font-weight: 700;
  color: var(--gray-500); background: transparent; transition: all .2s; letter-spacing: .5px;
}
.lang-btn.active { background: var(--blue); color: var(--white); }
.lang-btn:hover:not(.active) { color: var(--blue); }

/* Hamburger */
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  width: 36px; height: 36px; align-items: center; justify-content: center;
  border-radius: 8px; transition: background .2s;
}
.hamburger:hover { background: var(--gray-100); }
.hamburger span {
  display: block; width: 20px; height: 2px;
  background: var(--dark); border-radius: 1px; transition: all .3s;
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-nav {
  display: none; position: fixed; top: 72px; left: 0; right: 0; z-index: 899;
  background: var(--white); border-bottom: 1px solid var(--border);
  padding: 16px 24px 24px; flex-direction: column; gap: 4px;
  box-shadow: var(--sh-lg);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 14px 0; font-size: 16px; font-weight: 300; color: var(--dark);
  border-bottom: 1px solid var(--gray-100); transition: color .2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:hover { color: var(--blue); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; position: relative; overflow: hidden;
  display: flex; align-items: center; padding-top: 72px;
}
.hero-bg {
  position: absolute; inset: 0; z-index: 0;
  background: url('img/herobg.png') center / cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    105deg,
    rgba(1,40,70,.95) 0%,
    rgba(1,90,150,.85) 40%,
    rgba(1,123,193,.5) 75%,
    rgba(1,123,193,.2) 100%
  );
}
/* Geometric accent shapes */
.hero-shape {
  position: absolute; z-index: 1; pointer-events: none;
}
.hero-shape-1 {
  right: -80px; top: 15%; width: 420px; height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(1,148,232,.25) 0%, transparent 70%);
}
.hero-shape-2 {
  right: 5%; bottom: 10%; width: 240px; height: 240px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,.07) 0%, transparent 70%);
}
.hero-grid-line {
  position: absolute; inset: 0; z-index: 1;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 60px 60px;
}

.hero-inner {
  position: relative; z-index: 2;
  width: 100%; max-width: var(--max); margin: 0 auto; padding: 80px 24px;
  display: grid; grid-template-columns: 1fr 480px; gap: 80px; align-items: center;
}

/* Hero left */
.hero-kicker { margin-bottom: 24px; }
.hero-h1 {
  font-size: clamp(2.6rem, 4.8vw, 4.2rem);
  font-weight: 700; line-height: 1.08; color: var(--white);
  margin-bottom: 22px; letter-spacing: -.5px;
}
.hero-h1 span { color: rgb(255, 255, 255); font-weight: 300; }
.hero-p {
  font-size: 1.1rem; font-weight: 300; color: rgba(255,255,255,.7);
  line-height: 1.8; max-width: 440px; margin-bottom: 40px;
}
.hero-cta { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; margin-bottom: 52px; }
.hero-stats {
  display: flex; gap: 0;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 14px; overflow: hidden;
  background: rgba(255,255,255,.05);
  backdrop-filter: blur(8px);
}
.hstat {
  flex: 1; padding: 18px 24px;
  border-right: 1px solid rgba(255,255,255,.1);
}
.hstat:last-child { border-right: none; }
.hstat-val {
  font-size: 1.9rem; font-weight: 700; color: var(--white); line-height: 1; margin-bottom: 4px;
}
.hstat-lbl { font-size: 11px; font-weight: 300; color: rgba(255,255,255,.5); letter-spacing: 1px; }

/* ===== RESERVATION CARD ===== */
.res-card {
  background: var(--white); border-radius: 20px;
  box-shadow: 0 32px 80px rgba(1,40,70,.28);
  overflow: hidden; position: relative;
}
.res-card-header {
  background: var(--blue); padding: 22px 28px;
  display: flex; align-items: center; justify-content: space-between;
}
.res-card-title { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.res-card-sub { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.65); margin-top: 2px; }
.res-card-icon { font-size: 1.8rem; }
.res-card-body { padding: 24px 28px; }

/* Parking type tabs */
.type-tabs {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; margin-bottom: 18px;
}
.type-tab {
  border: 2px solid var(--border); border-radius: 10px;
  padding: 12px 8px; text-align: center; cursor: pointer;
  transition: all .2s var(--ease); background: var(--white);
}
.type-tab:hover { border-color: var(--blue); background: var(--blue-ghost); }
.type-tab.active { border-color: var(--blue); background: var(--blue-pale); }
.type-tab .ti { font-size: 1.5rem; display: block; margin-bottom: 4px; }
.type-tab .tn { font-size: 11px; font-weight: 700; color: var(--dark); line-height: 1.2; }
.type-tab .ta { font-size: 9.5px; font-weight: 300; color: var(--gray-500); margin-top: 2px; }

/* EV toggle */
.ev-toggle {
  display: flex; align-items: center; gap: 12px;
  background: var(--off); border-radius: 10px; padding: 12px 14px;
  cursor: pointer; transition: background .2s; margin-bottom: 16px;
  border: 1.5px solid transparent;
}
.ev-toggle:hover { background: var(--blue-ghost); border-color: rgba(1,123,193,.15); }
.ev-toggle.on { background: var(--blue-pale); border-color: rgba(1,123,193,.3); }
.toggle-sw {
  width: 40px; height: 22px; border-radius: 100px;
  background: var(--gray-300); position: relative; flex-shrink: 0; transition: background .2s;
}
.toggle-sw.on { background: var(--blue); }
.toggle-sw::after {
  content: ''; position: absolute;
  width: 16px; height: 16px; border-radius: 50%;
  background: var(--white); top: 3px; left: 3px;
  transition: transform .2s; box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.toggle-sw.on::after { transform: translateX(18px); }
.ev-info strong { font-size: 13px; font-weight: 700; color: var(--dark); display: block; }
.ev-info span { font-size: 11px; font-weight: 300; color: var(--gray-500); }

/* Form fields */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-group { display: flex; flex-direction: column; gap: 5px; margin-bottom: 12px; }
.form-group label {
  font-size: 11px; font-weight: 700; color: var(--dark); letter-spacing: .8px; text-transform: uppercase;
}
.form-group input, .form-group select {
  border: 1.5px solid var(--border); border-radius: 10px;
  padding: 12px 14px; font-size: 14px; font-weight: 300;
  font-family: var(--font); color: var(--dark);
  background: var(--white); outline: none; transition: border-color .2s, box-shadow .2s;
  width: 100%;
}
.form-group input:focus, .form-group select:focus {
  border-color: var(--blue); box-shadow: 0 0 0 3px rgba(1,123,193,.12);
}
.form-group input.is-error { border-color: #e53e3e; }
.form-group input.is-valid { border-color: var(--green); }
.field-error { font-size: 11px; color: #e53e3e; min-height: 14px; font-weight: 300; }
.field-hint { font-size: 11px; color: var(--green); min-height: 14px; font-weight: 300; }

.form-secure {
  text-align: center; font-size: 11px; font-weight: 300; color: var(--gray-500);
  margin-top: 10px; display: flex; align-items: center; justify-content: center; gap: 6px;
}

/* ===== TRUST BAR ===== */
.trust-bar {
  background: var(--blue); padding: 16px 0;
}
.trust-bar-inner {
  display: flex; align-items: center; justify-content: center; gap: 48px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.85);
}
.trust-item strong { font-weight: 700; color: var(--white); }
.trust-icon { font-size: 1.2rem; }

/* ===== WHY CARDS ===== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.why-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 32px;
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.why-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--blue); transform: scaleX(0); transform-origin: left;
  transition: transform .3s var(--ease);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--sh-md); border-color: var(--border); }
.why-card:hover::before { transform: scaleX(1); }
.why-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; margin-bottom: 18px; transition: background .2s;
}
.why-card:hover .why-icon { background: var(--blue); }
.why-title { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.why-text { font-size: 14px; font-weight: 300; color: var(--gray-700); line-height: 1.7; }

/* ===== PARKING TYPES (cards) ===== */
.ptype-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ptype-card {
  background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg); padding: 36px 28px;
  transition: all .3s var(--ease); position: relative; overflow: hidden;
}
.ptype-card::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 3px;
  background: rgba(255,255,255,.25);
  transform: scaleX(0); transform-origin: left; transition: transform .3s var(--ease);
}
.ptype-card:hover { background: rgba(255,255,255,.1); transform: translateY(-5px); }
.ptype-card:hover::after { transform: scaleX(1); }
.ptype-icon-wrap {
  width: 60px; height: 60px; border-radius: 16px;
  background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center;
  font-size: 1.8rem; margin-bottom: 20px;
}
.ptype-name { font-size: 1.2rem; font-weight: 700; color: var(--white); margin-bottom: 8px; }
.ptype-desc { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,.55); line-height: 1.7; margin-bottom: 18px; }
.ptype-features { list-style: none; display: flex; flex-direction: column; gap: 7px; }
.ptype-features li {
  display: flex; align-items: center; gap: 8px;
  font-size: 13px; font-weight: 300; color: rgba(255,255,255,.7);
}
.ptype-features li::before {
  content: '✓'; color: rgba(255,255,255,.5); font-weight: 700; font-size: 12px; flex-shrink: 0;
}

/* ===== HOW IT WORKS ===== */
.how-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; position: relative; }
.how-grid::before {
  content: ''; position: absolute; top: 36px; left: 12.5%; right: 12.5%; height: 1.5px;
  background: linear-gradient(90deg, var(--blue) 0%, var(--blue-light) 100%);
  z-index: 0;
}
.how-step { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 72px; height: 72px; border-radius: 50%; margin: 0 auto 20px;
  background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 700;
  box-shadow: 0 0 0 8px var(--blue-pale), 0 8px 24px rgba(1,123,193,.3);
}
.step-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 8px; }
.step-desc { font-size: 13.5px; font-weight: 300; color: var(--gray-700); line-height: 1.65; }

/* ===== REVIEWS ===== */
.reviews-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 32px; margin-bottom: 40px; flex-wrap: wrap; }
.rating-summary {
  display: flex; align-items: center; gap: 20px;
  background: var(--white); border: 1px solid var(--border); border-radius: var(--r-lg);
  padding: 24px 28px; min-width: 280px;
}
.rating-big { font-size: 3.6rem; font-weight: 700; color: var(--dark); line-height: 1; }
.rating-stars { display: block; font-size: 1.1rem; color: #f5a623; letter-spacing: 2px; margin-bottom: 4px; }
.rating-count { font-size: 12px; font-weight: 300; color: var(--gray-500); }
.google-logo { display: flex; align-items: center; gap: 6px; font-size: 12px; color: var(--gray-500); margin-top: 8px; }

.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.review-card {
  background: var(--white); border: 1px solid var(--border);
  border-radius: var(--r-lg); padding: 24px;
  transition: all .3s var(--ease);
}
.review-card:hover { box-shadow: var(--sh-md); transform: translateY(-3px); border-color: rgba(1,123,193,.2); }
.review-top { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.reviewer-avatar {
  width: 44px; height: 44px; border-radius: 50%; flex-shrink: 0;
  background: var(--blue); display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--white);
}
.reviewer-name { font-size: 14.5px; font-weight: 700; color: var(--dark); }
.reviewer-date { font-size: 11px; font-weight: 300; color: var(--gray-500); margin-top: 1px; }
.review-stars { font-size: 12px; color: #f5a623; letter-spacing: 1px; margin-bottom: 10px; }
.review-text { font-size: 13.5px; font-weight: 300; color: var(--gray-700); line-height: 1.7; }
.review-source { display: flex; align-items: center; gap: 5px; margin-top: 12px; font-size: 11px; font-weight: 300; color: var(--gray-500); }

/* ===== FAQ ===== */
.faq-list { display: flex; flex-direction: column; gap: 10px; max-width: 780px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border); border-radius: var(--r);
  overflow: hidden; transition: border-color .2s;
}
.faq-item.open { border-color: var(--blue); }
.faq-q {
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
  padding: 20px 22px; cursor: pointer; user-select: none;
  font-size: 15px; font-weight: 700; color: var(--dark); transition: color .2s;
}
.faq-q:hover { color: var(--blue); }
.faq-item.open .faq-q { color: var(--blue); }
.faq-chevron {
  width: 22px; height: 22px; border-radius: 50%;
  border: 1.5px solid var(--border); display: flex; align-items: center; justify-content: center;
  font-size: 10px; flex-shrink: 0; transition: all .2s; color: var(--gray-500);
}
.faq-item.open .faq-chevron { background: var(--blue); border-color: var(--blue); color: var(--white); transform: rotate(180deg); }
.faq-a {
  padding: 0 22px; max-height: 0; overflow: hidden;
  font-size: 14px; font-weight: 300; color: var(--gray-700); line-height: 1.8;
  transition: max-height .35s var(--ease), padding .35s;
}
.faq-item.open .faq-a { max-height: 300px; padding: 0 22px 20px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 60%, var(--blue-light) 100%);
  position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,.06) 0%, transparent 50%),
                    radial-gradient(circle at 80% 50%, rgba(255,255,255,.04) 0%, transparent 50%);
}
.cta-inner { text-align: center; position: relative; z-index: 1; max-width: 620px; margin: 0 auto; }
.cta-inner .section-title { color: var(--white); font-size: clamp(1.8rem, 3vw, 2.6rem); }
.cta-inner .section-desc { color: rgba(255,255,255,.65); margin: 0 auto 36px; }

/* ===== FOOTER ===== */
.footer { background: var(--dark); padding: 64px 0 32px; }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px;
  padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.07);
}
.footer-brand-desc { font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,.4); line-height: 1.75; margin-top: 14px; max-width: 250px; }
.footer-col h5 {
  font-size: 10.5px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 18px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 13.5px; font-weight: 300; color: rgba(255,255,255,.5);
  transition: color .2s;
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between; padding-top: 28px;
  gap: 16px; flex-wrap: wrap;
}
.footer-copy { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.25); }
.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.25); transition: color .2s; }
.footer-bottom-links a:hover { color: rgba(255,255,255,.6); }

/* ===== MODAL ===== */
.modal-overlay {
  display: none; position: fixed; inset: 0; z-index: 9999;
  background: rgba(11,31,45,.75); backdrop-filter: blur(10px);
  align-items: center; justify-content: center; padding: 20px;
}
.modal-overlay.show { display: flex; }
.modal-box {
  background: var(--white); border-radius: 20px;
  padding: 48px 40px; max-width: 460px; width: 100%;
  text-align: center; position: relative;
  animation: modalIn .35s cubic-bezier(.34,1.56,.64,1);
}
@keyframes modalIn { from { opacity:0; transform: scale(.85) translateY(20px); } }
.modal-close {
  position: absolute; top: 16px; right: 18px;
  width: 32px; height: 32px; border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  background: var(--gray-100); color: var(--gray-500); font-size: 16px;
  transition: all .2s;
}
.modal-close:hover { background: var(--border); color: var(--dark); }
.modal-icon-wrap {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--blue-pale); display: flex; align-items: center; justify-content: center;
  font-size: 2rem; margin: 0 auto 20px;
}
.modal-title { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.modal-msg { font-size: 14px; font-weight: 300; color: var(--gray-700); line-height: 1.75; margin-bottom: 28px; }

/* ===== ADMIN PANEL ===== */
.admin-overlay {
  display: none; position: fixed; inset: 0; z-index: 9990;
  background: var(--dark); overflow-y: auto;
}
.admin-overlay.open { display: block; }
.admin-nav {
  position: sticky; top: 0; z-index: 10;
  background: rgba(11,31,45,.97); backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,.07);
  padding: 0 24px; height: 64px;
  display: flex; align-items: center; justify-content: space-between;
}
.admin-nav h1 { font-size: 1.1rem; font-weight: 700; color: var(--white); }
.admin-close-btn {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.75); border-radius: 8px; padding: 8px 16px;
  font-size: 13px; font-weight: 700; font-family: var(--font); cursor: pointer; transition: all .2s;
}
.admin-close-btn:hover { background: rgba(255,255,255,.12); color: var(--white); }

.admin-body { max-width: 1100px; margin: 0 auto; padding: 32px 24px; }
.admin-tabs { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 28px; }
.a-tab {
  padding: 9px 20px; border-radius: 8px;
  font-size: 13px; font-weight: 700; font-family: var(--font);
  background: rgba(255,255,255,.05); color: rgba(255,255,255,.5);
  border: 1px solid rgba(255,255,255,.07); cursor: pointer; transition: all .2s;
}
.a-tab:hover { color: rgba(255,255,255,.8); background: rgba(255,255,255,.09); }
.a-tab.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.a-pane { display: none; }
.a-pane.active { display: block; }

/* Admin stat cards */
.a-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; margin-bottom: 24px; }
.a-stat {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 22px;
}
.a-stat-val { font-size: 2.2rem; font-weight: 700; color: var(--blue); line-height: 1; }
.a-stat-lbl { font-size: 12px; font-weight: 300; color: rgba(255,255,255,.4); margin-top: 6px; }

/* Capacity */
.cap-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; margin-bottom: 22px; }
.cap-box {
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 22px;
}
.cap-box label { font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase; color: rgba(255,255,255,.4); display: block; margin-bottom: 10px; }
.cap-box input {
  background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.1);
  color: var(--white); border-radius: 8px; padding: 10px 14px;
  font-size: 1.3rem; font-weight: 700; font-family: var(--font);
  width: 100%; outline: none; transition: border-color .2s;
}
.cap-box input:focus { border-color: var(--blue); }
.cap-used { font-size: 11px; font-weight: 300; color: rgba(255,255,255,.3); margin-top: 8px; }

/* Reservations table */
.a-table-wrap { overflow-x: auto; border-radius: 12px; border: 1px solid rgba(255,255,255,.07); }
.a-table { width: 100%; border-collapse: collapse; font-size: 13px; }
.a-table th {
  padding: 14px 16px; text-align: left;
  font-size: 10px; font-weight: 700; letter-spacing: 1.5px; text-transform: uppercase;
  color: rgba(255,255,255,.35); background: rgba(255,255,255,.03);
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.a-table td { padding: 14px 16px; color: rgba(255,255,255,.7); border-bottom: 1px solid rgba(255,255,255,.04); font-weight: 300; }
.a-table tr:last-child td { border-bottom: none; }
.a-table tr:hover td { background: rgba(255,255,255,.02); }
.pt-badge {
  display: inline-flex; align-items: center; gap: 5px;
  padding: 3px 10px; border-radius: 100px; font-size: 10.5px; font-weight: 700;
}
.pt-badge.covered { background: rgba(1,123,193,.2); color: #60c8ff; }
.pt-badge.garage  { background: rgba(14,165,111,.18); color: #4ade80; }
.pt-badge.open    { background: rgba(230,155,42,.18); color: #f5c462; }

/* Charts */
.a-chart-box {
  background: rgba(255,255,255,.03); border: 1px solid rgba(255,255,255,.07);
  border-radius: 14px; padding: 24px;
}
.a-chart-title { font-size: 10px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.35); margin-bottom: 20px; }
.bar-chart { display: flex; align-items: flex-end; gap: 10px; height: 140px; }
.bc-col { flex: 1; display: flex; flex-direction: column; align-items: center; gap: 5px; height: 100%; }
.bc-bar-wrap { flex: 1; width: 100%; display: flex; align-items: flex-end; }
.bc-bar {
  width: 100%; background: var(--blue); border-radius: 6px 6px 0 0;
  transition: height .8s cubic-bezier(.4,0,.2,1); min-height: 3px;
  position: relative; cursor: pointer;
}
.bc-bar:hover { background: var(--blue-light); }
.bc-val { position: absolute; top: -18px; left: 50%; transform: translateX(-50%); font-size: 9px; font-weight: 700; color: rgba(255,255,255,.5); white-space: nowrap; }
.bc-month { font-size: 9px; font-weight: 300; color: rgba(255,255,255,.3); letter-spacing: .5px; }

/* Distribution bars */
.dist-bar { margin-bottom: 12px; }
.dist-bar-header { display: flex; justify-content: space-between; margin-bottom: 5px; font-size: 12px; }
.dist-bar-header span { font-weight: 300; color: rgba(255,255,255,.55); }
.dist-bar-header strong { font-weight: 700; color: rgba(255,255,255,.85); }
.dist-bar-track { background: rgba(255,255,255,.07); border-radius: 100px; height: 6px; overflow: hidden; }
.dist-bar-fill { height: 100%; border-radius: 100px; transition: width 1s var(--ease); }

/* ===== ANIMATIONS ===== */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.fade-up.visible { opacity: 1; transform: none; }
.fade-up.d1 { transition-delay: .1s; }
.fade-up.d2 { transition-delay: .2s; }
.fade-up.d3 { transition-delay: .3s; }
.fade-up.d4 { transition-delay: .4s; }

/* ===== LOADING STATE ===== */
.btn-loading::after {
  content: '';
  display: inline-block; width: 14px; height: 14px; border-radius: 50%;
  border: 2px solid rgba(255,255,255,.4); border-top-color: white;
  animation: spin .7s linear infinite; margin-left: 8px;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ===== RESPONSIVE ===== */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .res-card { max-width: 520px; }
  .why-grid, .ptype-grid, .reviews-grid { grid-template-columns: 1fr 1fr; }
  .how-grid { grid-template-columns: 1fr 1fr; }
  .how-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .a-stats { grid-template-columns: 1fr 1fr; }
  .cap-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .section { padding: 64px 0; }
  .navbar-links { display: none; }
  .hamburger { display: flex; }
  .hero-inner { padding: 48px 20px; }
  .hero-h1 { font-size: 2.4rem; }
  .hero-cta { flex-direction: column; align-items: flex-start; }
  .hero-stats { flex-wrap: wrap; }
  .hstat { padding: 14px 18px; }
  .type-tabs { grid-template-columns: repeat(3, 1fr); }
  .why-grid, .ptype-grid, .reviews-grid { grid-template-columns: 1fr; }
  .how-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .a-stats, .cap-grid { grid-template-columns: 1fr 1fr; }
  .trust-bar-inner { gap: 24px; }
  .reviews-header { flex-direction: column; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
  .a-stats { grid-template-columns: 1fr; }
  .cap-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .res-card-body { padding: 18px 18px; }
}

/* =============================================
   SAPP v2 — EXTENSIONS
   Hero photo, ticker, feature cards, gallery,
   directions, real reviews, SVG icons
   ============================================= */

/* ===== HERO BACKGROUND PHOTO ===== */
.hero-bg {
  background: url('../img/herobg.png') center / cover no-repeat;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    110deg,
    rgba(1,40,70,.94) 0%,
    rgba(1,80,140,.82) 40%,
    rgba(1,123,193,.55) 75%,
    rgba(1,123,193,.25) 100%
  );
}

/* ===== FORM COMPACT ===== */
.res-card-body { padding: 18px 24px; }
.form-group    { margin-bottom: 9px; }
.form-group label { margin-bottom: 4px; font-size: 10px; }
.form-group input,
.form-group select { padding: 10px 13px; font-size: 13.5px; border-radius: 9px; }
.form-row      { gap: 9px; }
.type-tabs     { gap: 6px; margin-bottom: 12px; }
.type-tab      { padding: 9px 5px; border-radius: 8px; }
.type-tab .ti  { font-size: 1.3rem; margin-bottom: 2px; }
.type-tab .tn  { font-size: 13px; }
.type-tab .ta  { font-size: 9px; }
.ev-toggle     { padding: 9px 12px; margin-bottom: 12px; }
.ev-info strong { font-size: 12.5px; }
.ev-info span  { font-size: 10.5px; }
.btn.btn-lg    { padding: 14px 28px; font-size: 14px; }
.form-secure   { font-size: 10.5px; margin-top: 8px; }
.res-card-header { padding: 16px 24px; }
.res-card-title { font-size: 1rem; }

/* ===== TICKER / ANIMATED TRUST BAR ===== */
.ticker-wrap {
  background: var(--blue);
  padding: 0;
  overflow: hidden;
  position: relative;
  height: 52px;
  display: flex;
  align-items: center;
}
.ticker-wrap::before,
.ticker-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0; width: 80px; z-index: 2;
  pointer-events: none;
}
.ticker-wrap::before {
  left: 0;
  background: linear-gradient(90deg, var(--blue) 0%, transparent 100%);
}
.ticker-wrap::after {
  right: 0;
  background: linear-gradient(90deg, transparent 0%, var(--blue) 100%);
}
.ticker-track {
  display: flex;
  align-items: center;
  white-space: nowrap;
  animation: ticker 36s linear infinite;
  will-change: transform;
}
.ticker-track:hover { animation-play-state: paused; }
@keyframes ticker {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  font-size: 13px;
  font-weight: 700;
  color: rgba(255,255,255,.92);
  letter-spacing: .3px;
  flex-shrink: 0;
}
.ticker-item svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  opacity: .85;
}
.ticker-sep {
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(255,255,255,.3);
  display: inline-block;
  flex-shrink: 0;
}

/* ===== SVG ICON CARDS (sekcija kao na slici) ===== */
.feature-section {
  padding: 80px 0;
  background: var(--off);
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 52px;
}
.feature-card {
  background: var(--white);
  border-radius: 20px;
  padding: 36px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0; height: 3px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(1,63,107,.12);
  border-color: rgba(1,123,193,.18);
}
.feature-card:hover::after { transform: scaleX(1); }
.feature-icon-wrap {
  width: 88px; height: 88px;
  border-radius: 50%;
  background: var(--blue-pale);
  margin: 0 auto 24px;
  display: flex; align-items: center; justify-content: center;
  transition: background .3s;
}
.feature-card:hover .feature-icon-wrap { background: rgba(1,123,193,.15); }
.feature-icon-wrap svg {
  width: 42px; height: 42px;
  color: var(--blue);
}
.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.feature-card p {
  font-size: 13.5px;
  font-weight: 300;
  color: var(--gray-700);
  line-height: 1.75;
}

/* ===== SVG ICON WHY CARDS ===== */
.why-icon svg {
  width: 26px; height: 26px;
  color: var(--blue);
  transition: color .2s;
}
.why-card:hover .why-icon { background: var(--blue); }
.why-card:hover .why-icon svg { color: var(--white); }

/* ===== GALLERY ===== */
.gallery-section { padding: 80px 0; background: var(--white); }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
  margin-top: 48px;
  border-radius: 16px;
  overflow: hidden;
}
.gallery-item {
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
  display: block;
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-1 { grid-column: span 5; grid-row: span 2; }
.gallery-item-2 { grid-column: span 4; }
.gallery-item-3 { grid-column: span 3; }
.gallery-item-4 { grid-column: span 4; }
.gallery-item-5 { grid-column: span 3; }
.gallery-item::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(1,40,70,0);
  transition: background .3s;
}
.gallery-item:hover::after { background: rgba(1,40,70,.15); }
.gallery-overlay {
  position: fixed; inset: 0; z-index: 9990;
  background: rgba(0,0,0,.92);
  display: none; align-items: center; justify-content: center;
}
.gallery-overlay.open { display: flex; }
.gallery-overlay img {
  max-width: 90vw; max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  animation: fadeInScale .25s ease;
}
@keyframes fadeInScale { from { opacity:0; transform:scale(.93); } }
.gallery-overlay-close {
  position: absolute; top: 20px; right: 24px;
  color: white; font-size: 32px; cursor: pointer;
  background: rgba(255,255,255,.1); border: none;
  width: 44px; height: 44px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s;
}
.gallery-overlay-close:hover { background: rgba(255,255,255,.2); }

/* ===== DIRECTIONS / MAP ===== */
.directions-section { padding: 20px 0; background: var(--off); }
.directions-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.directions-info { }
.directions-address {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px 26px;
  margin-bottom: 20px;
}
.dir-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 0;
  border-bottom: 1px solid var(--gray-100);
}
.dir-row:last-child { border-bottom: none; }
.dir-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: var(--blue-pale);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.dir-icon svg { width: 18px; height: 18px; color: var(--blue); }
.dir-label { font-size: 11px; font-weight: 700; color: var(--gray-500); letter-spacing: .5px; text-transform: uppercase; margin-bottom: 3px; }
.dir-value { font-size: 14px; font-weight: 300; color: var(--dark); line-height: 1.5; }
.btn-directions {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--blue);
  color: var(--white);
  border: none;
  border-radius: 12px;
  padding: 16px 24px;
  font-family: var(--font);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  width: 100%;
  justify-content: center;
  transition: all .25s var(--ease);
  text-decoration: none;
}
.btn-directions:hover {
  background: var(--blue-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(1,123,193,.3);
}
.btn-directions svg { width: 20px; height: 20px; }
.map-embed {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--sh-md);
  height: 420px;
  position: relative;
}
.map-embed iframe {
  width: 100%; height: 100%;
  border: none; display: block;
}
.map-placeholder {
  width: 100%; height: 100%;
  background: var(--gray-100);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 12px; color: var(--gray-500);
  cursor: pointer; transition: background .2s;
}
.map-placeholder:hover { background: var(--blue-pale); }
.map-placeholder svg { width: 48px; height: 48px; color: var(--blue); opacity: .6; }
.map-placeholder p { font-size: 14px; font-weight: 300; }

/* ===== REAL REVIEWS ===== */
.reviews-real-section { padding: 80px 0; background: var(--white); }
.reviews-add-panel {
  background: var(--blue-pale);
  border: 1px dashed rgba(1,123,193,.3);
  border-radius: var(--r-lg);
  padding: 28px;
  margin-bottom: 40px;
  display: none; /* shown only when admin is logged in */
}
.reviews-add-panel.visible { display: block; }
.reviews-add-panel h4 { font-size: 14px; font-weight: 700; color: var(--blue); margin-bottom: 16px; }
.rv-form-grid { display: grid; grid-template-columns: 1fr 1fr 1fr auto; gap: 10px; align-items: end; }
.rv-form-inp {
  border: 1.5px solid var(--border);
  border-radius: 9px;
  padding: 10px 13px;
  font-size: 13px;
  font-family: var(--font);
  color: var(--dark);
  outline: none;
  background: var(--white);
  width: 100%;
  transition: border-color .2s;
}
.rv-form-inp:focus { border-color: var(--blue); }
.rv-star-select {
  display: flex; gap: 4px; align-items: center; padding: 4px 0;
}
.rv-star-btn {
  background: none; border: none; cursor: pointer;
  font-size: 20px; color: var(--gray-300);
  transition: color .15s; line-height: 1;
}
.rv-star-btn.on { color: #f5a623; }

/* Google review cards */
.google-reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.g-review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 22px;
  transition: all .3s var(--ease);
  position: relative;
}
.g-review-card:hover {
  box-shadow: 0 8px 32px rgba(1,63,107,.1);
  transform: translateY(-3px);
  border-color: rgba(1,123,193,.18);
}
.g-review-header { display: flex; align-items: center; gap: 12px; margin-bottom: 12px; }
.g-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; font-weight: 700; color: var(--white);
  flex-shrink: 0;
  background-size: cover;
  background-position: center;
}
.g-reviewer-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.g-review-date { font-size: 11px; font-weight: 300; color: var(--gray-500); margin-top: 2px; }
.g-stars { font-size: 13px; color: #f5a623; letter-spacing: 1px; margin-bottom: 10px; }
.g-review-text {
  font-size: 13.5px; font-weight: 300; color: var(--gray-700); line-height: 1.7;
}
.g-footer { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }
.g-logo-badge { display: flex; align-items: center; gap: 5px; font-size: 11px; color: var(--gray-500); }
.g-verified { font-size: 10px; color: var(--green); font-weight: 700; letter-spacing: .5px; }

/* Reviews summary bar */
.reviews-summary {
  background: var(--off);
  border-radius: var(--r-lg);
  padding: 28px 32px;
  display: flex;
  align-items: center;
  gap: 32px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}
.rev-score-big {
  font-size: 4rem; font-weight: 700; color: var(--dark); line-height: 1;
  flex-shrink: 0;
}
.rev-score-info { flex: 1; min-width: 160px; }
.rev-stars-large { font-size: 1.4rem; color: #f5a623; letter-spacing: 3px; display: block; margin-bottom: 4px; }
.rev-count { font-size: 13px; color: var(--gray-500); font-weight: 300; }
.rev-bars { flex: 2; min-width: 220px; }
.rev-bar-row {
  display: flex; align-items: center; gap: 10px;
  margin-bottom: 5px; font-size: 12px;
}
.rev-bar-lbl { width: 16px; text-align: right; color: var(--gray-500); flex-shrink: 0; }
.rev-bar-track { flex: 1; background: var(--gray-100); border-radius: 100px; height: 7px; overflow: hidden; }
.rev-bar-fill { height: 100%; border-radius: 100px; background: #f5a623; transition: width .8s ease; }
.rev-bar-cnt { width: 28px; text-align: right; color: var(--gray-500); font-size: 11px; flex-shrink: 0; }
.google-cta-btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); border: 1.5px solid var(--border);
  color: var(--dark); border-radius: 10px; padding: 12px 20px;
  font-size: 13px; font-weight: 700; font-family: var(--font);
  cursor: pointer; transition: all .2s; text-decoration: none;
  flex-shrink: 0;
}
.google-cta-btn:hover { border-color: var(--blue); color: var(--blue); }

/* ===== RESPONSIVE ADDITIONS ===== */
@media (max-width: 1080px) {
  .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(6, 1fr); grid-template-rows: 180px 180px; }
  .gallery-item-1 { grid-column: span 3; grid-row: span 2; }
  .gallery-item-2 { grid-column: span 3; }
  .gallery-item-3 { grid-column: span 3; }
  .gallery-item-4 { grid-column: span 3; }
  .gallery-item-5 { grid-column: span 3; }
  .directions-inner { grid-template-columns: 1fr; }
  .map-embed { height: 320px; }
  .google-reviews-grid { grid-template-columns: 1fr 1fr; }
  .rv-form-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  .feature-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .feature-card { padding: 24px 16px; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item-1, .gallery-item-2, .gallery-item-3,
  .gallery-item-4, .gallery-item-5 { grid-column: span 1; height: 160px; }
  .gallery-item-1 { grid-column: span 2; height: 200px; }
  .google-reviews-grid { grid-template-columns: 1fr; }
  .reviews-summary { flex-direction: column; gap: 20px; }
  .rv-form-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .feature-grid { grid-template-columns: 1fr; }
}

/* ===== ICON SIZE FIXES ===== */

/* EV toggle icon */
.ev-toggle > svg {
  width: 20px !important;
  height: 20px !important;
  flex-shrink: 0;
  color: var(--blue);
}

/* Waze / Apple Maps inline button icons */
.map-nav-btn svg {
  width: 18px !important;
  height: 18px !important;
  flex-shrink: 0;
}

/* Feature cards — keep 42px inside the circle */
.feature-icon-wrap svg {
  width: 42px;
  height: 42px;
  color: var(--blue);
}

/* ptype icons in dark section */
.ptype-icon-wrap svg {
  width: 32px !important;
  height: 32px !important;
}

/* step circles */
.step-circle svg {
  width: 28px !important;
  height: 28px !important;
}

/* dir-icon */
.dir-icon svg {
  width: 18px !important;
  height: 18px !important;
  color: var(--blue);
}

/* type-tab icons in form */
.type-tab .ti {
  display: none !important;
  align-items: center;
  justify-content: center;
  height: 28px;
  margin-bottom: 4px;
}
.type-tab .ti svg {
  display: none !important;
  width: 22px !important;
  height: 22px !important;
}

/* res-card header icon */
.res-card-header > svg {
  width: 26px !important;
  height: 26px !important;
  flex-shrink: 0;
}

/* how-step button submit icon */
#btnSubmit svg {
  width: 16px !important;
  height: 16px !important;
}

/* ===== PRICING CARDS ===== */
.price-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 36px;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: var(--r-lg);
  padding: 36px 28px 28px;
  display: flex;
  flex-direction: column;
  gap: 0;
  position: relative;
  transition: all .3s var(--ease);
}
.price-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-md);
  border-color: rgba(1,123,193,.25);
}
.price-card--featured {
  background: var(--blue);
  border-color: var(--blue);
}
.price-card--featured:hover { border-color: var(--blue-dark); }
.price-badge {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,.22);
  color: var(--white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  margin-bottom: 20px;
  width: fit-content;
}
.price-period {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 10px;
}
.price-card--featured .price-period { color: rgba(255,255,255,.75); }
.price-amount {
  font-size: 3.2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 28px;
}
.price-amount span {
  font-size: 1.2rem;
  font-weight: 300;
  color: var(--gray-500);
  margin-left: 4px;
}
.price-card--featured .price-amount { color: var(--white); }
.price-card--featured .price-amount span { color: rgba(255,255,255,.6); }
.price-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 32px;
  flex: 1;
}
.price-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 300;
  color: var(--gray-700);
}
.price-features li::before {
  content: '✓';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--blue-pale);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.price-card--featured .price-features li { color: rgba(255,255,255,.8); }
.price-card--featured .price-features li::before {
  background: rgba(255,255,255,.18);
  color: var(--white);
}
.price-note {
  text-align: center;
  font-size: 12.5px;
  font-weight: 300;
  color: var(--gray-500);
  line-height: 1.7;
  max-width: 700px;
  margin: 0 auto;
  padding: 16px 20px;
  background: var(--off);
  border-radius: var(--r);
  border: 1px solid var(--border);
}
@media (max-width: 860px) {
  .price-grid { grid-template-columns: 1fr; max-width: 400px; margin-left: auto; margin-right: auto; }
}
@media (min-width: 861px) and (max-width: 1080px) {
  .price-grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
  .price-amount { font-size: 2.6rem; }
}

/* ===== ADMIN LOGIN OVERLAY ===== */
.admin-login-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9995;
  background: rgba(11,31,45,.88);
  backdrop-filter: blur(12px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.admin-login-overlay.open { display: flex; }
.admin-login-card {
  background: #0f2335;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 20px;
  padding: 40px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 28px 64px rgba(0,0,0,.45);
  display: flex;
  flex-direction: column;
  gap: 0;
  text-align: center;
}
.admin-login-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 28px;
  justify-content: center;
}
.admin-login-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 6px;
}
.admin-login-subtitle {
  font-size: 13px;
  color: rgba(255,255,255,.4);
  margin-bottom: 24px;
}
.admin-fg {
  margin-bottom: 14px;
  text-align: left;
}
.admin-fg label {
  display: block;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: rgba(255,255,255,.4);
  margin-bottom: 7px;
}
.admin-fg input {
  width: 100%;
  padding: 13px 16px;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.08);
  border-radius: 10px;
  color: #fff;
  font-size: 14px;
  font-family: var(--font);
  outline: none;
  transition: border-color .2s;
}
.admin-fg input:focus { border-color: var(--blue); }
.admin-login-err {
  color: #f87171;
  font-size: 13px;
  text-align: center;
  margin-top: 10px;
  min-height: 18px;
  font-weight: 300;
}

/* ===== REVIEWS REAL SECTION — container fix ===== */
.reviews-real-section .container {
  max-width: var(--max);
  padding: 0 24px;
  margin: 0 auto;
}

/* ===== REVIEWS GRID ===== */
.reviews-overall {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  background: #f4f8fb;
  border: 1px solid rgba(1,123,193,.15);
  border-radius: 60px;
  padding: 12px 24px;
  margin-top: 16px;
}
.reviews-score {
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
}
.reviews-stars { color: #f5a623; font-size: 1.1rem; letter-spacing: 2px; }
.reviews-count { font-size: 12px; color: var(--muted); margin-top: 2px; }
.reviews-glogo { height: 20px; opacity: .7; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  padding: 24px;
  box-shadow: 0 2px 16px rgba(0,0,0,.05);
  transition: box-shadow .25s, transform .25s;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.review-card:hover {
  box-shadow: 0 8px 32px rgba(1,123,193,.1);
  transform: translateY(-3px);
}
.review-top {
  display: flex;
  align-items: center;
  gap: 12px;
}
.review-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--blue);
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--dark); }
.review-date { font-size: 11px; color: var(--muted); margin-top: 2px; }
.review-glogo { height: 16px; opacity: .5; margin-left: auto; flex-shrink: 0; }
.review-stars { color: #f5a623; font-size: .95rem; letter-spacing: 1px; }
.review-text {
  font-size: 13.5px;
  color: var(--muted);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
}

@media (max-width: 900px) {
  .reviews-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-overall { flex-wrap: wrap; justify-content: center; text-align: center; }
}
