/* ===== Tokens ===== */
:root {
  --navy-950: #0a0e1a;
  --navy-900: #10162b;
  --navy-800: #161d38;
  --navy-700: #1e2748;
  --gold: #c9a84c;
  --gold-bright: #d4af37;
  --gold-soft: rgba(201, 168, 76, 0.14);
  --text: #f1efe6;
  --text-muted: #a7adc4;
  --whatsapp: #2fb463;
  --serif: 'Cinzel', serif;
  --sans: 'Jost', sans-serif;
  --container: 1180px;
  --radius: 6px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  background: var(--navy-950);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 1px;
  color: var(--gold-bright);
}

.eyebrow {
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
}

.section-title {
  text-align: center;
  margin-bottom: 8px;
  font-size: clamp(26px, 4vw, 38px);
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 640px;
  margin: 0 auto 28px;
  font-weight: 300;
}

.laurel { width: 90px; height: 48px; color: var(--gold); display: block; margin: 10px auto 24px; opacity: 0.85; }

/* ===== Meander border ===== */
.meander-line {
  height: 14px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 16'%3E%3Cpath d='M0 16 L0 8 L8 8 L8 0 L16 0 L16 8 L24 8 L24 16 L32 16' fill='none' stroke='%23c9a84c' stroke-width='1.4'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: 32px 14px;
  background-position: center;
  opacity: 0.55;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.5px;
  cursor: pointer;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  color: var(--navy-950);
  font-weight: 600;
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.25);
}
.btn-gold:hover { box-shadow: 0 12px 30px rgba(201, 168, 76, 0.4); }

.btn-ghost-gold {
  background: transparent;
  border-color: var(--gold);
  color: var(--gold-bright);
}
.btn-ghost-gold:hover { background: var(--gold-soft); }

.btn-whatsapp {
  background: var(--whatsapp);
  color: #fff;
  font-weight: 600;
}
.btn-whatsapp:hover { box-shadow: 0 10px 26px rgba(47, 180, 99, 0.35); }

.btn-block { width: 100%; }

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(10, 14, 26, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
}
.brand-bolt {
  width: 26px;
  height: 26px;
  fill: var(--gold-bright);
  flex-shrink: 0;
}
.brand-text {
  font-family: var(--serif);
  font-size: 20px;
  letter-spacing: 2px;
  color: var(--text);
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand-text em {
  font-style: normal;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 3px;
  color: var(--gold);
  font-weight: 400;
}

.main-nav { display: flex; align-items: center; gap: 30px; }
.main-nav a {
  font-size: 14px;
  letter-spacing: 0.5px;
  color: var(--text-muted);
  padding: 6px 0;
  position: relative;
}
.main-nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transition: transform 0.2s ease;
}
.main-nav a:hover, .main-nav a.active { color: var(--gold-bright); }
.main-nav a:hover::after, .main-nav a.active::after { transform: scaleX(1); }

.nav-phone {
  border: 1px solid var(--gold);
  padding: 8px 16px;
  border-radius: var(--radius);
  color: var(--gold-bright) !important;
  font-weight: 500;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span { width: 24px; height: 2px; background: var(--gold-bright); }

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 62vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  background:
    radial-gradient(ellipse at 50% 20%, rgba(201, 168, 76, 0.10) 0%, transparent 55%),
    radial-gradient(ellipse at top, var(--navy-900) 0%, var(--navy-950) 75%);
  padding: 130px 20px 70px;
}

.hero-columns { position: absolute; inset: 0; pointer-events: none; opacity: 0.35; }
.column-silhouette {
  position: absolute;
  bottom: 0;
  width: 70px;
  height: 78%;
  background: linear-gradient(180deg, var(--navy-800) 0%, transparent 100%);
  opacity: 0.5;
}
.column-silhouette::before, .column-silhouette::after {
  content: '';
  position: absolute;
  left: -14px; right: -14px;
  height: 16px;
  background: var(--navy-800);
}
.column-silhouette::before { top: 0; }
.column-silhouette::after { bottom: 0; }
.column-silhouette.left { left: 2%; }
.column-silhouette.right { right: 2%; }

.hero-bolt-bg {
  position: absolute;
  top: 8%;
  left: 50%;
  transform: translateX(-50%);
  width: 340px;
  height: 340px;
  fill: var(--gold);
  opacity: 0.06;
  filter: drop-shadow(0 0 0 rgba(212, 175, 55, 0));
  pointer-events: none;
}

.hero-bolt-bg.flash {
  animation: boltFlash 0.5s ease-out;
}

@keyframes boltFlash {
  0%   { opacity: 0.06; filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0)); }
  20%  { opacity: 1;    filter: drop-shadow(0 0 36px rgba(212, 175, 55, 0.9)); }
  35%  { opacity: 0.1;  filter: drop-shadow(0 0 3px rgba(212, 175, 55, 0.15)); }
  46%  { opacity: 0.85; filter: drop-shadow(0 0 22px rgba(212, 175, 55, 0.7)); }
  62%  { opacity: 0.06; filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0)); }
  100% { opacity: 0.06; filter: drop-shadow(0 0 0px rgba(212, 175, 55, 0)); }
}

.hero-stars { position: absolute; inset: 0; pointer-events: none; }
.hero-stars span {
  position: absolute;
  width: 2px; height: 2px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.5;
  animation: twinkle 4s infinite ease-in-out;
}
@keyframes twinkle { 0%, 100% { opacity: 0.15; } 50% { opacity: 0.85; } }

.hero-content { position: relative; z-index: 2; width: 100%; max-width: 760px; }

.hero-bolt-icon {
  width: 46px;
  height: 46px;
  fill: var(--gold-bright);
  margin: 0 auto 18px;
  filter: drop-shadow(0 0 14px rgba(212, 175, 55, 0.5));
}

.hero h1 {
  font-size: clamp(32px, 9vw, 68px);
  letter-spacing: clamp(2px, 1vw, 6px);
  text-shadow: 0 0 40px rgba(201, 168, 76, 0.35);
  overflow-wrap: break-word;
}

.hero-sub {
  font-size: clamp(17px, 2.4vw, 22px);
  letter-spacing: 2px;
  color: var(--text);
  font-weight: 300;
  margin-top: 6px;
}

.hero-desc {
  color: var(--text-muted);
  max-width: 520px;
  margin: 18px auto 0;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  margin-top: 34px;
  flex-wrap: wrap;
}

.form-row { margin-bottom: 14px; }
.form-row label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 6px;
  letter-spacing: 0.5px;
}
.form-row input, .form-row textarea, .form-row select {
  width: 100%;
  background: var(--navy-950);
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--text);
  font-family: var(--sans);
  font-size: 15px;
}
.form-row select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23c9a84c' d='M7 10l5 5 5-5z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 34px;
}
.form-row select option { background: var(--navy-900); color: var(--text); }
.form-row input:focus, .form-row textarea:focus, .form-row select:focus {
  outline: none;
  border-color: var(--gold);
}

/* ===== Route quick-quote ===== */
.route-card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(201, 168, 76, 0.25);
  border-radius: 12px;
  padding: 30px;
  max-width: 700px;
  margin: 0 auto;
}
.route-fields {
  display: grid;
  grid-template-columns: 2fr 2fr 1fr;
  gap: 18px;
  margin-bottom: 22px;
}
.route-fields .form-row { margin-bottom: 0; }
.icon-whatsapp { fill: currentColor; }

/* ===== Service cards ===== */
.section { padding: 90px 0; }
.section.alt { background: var(--navy-900); }

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card {
  background: linear-gradient(160deg, var(--navy-800), var(--navy-900));
  border: 1px solid rgba(201, 168, 76, 0.15);
  border-radius: 10px;
  padding: 28px 22px;
  text-align: center;
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.service-card:hover { transform: translateY(-6px); border-color: var(--gold); }
.service-card .icon {
  width: 40px; height: 40px;
  margin: 0 auto 16px;
  fill: var(--gold-bright);
}
.service-card h3 { font-size: 17px; margin-bottom: 8px; }
.service-card p { color: var(--text-muted); font-size: 14px; font-weight: 300; }

/* ===== Fleet preview / grid ===== */
.fleet-preview-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}
.fleet-preview-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 10px;
  border: 1px solid rgba(201, 168, 76, 0.2);
}
.center-link { text-align: center; }

.fleet-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.fleet-card {
  background: var(--navy-800);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 12px;
  overflow: hidden;
}
.fleet-card-gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.fleet-card-gallery img { height: 160px; object-fit: cover; cursor: pointer; }
.fleet-card-gallery.single img { grid-column: 1 / -1; height: 220px; }
.fleet-card-body { padding: 22px; }
.fleet-card-body h3 { font-size: 19px; margin-bottom: 2px; }
.fleet-card-body .kapasite { color: var(--gold); font-size: 13px; letter-spacing: 1px; margin-bottom: 10px; display: block; }
.fleet-card-body p { color: var(--text-muted); font-size: 14px; font-weight: 300; margin-bottom: 14px; }
.feature-list { display: flex; flex-wrap: wrap; gap: 8px; }
.feature-list li {
  font-size: 12px;
  color: var(--text-muted);
  border: 1px solid rgba(201, 168, 76, 0.25);
  padding: 5px 11px;
  border-radius: 20px;
}

/* ===== Gallery / Lightbox ===== */
.gallery-filters {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}
.filter-btn {
  background: transparent;
  border: 1px solid rgba(201, 168, 76, 0.35);
  color: var(--text-muted);
  padding: 8px 20px;
  border-radius: 20px;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: all 0.15s ease;
}
.filter-btn:hover { border-color: var(--gold); color: var(--text); }
.filter-btn.active { background: var(--gold-soft); border-color: var(--gold); color: var(--gold-bright); }

.fleet-card-empty {
  padding: 40px 20px;
  text-align: center;
  color: var(--text-muted);
  font-size: 14px;
  font-style: italic;
  background: rgba(255,255,255,0.02);
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: 8px;
  cursor: pointer;
  border: 1px solid rgba(201, 168, 76, 0.15);
  transition: transform 0.2s ease, border-color 0.2s ease;
}
.gallery-grid img:hover { transform: scale(1.03); border-color: var(--gold); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(10, 14, 26, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 30px;
}
.lightbox.show { display: flex; }
.lightbox img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: 8px;
  border: 1px solid rgba(201, 168, 76, 0.3);
}
.lightbox-close {
  position: absolute;
  top: 24px; right: 30px;
  font-size: 32px;
  color: var(--gold-bright);
  background: none;
  border: none;
  cursor: pointer;
  line-height: 1;
}
.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold-bright);
  font-size: 22px;
  width: 44px; height: 44px;
  border-radius: 50%;
  cursor: pointer;
}
.lightbox-nav.prev { left: 20px; }
.lightbox-nav.next { right: 20px; }

/* ===== CTA strip ===== */
.cta-strip {
  background: linear-gradient(135deg, var(--navy-900), var(--navy-950));
  border-top: 1px solid rgba(201, 168, 76, 0.2);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  padding: 40px 0;
}
.cta-strip-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.cta-strip-inner p { font-family: var(--serif); font-size: 18px; color: var(--text); }
.cta-strip-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ===== Footer ===== */
.site-footer { background: var(--navy-950); padding: 50px 0 26px; text-align: center; }
.footer-brand { display: flex; align-items: center; justify-content: center; gap: 10px; margin-bottom: 8px; }
.footer-brand .brand-bolt { fill: var(--gold-bright); width: 24px; height: 24px; }
.footer-brand .brand-text { font-family: var(--serif); font-size: 18px; letter-spacing: 2px; }
.footer-brand .brand-text em { display: block; font-style: normal; font-family: var(--sans); font-size: 10px; letter-spacing: 3px; color: var(--gold); }
.footer-tagline { color: var(--gold); font-size: 13px; letter-spacing: 2px; margin-bottom: 24px; }
.footer-nav { display: flex; justify-content: center; gap: 24px; margin-bottom: 22px; flex-wrap: wrap; }
.footer-nav a { color: var(--text-muted); font-size: 14px; }
.footer-nav a:hover { color: var(--gold-bright); }
.footer-copy { color: #5c6485; font-size: 12px; }
.footer-credit { color: #9aa3b8; font-size: 12px; margin-top: 8px; }
.footer-credit a { color: #9aa3b8; text-decoration: underline; text-underline-offset: 2px; transition: color 0.15s ease; }
.footer-credit a:hover { color: var(--gold); }

/* ===== Inner page hero (for non-home pages) ===== */
.page-hero {
  position: relative;
  padding: 110px 20px 60px;
  text-align: center;
  background: radial-gradient(ellipse at top, var(--navy-900) 0%, var(--navy-950) 75%);
  overflow: hidden;
}
.page-hero h1 { font-size: clamp(30px, 5vw, 46px); }
.page-hero p { color: var(--text-muted); max-width: 560px; margin: 14px auto 0; font-weight: 300; }

/* ===== About page ===== */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-grid img { border-radius: 12px; border: 1px solid rgba(201, 168, 76, 0.2); }
.about-text p { color: var(--text-muted); font-weight: 300; margin-bottom: 16px; }
.why-list { margin-top: 24px; display: grid; gap: 14px; }
.why-list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  color: var(--text);
  font-size: 15px;
}
.why-list li::before {
  content: '⚡';
  color: var(--gold-bright);
  flex-shrink: 0;
}

/* ===== Contact page ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-info-item {
  background: var(--navy-800);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 10px;
  padding: 22px;
}
.contact-info-item h4 { font-size: 15px; margin-bottom: 6px; }
.contact-info-item p, .contact-info-item a { color: var(--text-muted); font-size: 14px; }
.contact-info-item a.big { color: var(--gold-bright); font-size: 20px; font-family: var(--serif); }
.contact-form {
  background: var(--navy-800);
  border: 1px solid rgba(201, 168, 76, 0.18);
  border-radius: 12px;
  padding: 30px;
}
.form-success {
  display: none;
  text-align: center;
  color: var(--gold-bright);
  padding: 20px 0;
}
.form-success.show { display: block; }

/* ===== Responsive ===== */
@media (max-width: 1024px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-preview-grid { grid-template-columns: repeat(3, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .fleet-grid { grid-template-columns: 1fr; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    top: 65px; left: 0; right: 0;
    background: var(--navy-950);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    gap: 18px;
    border-bottom: 1px solid rgba(201, 168, 76, 0.2);
    transform: translateY(-150%);
    transition: transform 0.25s ease;
  }
  .main-nav.open { transform: translateY(0); }
  .nav-toggle { display: flex; }
  .nav-phone { align-self: flex-start; }

  .card-grid { grid-template-columns: 1fr; }
  .fleet-preview-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .fleet-card-gallery { grid-template-columns: 1fr; }
  .fleet-card-gallery img { height: 200px; }
  .cta-strip-inner { flex-direction: column; text-align: center; }
  .column-silhouette { width: 40px; }
  .route-fields { grid-template-columns: 1fr; }
  .route-card { padding: 22px; }
}

@media (max-width: 480px) {
  .hero { padding: 90px 16px 40px; }
  .container { padding: 0 16px; }
  .hero-actions { gap: 10px; }
  .hero-actions .btn { width: 100%; }
}
