/*
Theme Name: Lanista Theme
Theme URI: http://localhost/larista/
Author: Antigravity
Author URI: https://google.com
Description: Erzincan Lanista Rent Araç Kiralama için özel karanlık zümrüt & altın lüks WordPress teması.
Version: 1.9.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
Text Domain: larista-theme
*/

:root {
    --bg-dark: #081614;
    --bg-darker: #050E0D;
    --bg-card: #0D221E;
    --g-gold: linear-gradient(135deg, #FFD23F 0%, #D4AF37 50%, #C5A059 100%);
    --g-warm: linear-gradient(135deg, #FFD23F 0%, #D4AF37 100%);
    --gold: #D4AF37;
    --gold-bright: #FFD23F;
    --text: #F8FAFC;
    --text-dim: #CBD5E1;
    --wa-green: #00C950;
    --wa-green-hover: #00b347;
    --border: rgba(212, 175, 55, 0.18);
    --border-hover: rgba(212, 175, 55, 0.45);
}

*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    margin: 0;
    padding: 0;
    width: 100%;
    max-width: 100%;
    overflow-x: clip;
    font-family: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    background: var(--bg-dark);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Outfit', sans-serif;
    letter-spacing: -0.02em;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color 0.2s ease;
}

img {
    max-width: 100%;
    height: auto;
}

.container {
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================================
   TOPBAR
   ============================================================ */
.topbar {
    background: #050E0D;
    color: white;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .02em;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.topbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 9px 24px;
    flex-wrap: wrap;
}

.topbar a {
    background: var(--wa-green);
    color: white;
    padding: 6px 14px;
    border-radius: 999px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: opacity .2s;
}

.topbar a:hover {
    opacity: 0.9;
}

.badge-grad {
    background: rgba(212, 175, 55, 0.15);
    color: #FFD23F;
    border: 1px solid rgba(212, 175, 55, 0.3);
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ============================================================
   HEADER & NAVIGATION
   ============================================================ */
header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(8, 22, 20, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.25);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.45);
    transition: background 0.2s ease, box-shadow 0.2s ease;
}

header .nav {
    height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    line-height: 1;
}

.logo img {
    height: 64px;
    max-height: 70px;
    width: auto;
    object-fit: contain;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, .5);
    transition: transform .3s ease;
}

.logo:hover img {
    transform: scale(1.03);
}

.navlinks {
    display: flex;
    gap: 28px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    color: #CBD5E1;
}

.navlinks a:hover {
    color: var(--gold);
}

.nav-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cta-phone {
    background: var(--g-warm);
    color: #050E0D;
    padding: 12px 20px;
    border-radius: 999px;
    font-weight: 900;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 10px 24px rgba(212, 175, 55, .3);
    transition: .2s;
}

.cta-phone:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(212, 175, 55, .45);
}

.hamburger {
    display: none;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, .3);
    background: #081614;
    color: white;
    place-items: center;
    cursor: pointer;
    font-size: 22px;
    transition: background .2s, border-color .2s;
}

.hamburger:hover {
    border-color: var(--gold);
    background: #0d221e;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
    position: relative;
    overflow: hidden;
    background: #081614;
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(600px 400px at 15% 20%, rgba(212, 175, 55, .12), transparent 60%),
        radial-gradient(700px 500px at 85% 10%, rgba(13, 34, 30, .4), transparent 60%),
        radial-gradient(600px 400px at 70% 85%, rgba(0, 201, 80, .08), transparent 60%);
    pointer-events: none;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr .85fr;
    gap: 40px;
    align-items: center;
    padding: 56px 0 40px;
    position: relative;
}

.hero h1 {
    font-size: 56px;
    line-height: .98;
    margin: 16px 0 14px;
    font-weight: 900;
    color: #FFFFFF;
}

.hero h1 .warm {
    background: var(--g-warm);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p.lead {
    color: #CBD5E1;
    font-size: 16px;
    line-height: 1.6;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    margin-top: 22px;
    flex-wrap: wrap;
}

.btn-primary {
    background: var(--g-warm);
    color: #050E0D;
    padding: 16px 26px;
    border-radius: 999px;
    font-weight: 900;
    border: none;
    cursor: pointer;
    box-shadow: 0 16px 30px rgba(212, 175, 55, .3);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: .2s;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 35px rgba(212, 175, 55, .45);
}

.btn-ghost {
    background: transparent;
    border: 2px solid var(--gold);
    color: var(--gold);
    padding: 14px 24px;
    border-radius: 999px;
    font-weight: 800;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: .2s;
}

.btn-ghost:hover {
    background: rgba(212, 175, 55, 0.1);
}

.trust {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 14px;
    flex-wrap: wrap;
    font-size: 13px;
    color: #CBD5E1;
}

.avatars {
    display: flex;
}

.avatars span {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid #081614;
    margin-left: -8px;
    background: linear-gradient(135deg, #143630, #0A1C19);
    display: grid;
    place-items: center;
    font-size: 11px;
    font-weight: 800;
    color: #FFD23F;
}

.stars {
    color: #FFB800;
}

/* ============================================================
   BOOKING CARD
   ============================================================ */
.booking-card {
    background: #0D221E;
    border-radius: 24px;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .4);
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, .3);
    position: relative;
}

.booking-head {
    background: #081614;
    color: white;
    padding: 18px 22px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(212, 175, 55, .2);
}

.booking-head h3 {
    margin: 0;
    font-size: 15px;
    font-weight: 800;
    color: #FFD23F;
}

.booking-head span {
    font-size: 11px;
    background: rgba(212, 175, 55, .15);
    color: #FFD23F;
    padding: 6px 10px;
    border-radius: 999px;
    font-weight: 700;
}

.booking-body {
    padding: 18px 18px 16px;
    display: grid;
    gap: 12px;
}

.field {
    display: grid;
    gap: 6px;
}

.field label {
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .08em;
    color: #94A3B8;
}

.field select, .field input, .input {
    width: 100%;
    padding: 13px 14px;
    border-radius: 14px;
    border: 1.5px solid rgba(212, 175, 55, .25);
    background: #081614;
    color: white;
    font-weight: 600;
    font-family: inherit;
    outline: none;
    transition: .15s;
}

.field select:focus, .field input:focus, .input:focus {
    border-color: #D4AF37;
    background: #0A1C19;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, .15);
}

.grid2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.btn-whatsapp {
    background: var(--wa-green);
    color: white;
    border: none;
    padding: 14px;
    border-radius: 14px;
    font-weight: 800;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: .2s;
    text-decoration: none;
    font-size: 14px;
}

.btn-whatsapp:hover {
    background: var(--wa-green-hover);
}

.mini-foot {
    font-size: 11px;
    color: #94A3B8;
    text-align: center;
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

/* ============================================================
   SECTIONS GENERAL
   ============================================================ */
.section {
    padding: 72px 0;
    position: relative;
}

.section-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 40px;
}

.kicker {
    font-size: 11px;
    letter-spacing: .2em;
    font-weight: 800;
    color: #D4AF37;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.kicker::before, .kicker::after {
    content: "";
    width: 20px;
    height: 2px;
    background: var(--gold);
    border-radius: 99px;
}

.section-head h2 {
    font-size: 38px;
    margin: 0 0 10px;
    line-height: 1.1;
    font-weight: 900;
    color: white;
}

.section-head p {
    color: #94A3B8;
    font-size: 15px;
    margin: 0;
}

/* Filter Pills */
.filter-pills {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}

.pill {
    padding: 10px 20px;
    border-radius: 999px;
    border: 1.5px solid rgba(212, 175, 55, .3);
    background: #0D221E;
    color: #E2E8F0;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: .2s;
}

.pill.active {
    background: var(--g-warm);
    color: #050E0D;
    border-color: transparent;
    box-shadow: 0 10px 20px rgba(212, 175, 55, .25);
}

/* ============================================================
   FLEET SECTION & CAR CARDS
   ============================================================ */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.car-card {
    background: #0D221E;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, .2);
    overflow: hidden;
    transition: .3s;
    display: flex;
    flex-direction: column;
    box-shadow: 0 12px 30px rgba(0, 0, 0, .3);
}

.car-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 50px rgba(0, 0, 0, .5);
    border-color: rgba(212, 175, 55, .5);
}

.car-img {
    position: relative;
    overflow: hidden;
    background: #111;
}

.car-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
    transition: .4s;
}

.car-card:hover .car-img img {
    transform: scale(1.04);
}

.car-body {
    padding: 18px 18px 16px;
    display: grid;
    gap: 10px;
    flex: 1;
}

.car-body h3 {
    margin: 0;
    font-size: 18px;
    color: white;
}

.car-body .sub {
    font-size: 11px;
    letter-spacing: .12em;
    font-weight: 800;
    color: #D4AF37;
}

.car-body p {
    font-size: 13px;
    line-height: 1.6;
    color: #94A3B8;
    margin: 0;
    min-height: 60px;
}

.car-foot {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(212, 175, 55, .15);
    padding-top: 12px;
}

.link-arrow {
    font-size: 12px;
    font-weight: 800;
    color: #FFD23F;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    font-family: inherit;
}

.link-arrow:hover {
    color: #FFFFFF;
}

.btn-whatsapp-sm {
    font-size: 12px;
    font-weight: 800;
    color: #00C950;
    background: rgba(0, 201, 80, 0.12);
    border: 1.5px solid rgba(0, 201, 80, 0.4);
    border-radius: 999px;
    padding: 6px 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: .2s;
    text-decoration: none;
}

.btn-whatsapp-sm:hover {
    background: #00C950;
    color: white;
    border-color: #00C950;
}

/* ============================================================
   WHY US SECTION
   ============================================================ */
.why {
    background: #050E0D;
    color: white;
    position: relative;
    overflow: hidden;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.why-card {
    background: rgba(13, 34, 30, .6);
    border: 1px solid rgba(212, 175, 55, .2);
    border-radius: 20px;
    padding: 24px 20px;
    position: relative;
    transition: .3s;
}

.why-card:hover {
    background: rgba(13, 34, 30, .9);
    transform: translateY(-4px);
    border-color: rgba(212, 175, 55, .5);
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    font-size: 22px;
    color: #050E0D;
    margin-bottom: 16px;
    background: var(--g-warm);
}

.why-card h4 {
    font-size: 16px;
    margin: 0 0 8px;
    font-weight: 800;
    color: white;
}

.why-card p {
    font-size: 13px;
    color: #94A3B8;
    margin: 0;
    line-height: 1.6;
}

.why-card .num {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 22px;
    font-weight: 900;
    opacity: .2;
    color: #D4AF37;
    font-family: 'Space Grotesk', sans-serif;
}

/* ============================================================
   STORY & GALLERY COMPONENTS
   ============================================================ */
.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.story-img-wrap {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, .4);
    border: 1px solid rgba(212, 175, 55, .2);
    position: relative;
}

.story-img-wrap img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

.story-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(5, 14, 13, .95));
    padding: 20px;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.gallery-item {
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    position: relative;
    border: 1px solid rgba(212, 175, 55, .2);
    background: #081614;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq {
    display: grid;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: #0D221E;
    border-radius: 16px;
    border: 1px solid rgba(212, 175, 55, .2);
    overflow: hidden;
}

.faq-q {
    width: 100%;
    padding: 18px 22px;
    text-align: left;
    background: none;
    border: none;
    font-weight: 800;
    font-size: 15px;
    font-family: inherit;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-a {
    padding: 0 22px 18px;
    font-size: 14px;
    color: #94A3B8;
    line-height: 1.6;
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.info-card {
    background: #050E0D;
    color: white;
    border-radius: 24px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    border: 1px solid rgba(212, 175, 55, .2);
}

.info-row {
    display: flex;
    gap: 14px;
    align-items: flex-start;
}

.info-row i {
    font-size: 22px;
    color: #FFD23F;
    background: rgba(212, 175, 55, .15);
    padding: 10px;
    border-radius: 12px;
}

.form-card {
    background: #0D221E;
    border-radius: 24px;
    padding: 32px;
    border: 1px solid rgba(212, 175, 55, .2);
    box-shadow: 0 20px 40px rgba(0, 0, 0, .3);
    color: white;
}

.form-grid {
    display: grid;
    gap: 14px;
}

.form-grid input, .form-grid select, .form-grid textarea {
    width: 100%;
    padding: 13px 14px;
    border-radius: 12px;
    border: 1.5px solid rgba(212, 175, 55, .25);
    background: #081614;
    color: white;
    font-family: inherit;
    font-weight: 600;
    outline: none;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

.map {
    border-radius: 16px;
    overflow: hidden;
    height: 220px;
    border: 1px solid rgba(212, 175, 55, .2);
    margin-top: 10px;
}

.map iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
    background: #040908;
    color: #94A3B8;
    padding: 48px 0 28px;
    border-top: 1px solid rgba(212, 175, 55, .2);
    font-size: 13px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr .8fr 1fr;
    gap: 32px;
    margin-bottom: 32px;
}

.footer-grid h4 {
    color: white;
    margin: 0 0 14px;
    font-size: 14px;
    letter-spacing: .08em;
}

.footer-grid a {
    display: block;
    margin-bottom: 8px;
}

.footer-grid a:hover {
    color: white;
}

.seo {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding-top: 24px;
    font-size: 12px;
    line-height: 1.7;
    color: #64748B;
}

/* ============================================================
   FLOATING ELEMENTS & MODALS
   ============================================================ */
.fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #00C950;
    color: white;
    display: grid;
    place-items: center;
    font-size: 26px;
    box-shadow: 0 12px 30px rgba(0, 201, 80, .4);
    z-index: 50;
    transition: .3s;
}

.fab:hover {
    transform: scale(1.08);
}

.mobile-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    background: rgba(8, 22, 20, 0.98);
    backdrop-filter: blur(16px);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom, 0px));
    box-shadow: 0 -10px 30px rgba(0, 0, 0, .7);
    z-index: 99;
    gap: 10px;
    border-top: 1px solid rgba(212, 175, 55, .35);
    box-sizing: border-box;
}

.mobile-bar a {
    flex: 1;
    padding: 13px 14px;
    border-radius: 12px;
    font-weight: 900;
    font-size: 13.5px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    text-align: center;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .35);
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(5, 14, 13, .88);
    backdrop-filter: blur(10px);
    z-index: 100;
    display: none;
    place-items: center;
    padding: 20px;
}

.modal.open {
    display: grid;
}

.modal-card {
    background: #0D221E;
    border: 1px solid rgba(212, 175, 55, .35);
    color: white;
    border-radius: 24px;
    max-width: 860px;
    width: 100%;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .7);
    animation: modalIn .25s ease-out;
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch !important;
}

@keyframes modalIn {
    from { opacity: 0; transform: scale(.94) translateY(10px); }
    to { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-img {
    position: relative !important;
    background: #081614 !important;
    width: 44% !important;
    flex-shrink: 0 !important;
    overflow: hidden !important;
}

.modal-img img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
}

.modal-img .close {
    position: absolute !important;
    top: 14px !important;
    right: 14px !important;
    background: rgba(8, 22, 20, 0.85) !important;
    border: 1px solid rgba(212, 175, 55, .4) !important;
    color: white !important;
    width: 38px !important;
    height: 38px !important;
    border-radius: 50% !important;
    cursor: pointer !important;
    font-size: 20px !important;
    display: grid !important;
    place-items: center !important;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .4) !important;
    z-index: 10 !important;
    backdrop-filter: blur(6px) !important;
    transition: .2s !important;
}

.modal-img .close:hover {
    background: #D4AF37 !important;
    color: #050E0D !important;
}

.modal-body {
    flex: 1 !important;
    padding: 28px 26px !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 14px !important;
    justify-content: space-between !important;
}

.toast {
    position: fixed;
    top: 24px;
    right: 24px;
    background: #050E0D;
    border: 1px solid rgba(212, 175, 55, .3);
    color: white;
    padding: 14px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .5);
    z-index: 120;
    transform: translateY(-100px);
    opacity: 0;
    transition: .3s;
}

.toast.show {
    transform: translateY(0);
    opacity: 1;
}

/* ============================================================
   RESPONSIVE DESIGN & MOBILE OPTIMIZATIONS
   ============================================================ */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 36px 0 24px;
    }

    .why-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .story-img-wrap img {
        height: 280px;
    }

    .contact {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 76px; /* Prevents mobile bar overlap */
    }

    .container {
        padding: 0 16px;
    }

    /* Topbar on Mobile */
    .topbar .container {
        padding: 6px 16px;
        font-size: 11px;
        justify-content: center;
        text-align: center;
        gap: 6px;
    }

    .topbar a {
        display: none;
    }

    /* Header on Mobile: Logo smaller + Phone removed + Hamburger only */
    header .nav {
        height: 60px;
        padding: 4px 0 !important;
    }

    .logo img {
        height: 44px;
        max-height: 48px;
        max-width: 165px;
    }

    .navlinks {
        display: none;
    }

    .cta-phone {
        display: none !important; /* Explicitly removed on mobile to prevent crowding */
    }

    .hamburger {
        display: grid;
        width: 38px;
        height: 38px;
        font-size: 20px;
    }

    /* Hero Section on Mobile */
    .hero {
        padding-top: 8px;
    }

    .hero-grid {
        padding: 16px 0 24px;
        gap: 24px;
    }

    .hero h1 {
        font-size: clamp(26px, 7.5vw, 36px);
        line-height: 1.15;
        margin: 12px 0;
        word-break: break-word;
    }

    .hero p.lead {
        font-size: 14px;
        line-height: 1.55;
    }

    .hero-actions {
        display: flex;
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .hero-actions .btn-primary,
    .hero-actions .btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 14px;
        box-sizing: border-box;
    }

    .trust {
        font-size: 12px;
        gap: 10px;
    }

    /* Booking Card on Mobile */
    .booking-card {
        border-radius: 18px;
    }

    .booking-head {
        padding: 14px 16px;
    }

    .booking-head h3 {
        font-size: 14px;
    }

    .booking-body {
        padding: 14px;
        gap: 10px;
    }

    .field input, .field select {
        padding: 11px 12px;
        font-size: 14px;
    }

    /* Sections General */
    .section {
        padding: 44px 0;
    }

    .section-head {
        margin-bottom: 24px;
    }

    .section-head h2 {
        font-size: clamp(22px, 6vw, 30px);
        line-height: 1.2;
    }

    .section-head p {
        font-size: 13px;
    }

    /* Fleet Grid */
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .car-img img {
        height: 200px;
    }

    .car-body {
        padding: 14px;
    }

    .car-body p {
        min-height: auto;
        font-size: 12px;
    }

    /* Filter Pills */
    .filter-pills {
        gap: 6px;
        margin-bottom: 20px;
    }

    .pill {
        padding: 8px 14px;
        font-size: 12px;
    }

    /* Why Grid */
    .why-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .why-card {
        padding: 16px 14px;
    }

    /* Story Section */
    .story-img-wrap img {
        height: 220px;
    }

    .story-badge {
        padding: 14px;
    }

    /* Gallery Grid */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    .gallery-item {
        height: 140px;
        border-radius: 12px;
    }

    /* FAQ */
    .faq-q {
        padding: 14px 16px;
        font-size: 14px;
    }

    .faq-a {
        padding: 0 16px 14px;
        font-size: 13px;
    }

    /* Contact & Form */
    .info-card, .form-card {
        padding: 20px 16px;
        border-radius: 18px;
    }

    .map {
        height: 180px;
    }

    /* Footer */
    footer {
        padding: 32px 0 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    /* Mobile Fixed Bottom Bar & FAB */
    .mobile-bar {
        display: flex;
    }

    .fab {
        display: none; /* Hidden on mobile to avoid overlapping the bottom bar */
    }

    /* Modal on Mobile */
    .modal {
        padding: 10px;
    }

    .modal-card {
        flex-direction: column !important;
        max-height: 88vh;
        overflow-y: auto;
        border-radius: 18px;
    }

    .modal-img {
        width: 100% !important;
        height: 180px !important;
        min-height: 180px !important;
    }

    .modal-body {
        padding: 16px !important;
        gap: 10px !important;
    }

    .modal-body h3 {
        font-size: 18px !important;
    }
}

@media (max-width: 480px) {
    .grid2 {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .topbar .container span:first-child {
        display: block;
    }

    .hero h1 {
        font-size: 25px;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .gallery-item {
        height: 180px;
    }

    .mobile-bar {
        padding: 8px 10px calc(8px + env(safe-area-inset-bottom, 0px));
        gap: 8px;
    }

    .mobile-bar a {
        font-size: 12.5px;
        padding: 12px 8px;
    }
}
