/* ==========================================================================
   Veer Shakti Travel - Mehsana (Professional Business Rental Theme)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --bg-page: #f8fafc;
    --bg-card: #ffffff;
    --bg-surface: #f1f5f9;
    --bg-navy: #0f172a;
    --bg-navy-light: #1e293b;

    --border-light: #e2e8f0;
    --border-accent: #cbd5e1;
    --border-gold: #d97706;

    --navy-primary: #0f172a;
    --gold-primary: #d97706;
    --gold-hover: #b45309;
    --gold-light: #fef3c7;

    --text-dark: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --text-white: #ffffff;

    --whatsapp-color: #10b981;
    --whatsapp-hover: #059669;

    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Plus Jakarta Sans', sans-serif;

    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-full: 9999px;
}

/* Reset & Universal Rules */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    box-shadow: none !important;
    /* STRICT NO SHADOW RULE */
}

html, body {
    scroll-behavior: smooth;
    font-size: 16px;
    margin: 0;
    padding: 0 !important;
}

body {
    font-family: var(--font-body);
    background-color: var(--bg-page);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    margin: 0;
    padding: 0 !important;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.2s ease;
}

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

ul {
    list-style: none;
}

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

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
    line-height: 1.25;
}

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

.text-navy {
    color: var(--navy-primary);
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    background: #fef3c7;
    border: 1px solid #fde68a;
    border-radius: var(--radius-full);
    color: #b45309;
    font-family: var(--font-heading);
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    margin-bottom: 0.75rem;
}

.section-title {
    font-size: 2.3rem;
    color: var(--navy-primary);
    margin-bottom: 0.8rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.05rem;
    max-width: 650px;
    margin: 0 auto;
    text-align: center;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-padding {
    padding: 4.5rem 0;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.6rem;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: all 0.2s ease;
    border: 1px solid transparent;
    outline: none;
    text-align: center;
}

.btn-navy {
    background: var(--navy-primary);
    color: #ffffff;
}

.btn-navy:hover {
    background: var(--bg-navy-light);
    color: #ffffff;
}

.btn-gold {
    background: var(--gold-primary);
    color: #ffffff;
}

.btn-gold:hover {
    background: var(--gold-hover);
    color: #ffffff;
}

.btn-outline {
    background: #ffffff;
    border: 1px solid var(--border-light);
    color: var(--navy-primary);
}

.btn-outline:hover {
    border-color: var(--navy-primary);
    background: var(--bg-surface);
}

.btn-whatsapp {
    background: var(--whatsapp-color);
    color: #ffffff;
}

.btn-whatsapp:hover {
    background: var(--whatsapp-hover);
    color: #ffffff;
}

.btn-sm {
    padding: 0.5rem 1rem;
    font-size: 0.88rem;
}

.btn-full {
    width: 100%;
}

/* Top Notification Bar */
.top-bar {
    background: var(--navy-primary);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 0.45rem 0;
    font-size: 0.85rem;
    color: #cbd5e1;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.top-bar-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.top-bar-info .item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.top-bar-info a {
    color: #ffffff;
}

.top-bar-info a:hover {
    color: var(--gold-primary);
}

/* Main Clean Navbar (White High-Contrast Header for Maximum Logo Visibility) */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #ffffff;
    border-bottom: 3px solid var(--gold-primary);
}

.main-navbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 0;
}

.brand-logo-only {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.header-logo-large {
    width: 82px;
    height: 82px;
    border-radius: 50%;
    border: 3px solid var(--gold-primary);
    object-fit: cover;
    background: #000000;
    display: block;
    transition: transform 0.2s ease;
}

.brand-logo-only:hover .header-logo-large {
    transform: scale(1.05);
}

.main-nav-menu {
    display: flex;
    align-items: center;
    gap: 2.2rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-item-link {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--navy-primary);
    text-transform: uppercase;
    letter-spacing: 0.8px;
    padding: 0.5rem 0;
    position: relative;
    transition: color 0.2s ease;
}

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

.nav-item-link.active::after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0;
    width: 100%;
    height: 3px;
    background: var(--gold-primary);
    border-radius: 2px;
}

@media (max-width: 992px) {
    .main-nav-menu {
        display: none;
    }
}

.brand-center-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--navy-primary);
    letter-spacing: 1px;
    margin-top: 0.25rem;
    text-align: center;
}

.mobile-header-bar {
    display: none;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
}

.mobile-toggle {
    background: transparent;
    border: 1px solid var(--border-light);
    color: var(--navy-primary);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.3rem 0.6rem;
    border-radius: var(--radius-sm);
}

/* Mobile Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 290px;
    height: 100vh;
    background: #ffffff;
    border-left: 2px solid var(--border-light);
    z-index: 1100;
    padding: 2rem 1.5rem;
    transition: right 0.3s ease;
    display: flex;
    flex-direction: column;
}

.mobile-nav-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.drawer-close {
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.6rem;
    cursor: pointer;
}

.drawer-links {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
    margin-bottom: 2rem;
}

.drawer-link {
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-primary);
    text-transform: uppercase;
}

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

.drawer-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    z-index: 1050;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.drawer-overlay.open {
    opacity: 1;
    visibility: visible;
}

/* Hero Section with 4K Real Automotive Photography */
.hero-section {
    position: relative;
    background: linear-gradient(180deg, rgba(15, 23, 42, 0.45) 0%, rgba(15, 23, 42, 0.6) 100%),
        url('../images/hero-bg.jpg') center/cover no-repeat;
    color: #ffffff;
    padding: 5rem 0;
    border-bottom: 4px solid var(--gold-primary);
}

.hero-content-card {
    background: rgba(15, 23, 42, 0.88);
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: var(--radius-lg);
    padding: 2.2rem;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 3rem;
    align-items: center;
}

.hero-content h1 {
    font-family: 'Hind Vadodara', var(--font-heading);
    font-size: 3.6rem;
    color: #ffffff;
    margin-bottom: 1rem;
    line-height: 1.25;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: #cbd5e1;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.4rem 0.9rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: #ffffff;
}

.hero-badge i {
    color: #fde68a;
}

/* Hero Booking Card */
.booking-card {
    background: #ffffff;
    color: var(--text-dark);
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
}

.booking-card-header {
    margin-bottom: 1.2rem;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--border-light);
}

.booking-card-header h3 {
    font-size: 1.3rem;
    color: var(--navy-primary);
}

.form-group {
    margin-bottom: 1rem;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--navy-primary);
    margin-bottom: 0.35rem;
    text-transform: uppercase;
    letter-spacing: 0.4px;
}

.form-control,
.form-select {
    width: 100%;
    padding: 0.75rem 0.9rem;
    background: #ffffff;
    border: 1px solid var(--border-light);
    border-radius: var(--radius-sm);
    color: var(--text-dark);
    font-family: var(--font-body);
    font-size: 0.92rem;
}

.form-control:focus,
.form-select:focus {
    outline: none;
    border-color: var(--navy-primary);
    background: #ffffff;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.8rem;
}

/* Cards & Fleet Grid - Ultra Premium Luxury Theme */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
}

.car-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-card:hover {
    transform: translateY(-8px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.12);
}

.car-image-box {
    position: relative;
    height: 280px;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    border-bottom: 1px solid var(--border-light);
}

.car-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-card:hover .car-image-box img {
    transform: scale(1.07);
}

.car-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    max-width: 50%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: linear-gradient(90deg, #d97706, #f59e0b);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 10px rgba(217, 119, 6, 0.35);
    z-index: 2;
}

.car-category {
    position: absolute;
    top: 1rem;
    right: 1rem;
    max-width: 44%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    font-family: var(--font-heading);
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.35rem 0.8rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 2;
}

.car-details-body {
    padding: 1.6rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.car-name {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--navy-primary);
    margin-bottom: 0.2rem;
}

.car-brand {
    font-size: 0.78rem;
    color: var(--gold-primary);
    font-weight: 800;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.car-specs-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.75rem;
    margin-bottom: 1.2rem;
    padding: 1rem;
    background: #f8fafc;
    border-radius: var(--radius-md);
    border: 1px solid #e2e8f0;
}

.spec-item {
    display: flex;
    align-items: center;
    gap: 0.55rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text-body);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.spec-item i {
    color: var(--gold-primary);
    font-size: 1.05rem;
}

.car-actions {
    display: flex;
    gap: 0.75rem;
    margin-top: auto;
    padding-top: 0.4rem;
}

/* Features & Cards */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    background: #ffffff;
    border: 2px solid var(--border-light);
    padding: 1.8rem 1.5rem;
    border-radius: var(--radius-md);
    transition: border-color 0.2s ease;
}

.feature-card:hover {
    border-color: var(--navy-primary);
}

.feature-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-md);
    background: #fef3c7;
    border: 1px solid #fde68a;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-primary);
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
}

.feature-title {
    font-size: 1.15rem;
    color: var(--navy-primary);
    margin-bottom: 0.6rem;
}

.feature-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
}

/* Services Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
    gap: 1.8rem;
}

.service-card {
    background: #ffffff;
    border: 2px solid var(--border-light);
    border-top: 4px solid var(--navy-primary);
    border-radius: var(--radius-lg);
    padding: 1.8rem;
}

.service-title {
    font-size: 1.25rem;
    margin-bottom: 0.8rem;
    color: var(--navy-primary);
}

.service-desc {
    color: var(--text-muted);
    font-size: 0.92rem;
    margin-bottom: 1.2rem;
}

/* CTA Banner */
.cta-banner {
    background: var(--navy-primary);
    color: #ffffff;
    border-radius: var(--radius-lg);
    padding: 3rem 2rem;
    text-align: center;
    border: 2px solid var(--gold-primary);
}

.cta-banner h2 {
    font-size: 2.2rem;
    color: #ffffff;
    margin-bottom: 0.8rem;
}

.cta-banner p {
    color: #cbd5e1;
    font-size: 1.05rem;
    max-width: 580px;
    margin: 0 auto 1.8rem auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Contact & Maps */
.contact-section-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-info-box {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact-card {
    background: #ffffff;
    border: 2px solid var(--border-light);
    padding: 1.4rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.contact-card-icon {
    width: 46px;
    height: 46px;
    border-radius: var(--radius-md);
    background: #f1f5f9;
    border: 1px solid var(--border-light);
    color: var(--navy-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-card-content h4 {
    font-size: 1.05rem;
    color: var(--navy-primary);
    margin-bottom: 0.25rem;
}

.contact-card-content p {
    color: var(--text-muted);
    font-size: 0.92rem;
}

.map-wrapper {
    background: #ffffff;
    border: 2px solid var(--border-light);
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 100%;
    min-height: 420px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
}

/* Footer */
.site-footer {
    background: var(--navy-primary);
    color: #cbd5e1;
    border-top: 4px solid var(--gold-primary);
    padding: 3.5rem 0 1.8rem 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
    gap: 2.5rem;
    margin-bottom: 2.5rem;
}

.footer-about .logo-circle-img {
    margin-bottom: 1rem;
}

.footer-about p {
    color: #cbd5e1;
    font-size: 0.92rem;
    margin-bottom: 1.2rem;
    line-height: 1.6;
}

.footer-title {
    font-size: 1.1rem;
    color: #ffffff;
    margin-bottom: 1.2rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--gold-primary);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--gold-primary);
    padding-left: 4px;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.7rem;
    color: #cbd5e1;
    font-size: 0.9rem;
}

.footer-contact-item i {
    color: var(--gold-primary);
    margin-top: 0.2rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Floating Widgets & Mobile Action Bar */
.floating-widgets {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.float-btn {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    transition: transform 0.2s ease;
}

.float-whatsapp {
    background: var(--whatsapp-color);
}

.float-call {
    background: var(--gold-primary);
}

.mobile-action-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: var(--navy-primary);
    border-top: 2px solid var(--gold-primary);
    z-index: 990;
    padding: 0.5rem 1rem;
}

.mobile-action-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.6rem;
}

/* Modal Booking Dialog */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.75);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-box {
    background: #ffffff;
    border: 2px solid var(--navy-primary);
    border-radius: var(--radius-lg);
    width: 100%;
    max-width: 500px;
    padding: 2rem;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: transparent;
    border: none;
    color: var(--text-dark);
    font-size: 1.5rem;
    cursor: pointer;
}

.modal-header {
    margin-bottom: 1.2rem;
}

.modal-header h3 {
    font-size: 1.4rem;
    color: var(--navy-primary);
}

/* Responsive Rules */
@media (max-width: 992px) {
    .navbar-centered {
        display: none;
    }

    .mobile-header-bar {
        display: flex;
    }

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

    .contact-section-grid {
        grid-template-columns: 1fr;
    }

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

@media (max-width: 768px) {
    .top-bar {
        display: none;
    }

    .hero-content h1 {
        font-size: 2.2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

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

    .mobile-action-bar {
        display: block;
    }

    .floating-widgets {
        bottom: 4.2rem;
        right: 1rem;
    }

    body {
        padding-bottom: 55px;
    }
}

/* ==========================================================================
   Page Preloader - Full Screen Car Driving Left to Right
   ========================================================================== */
.car-preloader-fullscreen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: #0b1120;
    background: radial-gradient(ellipse at center, #1e293b 0%, #0b1120 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999999;
    opacity: 1;
    visibility: visible;
    overflow: hidden;
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.car-preloader-fullscreen.fade-out {
    opacity: 0;
    visibility: hidden;
    transform: scale(1.04);
    pointer-events: none;
}

/* Center Branding */
.preloader-branding {
    text-align: center;
    margin-bottom: 2.5rem;
    z-index: 2;
}

.preloader-logo-large {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--gold-primary);
    margin: 0 auto 1rem auto;
    box-shadow: 0 0 25px rgba(217, 119, 6, 0.4);
    animation: pulseLogo 2s ease-in-out infinite alternate;
}

.preloader-hero-title {
    color: #ffffff;
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: 2px;
    margin-bottom: 0.3rem;
}

.preloader-hero-sub {
    color: var(--gold-primary);
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
}

/* Full Screen Road Container (Vertically Centered) */
.fullscreen-road-container {
    position: relative;
    width: 100vw;
    height: 90px;
    background: transparent;
    overflow: hidden;
    margin-bottom: 0;
}

.fullscreen-road-asphalt {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100vw;
    height: 40px;
    background: #0f172a;
    border-top: 2px solid #334155;
    border-bottom: 2px solid #334155;
}

.fullscreen-road-line {
    position: absolute;
    top: 50%;
    left: 0;
    width: 200vw;
    height: 4px;
    transform: translateY(-50%);
    background: repeating-linear-gradient(90deg, #d97706 0, #d97706 35px, transparent 35px, transparent 70px);
    animation: moveFullRoadLines 0.5s linear infinite;
}

/* Car Full Screen Drive (Left to Right across 100vw - Single Complete Pass) */
.fullscreen-car-wrapper {
    position: absolute;
    bottom: 8px;
    left: -220px;
    width: 170px;
    height: 65px;
    animation: driveAcrossFullScreen 1.5s cubic-bezier(0.25, 0.1, 0.25, 1) 1 forwards;
    z-index: 5;
}

.fullscreen-car-svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 6px 12px rgba(0, 0, 0, 0.6));
    animation: fullCarSuspension 0.25s ease-in-out infinite alternate;
}

.fullscreen-wheel {
    transform-box: fill-box;
    transform-origin: center;
    animation: spinWheelFast 0.25s linear infinite;
}

/* Progress bar across full width directly under vertical center road */
.fullscreen-loader-progress {
    position: relative;
    width: 100vw;
    height: 5px;
    background: rgba(255, 255, 255, 0.1);
    z-index: 10;
}

.progress-fill-line {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, #d97706, #fbbf24, #f59e0b);
    animation: fillFullProgressBar 1.5s cubic-bezier(0.25, 0.1, 0.25, 1) 1 forwards;
}

/* Keyframe Animations */
@keyframes driveAcrossFullScreen {
    0% {
        left: -220px;
    }

    100% {
        left: calc(100vw + 60px);
    }
}

@keyframes moveFullRoadLines {
    0% {
        transform: translate(0, -50%);
    }

    100% {
        transform: translate(-70px, -50%);
    }
}

@keyframes spinWheelFast {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

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

    100% {
        transform: translateY(-2px);
    }
}

@keyframes pulseLogo {
    0% {
        transform: scale(1);
        box-shadow: 0 0 15px rgba(217, 119, 6, 0.3);
    }

    100% {
        transform: scale(1.06);
        box-shadow: 0 0 35px rgba(217, 119, 6, 0.6);
    }
}

@keyframes fillFullProgressBar {
    0% {
        width: 0%;
    }

    100% {
        width: 100%;
    }
}

/* ==========================================================================
   Success Notification Alert Box
   ========================================================================== */
.alert-success-card {
    background: #ecfdf5;
    border: 1px solid #6ee7b7;
    border-left: 5px solid #10b981;
    border-radius: var(--radius-md);
    padding: 1.2rem 1.4rem;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.12);
    animation: alertSlideDown 0.4s ease;
}

.alert-success-card .alert-icon {
    flex-shrink: 0;
}

.alert-success-card .alert-icon i {
    font-size: 2rem;
    color: #10b981;
}

.alert-success-card h4 {
    font-size: 1.1rem;
    color: #065f46;
    margin-bottom: 0.3rem;
    font-weight: 800;
}

.alert-success-card p {
    color: #047857;
    font-size: 0.92rem;
    line-height: 1.55;
    margin-bottom: 0.6rem;
}

@keyframes alertSlideDown {
    0% {
        opacity: 0;
        transform: translateY(-10px);
    }

    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ==========================================================================
   Luxury Service Detail Cards
   ========================================================================== */
.service-detail-card {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius-lg);
    padding: 2.2rem 1.8rem;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 20px rgba(15, 23, 42, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-detail-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-primary);
    box-shadow: 0 20px 35px rgba(15, 23, 42, 0.12);
}

.service-icon-box {
    width: 58px;
    height: 58px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, #0b1120 0%, #1e293b 100%);
    border: 1px solid rgba(217, 119, 6, 0.35);
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.65rem;
    margin-bottom: 1.4rem;
    box-shadow: 0 4px 14px rgba(15, 23, 42, 0.18);
}

/* About Page Responsive Grid */
.about-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3.5rem;
}

.about-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

@media (max-width: 992px) {
    .hero-grid,
    .about-hero-grid,
    .contact-hero-grid,
    .car-details-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 576px) {
    .container {
        padding: 0 1rem !important;
    }

    .fleet-grid,
    .services-grid,
    .features-grid,
    .about-stats-grid {
        grid-template-columns: 1fr !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 1.5rem !important;
        width: 100% !important;
        margin: 0 auto !important;
    }

    .preloader-hero-title {
        font-size: 1.4rem !important;
        letter-spacing: 1px !important;
        padding: 0 1rem !important;
    }

    .preloader-hero-sub {
        font-size: 0.82rem !important;
        padding: 0 1.2rem !important;
        text-align: center !important;
        justify-content: center !important;
        line-height: 1.4 !important;
    }
}

@media (max-width: 768px) {
    /* 1. Hero Section Compact Height on Mobile */
    .hero-section {
        padding: 2.2rem 0 !important;
    }

    .hero-content-card {
        padding: 1.25rem 1rem !important;
        margin-bottom: 0.5rem;
    }

    .hero-content h1 {
        font-size: 1.8rem !important;
        line-height: 1.25 !important;
        margin-bottom: 0.6rem !important;
    }

    .hero-subtitle {
        font-size: 0.92rem !important;
        margin-bottom: 1rem !important;
        line-height: 1.5 !important;
    }

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

    .booking-card {
        padding: 1.25rem 1rem !important;
    }

    /* 2. Force 1-column single stacked form layout on mobile */
    .form-row {
        display: flex !important;
        flex-direction: column !important;
        gap: 0.8rem !important;
    }

    .form-row > .form-group {
        width: 100% !important;
        margin-bottom: 0 !important;
    }

    /* 3. Position floating buttons compactly at bottom right corner on mobile */
    .floating-widgets {
        bottom: 1rem !important;
        right: 1rem !important;
        gap: 0.5rem !important;
    }

    .float-btn {
        width: 44px !important;
        height: 44px !important;
        font-size: 1.25rem !important;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25) !important;
    }
}

/* Permanent disable of bottom action bar as per user preference */
.mobile-action-bar {
    display: none !important;
}

.floating-widgets {
    display: flex !important;
}

/* Page Specific Grid Classes */
.contact-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3.5rem;
}

.car-details-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: start;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}