:root {
    --primary-color: #111111;
    --accent-color: #FC5C04;
    --bg-color: #F8F9FA;
    --card-bg: #FFFFFF;
    --text-main: #1D1D1F;
    --text-muted: #86868B;
    --border-color: #F0F0F0;
    --shadow-soft: 0 4px 20px rgba(0, 0, 0, 0.05);
    --shadow-card: 0 8px 24px rgba(0, 0, 0, 0.08);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-main);
}

.text-orange {
    color: var(--accent-color);
}

.text-center {
    text-align: center;
}

.hidden {
    display: none !important;
}

/* Container */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Navbar */
.navbar {
    background: #fff;
    padding: 15px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: var(--primary-color);
    font-weight: 800;
    font-size: 1.2rem;
    font-style: italic;
    /* Match KK VEHICLE SEWA style */
}

.logo-icon {
    background: var(--accent-color);
    color: white;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    font-size: 1.2rem;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-badge {
    background: #F0FDF4;
    color: #166534;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pulse {
    width: 8px;
    height: 8px;
    background: #22C55E;
    border-radius: 50%;
    animation: pulsar 1.5s infinite;
}

@keyframes pulsar {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0.7);
    }

    70% {
        transform: scale(1);
        box-shadow: 0 0 0 6px rgba(34, 197, 94, 0);
    }

    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(34, 197, 94, 0);
    }
}

.btn {
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    font-size: 0.95rem;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-dark {
    background: var(--primary-color);
    color: white;
    border-radius: 25px;
}

.btn-primary {
    background: var(--accent-color);
    color: white;
}

.btn-block {
    width: 100%;
}

/* Hero Section */
.hero-section {
    display: flex;
    gap: 30px;
    margin-top: 30px;
}

.hero-banner {
    flex: 2;
    background: linear-gradient(to right, #1F2024 40%, rgba(31, 32, 36, 0.5)), url('https://images.unsplash.com/photo-1492144534655-ae79c964c9d7?auto=format&fit=crop&q=80') center/cover;
    border-radius: 24px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    color: white;
}

.hero-banner-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
}

.trust-badge {
    color: var(--accent-color);
    background: rgba(252, 92, 4, 0.15);
    border: 1px solid rgba(252, 92, 4, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-flex;
    font-size: 0.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    gap: 8px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    font-style: italic;
    /* According to the image */
}

.hero-subtitle {
    color: #A0A0A0;
    font-size: 1.05rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.hero-stats {
    display: flex;
    gap: 30px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 255, 255, 0.05);
    padding: 12px 20px;
    border-radius: 12px;
}

.stat-icon {
    color: var(--accent-color);
    font-size: 1.5rem;
}

.stat-text {
    display: flex;
    flex-direction: column;
}

.stat-text strong {
    font-size: 1.5rem;
    font-weight: 800;
}

.stat-text span {
    font-size: 0.7rem;
    color: #A0A0A0;
    font-weight: 600;
    letter-spacing: 1px;
}

/* Hero Form */
.hero-form-card {
    flex: 1;
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.form-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.form-icon {
    background: rgba(252, 92, 4, 0.1);
    color: var(--accent-color);
    width: 40px;
    height: 40px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
}

.form-header h2 {
    font-weight: 800;
    font-size: 1.5rem;
}

.form-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.form-group input {
    width: 100%;
    background: #F8F9FA;
    border: 1px solid #F0F0F0;
    padding: 15px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    outline: none;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: var(--accent-color);
    background: white;
    box-shadow: 0 0 0 3px rgba(252, 92, 4, 0.1);
}

.hero-form-card .btn-primary {
    padding: 18px;
    border-radius: 12px;
    font-size: 1.1rem;
    margin-top: 10px;
}

/* Result Modal Overlay */
.result-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.result-modal {
    background: white;
    border-radius: 24px;
    width: 100%;
    max-width: 1100px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.result-header {
    background: #18181B;
    /* Very dark grayish black */
    color: white;
    padding: 25px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.rh-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-circle {
    width: 50px;
    height: 50px;
    background: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.rh-labels {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 5px;
}

.badge-red {
    background: rgba(220, 38, 38, 0.2);
    color: #EF4444;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}

.last-updated {
    color: #A0A0A0;
    font-size: 0.75rem;
    font-weight: 600;
}

.vehicle-no-display {
    font-size: 2.2rem;
    font-weight: 900;
    font-style: italic;
    margin: 0;
}

.rh-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.status-active-badge {
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 16px;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.status-active-badge span {
    font-size: 0.65rem;
    color: #A0A0A0;
    font-weight: 700;
}

.status-active-badge strong {
    color: #22C55E;
    font-size: 1.1rem;
    font-weight: 800;
}

.close-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    transition: 0.3s;
}

.close-btn:hover {
    background: rgba(255, 255, 255, 0.2);
}

.result-body {
    padding: 40px;
}

.vehicle-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.info-item {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.info-item .label {
    color: var(--text-muted);
    font-size: 0.8rem;
    font-weight: 700;
}

.info-item .label i {
    margin-right: 5px;
}

.info-item strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: var(--primary-color);
}

.bottom-cards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
}

.status-card {
    border-radius: 16px;
    padding: 25px;
    background: #FDFDFD;
}

.insurance-card {
    border: 1px solid rgba(34, 197, 94, 0.2);
    background: linear-gradient(to bottom right, rgba(34, 197, 94, 0.05), white);
}

.puc-card {
    border: 1px solid rgba(252, 92, 4, 0.2);
    background: linear-gradient(to bottom right, rgba(252, 92, 4, 0.05), white);
}

.card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
}

.ch-left {
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 800;
    font-size: 1.1rem;
}

.icon-green {
    color: #22C55E;
}

.icon-orange {
    color: var(--accent-color);
}

.badge-green-small {
    background: #22C55E;
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
}

.badge-orange-small {
    background: var(--accent-color);
    color: white;
    padding: 4px 10px;
    border-radius: 6px;
    font-size: 0.7rem;
    font-weight: 800;
}

.card-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.det-row {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.det-row .label {
    color: var(--text-muted);
    font-size: 0.75rem;
    font-weight: 700;
}

.det-row strong {
    font-size: 1.05rem;
    font-weight: 800;
}

.det-col-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.text-right {
    text-align: right;
}

.auth-card {
    background: #F8F9FA;
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 25px;
}

.auth-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.auth-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: white;
    color: var(--accent-color);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.auth-header .label {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-muted);
}

.auth-header strong {
    font-size: 1.1rem;
    font-weight: 800;
}

.auth-lines {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.aline {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #E0E0E0;
    padding-bottom: 10px;
}

.aline .label {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-muted);
}

.aline strong {
    font-size: 0.9rem;
    font-weight: 700;
}

.warning-box {
    background: rgba(252, 92, 4, 0.1);
    color: #C2410C;
    padding: 15px;
    border-radius: 8px;
    display: flex;
    gap: 10px;
    font-size: 0.8rem;
    font-weight: 600;
    line-height: 1.4;
}

.warning-box i {
    margin-top: 3px;
}

/* Services Section */
.services-section {
    margin-top: 80px;
    margin-bottom: 80px;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 900;
    font-style: italic;
}

.section-subtitle {
    color: var(--text-muted);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    margin-top: 5px;
}

.view-all {
    font-weight: 800;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.service-card {
    background: white;
    border: 1px solid #F0F0F0;
    border-radius: 20px;
    padding: 30px 20px 20px;
    text-align: center;
    transition: 0.3s;
    text-decoration: none;
    color: var(--text-main);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    box-shadow: var(--shadow-card);
    transform: translateY(-5px);
    border-color: rgba(252, 92, 4, 0.3);
}

.service-icon-wrapper {
    width: 50px;
    height: 50px;
    background: rgba(252, 92, 4, 0.05);
    color: var(--accent-color);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1rem;
    font-weight: 800;
    margin-bottom: 8px;
}

.service-card p {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-bottom: 25px;
    flex-grow: 1;
}

.btn-enquire {
    background: #F8F9FA;
    color: var(--accent-color);
    font-weight: 800;
    font-size: 0.8rem;
    padding: 10px 20px;
    border-radius: 20px;
    width: 100%;
    transition: 0.3s;
}

.service-card:hover .btn-enquire {
    background: var(--accent-color);
    color: white;
}

/* Footer (Updated for new aesthetics + hidden lock button) */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
    position: relative;
}

.footer-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-logo {
    color: white;
    margin-bottom: 15px;
}

.footer-col p {
    color: #A0A0A0;
    font-size: 0.9rem;
    margin-top: 10px;
}

.footer-col h4 {
    margin-bottom: 20px;
    font-weight: 700;
    color: white;
}

.footer-col a {
    color: #A0A0A0;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.footer-col a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 20px;
    text-align: center;
    color: #A0A0A0;
    font-size: 0.85rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding-left: 30px;
    padding-right: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.hidden-lock {
    color: #111;
    /* Almost matches footer background so it's hidden */
    font-size: 1.2rem;
    text-decoration: none;
    transition: 0.3s;
    cursor: pointer;
    background: transparent;
    border: none;
}

.hidden-lock:hover {
    color: var(--accent-color);
    /* Reveals on hover */
}

/* Floating WA */
.floating-wa {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 35px;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: 0.3s ease;
}

.floating-wa:hover {
    transform: scale(1.1);
}

@media (max-width: 1024px) {
    .service-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-section {
        flex-direction: column;
    }

    .bottom-cards-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .service-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .vehicle-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-container {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-info-grid {
        grid-template-columns: 1fr;
    }
}

/* Build PUC Banner */
.build-puc-banner {
    background: linear-gradient(135deg, rgba(31, 32, 36, 0.9), rgba(17, 17, 17, 0.9)), url('https://images.unsplash.com/photo-1621905251189-08b45d6a269e?auto=format&fit=crop&q=80') center/cover;
    border-radius: 24px;
    padding: 60px 40px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.build-puc-content h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 10px;
    font-style: italic;
}

.build-puc-content p {
    color: #A0A0A0;
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Center Grid */
.center-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.center-card {
    background: white;
    padding: 25px;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: 0.3s ease;
}

.center-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-card);
    border-color: rgba(252, 92, 4, 0.2);
}

.center-card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 5px;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.center-card h3 i {
    color: var(--accent-color);
}

.center-card p {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
    padding-left: 28px;
    flex-grow: 1;
}

.btn-directions {
    background: #F8F9FA;
    color: var(--primary-color);
    border: none;
    padding: 12px;
    border-radius: 8px;
    font-weight: 700;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: 0.3s;
}

.center-card:hover .btn-directions {
    background: var(--accent-color);
    color: white;
}

@media (max-width: 992px) {
    .center-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .center-grid {
        grid-template-columns: 1fr;
    }

    .build-puc-banner {
        padding: 40px 20px;
    }

    .build-puc-content h2 {
        font-size: 1.8rem;
    }
}