/* Glass effect */
.glass {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(10, 26, 255, 0.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--royal-blue), #1E40FF);
    color: var(--white);
    box-shadow: 0 0 25px rgba(10, 26, 255, 0.6);
}

.btn-primary:hover {
    transform: scale(1.04);
    box-shadow: 0 0 35px rgba(10, 26, 255, 0.8);
}

.btn-secondary {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold);
    backdrop-filter: blur(4px);
}

.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.1);
}

.btn-text {
    color: var(--gold);
    border-bottom: 1px solid transparent;
    padding: 0;
    border-radius: 0;
    background: none;
    box-shadow: none;
}

.btn-text:hover {
    border-bottom-color: var(--gold);
}

.btn-small {
    padding: 8px 16px;
    font-size: 0.9rem;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: background 0.4s ease, backdrop-filter 0.4s ease;
    padding: 1rem 0;
    color: var(--white);
}

.navbar.scrolled {
    background: rgba(10, 25, 47, 0.35);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--glass-border);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo img {
    height: 55px;
}

.nav-links {
    display: flex;
    gap: 2rem;
}

.nav-links a {
    font-weight: 500;
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width 0.2s ease;
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.8rem;
    cursor: pointer;
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
        position: absolute;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(10, 25, 47, 0.95);
        backdrop-filter: blur(14px);
        flex-direction: column;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        border-bottom: 1px solid var(--glass-border);
    }
    .nav-links.show {
        display: flex;
    }
    .hamburger {
        display: block;
    }
    .navbar .btn-primary {
        display: none;
    }
}

/* Cards */
.vehicle-card, .testimonial-card, .service-card, .team-card, .feature-card, .stat-card, .contact-info, .contact-form, .about-text {
    padding: 1.5rem;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.vehicle-card img, .team-card img {
    border-radius: 12px;
    aspect-ratio: 4/3;
    object-fit: cover;
}

.team-card img {
    aspect-ratio: 1/1;
    border-radius: 50%;
}

.price .gold {
    color: var(--gold);
    font-weight: 600;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.badge {
    background: rgba(255,255,255,0.2);
    border-radius: 999px;
    padding: 0.25rem 0.75rem;
    font-size: 0.75rem;
    border: 1px solid var(--glass-border);
}

.card-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: auto;
}

/* Hero */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    background: url('../assets/images/hero/hero.jpg') center/cover no-repeat;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(rgba(10,26,255,0.55), rgba(0,0,0,0.75));
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.hero p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Mini Hero (for interior pages) */
.mini-hero {
    padding: 6rem 0 3rem;
    background-size: cover;
    background-position: center;
    color: white;
    text-align: center;
    margin-bottom: 2rem;
}

.mini-hero h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

/* Carousel */
.carousel-container {
    position: relative;
    min-height: 120px;
    margin-bottom: 1rem;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1.0s ease, transform 0.5s ease;
    transform: translateY(10px);
}

.carousel-slide.active {
    opacity: 1;
    visibility: visible;
    position: relative;
    transform: translateY(0);
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 0.1rem;
}

.dot {
    width: 10px;
    height:10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    border: 1px solid var(--glass-border);
    cursor: pointer;
}

.dot.active {
    background: var(--gold);
}

/* Promo card image styling */
.promo-card img {
    width: 100%;
    height: auto;
    max-height: 300px;        /* Limit height to match typical vehicle card height */
    object-fit: contain;       /* Show full image without cropping */
    border-radius: 12px;
    background-color: rgba(0,0,0,0.1); /* Optional subtle background if image has transparency */
}

/* Ensure video also fits nicely */
.promo-card video {
    width: 100%;
    max-height: 500px;
    object-fit: cover;         /* Cover may be better for video to fill space */
    border-radius: 12px;
}

/* Adjust promo card text spacing */
.promo-card p {
    margin-top: 0.75rem;
    font-weight: 600;
    color: var(--gold);
}

/* Filter bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    margin: 2rem auto;
    background: rgba(0,0,0,0.2);
    backdrop-filter: blur(20px);
    border-radius: 999px;
}

.filter-pill {
    background: transparent;
    border: 1px solid var(--glass-border);
    border-radius: 999px;
    padding: 0.5rem 1.5rem;
    color: white;
    cursor: pointer;
    backdrop-filter: blur(4px);
    transition: all 0.2s;
}

.filter-pill.active {
    border-color: var(--gold);
    color: var(--gold);
}

.filter-pill:hover {
    background: rgba(212,175,55,0.1);
}

/* Vehicle Details Page */
.vehicle-hero {
    position: relative;
    height: 60vh;
    min-height: 400px;
    overflow: hidden;
}

.vehicle-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.vehicle-hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 2rem;
    text-align: center;
}

.vehicle-hero-overlay h1 {
    font-size: 2.5rem;
}

.specs-card ul {
    list-style: none;
    text-align: left;
}

.specs-card li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.specs-card li span {
    font-weight: 600;
    color: var(--gold);
}

.pricing-cta {
    text-align: center;
    padding: 2rem;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.1rem;
}

/* Quick Contact Strip */
.quick-contact {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    padding: 0.75rem 0;
    background: rgba(10, 25, 47, 0.8);
    backdrop-filter: blur(10px);
    border-top: 1px solid var(--glass-border);
}

.quick-contact-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: white;
}

/* Footer */
.footer {
    background: var(--soft-charcoal);
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.footer h4 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.footer ul li {
    margin-bottom: 0.5rem;
}

.footer a:hover {
    color: var(--gold);
}


.footer-bottom {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

/* Step Indicator (booking) */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    padding: 0 1rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    color: rgba(255,255,255,0.6);
}

.step.active {
    border-bottom-color: var(--gold);
    color: white;
    font-weight: 600;
}

/* OpnForm embed */
.opnform-embed iframe {
    border-radius: 18px;
    background: transparent;
}






/* About page images */
.about-images {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.image-card {
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
}

.image-card img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    object-fit: cover;
}

.caption {
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 500;
    color: var(--gold);
}

/* Two-column layout for about page */
.about-content .two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

@media (max-width: 768px) {
    .about-content .two-column {
        grid-template-columns: 1fr;
    }
}

.about-text {
    padding: 2rem;
}

.about-text h2 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.about-text p {
    margin-bottom: 1rem;
    line-height: 1.6;
}



/* ===== Team Page ===== */
.team-section h2 {
    font-size: 2rem;
    color: var(--gold);
    margin: 3rem 0 1.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.team-card {
    padding: 1.5rem;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 26, 255, 0.4);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 1rem;
    border: 3px solid var(--gold);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.team-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.25rem;
    color: var(--soft-charcoal); /* changed from white to dark */
}

.team-card .role {
    font-size: 1rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-card .bio {
    font-size: 0.95rem;
    color: var(--soft-charcoal); /* changed from white to dark */
    line-height: 1.5;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .team-section h2 {
        font-size: 1.75rem;
        margin: 2rem 0 1rem;
    }
    
    .team-photo {
        width: 120px;
        height: 120px;
    }
}

/* ===== Contact Page ===== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem 0;
}

.contact-info, .contact-form {
    padding: 2rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
}

.contact-info h2, .contact-form h2 {
    font-size: 1.8rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
    border-bottom: 2px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 0.5rem;
}

.contact-info p {
    margin: 1rem 0;
    font-size: 1.1rem;
    color: var(--soft-charcoal); /* changed from white to dark */
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.contact-info .icon {
    font-size: 1.4rem;
    min-width: 2rem;
    color: var(--gold);
}

.contact-info .btn-secondary {
    margin: 1.5rem 0 1rem;
    width: 100%;
    text-align: center;
}

.qr-image {
    width: 100px;          /* Match the placeholder size */
    height: 100px;
    border-radius: 8px;    /* Optional rounded corners */
    object-fit: cover;     /* Ensures image fills the box */
}

.social-link {
    display: inline-block;
    margin-top: 1rem;
    color: var(--gold);
    font-size: 1.2rem;
    border: 1px solid var(--gold);
    padding: 0.5rem 1.5rem;
    border-radius: 999px;
    transition: all 0.2s ease;
}

.social-link:hover {
    background: rgba(212, 175, 55, 0.2);
    transform: scale(1.05);
}

.contact-form p {
    color: var(--soft-charcoal); /* changed from white to dark */
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

/* Form styling – with dark text */
.contact-form form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-form input,
.contact-form textarea {
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.3); /* lighter background for contrast */
    color: var(--soft-charcoal);
    font-size: 1rem;
    transition: border 0.2s ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.5);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(15, 23, 42, 0.6); /* dark placeholder */
}

.contact-form button {
    align-self: flex-start;
}












/* Booking page grid */
.booking-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    margin: 3rem auto;
}

@media (max-width: 768px) {
    .booking-grid {
        grid-template-columns: 1fr;
    }
}

.booking-form-column {
    padding: 2rem;
}

.booking-form-column h2 {
    margin-bottom: 1rem;
    color: var(--gold);
}

.opnform-embed {
    margin: 1.5rem 0;
}

.opnform-embed iframe {
    min-height: 600px;
    background: transparent;
}

.form-note {
    font-size: 0.9rem;
    color: rgba(0, 0, 0, 0.7);
    text-align: center;
}

/* WhatsApp column cards */
.booking-whatsapp-column {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.whatsapp-card, .info-card {
    padding: 2rem;
    text-align: center;
}

.whatsapp-card .icon {
    font-size: 3rem;
    display: block;
    margin-bottom: 1rem;
}

.whatsapp-card h3 {
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.whatsapp-card p {
    margin-bottom: 1.5rem;
}

.small-note {
    font-size: 0.8rem;
    margin-top: 1rem;
    opacity: 0.8;
}

.info-card ol {
    text-align: left;
    padding-left: 1.2rem;
    margin: 1rem 0;
}

.info-card li {
    margin-bottom: 0.5rem;
}

.info-card .highlight {
    color: var(--gold);
    font-weight: 500;
    margin-top: 1rem;
}

/* Step indicator (reuse from booking page) */
.step-indicator {
    display: flex;
    justify-content: space-between;
    margin: 2rem 0;
    padding: 0 1rem;
}

.step {
    flex: 1;
    text-align: center;
    padding: 0.5rem;
    border-bottom: 2px solid rgba(255,255,255,0.2);
    color: rgba(0, 0, 0, 0.6);
}

.step.active {
    border-bottom-color: var(--gold);
    color: rgb(0, 0, 0);
    font-weight: 600;
}


/* Why Choose Us Section */
/* Why Choose Us section description */
/* Section description styling */
.section-description {
    max-width: 800px;
    margin: 0 auto 2.5rem auto;   /* centered, space below */
    text-align: center;
    font-size: 1.2rem;
    color: var(--soft-charcoal);
    opacity: 0.9;
    line-height: 1.6;
}

/* Ensure heading remains centered (if desired) */
.why-choose-us h2 {
    text-align: center;
    margin-bottom: 0.5rem;
}

/* Optional: adjust the grid spacing */
.features-grid {
    margin-top: 1rem;
}


/* Center headings and descriptions in carousel sections */
.featured-vehicles,
.testimonials {
    text-align: center;
}


/* About page image cards – constrained and centered */
.about-images {
    display: flex;
    flex-direction: column;
    align-items: center;        /* center the cards horizontally */
    gap: 1.5rem;
}

.image-card {
    max-width: 550px;           /* prevents cards from becoming too wide */
    width: 100%;                /* takes full width up to max-width */
    margin: 0 auto;             /* centers within its column */
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    border-radius: 18px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    transition: transform 0.3s ease;
}

.image-card:hover {
    transform: translateY(-5px);
}

.image-card img {
    width: auto;
    height: 100;
    border-radius: 1px;
    object-fit: cover;
    aspect-ratio: 16/9;         /* optional: consistent image ratio */
}

.caption {
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 500;
    color: var(--gold);
}


/* ===== Google Maps Section ===== */
.map-section {
    padding: 2rem 0 4rem 0;
}

.map-heading {
    text-align: center;
    margin-bottom: 2rem;
    color: var(--soft-charcoal);
}

.map-container {
    padding: 1rem;
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 450px;
    border-radius: 12px;
    display: block;
}

/* Responsive adjustment */
@media (max-width: 768px) {
    .map-container iframe {
        height: 350px;
    }
}




/* Responsive */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 0;
    }
    
    .contact-info h2, .contact-form h2 {
        font-size: 1.5rem;
    }
}




































