/* components.css – specific component styles (cards, buttons, etc.) */
.qr-code img {
    width: 150px;
    height: 150px;
    border-radius: 16px;        /* Smooth corners – adjust as needed */
    margin: 1rem auto;
    display: block;
}
/* Vehicle Card (used in carousel) */
/* ===== New Full-Image Carousel ===== */
.featured-vehicles {
    padding: 6rem 0;
}

.carousel-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 24px; /* optional, for softer edges */
}

.carousel-slide {
    display: flex;
    transition: transform 0.5s ease;
}

.carousel-slide > * {
    min-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.carousel-slide .slide {
    min-width: 100%;
    position: relative;
    height: 100%; /* fixed height for consistency */
    overflow: hidden;
}


/* Carousel Item (each slide) */
.carousel-item {
    height: 500px; /* fixed height for consistency */
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: flex-end; /* text at bottom, or center – adjust as needed */
    justify-content: flex-start;
    color: white;
    position: relative;
}

/* Gradient overlay for better text readability */
.carousel-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.1) 50%, transparent 80%);
    z-index: 1;
}

/* Text overlay */
.carousel-caption {
    position: relative;
    z-index: 2;
    padding: 2rem;
    max-width: 600px;
    text-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

.carousel-caption h3 {
    font-size: 2.5rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: white;
}

.carousel-caption .vehicle-type {
    font-size: 1.2rem;
    color: var(--gold);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.carousel-caption .vehicle-price {
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.carousel-caption .vehicle-price span {
    font-size: 1rem;
    font-weight: normal;
    color: rgba(255,255,255,0.8);
}

.carousel-caption .btn-primary {
    background: var(--royal-blue);
    border: none;
    padding: 0.75rem 2rem;
    font-size: 1rem;
    border-radius: 40px;
    transition: all 0.3s;
    box-shadow: none; /* remove heavy shadow */
}

.carousel-caption .btn-primary:hover {
    background: #0000cc;
    transform: translateY(-2px);
}

/* Promo slide (video or image) */
.promo-slide {
    height: 500px;
    background-size: cover;
    background-position: center;
    display: fit;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
}

.promo-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 0;
}

.promo-content {
    position: relative;
    z-index: 2;
    color: white;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.promo-content h3 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

/* Navigation arrows (refined) */
.carousel-prev, .carousel-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border: none;
    color: white;
    font-size: 2rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}

.carousel-prev:hover, .carousel-next:hover {
    background: rgba(255,255,255,0.4);
}

.carousel-prev { left: 20px; }
.carousel-next { right: 20px; }

/* Dots */
.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s;
}

.dot.active {
    background: white;
    width: 20px;
    border-radius: 10px;
}
.section-description {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 2.5rem auto;
    color: var(--soft-charcoal);
    font-size: 1.1rem;
    line-height: 1.5;
    opacity: 0.8;
}

/* Responsive */
@media (max-width: 768px) {
    .carousel-item, .promo-slide {
        height: 400px;
    }
    .carousel-caption h3 {
        font-size: 1.8rem;
    }
    .carousel-caption .vehicle-price {
        font-size: 1.5rem;
    }
    .carousel-prev, .carousel-next {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }
}





/* Testimonial Card (already in layout, but refine) */
.testimonial-card {
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.testimonial-card .client-name {
    color: var(--royal-blue);
    font-weight: 600;
}

.testimonial-card .trip-type {
    font-size: 0.9rem;
    color: var(--gold);
}










/* Add to components.css */

.fleet-filters {
    padding: 2rem 0 0;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    max-width: 900px;
    margin: 0 auto;
}

.filter-btn {
    background: transparent;
    border: none;
    padding: 0.6rem 1.2rem;
    border-radius: 30px;
    font-size: 1rem;
    font-weight: 500;
    color: var(--soft-charcoal);
    cursor: pointer;
    transition: all 0.3s;
}

.filter-btn.active {
    background: var(--royal-blue);
    color: white;
}

.filter-btn:hover {
    background: rgba(10, 26, 255, 0.1);
}

.vehicle-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.vehicle-card {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
}

.vehicle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(10, 26, 255, 0.2);
}

.vehicle-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.vehicle-card .card-content {
    padding: 1.5rem;
    flex-grow: 1;
}

.vehicle-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--royal-blue);
}

.vehicle-card .type-badge {
    display: inline-block;
    background: var(--gold);
    color: var(--soft-charcoal);
    padding: 0.2rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    margin-bottom: 0.8rem;
}

.vehicle-card .specs {
    display: flex;
    gap: 1rem;
    font-size: 0.9rem;
    color: var(--soft-charcoal);
    margin: 0.5rem 0;
}

.vehicle-card .price {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--gold);
    margin: 1rem 0;
}

.vehicle-card .price span {
    font-size: 0.9rem;
    font-weight: normal;
    color: var(--soft-charcoal);
}

.vehicle-card .btn-primary {
    display: block;
    text-align: center;
    margin-top: auto;
}














/* Vehicle Details */
.vehicle-detail {
    padding: 2rem 0 4rem;
}

.vehicle-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.vehicle-image {
    border-radius: 24px;
    overflow: hidden;
}

.vehicle-image img {
    width: 100%;
    height: auto;
    transition: transform 0.4s;
}

.vehicle-image:hover img {
    transform: scale(1.03) translateY(-5px);
}

.vehicle-quick-info {
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.vehicle-quick-info h1 {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.vehicle-quick-info .type {
    font-size: 1.2rem;
    color: var(--royal-blue);
    margin-bottom: 1rem;
}

.vehicle-quick-info .price {
    font-size: 2rem;
    font-weight: 600;
    color: var(--gold);
    margin: 1rem 0;
}

.vehicle-quick-info .price span {
    font-size: 1rem;
    color: var(--soft-charcoal);
}

.vehicle-quick-info .rating {
    color: var(--gold);
    margin-bottom: 1rem;
}

.badges {
    display: flex;
    gap: 0.5rem;
}

.badge {
    background: var(--royal-blue);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 30px;
    font-size: 0.9rem;
}

.vehicle-specs-card {
    padding: 2rem;
    margin-bottom: 2rem;
}

.specs-table {
    width: 100%;
    border-collapse: collapse;
}

.specs-table tr {
    border-bottom: 1px solid rgba(0,0,0,0.05);
    overflow: hidden;
}

.specs-table th, .specs-table td {
    padding: 1rem;
    text-align: left;
    overflow: hidden;
}

.specs-table th {
    font-weight: 600;
    color: var(--royal-blue);
    width: 40%;
    overflow: hidden;
}

.rental-calculator {
    padding: 2rem;
    margin-bottom: 2rem;
    overflow: hidden;
}

.calculator-form {
    max-width: 500px;
    overflow:auto
}

.form-row {
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 0.01rem;
    margin-bottom: 1rem;
    overflow: hidden;
}

.price-output {
    margin-top: 1.5rem;
    font-size: 1.2rem;
}

.calculated-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--fog-white);
    padding: 1rem;
    border-radius: 8px;
    animation: glow 0.5s;
}

@keyframes glow {
    0% { box-shadow: 0 0 0 rgba(10,26,255,0.5); }
    50% { box-shadow: 0 0 20px rgba(10,26,255,0.5); }
    100% { box-shadow: 0 0 0 rgba(10,26,255,0.5); }
}

.booking-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.vehicle-features {
    padding: 2rem;
    margin-bottom: 2rem;
}

.features-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 1rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--fog-white);
    border-radius: 8px;
}

.trust-indicators {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    gap: 1rem;
    margin: 3rem 0;
}

.trust-item {
    text-align: center;
    font-size: 0.9rem;
}

.trust-item img {
    width: 40px;
    margin-bottom: 0.5rem;
}

.related-vehicles {
    padding: 4rem 0;
    background: var(--fog-white);
}





/* Icon styles for feature cards, service cards, value cards */
.feature-card i,
.service-card i,
.value-card i,
.trust-item i,
.feature-item i {
    font-size: 2.5rem;        /* default size, adjust as needed */
    color: var(--royal-blue);
    margin-bottom: 1rem;
    display: inline-block;
}

/* Specific sizing for different contexts */
.feature-card i {
    font-size: 3rem;
}
.service-card i {
    font-size: 3.5rem;
}
.value-card i {
    font-size: 3rem;
}
.trust-item i {
    font-size: 2.2rem;
    margin-bottom: 0.3rem;
}
.feature-item i {
    font-size: 1.5rem;
    margin-bottom: 0;
    margin-right: 0.5rem;
    vertical-align: middle;
}

/* Floating WhatsApp button using FA */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #25D366;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    transition: transform 0.3s;
    z-index: 100;
    color: white;
    text-decoration: none;
}

.whatsapp-float i {
    font-size: 2.5rem;
    color: white;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}






@media (max-width: 768px) {
    .vehicle-hero {
        grid-template-columns: 1fr;
    }
    .booking-actions {
        flex-direction: column;
    }
}











/* team page */
.team-intro {
    padding: 3rem 0;
}

.intro-card {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    text-align: center;
    font-size: 1.1rem;
}

.team-section {
    padding: 2rem 0 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.team-card {
    padding: 1.5rem;
    text-align: center;
    transition: transform 0.3s;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(10,26,255,0.1);
}

.team-card img {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    object-position: center 20%;   /* Moves the crop upward – adjust as needed */
    border: 3px solid var(--gold);
    margin: 0 auto 1rem;
    display: block;
}

.team-card h3 {
    margin-bottom: 0.3rem;
    color: var(--royal-blue);
}

.team-card .role {
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.team-card .bio {
    font-size: 0.9rem;
    color: var(--soft-charcoal);
}



















/* About Page Specific Styles */

/* Story section */
/* ===== ABOUT PAGE SPECIFIC STYLES ===== */

/* Story Section */
.about-story {
    padding: 6rem 0;
    backdrop-filter: blur(5px);
    background: var(--fog-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text {
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease;
}

.about-text:hover {
    transform: translateY(-5px);
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--royal-blue);
    margin-bottom: 1.5rem;
    position: relative;
}

.about-text h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: var(--gold);
    margin-top: 0.5rem;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--soft-charcoal);
}

.about-image {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    transition: transform 0.4s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Mission Parallax Section */
.about-mission {
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-attachment: fixed;
    background-size: cover;
    background-position: center;
    margin: 4rem 0;
}

.mission-content {
    max-width: 700px;
    padding: 3rem;
    background: rgba(255,255,255,0.15);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 32px;
    text-align: center;
    color: white;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.mission-content h2 {
    font-size: 2.8rem;
    margin-bottom: 1.5rem;
    color: var(--gold);
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.mission-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

/* Service Area */
.about-service-area {
    padding: 5rem 0;
    text-align: center;
    background: white;
}

.about-service-area .section-title {
    margin-bottom: 1.5rem;
}

.about-service-area p {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.2rem;
    color: var(--soft-charcoal);
    background: var(--glass-bg);
    backdrop-filter: blur(5px);
    padding: 2rem;
    border-radius: 24px;
    border: 1px solid var(--glass-border);
}

/* Values Section */
.about-values {
    padding: 5rem 0;
    background: var(--fog-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.value-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 26, 255, 0.15);
    border-color: var(--royal-blue);
}

.value-card img {
    width: 70px;
    height: 70px;
    margin-bottom: 1.2rem;
    transition: transform 0.3s;
}

.value-card:hover img {
    transform: scale(1.1);
}

.value-card h3 {
    font-size: 1.4rem;
    color: var(--royal-blue);
    margin-bottom: 0.5rem;
}

.value-card p {
    color: var(--soft-charcoal);
    font-size: 0.95rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 768px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-text {
        padding: 1.5rem;
    }
    
    .about-text h2 {
        font-size: 2rem;
    }
    
    .mission-content {
        padding: 2rem;
        margin: 0 1rem;
    }
    
    .mission-content h2 {
        font-size: 2rem;
    }
    
    .about-mission {
        background-attachment: scroll;
        min-height: 400px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .about-text h2 {
        font-size: 1.8rem;
    }
}










/* contact page */
.contact-details {
    padding: 4rem 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.contact-info, .qr-code {
    padding: 2rem;
}

.contact-info ul {
    list-style: none;
    margin: 1rem 0;
}

.contact-info li {
    margin-bottom: 1rem;
}

.social-media {
    margin-top: 2rem;
}

.social-media a {
    display: inline-block;
    margin-right: 1rem;
}

.qr-code {
    text-align: center;
}

.qr-code img {
    width: 150px;
    height: 150px;
    margin: 1rem auto;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}










.booking-form-section {
    padding: 4rem 0;
}

.booking-container {
    padding: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.booking-container iframe {
    width: 100%;
    min-height: 600px;
}












/* Services Page Cards */
.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.service-card {
    padding: 2.5rem 1.5rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 26, 255, 0.15);
}

.service-card img {
    width: 80px;
    height: 80px;
    object-fit: contain;
    margin-bottom: 1.5rem;
    transition: transform 0.3s;
}

.service-card:hover img {
    transform: scale(1.05);
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
    color: var(--royal-blue);
}

.service-card p {
    font-size: 1rem;
    color: var(--soft-charcoal);
    line-height: 1.5;
    opacity: 0.9;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .services-grid {
        gap: 1.5rem;
    }
    .service-card {
        padding: 2rem 1rem;
    }
}

.qr-code img {
    width: 150px;
    height: 150px;
    border-radius: 16px;        /* Smooth corners – adjust as needed */
    margin: 1rem auto;
    display: block;
}









