:root {
    --brand: #92d40e;
    --brand-dark: #64a300;
    --ink: #080b08;
    --panel: #111611;
    --muted: #6f776f;
    --line: rgba(255, 255, 255, 0.12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #152015;
    background: #f7f9f4;
}

.site-nav {
    background: rgba(5, 7, 5, 0.88);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(146, 212, 14, 0.22);
}
.navbar-brand img,
.site-footer img {
    border-radius: 50%;
    object-fit: cover;
}
.navbar-brand span {
    color: #fff;
    font-weight: 900;
    letter-spacing: 0;
}
.navbar .nav-link { color: rgba(255, 255, 255, 0.78); font-weight: 700; }
.navbar .nav-link:hover { color: var(--brand); }
.navbar-toggler { border-color: rgba(255, 255, 255, 0.35); }
.navbar-toggler-icon { filter: invert(1); }

.btn-brand {
    background: var(--brand);
    border: 1px solid var(--brand);
    color: #101510;
    font-weight: 900;
    border-radius: 8px;
    box-shadow: 0 12px 28px rgba(146, 212, 14, 0.22);
}
.btn-brand:hover { background: #a8ed20; border-color: #a8ed20; color: #101510; }
.btn-outline-light { border-radius: 8px; font-weight: 800; }

.hero-section {
    min-height: 94vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 112px 0 48px;
    background: radial-gradient(circle at 78% 24%, rgba(146, 212, 14, 0.28), transparent 28%), linear-gradient(135deg, #040604 0%, #121812 58%, #050605 100%);
    color: #fff;
}
.hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0 0;
    height: 150px;
    background: linear-gradient(180deg, transparent, #f7f9f4);
}
.hero-content { position: relative; z-index: 1; }
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--brand);
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0;
    margin-bottom: 14px;
}
.hero-copy h1 {
    font-size: clamp(2.7rem, 7vw, 5.6rem);
    line-height: 0.95;
    font-weight: 950;
    margin: 0 0 18px;
    max-width: 760px;
}
.hero-copy p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1.12rem;
    max-width: 580px;
}
.hero-actions,
.hero-points {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}
.hero-points span {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.82);
    font-weight: 700;
}
.hero-media {
    display: grid;
    place-items: center;
}
.hero-media img {
    width: min(100%, 560px);
    aspect-ratio: 1 / 1;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 26px 80px rgba(0, 0, 0, 0.48);
}

.section-pad { padding: 86px 0; }
.section-heading { max-width: 760px; margin-bottom: 32px; }
.section-heading h2,
.booking-section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    font-weight: 950;
    margin-bottom: 14px;
}
.section-heading p,
.booking-section p { color: var(--muted); font-size: 1.05rem; }
.vehicle-card,
.info-item,
.booking-form,
.rate-table-wrap {
    background: #fff;
    border: 1px solid rgba(20, 28, 20, 0.08);
    border-radius: 8px;
    box-shadow: 0 16px 44px rgba(15, 24, 15, 0.08);
}
.vehicle-card {
    padding: 24px;
    height: 100%;
}
.vehicle-card > span {
    color: var(--muted);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.8rem;
}
.vehicle-card h3 { font-weight: 950; margin: 8px 0 20px; }
.vehicle-icon {
    width: 54px;
    height: 54px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #eaf8c7;
    color: #314400;
    font-size: 1.8rem;
    margin-bottom: 18px;
}
.vehicle-icon.bike { background: #e7eef9; color: #13315c; }
.price-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}
.price-row div {
    background: #f5f7f2;
    border-radius: 8px;
    padding: 10px;
    min-width: 0;
}
.price-row small { display: block; color: var(--muted); font-weight: 800; }
.price-row strong { display: block; font-size: 0.98rem; }

.rates-section { background: #111611; color: #fff; }
.rates-section .section-heading p { color: rgba(255, 255, 255, 0.68); }
.sticky-copy { position: sticky; top: 96px; }
.brochure-preview {
    width: 100%;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    margin-top: 18px;
}
.rate-table-wrap { overflow: hidden; margin-bottom: 24px; }
.table-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 18px 20px;
    background: var(--brand);
    color: #101510;
}
.table-title h3 { margin: 0; font-weight: 950; }
.table-title i { font-size: 1.7rem; }
.rate-table th {
    background: #050705;
    color: #fff;
    white-space: nowrap;
}
.rate-table td { font-weight: 800; white-space: nowrap; }

.info-band { background: #eef4e4; }
.info-item { padding: 28px; height: 100%; }
.info-item i { color: var(--brand-dark); font-size: 2.2rem; }
.info-item h3 { margin: 14px 0 8px; font-weight: 950; }
.info-item p { color: var(--muted); margin: 0; }

.booking-section { background: #fff; }
.quick-call {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #111611;
    font-weight: 950;
    text-decoration: none;
    margin-top: 12px;
}
.quick-call i { color: #25d366; font-size: 1.7rem; }
.booking-form { padding: 28px; }
.form-control,
.form-select {
    border-radius: 8px;
    padding: 12px 14px;
    border-color: #dce4d5;
}
.form-control:focus,
.form-select:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 0.25rem rgba(146, 212, 14, 0.2);
}
.form-label { font-weight: 850; }

.site-footer {
    background: #050705;
    color: #fff;
    padding: 46px 0;
}
.site-footer p { color: rgba(255, 255, 255, 0.62); }
.site-footer h3 {
    color: #fff;
    font-size: 1.05rem;
    font-weight: 950;
    margin-bottom: 16px;
}
.footer-brand-block,
.footer-link-block,
.footer-social-block {
    height: 100%;
}
.footer-brand-block strong { display: block; font-size: 1.15rem; }
.footer-brand-block a,
.footer-brand-block span,
.footer-link-block a {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.74);
    text-decoration: none;
    font-weight: 800;
    margin-bottom: 10px;
}
.footer-brand-block i,
.footer-link-block a:hover,
.footer-brand-block a:hover { color: var(--brand); }
.footer-link-block a { width: fit-content; }
.social-icons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.social-icons a {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 8px;
    color: #fff;
    text-decoration: none;
    font-size: 1.25rem;
}
.social-icons a:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #101510;
}
.floating-whatsapp {
    position: fixed;
    right: 18px;
    bottom: 18px;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    font-size: 1.8rem;
    z-index: 30;
    box-shadow: 0 14px 34px rgba(37, 211, 102, 0.35);
}
.floating-whatsapp:hover { color: #fff; transform: translateY(-2px); }

@media (max-width: 991px) {
    .hero-section { min-height: auto; }
    .hero-media img { width: min(82vw, 420px); }
    .sticky-copy { position: static; }
}

@media (max-width: 575px) {
    .section-pad { padding: 62px 0; }
    .hero-section { padding-top: 96px; }
    .hero-actions .btn { width: 100%; }
    .hero-points span { width: 100%; justify-content: center; }
    .price-row { grid-template-columns: 1fr; }
    .booking-form { padding: 20px; }
    .footer-link-block, .footer-social-block { padding-top: 8px; }
    .floating-whatsapp { width: 52px; height: 52px; }
}

.page-hero {
    padding: 132px 0 58px;
    background: linear-gradient(135deg, #050705, #172017);
    color: #fff;
}
.page-hero h1 {
    font-size: clamp(2.2rem, 7vw, 4.6rem);
    line-height: 1;
    font-weight: 950;
    max-width: 850px;
}
.page-hero p { color: rgba(255,255,255,.72); max-width: 620px; font-size: 1.08rem; }
.nav-link.active { color: var(--brand) !important; }
.vehicle-photo { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-radius: 8px; margin-bottom: 16px; background: #eef4e4; }

.admin-login-wrap { min-height: 100vh; display: grid; place-items: center; padding: 110px 16px 48px; background: #eef4e4; }
.admin-login { width: min(100%, 420px); background: #fff; border-radius: 8px; padding: 28px; box-shadow: 0 18px 48px rgba(15,24,15,.12); }
.admin-login img { width: 86px; height: 86px; object-fit: cover; border-radius: 50%; display: block; margin: 0 auto 16px; }
.admin-login h1 { text-align: center; font-weight: 950; margin-bottom: 18px; }
.admin-shell { display: grid; grid-template-columns: 250px minmax(0, 1fr); min-height: 80vh; padding-top: 76px; background: #f7f9f4; }
.admin-shell aside { background: #071007; color: #fff; padding: 22px; position: sticky; top: 76px; height: calc(100vh - 76px); }
.admin-shell aside .brand { display: flex; align-items: center; gap: 10px; color: #fff; text-decoration: none; font-weight: 950; margin-bottom: 24px; }
.admin-shell aside img { width: 42px; height: 42px; object-fit: cover; border-radius: 50%; }
.admin-shell nav { display: grid; gap: 8px; }
.admin-shell nav a { color: rgba(255,255,255,.78); text-decoration: none; padding: 11px 12px; border-radius: 8px; font-weight: 800; }
.admin-shell nav a:hover { background: rgba(146,212,14,.14); color: var(--brand); }
.admin-shell main { padding: 28px; min-width: 0; }
.admin-shell h1 { font-weight: 950; margin-bottom: 22px; }
.admin-card, .admin-stat { background: #fff; border: 1px solid rgba(20,28,20,.08); border-radius: 8px; box-shadow: 0 12px 34px rgba(15,24,15,.07); padding: 22px; }
.admin-card h2 { font-size: 1.25rem; font-weight: 950; }
.admin-stat span { display: block; color: var(--muted); font-weight: 800; }
.admin-stat strong { display: block; font-size: 2.7rem; line-height: 1; }
.admin-card .table { min-width: 760px; }

@media (max-width: 800px) {
    .admin-shell { grid-template-columns: 1fr; padding-top: 76px; }
    .admin-shell aside { position: static; height: auto; }
    .admin-shell nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .admin-shell main { padding: 18px; }
}

.why-rent-section { background: #fff; }
.feature-tile,
.process-step,
.choose-item {
    background: #fff;
    border: 1px solid rgba(20, 28, 20, 0.08);
    border-radius: 8px;
    box-shadow: 0 14px 38px rgba(15, 24, 15, 0.07);
}
.feature-tile {
    min-height: 220px;
    padding: 30px;
}
.feature-tile i {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #eaf8c7;
    color: #314400;
    font-size: 1.9rem;
    margin-bottom: 18px;
}
.feature-tile h3,
.process-step strong { font-weight: 950; }
.feature-tile p,
.about-section p,
.process-step p { color: var(--muted); margin-bottom: 0; }

.about-section {
    background: linear-gradient(135deg, #0a100a, #172017);
    color: #fff;
}
.about-section h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.05;
    font-weight: 950;
}
.about-section p { color: rgba(255,255,255,.74); font-size: 1.05rem; }

.choose-section { background: #f7f9f4; }
.choose-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}
.choose-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 18px;
    font-weight: 850;
}
.choose-item i {
    flex: 0 0 42px;
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 8px;
    background: #eaf8c7;
    color: var(--brand-dark);
    font-size: 1.35rem;
}
.choose-item span { min-width: 0; }

.booking-process { background: #fff; }
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}
.process-step {
    position: relative;
    padding: 24px;
    min-height: 210px;
}
.step-icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: var(--brand);
    color: #101510;
    font-size: 1.8rem;
    margin-bottom: 18px;
}
.process-step strong { display: block; font-size: 1.08rem; margin-bottom: 8px; }

@media (max-width: 991px) {
    .choose-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .process-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 575px) {
    .feature-tile { min-height: auto; padding: 22px; }
    .choose-grid,
    .process-grid { grid-template-columns: 1fr; }
    .choose-item { align-items: flex-start; }
    .process-step { min-height: auto; }
}

.faq-section { background: #f7f9f4; }
.faq-accordion {
    max-width: 900px;
    margin: 0 auto;
}
.faq-accordion .accordion-item {
    border: 1px solid rgba(20, 28, 20, 0.08);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 12px;
    box-shadow: 0 10px 28px rgba(15, 24, 15, 0.06);
}
.faq-accordion .accordion-button {
    font-weight: 900;
    padding: 18px 20px;
}
.faq-accordion .accordion-button:not(.collapsed) {
    background: #eaf8c7;
    color: #182400;
    box-shadow: none;
}
.faq-accordion .accordion-button:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 0.2rem rgba(146, 212, 14, 0.2);
}
.faq-accordion .accordion-body { color: var(--muted); }
.admin-only-page .admin-shell { padding-top: 0; }
.admin-only-page .admin-shell aside { top: 0; height: 100vh; }
