/* ===== RESET ===== */
* { box-sizing: border-box; margin: 0; padding: 0; }
html, body { height: 100%; }

/* ===== THEME VARIABLES ===== */
:root {
  /* dark chaos */
  --bg-base: #050508;
  --bg-grad-1: #1a0a2a;
  --bg-grad-2: #0a1f35;
  --bg-grad-3: #2a0f12;

  --text: #f6f7fb;
  --text-soft: rgba(246,247,251,0.85);

  --glass: rgba(5,5,8,0.72);
  --glass-strong: rgba(10,10,18,0.98);

  --border: rgba(255,255,255,0.08);
  --border-soft: rgba(255,255,255,0.06);

  --card: rgba(255,255,255,0.05);
  --input: rgba(0,0,0,0.45);

  --shadow: rgba(0,0,0,0.6);
}

/* LIGHT THEME OVERRIDES */
body[data-theme="light"] {
  --bg-base: #f7f7fb;
  --bg-grad-1: #ffd9f2;
  --bg-grad-2: #d6f4ff;
  --bg-grad-3: #e7ffd2;

  --text: #111217;
  --text-soft: rgba(17,18,23,0.85);

  --glass: rgba(255,255,255,0.75);
  --glass-strong: rgba(255,255,255,0.95);

  --border: rgba(0,0,0,0.08);
  --border-soft: rgba(0,0,0,0.06);

  --card: rgba(255,255,255,0.8);
  --input: rgba(255,255,255,0.9);

  --shadow: rgba(0,0,0,0.15);
}

body {
  font-family: "Montserrat", system-ui, sans-serif;
  color: var(--text);
  background:
    radial-gradient(1200px circle at 10% 10%, var(--bg-grad-1), transparent),
    radial-gradient(1200px circle at 90% 20%, var(--bg-grad-2), transparent),
    radial-gradient(1200px circle at 30% 85%, var(--bg-grad-3), transparent),
    var(--bg-base);
  overflow-x: hidden;
  transition: background .35s ease, color .35s ease;
}

/* ===== HEADER ===== */
.site-header {
  position: sticky; top: 0; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px;
  background: var(--glass);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-soft);
  transition: background .35s ease, border-color .35s ease;
}

.header-left { display: flex; gap: 12px; align-items: center; }
.header-right { display: flex; align-items: center; gap: 10px; }

/* ============================================================
   REAL LOGO SUPPORT (assets/logo.png)
   Use HTML:
   <div class="logo-wrap"><img class="site-logo" src="assets/logo.png" /></div>
   ============================================================ */
.logo-wrap{
  width: 54px;
  height: 54px;
  padding: 3px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background:
    conic-gradient(from 120deg, #ffde59, #ff5ec4, #7afcff, #b7ff5a, #ffde59);
  box-shadow:
    0 0 20px rgba(255,94,196,0.25),
    0 0 30px rgba(122,252,255,0.2);
}

.site-logo{
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 12px;
  background: transparent;
  display: block;
  filter:
    drop-shadow(0 0 8px rgba(255,255,255,0.35))
    drop-shadow(0 0 14px rgba(122,252,255,0.35));
}

.site-logo.small{
  width: 36px;
  height: 36px;
  border-radius: 10px;
}

/* (Optional fallback) Placeholder box if you ever remove img */
.logo-placeholder {
  width: 54px; height: 54px;
  display: grid; place-items: center;
  font-weight: 700; font-size: 12px; letter-spacing: 1px;
  color: #000;
  background:
    conic-gradient(from 120deg, #ffde59, #ff5ec4, #7afcff, #b7ff5a, #ffde59);
  border-radius: 16px;
  box-shadow: 0 0 20px rgba(255,94,196,0.25), 0 0 30px rgba(122,252,255,0.2);
}
.logo-placeholder.small { width: 36px; height: 36px; border-radius: 10px; }

/* Brand */
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-name {
  font-family: "Rubik Dirt", system-ui, sans-serif;
  font-size: 28px;
  letter-spacing: 1px;
  color: var(--text);
  text-shadow: 0 0 8px rgba(255,255,255,0.55),
               0 0 22px rgba(255,94,196,0.5);
  transition: color .35s ease;
}
.brand-tag {
  font-size: 12px; opacity: 0.8; margin-top: 4px;
  letter-spacing: 2px; text-transform: uppercase;
  color: var(--text-soft);
}

/* ===== THEME TOGGLE ===== */
.theme-toggle {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 10px;
  border-radius: 999px;
  background: var(--card);
  border: 1px solid var(--border);
  color: var(--text);
  cursor: pointer;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: transform .2s ease, background .35s ease, color .35s ease, border-color .35s ease;
  box-shadow: 0 8px 25px var(--shadow);
}
.theme-toggle:hover { transform: translateY(-1px); }
.toggle-orb {
  width: 18px; height: 18px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, #7afcff, #ff5ec4, #ffde59);
  box-shadow: 0 0 10px rgba(122,252,255,0.7);
}
.toggle-label { font-size: 12px; text-transform: uppercase; }

/* Hamburger */
.hamburger {
  width: 48px; height: 44px;
  display: grid; place-items: center;
  background: transparent; border: 0; cursor: pointer;
}
.hamburger span {
  display: block; width: 26px; height: 3px; margin: 3px 0;
  background: linear-gradient(90deg, #7afcff, #ff5ec4, #ffde59);
  border-radius: 99px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
}
.hamburger.active span:nth-child(1){ transform: translateY(6px) rotate(45deg); }
.hamburger.active span:nth-child(2){ opacity: 0; width: 0; }
.hamburger.active span:nth-child(3){ transform: translateY(-6px) rotate(-45deg); }

/* Overlay / drawer */
.nav-overlay {
  position: fixed; inset: 0; z-index: 40;
  background: rgba(0,0,0,0.55);
  opacity: 0; pointer-events: none;
  transition: opacity .25s ease;
}
.nav-overlay.show { opacity: 1; pointer-events: auto; }

.nav-drawer {
  position: fixed; top: 0; right: -320px; height: 100vh; width: 300px;
  z-index: 45;
  padding: 90px 18px 18px;
  background: var(--glass-strong);
  border-left: 1px solid var(--border);
  box-shadow: -30px 0 80px var(--shadow);
  transition: right .3s ease, background .35s ease, border-color .35s ease;
  overflow: hidden;
}
.nav-drawer.open { right: 0; }
.nav-drawer ul { list-style: none; display: grid; gap: 10px; }
.nav-drawer a {
  display: block;
  padding: 12px 10px;
  font-weight: 700; letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text); text-decoration: none;
  border-radius: 10px;
  background: linear-gradient(90deg, rgba(255,255,255,0.04), transparent);
  transition: transform .2s ease, background .2s ease, color .35s ease;
}
.nav-drawer a:hover {
  transform: translateX(-4px);
  background: linear-gradient(90deg, rgba(255,94,196,0.2), rgba(122,252,255,0.08));
}

.drawer-splatter {
  position: absolute; inset: -40%;
  background:
    radial-gradient(closest-side, rgba(255,94,196,0.25), transparent 70%),
    radial-gradient(closest-side, rgba(122,252,255,0.25), transparent 70%),
    radial-gradient(closest-side, rgba(183,255,90,0.2), transparent 70%),
    radial-gradient(closest-side, rgba(255,222,89,0.2), transparent 70%);
  filter: blur(30px);
  transform: rotate(12deg);
  pointer-events: none;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 78vh;
  display: grid; place-items: center;
  padding: 56px 18px 36px;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: -10%;
  background:
    radial-gradient(700px circle at 20% 20%, rgba(255,94,196,0.18), transparent 60%),
    radial-gradient(700px circle at 80% 10%, rgba(122,252,255,0.15), transparent 60%),
    radial-gradient(800px circle at 70% 80%, rgba(183,255,90,0.12), transparent 60%),
    radial-gradient(900px circle at 30% 90%, rgba(255,222,89,0.14), transparent 60%);
  animation: drift 12s ease-in-out infinite alternate;
}
@keyframes drift {
  0%   { transform: translateY(0) scale(1); }
  100% { transform: translateY(-20px) scale(1.05); }
}

.hero-content { position: relative; z-index: 2; max-width: 900px; text-align: center; }

.hero-title {
  font-family: "Rubik Dirt", system-ui, sans-serif;
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.05;
  letter-spacing: 1px;
  text-shadow:
    0 0 10px rgba(255,255,255,0.55),
    0 0 36px rgba(122,252,255,0.45),
    0 0 56px rgba(255,94,196,0.6);
}

.hero-title span {
  background: linear-gradient(90deg, #7afcff, #ff5ec4, #ffde59);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin: 16px auto 22px;
  max-width: 680px;
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: var(--text-soft);
}

/* ===== HERO ACCENT SPAN (grey glow) ===== */
.hero-accent {
  background: linear-gradient(90deg, #9ea0a5, #c3c5ca, #e1e2e6);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;

  /* soft grey glow instead of neon white */
  text-shadow:
    0 0 12px rgba(180,180,180,0.55),
    0 0 28px rgba(200,200,200,0.4),
    0 0 40px rgba(160,160,160,0.35);
}

/* ===== HERO IMAGE ===== */
.hero-image-wrap {
  margin-top: 26px;
  display: flex;
  justify-content: center;
  animation: heroFloat 8s ease-in-out infinite alternate;
}

.hero-image {
  width: min(260px, 42vw);
  height: auto;
  filter:
    drop-shadow(0 0 12px rgba(180,180,180,0.35))
    drop-shadow(0 0 28px rgba(200,200,200,0.25));
  opacity: 0.95;
}

@keyframes heroFloat {
  0%   { transform: translateY(0) scale(1); }
  100% { transform: translateY(-12px) scale(1.03); }
}

.hero-cta { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* Buttons */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 18px;
  border-radius: 12px;
  text-decoration: none; font-weight: 700;
  letter-spacing: 0.5px;
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease, color .35s ease, border-color .35s ease;
}
.btn-primary {
  color: #050508;
  background: linear-gradient(90deg, #ffde59, #b7ff5a, #7afcff);
  box-shadow: 0 0 25px rgba(183,255,90,0.35);
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); }

.btn-ghost {
  color: var(--text);
  border: 1px solid var(--border);
  background: rgba(255,255,255,0.04);
}

/* Blobs */
.blob {
  position: absolute; border-radius: 999px; filter: blur(30px);
  opacity: 0.7; z-index: 1; mix-blend-mode: screen;
  animation: floaty 9s ease-in-out infinite alternate;
}
.blob-1 { width: 340px; height: 340px; background: radial-gradient(circle at 30% 30%, #ff5ec4, transparent 60%); top: -80px; left: -60px; }
.blob-2 { width: 420px; height: 420px; background: radial-gradient(circle at 40% 40%, #7afcff, transparent 60%); bottom: -120px; right: -110px; animation-duration: 11s; }
.blob-3 { width: 260px; height: 260px; background: radial-gradient(circle at 50% 50%, #ffde59, transparent 60%); bottom: 20%; left: 15%; animation-duration: 7s; }
@keyframes floaty {
  0%   { transform: translateY(0) translateX(0); }
  100% { transform: translateY(-20px) translateX(12px); }
}

/* Sections / cards / gallery / etc */
.section { padding: 60px 18px; }
.section-inner { max-width: 1050px; margin: 0 auto; }

.section-title {
  font-family: "Rubik Dirt", system-ui, sans-serif;
  font-size: clamp(1.8rem, 3.6vw, 2.5rem);
  margin-bottom: 18px;
  text-shadow: 0 0 16px rgba(255,94,196,0.5);
}

.about-grid {
  margin-top: 18px;
  display: grid; gap: 14px;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.card {
  padding: 18px;
  border-radius: 16px;
  background: var(--card);
  border: 1px solid var(--border);
  box-shadow: 0 0 35px var(--shadow);
  transition: background .35s ease, border-color .35s ease;
}

.neon-card { position: relative; overflow: hidden; }
.neon-card::after {
  content: "";
  position: absolute; inset: -40%;
  background:
    conic-gradient(from 0deg, transparent, rgba(122,252,255,0.25), transparent, rgba(255,94,196,0.25), transparent);
  filter: blur(40px);
  animation: spin 8s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }
.neon-card h3, .neon-card p { position: relative; z-index: 2; }

.gallery-grid {
  display: grid; gap: 12px;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
}
.gallery-tile {
  height: 160px; border-radius: 14px;
  background:
    linear-gradient(135deg, rgba(255,94,196,0.15), rgba(122,252,255,0.12)),
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 8px, transparent 8px 16px);
  border: 1px dashed var(--border);
  transition: border-color .35s ease;
}
.gallery-tile:nth-child(1) {
  background:
    url("assets/truck1.png") center/cover no-repeat,
    linear-gradient(135deg, rgba(255,94,196,0.15), rgba(122,252,255,0.12)),
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 8px, transparent 8px 16px);
}

.gallery-tile:nth-child(2) {
  background:
    url("assets/truck1a.png") center/cover no-repeat,
    linear-gradient(135deg, rgba(255,94,196,0.15), rgba(122,252,255,0.12)),
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 8px, transparent 8px 16px);
}

.gallery-tile:nth-child(3) {
  background:
    url("assets/car2before.png") center/cover no-repeat,
    linear-gradient(135deg, rgba(255,94,196,0.15), rgba(122,252,255,0.12)),
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 8px, transparent 8px 16px);
}

.gallery-tile:nth-child(4) {
  background:
    url("assets/car2after.png") center/cover no-repeat,
    linear-gradient(135deg, rgba(255,94,196,0.15), rgba(122,252,255,0.12)),
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 8px, transparent 8px 16px);
}

.gallery-tile:nth-child(5) {
  background:
    url("assets/van1.png") center/cover no-repeat,
    linear-gradient(135deg, rgba(255,94,196,0.15), rgba(122,252,255,0.12)),
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 8px, transparent 8px 16px);
}

.gallery-tile:nth-child(6) {
  background:
    url("assets/van2.png") center/cover no-repeat,
    linear-gradient(135deg, rgba(255,94,196,0.15), rgba(122,252,255,0.12)),
    repeating-linear-gradient(45deg, rgba(0,0,0,0.04) 0 8px, transparent 8px 16px);
}

.gallery-note { margin-top: 10px; opacity: 0.7; font-size: 0.95rem; color: var(--text-soft); }

.faq-list { display: grid; gap: 10px; }
.faq-item {
  padding: 14px;
  border-radius: 12px;
  background: var(--card);
  border: 1px solid var(--border);
}
.faq-item summary { cursor: pointer; font-weight: 700; }
.faq-item p { margin-top: 8px; color: var(--text-soft); }

.contact-form { display: grid; gap: 10px; max-width: 560px; }
.contact-form input, .contact-form textarea {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  background: var(--input);
  border: 1px solid var(--border);
  color: var(--text); outline: none;
}
.contact-form input:focus, .contact-form textarea:focus {
  border-color: rgba(122,252,255,0.8);
  box-shadow: 0 0 0 3px rgba(122,252,255,0.12);
}

/* Footer */
.site-footer {
  margin-top: 40px;
  border-top: 1px solid var(--border-soft);
  background: var(--glass);
  transition: background .35s ease, border-color .35s ease;
}
.footer-top {
  max-width: 1100px; margin: 0 auto;
  padding: 20px 18px 12px;
  display: grid; gap: 10px; text-align: center;
}
.social-row { display: flex; gap: 10px; align-items: center; justify-content: center; flex-wrap: wrap; }
.follow { font-weight: 700; letter-spacing: 1px; }

.social-icon svg {
  width: 22px; height: 22px;
  fill: var(--text); opacity: 0.9;
  transition: transform .2s ease, filter .2s ease, opacity .2s ease, fill .35s ease;
  filter: drop-shadow(0 0 4px rgba(255,94,196,0.5));
}

.footer-links { font-size: 0.95rem; opacity: 0.85; color: var(--text-soft); }
.footer-links a { color: var(--text); text-decoration: none; }
.footer-links a:hover { text-decoration: underline; }

.copyright { font-size: 0.85rem; opacity: 0.7; color: var(--text-soft); }

.footer-bottom {
  display: grid; place-items: center;
  padding: 14px 18px 18px;
  border-top: 1px solid var(--border-soft);
}
.footer-logo { display: flex; align-items: center; gap: 8px; }
.footer-brand { font-size: 20px; }

/* Responsive */
@media (max-width: 520px) {
  .brand-name { font-size: 22px; }

  /* keep both placeholder + real logo scaling */
  .logo-placeholder { width: 46px; height: 46px; }
  .logo-wrap { width: 46px; height: 46px; border-radius: 14px; }

  .hero { min-height: 72vh; }
  .theme-toggle .toggle-label { display: none; } /* keeps header clean */
}
