/* 
    DC RENTAL BALI - DESIGN SYSTEM 2026
    SXO, AEO, & Performance Optimized
*/

:root {
    /* Color Palette (Dark Theme - Aligned with Gold Logo) */
    --primary: #D4AF37;
    /* Metallic Gold */
    --primary-dark: #B8962E;
    --primary-light: #E5C365;
    --secondary: #000000;
    /* Pure Black */
    --accent: #D4AF37;
    --text-main: #F5F5F5;
    /* Light text */
    --text-muted: #A3A3A3;
    /* Muted light text */
    --bg-light: #0A0A0A;
    /* Main dark background */
    --bg-soft: #121212;
    /* Section dark background */
    --element-bg: #1A1A1A;
    /* Card background */
    --true-white: #FFFFFF;
    --black: #000000;
    --success: #25D366;
    /* WhatsApp Green */

    /* Typography */
    --font-heading: 'ConthraxSb-Regular', 'Plus Jakarta Sans', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.5);
    --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.7);

    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);

    /* Borders */
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
}

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-main);
    background: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 24px;
}

h1,
h2,
h3,
h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    cursor: pointer;
    gap: 10px;
    transition: var(--transition);
    border: none;
    font-family: var(--font-heading);
}

.btn-primary {
    background: var(--primary);
    color: var(--true-white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
}

.btn-outline:hover {
    background: var(--primary);
    color: var(--true-white);
}

.btn-wa {
    background: #25D366;
    color: #fff !important;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
}

.btn-wa:hover {
    background: #128C7E;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    color: #fff !important;
}

/* Header Styling */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(10, 10, 10, 0.9);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

/* WP admin bar is also fixed at top:0 — push our fixed header down so they don't overlap. */
body.admin-bar .site-header {
    top: 32px;
}
@media screen and (max-width: 782px) {
    body.admin-bar .site-header {
        top: 46px;
    }
}

.site-header.scrolled {
    padding: 10px 0;
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
    transition: var(--transition);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.nav-list {
    display: flex;
    gap: 32px;
}

.nav-link {
    font-weight: 500;
    font-size: 15px;
    color: var(--text-main);
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary);
}

.nav-link-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
}

.dropdown-toggle {
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
}

.dropdown-toggle:hover {
    color: var(--primary);
}

/* Dropdown */
.has-dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--element-bg);
    min-width: max-content;
    padding: 12px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
}

.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 16px;
    color: var(--text-main);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.dropdown-menu li a:hover {
    background: rgba(255, 107, 0, 0.1);
    color: var(--primary);
}

/* Hero Section */
.hero {
    padding: 180px 0 100px;
    background: radial-gradient(circle at 70% 30%, rgba(212, 175, 55, 0.08) 0%, transparent 50%),
        var(--bg-light);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 70%);
    filter: blur(100px);
    z-index: 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    align-items: center;
    gap: 60px;
    position: relative;
    z-index: 1;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-card {
    background: rgba(26, 26, 26, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    text-align: left;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.2);
    color: var(--primary);
    border-radius: 50px;
    font-weight: 700;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 25px;
}

.hero-title {
    font-size: 56px;
    margin-bottom: 12px;
    color: var(--text-main);
    letter-spacing: -1px;
    font-family: var(--font-heading);
}

.hero-subtitle {
    font-size: 20px;
    color: var(--text-muted);
    margin-bottom: 18px;
    line-height: 1.4;
    font-family: var(--font-body);
}

.hero-locations {
    display: flex;
    gap: 12px;
    align-items: center;
    margin-bottom: 30px;
    font-size: 13px;
    color: var(--primary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    flex-wrap: wrap;
}

.hero-locations .divider {
    color: rgba(255, 255, 255, 0.2);
}

.hero-checklist {
    margin-bottom: 35px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.hero-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 15px;
    color: var(--text-main);
}

.checklist-icon {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
    flex-shrink: 0;
}

.hero-rating-block {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 35px;
    background: rgba(255, 255, 255, 0.02);
    padding: 10px 18px;
    border-radius: 50px;
    width: fit-content;
    border: 9px solid rgba(255, 255, 255, 0.05);
    border-width: 1px;
}

.rating-stars {
    color: #FFD700;
    font-size: 14px;
    display: flex;
    gap: 2px;
}

.rating-text {
    font-size: 13px;
    color: var(--text-muted);
}

.hero-btns-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 15px;
}

.btn-wa-hero {
    background: #25D366;
    color: #fff !important;
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    border-radius: 10px;
    padding: 16px 20px;
    transition: var(--transition);
    text-align: center;
    border: none;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.2);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.btn-wa-hero:hover {
    background: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
}

.btn-view-bikes {
    border: 2px solid var(--primary);
    color: var(--primary);
    background: transparent;
    padding: 16px 20px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 13px;
    font-family: var(--font-heading);
    transition: var(--transition);
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.btn-view-bikes:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-2px);
}


@keyframes floating {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Vehicle Cards */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 40px;
    margin-bottom: 16px;
}

.bike-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.bike-card {
    background: var(--element-bg);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.bike-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.bike-img {
    position: relative;
    overflow: hidden;
    height: 240px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.02);
}

.bike-img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

.bike-card:hover .bike-img img {
    transform: scale(1.1);
}

.bike-info {
    padding: 24px;
    text-align: center;
}

.bike-info h3 {
    font-size: 18px;
    font-family: var(--font-heading);
    margin-bottom: 20px;
}

.price-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    margin-bottom: 20px;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    overflow: hidden;
}

.price-table thead {
    background: var(--primary);
}

.price-table th {
    padding: 12px 15px;
    text-align: left;
    color: var(--secondary);
    font-weight: 700;
    text-transform: capitalize;
}

.price-table td {
    padding: 14px 15px;
    text-align: left;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
}

.price-table th:last-child,
.price-table td:last-child {
    text-align: right;
}

.price-table tr:last-child td {
    border-bottom: none;
}

.price-table tr.highlight {
    background: rgba(212, 175, 55, 0.08) !important;
}

.price-table tr.highlight td {
    color: var(--primary);
    font-weight: 600;
}

.price-table td:last-child {
    color: var(--true-white);
    font-family: var(--font-heading);
    font-size: 13px;
}

.price-note {
    font-size: 11px;
    color: var(--text-muted);
    line-height: 1.4;
    margin-bottom: 25px;
    text-align: left;
}

.dcrb-reassurance {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    font-size: 15px;
    font-weight: 600;
    color: var(--true-white);
    text-align: center;
}

.dcrb-reassurance i {
    color: var(--primary);
}

.bike-features {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
    font-size: 11px;
    color: var(--text-muted);
}

.bike-features span {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.03);
    white-space: nowrap;
}

.bike-features .feat-sep {
    padding: 0;
    border: none;
    background: none;
    color: rgba(255, 255, 255, 0.2);
}

.bike-includes {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    column-gap: 10px;
    row-gap: 4px;
    margin: -8px 0 20px;
    font-size: 11px;
    color: var(--text-muted);
    opacity: 0.8;
}

.bike-includes span:not(:last-child)::after {
    content: "\2022";
    margin-left: 10px;
    color: rgba(255, 255, 255, 0.2);
}

/* Footer Styling */
.site-footer {
    background: var(--secondary);
    color: var(--text-main);
    padding: 60px 0 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 40px;
}

.footer-brand .footer-logo {
    margin-bottom: 25px;
}

.footer-tagline {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 25px;
    max-width: 300px;
}

.footer-heading {
    margin-bottom: 25px;
    font-size: 18px;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 14px;
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(5px);
    display: inline-block;
}

.footer-contact li {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    color: var(--text-muted);
    font-size: 13px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary);
    margin-top: 4px;
}

.footer-bottom {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 13px;
    color: var(--text-muted);
}

.credit-line a {
    color: var(--primary);
    font-weight: 600;
}

.credit-line a:hover {
    text-decoration: underline;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    margin-right: 10px;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--primary);
    color: var(--secondary);
    transform: translateY(-3px);
}

.payment-icons {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.payment-label {
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pay-logo {
    height: 28px;
    width: auto;
    opacity: 0.9;
    transition: var(--transition);
}

.pay-logo:hover {
    opacity: 1;
}

.pay-badge {
    font-size: 20px;
    color: var(--text-muted);
    margin-right: 15px;
    opacity: 0.6;
    transition: var(--transition);
}

.pay-badge:hover {
    opacity: 1;
    color: var(--primary);
}

.float-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--success);
    color: var(--true-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 30px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.4);
    z-index: 2000;
    animation: pulse 2s infinite;
}

.float-wa-tooltip {
    position: absolute;
    right: 75px;
    background: var(--element-bg);
    color: var(--text-main);
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 1;
    visibility: visible;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(255, 255, 255, 0.1);
    pointer-events: none;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }

    70% {
        transform: scale(1.05);
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }

    100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
    padding: 10px;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--text-main);
    transition: var(--transition);
}

body.nav-open .hamburger span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

body.nav-open .hamburger span:nth-child(2) {
    opacity: 0;
}

body.nav-open .hamburger span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hamburger {
        display: flex;
        order: 2;
    }

    .header-wa {
        display: none;
    }

    .header-inner {
        height: 70px;
    }

    .logo-img {
        width: 170px;
        height: auto;
    }

    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-light);
        padding: 40px 24px;
        transition: var(--transition);
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }

    body.nav-open .main-nav {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
    }

    .nav-link {
        font-size: 18px;
        flex: 1;
    }

    .nav-link-wrapper {
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
    }

    .dropdown-toggle {
        padding: 10px;
        margin-right: -10px;
        font-size: 20px;
    }

    .has-dropdown.active .dropdown-toggle {
        transform: rotate(180deg);
        color: var(--primary);
    }

    .has-dropdown .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.02);
        margin-top: 15px;
        display: none;
    }

    .has-dropdown.active .dropdown-menu {
        display: block;
    }

    .hero {
        padding: 120px 0 60px;
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .hero p {
        margin: 0 auto 30px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

/* FAQ & Process Sections */
.process-grid,
.faq-grid,
.area-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.process-step {
    background: var(--element-bg);
    padding: 40px 30px;
    border-radius: var(--radius-md);
    text-align: center;
    position: relative;
    border: 1px solid rgba(255, 255, 255, 0.05);
    transition: var(--transition);
}

.process-step:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 20px;
    margin: 0 auto 20px;
    font-family: var(--font-heading);
}

.faq-item {
    background: var(--element-bg);
    border-radius: var(--radius-md);
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.faq-question {
    padding: 20px 25px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--primary);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease-out;
    color: var(--text-muted);
    font-size: 15px;
    line-height: 1.6;
}

.faq-answer p {
    margin: 0 0 12px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 600px;
}

.faq-item.active .faq-question {
    color: var(--primary);
}

.area-badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary);
    padding: 12px 20px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

@media (max-width: 992px) {
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--bg-light);
        padding: 40px 24px;
        transition: var(--transition);
        overflow-y: auto;
        border-top: 1px solid rgba(255, 255, 255, 0.05);
    }
    
    .hero-btns-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 110px 0 50px;
        background: var(--bg-light);
    }

    .hero-grid {
        grid-template-columns: 1fr;
        text-align: left;
        gap: 30px;
    }

    .hero-image {
        display: none !important;
    }

    .hero-card {
        background: #FFFFFF !important;
        color: #111111 !important;
        padding: 30px 24px;
        border-radius: var(--radius-md);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);
        border: none;
    }

    .hero-badge {
        background: rgba(212, 175, 55, 0.1) !important;
        border: 1px solid rgba(212, 175, 55, 0.2) !important;
        color: var(--primary-dark) !important;
        font-size: 10px;
        padding: 6px 12px;
        margin-bottom: 15px;
    }

    .hero-title {
        color: #111111 !important;
        font-size: 36px;
        margin-bottom: 6px;
    }

    .hero-subtitle {
        color: #444444 !important;
        font-size: 16px;
        margin-bottom: 15px;
    }

    .hero-locations {
        margin-bottom: 22px;
        font-size: 12px;
        color: var(--primary-dark) !important;
        gap: 10px;
    }

    .hero-locations .divider {
        color: #cccccc !important;
    }

    .hero-checklist {
        margin-bottom: 25px;
        gap: 12px;
    }

    .hero-checklist li {
        color: #222222 !important;
        font-size: 13.5px;
        line-height: 1.4;
        gap: 10px;
    }

    .checklist-icon {
        color: var(--primary-dark) !important;
        font-size: 16px;
        margin-top: 1px;
    }

    .hero-rating-block {
        background: rgba(0, 0, 0, 0.03) !important;
        border: 1px solid rgba(0, 0, 0, 0.05) !important;
        margin-bottom: 25px;
        padding: 8px 15px;
    }

    .rating-text {
        color: #444444 !important;
        font-size: 12px;
    }

    .hero-btns-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .btn-wa-hero {
        width: 100%;
        padding: 14px 15px;
        font-size: 12.5px;
    }

    .btn-view-bikes {
        width: 100%;
        border-color: #333333 !important;
        color: #333333 !important;
        padding: 14px 15px;
        font-size: 12.5px;
    }

    .btn-view-bikes:hover {
        background: #333333 !important;
        color: #FFFFFF !important;
    }

    .bike-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .float-wa {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }

    .float-wa-tooltip {
        display: none;
    }

    .footer-grid {
        grid-template-columns: 1fr;
    }

    .section-title h2 {
        font-size: 28px;
    }

    .btn {
        width: 100%;
        margin-bottom: 10px;
    }
}

/* ==========================================================================
   STATS DASHBOARD - PREMIUM DARK THEME
   ========================================================================== */
.stats-body {
    background-color: #050505;
    color: #f5f5f5;
    font-family: 'Inter', sans-serif;
    padding-top: 100px;
    padding-bottom: 60px;
}

.stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.stats-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    padding-bottom: 20px;
    flex-wrap: wrap;
    gap: 20px;
}

.stats-title {
    font-family: var(--font-heading);
    font-size: 28px;
    color: var(--true-white);
    display: flex;
    align-items: center;
    gap: 15px;
}

.stats-title span {
    color: var(--primary);
}

.stats-btn-logout {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    font-size: 14px;
    cursor: pointer;
    font-family: var(--font-heading);
}

.stats-btn-logout:hover {
    background: #ff3333;
    border-color: #ff3333;
    color: #fff;
}

/* KPI Grid */
.kpi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.kpi-card {
    background: var(--element-bg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 25px;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.kpi-card:hover {
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-3px);
}

.kpi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--primary);
    opacity: 0.5;
}

.kpi-label {
    font-size: 12px;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    font-weight: 600;
}

.kpi-value {
    font-size: 32px;
    font-weight: 800;
    color: var(--true-white);
    line-height: 1;
    font-family: var(--font-heading);
}

.kpi-value.gold {
    color: var(--primary);
}

.kpi-meta {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 10px;
}

/* Two Column Layout */
.stats-row {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .stats-row {
        grid-template-columns: 1fr;
    }
}

.stats-card {
    background: var(--element-bg);
    border: 1px solid rgba(255, 255, 255, 0.03);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
}

.stats-card-title {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--true-white);
    margin-bottom: 25px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.stats-card-title i {
    color: var(--primary);
}

/* Custom Table style */
.stats-table-wrapper {
    overflow-x: auto;
}

.stats-table {
    width: 100%;
    border-collapse: collapse;
    text-align: left;
    font-size: 14px;
}

.stats-table th {
    padding: 12px 15px;
    color: var(--primary);
    font-weight: 700;
    border-bottom: 2px solid rgba(255, 255, 255, 0.05);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

.stats-table td {
    padding: 14px 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.03);
    color: rgba(255, 255, 255, 0.8);
}

.stats-table tr:hover td {
    background: rgba(255, 255, 255, 0.01);
}

/* Progress bar style */
.bar-container {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.bar-label {
    width: 120px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.bar-outer {
    flex-grow: 1;
    height: 8px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    overflow: hidden;
}

.bar-inner {
    height: 100%;
    background: var(--primary);
    border-radius: 10px;
    transition: width 1s ease-out;
}

.bar-val {
    width: 50px;
    font-size: 13px;
    font-weight: 700;
    text-align: right;
    font-family: var(--font-heading);
    color: var(--true-white);
}

/* Login Card style */
.login-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: calc(100vh - 100px);
}

.login-card {
    background: var(--element-bg);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: var(--radius-md);
    padding: 40px;
    width: 100%;
    max-width: 400px;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.login-logo {
    width: 150px;
    margin: 0 auto 30px;
}

.login-title {
    font-family: var(--font-heading);
    font-size: 20px;
    margin-bottom: 10px;
    color: var(--true-white);
}

.login-subtitle {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 30px;
}

.login-form input {
    width: 100%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    color: var(--true-white);
    font-size: 16px;
    text-align: center;
    letter-spacing: 4px;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    transition: var(--transition);
}

.login-form input:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}

.login-form button {
    width: 100%;
    background: var(--primary);
    color: var(--secondary);
    border: none;
    padding: 14px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 15px;
    font-family: var(--font-heading);
    cursor: pointer;
    transition: var(--transition);
}

.login-form button:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.login-error {
    background: rgba(255, 51, 51, 0.1);
    border: 1px solid rgba(255, 51, 51, 0.2);
    color: #ff3333;
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    font-size: 13px;
    font-weight: 600;
}
/* ===== WP-editable content (Classic Editor prose) ===== */
.prose h1, .prose h2, .prose h3, .prose h4 {
    color: var(--text-main);
    margin: 30px 0 15px;
}
.prose h2 { font-size: 32px; }
.prose h3 { font-size: 22px; }
.prose p { margin-bottom: 20px; }
.prose ul, .prose ol { list-style: disc; padding-left: 22px; margin-bottom: 20px; }
.prose ul { list-style: disc; }
.prose ol { list-style: decimal; }
.prose li { margin-bottom: 8px; }
.prose a { color: var(--primary); text-decoration: underline; }
.prose strong { color: var(--text-main); }
.prose img { border-radius: var(--radius-md); margin: 20px 0; }
.prose blockquote {
    border-left: 4px solid var(--primary);
    background: var(--bg-soft);
    padding: 20px 24px;
    margin: 30px 0;
    color: var(--text-main);
}

/* ===== Blog (native WP posts) ===== */
.blog-card { box-shadow: var(--shadow-sm); border-radius: var(--radius-md); overflow: hidden; background: var(--element-bg); border: 1px solid rgba(255,255,255,0.05); }
.blog-card img { width: 100%; height: 220px; object-fit: cover; }
.blog-card .blog-card-body { padding: 25px; }
.blog-card .blog-cat { color: var(--primary); font-weight: 700; font-size: 12px; text-transform: uppercase; }
.blog-card h2 { font-size: 20px; margin: 15px 0; }
.blog-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 20px; }
.blog-meta { color: var(--text-muted); font-size: 13px; }
.blog-cta-box { background: var(--bg-soft); padding: 30px; border-left: 4px solid var(--primary); margin: 30px 0; border-radius: var(--radius-sm); }
.blog-cta-box h4 { color: var(--text-main); margin-bottom: 10px; }
.pagination-links { display: flex; gap: 10px; justify-content: center; margin-top: 50px; }
.pagination-links a, .pagination-links span { padding: 10px 18px; border-radius: var(--radius-sm); background: var(--element-bg); color: var(--text-main); }
.pagination-links span.current { background: var(--primary); color: var(--secondary); font-weight: 700; }

/* ===== Contact page ===== */
.contact-card { background: var(--bg-soft); padding: 40px; border-radius: var(--radius-md); }
.contact-card h3 { margin-bottom: 20px; color: var(--text-main); }
.contact-row { margin-bottom: 20px; }
.contact-row strong { display: block; margin-bottom: 5px; color: var(--text-main); }
.contact-row a { color: var(--primary); }
.contact-map iframe { width: 100%; height: 400px; border: 0; border-radius: var(--radius-md); }

/* ===== 404 ===== */
.error-404-wrap { padding: 180px 0 120px; text-align: center; }
.error-404-wrap .error-code { font-family: var(--font-heading); font-size: 120px; color: var(--primary); line-height: 1; }

/* ===== Booking modal + confirmation page ===== */
body.modal-open { overflow: hidden; }
.dcrb-honeypot { position: absolute !important; left: -9999px !important; width: 1px; height: 1px; opacity: 0; }

.dcrb-modal-overlay {
    position: fixed; inset: 0; z-index: 2000;
    background: rgba(0,0,0,.75);
    display: flex; align-items: center; justify-content: center;
    padding: 20px;
    opacity: 0; visibility: hidden;
    transition: var(--transition);
}
.dcrb-modal-overlay.open { opacity: 1; visibility: visible; }

.dcrb-modal {
    background: var(--element-bg);
    border: 1px solid rgba(212,175,55,.2);
    border-radius: var(--radius-md);
    padding: 36px;
    max-width: 440px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: var(--shadow-lg);
}
.dcrb-modal h3 { font-size: 22px; margin-bottom: 6px; padding-right: 30px; }
.dcrb-booking-price-ref { color: var(--text-muted); font-size: 14px; margin-bottom: 24px; }

.dcrb-modal-close {
    position: absolute; top: 20px; right: 20px;
    background: none; border: none; color: var(--text-muted);
    font-size: 28px; line-height: 1; cursor: pointer;
}
.dcrb-modal-close:hover { color: var(--primary); }

.dcrb-form-row { margin-bottom: 16px; }
.dcrb-form-row label {
    display: block; font-size: 13px; font-weight: 600;
    color: var(--text-muted); margin-bottom: 6px;
    text-transform: uppercase; letter-spacing: .03em;
}
.dcrb-field-hint {
    text-transform: none;
    font-weight: 400;
    color: rgba(255,255,255,.35);
    letter-spacing: 0;
}
.dcrb-form-row input, .dcrb-form-row textarea, .dcrb-form-row select {
    width: 100%; padding: 12px 14px;
    background: rgba(255,255,255,.03);
    border: 1px solid rgba(255,255,255,.1);
    border-radius: var(--radius-sm);
    color: var(--text-main);
    font-family: var(--font-body);
    font-size: 14px;
    box-sizing: border-box;
}
.dcrb-form-row select {
    -webkit-appearance: none; appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23A3A3A3'%3E%3Cpath d='M4 6l4 4 4-4H4z'/%3E%3C/svg%3E");
    background-repeat: no-repeat; background-position: right 12px center;
    padding-right: 36px; cursor: pointer;
}
.dcrb-form-row select option { background: var(--element-bg); color: var(--text-main); }
.dcrb-form-row input:focus, .dcrb-form-row textarea:focus, .dcrb-form-row select:focus {
    outline: none; border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212,175,55,.15);
}
.dcrb-form-error {
    background: rgba(255,51,51,.1); border: 1px solid rgba(255,51,51,.2);
    color: #ff6b6b; padding: 12px; border-radius: var(--radius-sm);
    margin-bottom: 16px; font-size: 13px; font-weight: 600;
}

.dcrb-booking-card {
    background: var(--element-bg);
    border: 1px solid rgba(255,255,255,.05);
    border-radius: var(--radius-md);
    padding: 30px;
    margin-bottom: 24px;
}
.dcrb-booking-summary { display: flex; gap: 20px; align-items: center; }
.dcrb-booking-summary img { width: 100px; height: 100px; object-fit: contain; border-radius: var(--radius-sm); background: rgba(255,255,255,.02); }
