
    :root{
      --primary: #0b2b6a;      /* Sötétkék */
      --primary-light: #1e3a8a;
      --accent: #b91c1c;       /* Piros */
      --accent-hover: #991b1b;
      --green: #15803d;
      --text-dark: #1e293b;
      --text-muted: #64748b;
      --bg-light: #f8fafc;     /* Világosszürke háttér */
      --white: #ffffff;
      --radius: 16px;
      --shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.08);
      --shadow-hover: 0 20px 40px -5px rgba(0, 0, 0, 0.12);
      --shadow-soft: 0 8px 24px rgba(0,0,0,0.06);
      --max-width: 1200px;
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    
    body {
      margin: 0;
      font-family: 'Open Sans', sans-serif;
      background: var(--bg-light);
      color: var(--text-dark);
      line-height: 1.6;
    }

    h1, h2, h3, h4, h5, .btn, nav a, .brand {
      font-family: 'Montserrat', sans-serif;
    }

    a { text-decoration: none; color: inherit; transition: all 0.2s; }
    img { max-width: 100%; display: block; }
    
    .wrap {
      max-width: var(--max-width);
      margin: 0 auto;
      padding: 0 20px;
    }

    /* --- Navigation --- */
    nav {
      background: rgba(255, 255, 255, 0.98);
      backdrop-filter: blur(10px);
      border-bottom: 1px solid rgba(0,0,0,0.05);
      position: sticky;
      top: 0;
      z-index: 100;
      box-shadow: 0 4px 20px rgba(0,0,0,0.03);
    }
    
    nav .inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 12px 0;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
    }
    .brand img { height: 48px; width: auto; }
    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.1;
    }
    .brand-text strong {
      font-size: 18px;
      color: var(--primary);
      text-transform: uppercase;
      font-weight: 800;
      letter-spacing: -0.5px;
    }
    .brand-text small {
      font-size: 12px;
      color: var(--text-muted);
      font-weight: 600;
    }

    .nav-links {
      display: flex;
      gap: 24px;
      align-items: center;
    }
    
    .nav-links a {
      font-size: 14px;
      font-weight: 700;
      color: var(--primary);
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 8px 0;
      position: relative;
    }

    .nav-links a:not(.cta):after {
      content: '';
      position: absolute;
      width: 0;
      height: 2px;
      bottom: 0;
      left: 0;
      background: var(--accent);
      transition: width 0.3s;
    }
    .nav-links a:not(.cta):hover:after { width: 100%; }

    .nav-cta {
      background: var(--accent);
      color: white !important;
      padding: 10px 24px !important;
      border-radius: 30px;
      transition: transform 0.2s, background 0.2s;
      box-shadow: 0 4px 10px rgba(185, 28, 28, 0.3);
    }
    .nav-cta:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
    }

    /* Mobile Nav Toggle */
    .nav-toggle { display: none; background: none; border: none; cursor: pointer; }
    .nav-toggle span { display: block; width: 25px; height: 3px; background: var(--primary); margin: 5px 0; border-radius: 3px; }

    /* --- Hero Section (V-Shape & Parallax) --- */
    .hero {
      position: relative;
      background: linear-gradient(rgba(11, 43, 106, 0.75), rgba(11, 43, 106, 0.6)),url("../img/hero-varpalota.png");
      background-size: cover;
      background-position: center 35%; 
      background-attachment: fixed; 
      color: white;
      padding: 140px 0 160px; 
      text-align: center;
      margin-bottom: -50px; 
      clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
      -webkit-clip-path: polygon(0 0, 100% 0, 100% 85%, 50% 100%, 0 85%);
    }

    .hero-content {
      max-width: 800px;
      margin: 0 auto;
      position: relative;
      z-index: 2;
      animation: fadeIn 1s ease-out;
    }

    .hero h1 {
      font-size: clamp(32px, 5vw, 56px);
      font-weight: 800;
      margin: 0 0 20px;
      line-height: 1.1;
      text-shadow: 0 4px 15px rgba(0,0,0,0.3);
    }

    .hero p {
      font-size: 20px;
      font-weight: 400;
      margin-bottom: 30px;
      opacity: 0.95;
    }

    .hero-buttons {
      display: flex;
      gap: 15px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      padding: 14px 32px;
      border-radius: 50px;
      font-weight: 700;
      font-size: 15px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      cursor: pointer;
      transition: all 0.3s;
      border: 2px solid transparent;
    }

    .btn-red {
      background: var(--accent);
      color: white;
      box-shadow: 0 10px 20px rgba(185, 28, 28, 0.3);
    }
    .btn-red:hover {
      background: var(--accent-hover);
      transform: translateY(-3px);
      box-shadow: 0 15px 30px rgba(185, 28, 28, 0.4);
    }

    .btn-white {
      background: transparent;
      border-color: rgba(255,255,255,0.8);
      color: white;
    }
    .btn-white:hover {
      background: white;
      color: var(--primary);
    }

    /* --- Section Styling --- */
    .section-title {
      text-align: center;
      margin: 60px 0 40px;
      position: relative;
    }
    .section-title h2 {
      font-size: 32px;
      color: var(--primary);
      font-weight: 800;
      margin: 0;
      text-transform: uppercase;
    }
    .section-title::after {
      content: "";
      display: block;
      width: 60px;
      height: 4px;
      background: var(--accent);
      margin: 15px auto 0;
      border-radius: 2px;
    }

    /* --- Car Grid --- */
    .car-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
      gap: 30px;
      margin-bottom: 60px;
    }

    .car-card {
      background: white;
      border-radius: var(--radius);
      overflow: hidden;
      box-shadow: var(--shadow);
      transition: transform 0.3s, box-shadow 0.3s;
      border: 1px solid rgba(0,0,0,0.05);
      position: relative;
      display: flex;
      flex-direction: column;
    }

    .car-card:hover {
      transform: translateY(-8px);
      box-shadow: var(--shadow-hover);
    }

    .car-image-wrap {
      position: relative;
      height: 360px;
      overflow: hidden;
      background: #eee;
    }

    .car-image-wrap img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.5s;
    }
    
    .car-card:hover .car-image-wrap img { transform: scale(1.05); }

    .price-badge {
      position: absolute;
      top: 15px;
      right: 15px;
      background: rgba(255, 255, 255, 0.95);
      padding: 8px 16px;
      border-radius: 12px;
      box-shadow: 0 4px 10px rgba(0,0,0,0.1);
      text-align: right;
      z-index: 10;
    }
    .price-badge .amt {
      display: block;
      font-size: 20px;
      font-weight: 800;
      color: var(--primary);
    }
    .price-badge .sub {
      display: block;
      font-size: 11px;
      font-weight: 600;
      color: var(--text-muted);
      text-transform: uppercase;
    }

    .car-details { padding: 25px; flex-grow: 1; display: flex; flex-direction: column;}

    .car-title {
      font-size: 22px;
      color: var(--primary);
      margin: 0 0 10px;
    }

    .car-meta {
      display: flex;
      gap: 15px;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 20px;
      border-bottom: 1px solid #eee;
      padding-bottom: 15px;
    }

    .feature-list {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 10px;
      margin-bottom: 20px;
    }
    .feature {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      font-weight: 600;
      color: var(--text-dark);
    }
    .feature svg { width: 18px; height: 18px; fill: var(--green); }
    .feature.no svg { fill: var(--accent); }

    .price-conditions {
      background: #f1f5f9;
      padding: 15px;
      border-radius: 10px;
      font-size: 13px;
      color: var(--text-muted);
      margin-bottom: 20px;
      margin-top: auto; /* Push to bottom */
    }
    .price-conditions p { margin: 4px 0; }

    /* --- Gallery thumbs: NE overlay legyen, hanem rendes sor a fő kép alatt --- */
    .car-gallery-thumbs{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;

    /* ez ölte meg: */
    margin-top: 12px;      /* volt: -35px */
    margin-bottom: 0;      /* volt: 15px */
    position: static;      /* volt: relative */
    z-index: auto;         /* volt: 2 */
    padding: 0;            /* volt: 0 15px */
    }

    /* A thumbok legyenek "kicsi képek", ne bélyegek */
    .thumb{
    width: 100%;           /* volt fix 70px */
    height: 140px;         /* volt 50px */
    object-fit: cover;
    border-radius: 12px;
    border: 0;             /* volt 2px fehér */
    box-shadow: var(--shadow-soft);
    }
        
    .placeholder-box {
        display: flex; align-items: center; justify-content: center;
        background: #e2e8f0; height: 100%; color: #94a3b8; font-weight: bold;
    }

    /* --- New: Rental Types Grid (Rövid vs Hosszú) --- */
    .rental-types-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 30px;
      margin-bottom: 60px;
    }
    .rental-card {
      background: white;
      border-radius: var(--radius);
      padding: 30px;
      box-shadow: var(--shadow-soft);
      border: 1px solid rgba(0,0,0,0.05);
    }
    .rental-card h3 { color: var(--primary); margin-top: 0; font-size: 22px; border-bottom: 2px solid var(--bg-light); padding-bottom: 10px; margin-bottom: 20px; }
    .rental-card ul { padding-left: 20px; margin-bottom: 20px; color: var(--text-muted); }
    .rental-card li { margin-bottom: 8px; }
    .rental-highlight {
        background: #eff6ff;
        padding: 15px;
        border-radius: 8px;
        color: var(--primary);
        font-weight: 700;
        text-align: center;
        margin-top: 20px;
    }

    /* --- Features / Inclusions (Redesigned) --- */
    .features-section {
      background: white;
      padding: 60px 0;
      margin: 40px 0;
      box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    }
    
    .inclusion-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
    .inc-col h4 { font-size: 20px; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.5px; }
    .inc-col.yes h4 { color: var(--green); }
    .inc-col.no h4 { color: var(--accent); }

    .check-list { list-style: none; padding: 0; margin: 0; }
    .check-list li {
        position: relative;
        padding-left: 30px;
        margin-bottom: 12px;
        color: var(--text-dark);
        font-weight: 600;
        font-size: 15px;
    }
    .check-list li::before {
        content: '✓';
        position: absolute;
        left: 0;
        color: var(--green);
        font-weight: 900;
    }
    .check-list.no li::before {
        content: '✕';
        color: var(--accent);
    }
    .check-list span { display: block; font-size: 13px; color: var(--text-muted); font-weight: 400; margin-top: 2px; }


    /* --- FAQ (ÚJ - Külön blokk) --- */
    .faq-container {
        max-width: 800px;
        margin: 0 auto;
    }

    details {
      background: white;
      margin-bottom: 10px;
      border-radius: 8px;
      box-shadow: 0 2px 5px rgba(0,0,0,0.05);
      overflow: hidden;
      border: 1px solid #e2e8f0;
    }
    summary {
      padding: 15px 20px;
      font-weight: 700;
      color: var(--primary);
      cursor: pointer;
      list-style: none;
      position: relative;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }
    summary::-webkit-details-marker { display: none; }
    summary::after {
      content: '+';
      font-size: 20px;
      font-weight: 300;
      transition: transform 0.3s;
    }
    details[open] summary::after { transform: rotate(45deg); }
    details[open] summary { background: #f8fafc; border-bottom: 1px solid #eee; }
    
    .faq-content { padding: 15px 20px; color: var(--text-muted); font-size: 14px; }
    .faq-content p { margin: 0; }

    /* --- Contact & Booking Split (TÖMÖREBB BAL OLDAL) --- */
    .contact-split{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    align-items: stretch;
    margin-bottom: 60px;
    }

    .contact-info-card{
    background: #f9fafc;          /* picit “tömörebb” érzés */
    padding: 26px 28px;           /* volt: 28px 32px vagy nagyobb */
    border-radius: var(--radius);
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: var(--shadow);
    }

    .booking-box {
    background: var(--primary);
    color: white;
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    height: auto;   /* EZ A JAVÍTÁS */
    }

    .booking-box h3{ margin-top: 0; font-size: 24px; }
    .booking-box p{ color: rgba(255,255,255,0.82); margin-bottom: 22px; }

    .contact-actions{
    display: flex;
    flex-direction: column;
    gap: 12px;
    }
    .contact-actions .btn{ width: 100%; justify-content: center; }

    /* ---- KV lista feszesebbre ---- */
    .kv-item{
    margin: 0;
    padding: 14px 0;              /* volt: 20px 0 */
    border-bottom: 1px dashed rgba(2,6,23,0.10);
    }
    .kv-item:last-child{ border-bottom: none; }

    .kv-label{
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.6px;
    color: var(--text-muted);
    font-weight: 800;
    display: block;
    margin-bottom: 6px;
    }

    .kv-value{
    font-size: 16px;              /* volt: 18px */
    font-weight: 800;
    color: var(--primary);
    line-height: 1.35;
    }

    /* kis megjegyzés a nyitvatartás alatt */
    .muted-note{
    display:block;
    margin-top:6px;
    font-size:13px;
    opacity:.75;
    }


    /* Full Width Map */
    .map-section-full {
        width: 100%;
        height: 450px;
        margin-top: 0; 
        border-top: 0;
        position: relative;
        z-index: 1;
    }
    .map-section-full iframe {
        width: 100%;
        height: 100%;
        border: 0;
        display: block;
        filter: grayscale(0%);
    }

    footer {
      background: var(--primary);
      color: white;
      margin-top: -5px; 
      padding: 40px 0;
      border-top: 5px solid var(--accent);
      position: relative;
      z-index: 2;
    }
    .footer-inner {
        display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px;
    }
    .footer-links a { font-size: 13px; opacity: 0.7; margin-right: 15px;}
    .footer-links a:hover { opacity: 1; text-decoration: underline; }

    /* --- Responsive --- */
    @media (max-width: 900px) {
      .hero { padding: 100px 0 140px; }
      .nav-links {
        display: none;
        position: absolute;
        top: 100%; left: 0; right: 0;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.1);
        border-bottom: 1px solid #eee;
      }
      .nav-links.active { display: flex; }
      .nav-toggle { display: block; }
      .contact-split, .rental-types-grid, .inclusion-grid { grid-template-columns: 1fr; }
      .map-section-full { height: 350px; }
    }
    
    @keyframes fadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

    .booking-trust{
    margin-top: 25px;
    font-size: 14px;
    color: rgba(255,255,255,0.85);
    }

    .booking-trust p{
    margin: 6px 0;
    }
/* =========================
   COMPACT PATCH – car card
   ========================= */

/* kevesebb belső tér a kártyában */
.car-details{
  padding: 18px;                 /* volt: 25px */
  gap: 0;
}

/* cím kicsit közelebb, picit kisebb margóval */
.car-title{
  margin: 0 0 8px;
}

/* meta sor: kevesebb alsó tér */
.car-meta{
  margin-bottom: 12px;           /* volt: 20px */
  padding-bottom: 10px;          /* volt: 15px */
  gap: 12px;
}

/* feature lista: feszesebb grid */
.feature-list{
  gap: 8px;                      /* volt: 10px */
  margin-bottom: 12px;           /* volt: 20px */
}
.feature{
  font-size: 13px;               /* maradhat, ha globál ok */
  line-height: 1.2;
}

/* ár/cond blokk: kevesebb padding + kevesebb margó */
.price-conditions{
  padding: 12px;                 /* volt: 15px */
  margin-bottom: 12px;           /* volt: 20px */
  border-radius: 10px;
}
.price-conditions p{
  margin: 3px 0;                 /* volt: 4px 0 */
}

/* a gomb ne legyen “óriás párna” */
.car-card .btn{
  padding: 12px 22px;            /* volt: 14px 32px */
}

/* ha a gombod full széles, akkor a kártya alján ne hagyjon plusz levegőt */
.car-details > .btn{
  margin-top: 8px;
}

@media (max-width: 900px) {
  .hero {
    /* Mobilon kikapcsoljuk a fixálást, hogy megjelenjen a kép */
    background-attachment: scroll !important;
    /* Kicsit igazítunk a pozíción, hogy az autó jól látsszon */
    background-position: center center;
  }
}