/* ============================================
   Shiv shubh tour and travels - TAXI SERVICE WEBSITE
   Main Stylesheet (css/style.css)
   ============================================ */

/* CSS Variables for consistent theming */
:root {
    /* Primary Colors - Taxi Theme (Yellow & Black) */
    --primary-color: #FFC107;
    --primary-dark: #FFA000;
    --primary-light: #FFD54F;
    --secondary-color: #212121;
    --secondary-light: #424242;
    
    /* Alternative Blue Theme (uncomment to use) */
    /* --primary-color: #1976D2;
    --primary-dark: #1565C0;
    --primary-light: #42A5F5;
    --secondary-color: #ffffff;
    --secondary-light: #f5f5f5; */
   
    
    /* Accent Colors */
    --accent-color: #FF5722;
    --success-color: #4CAF50;
    --warning-color: #FF9800;
    --danger-color: #F44336;
    
    /* Neutral Colors */
    --text-dark: #212121;
    --text-light: #757575;
    --text-muted: #9E9E9E;
    --bg-light: #F5F5F5;
    --bg-white: #FFFFFF;
    --border-color: #E0E0E0;
    
    /* Typography */
    --font-primary: 'Poppins', sans-serif;
    --font-secondary: 'Playfair Display', serif;
    
    /* Spacing */
    --section-padding: 100px;
    --container-padding: 15px;
    
    /* Shadows */
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 25px rgba(0,0,0,0.15);
    --shadow-xl: 0 20px 40px rgba(0,0,0,0.2);
    
    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;
    
    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 50px;
}

/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--bg-white);
}
















/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    z-index: -2;
}

.hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url(../images/home-hero-bg.png) center/cover;
    opacity: 0.4;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.6), rgba(0,0,0,0.8));
    z-index: -1;
}

.hero-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(255,193,7,0.1) 0%, transparent 50%),
                      radial-gradient(circle at 80% 80%, rgba(255,193,7,0.05) 0%, transparent 50%);
    z-index: -1;
}

.hero-content {
    position: relative;
    z-index: 1;
    padding-top: 80px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255,193,7,0.2);
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 0.9rem;
    backdrop-filter: blur(10px);
}

.hero-title {
    font-family: var(--font-secondary);
    font-size: 3.5rem;
    font-weight: 700;
    color: white;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.text-highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.text-highlight::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    width: 100%;
    height: 8px;
    background: rgba(255,193,7,0.3);
    z-index: -1;
    border-radius: 4px;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}

.hero-cta-group .btn {
    padding: 14px 32px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all var(--transition-normal);
}

.hero-cta-group .btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
}

.hero-cta-group .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255,193,7,0.3);
}

.hero-cta-group .btn-outline-light {
    border: 2px solid rgba(255,255,255,0.5);
    color: white;
}

.hero-cta-group .btn-outline-light:hover {
    background: white;
    color: var(--secondary-color);
    border-color: white;
    transform: translateY(-3px);
}

.hero-features {
    margin-top: 60px;
}

.hero-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    padding: 20px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition-normal);
}

.hero-feature-item:hover {
    background: rgba(255,193,7,0.2);
    border-color: var(--primary-color);
    transform: translateY(-5px);
}

.hero-feature-item i {
    font-size: 1.8rem;
    color: var(--primary-color);
}

.hero-feature-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll-indicator a {
    display: flex;
    flex-direction: column;
    align-items: center;
    color: white;
    text-decoration: none;
    opacity: 0.7;
    transition: opacity var(--transition-normal);
}

.hero-scroll-indicator a:hover {
    opacity: 1;
}

.mouse {
    width: 26px;
    height: 40px;
    border: 2px solid white;
    border-radius: 20px;
    position: relative;
    margin-bottom: 10px;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 1.5s infinite;
}

@keyframes scroll {
    0% { opacity: 1; top: 8px; }
    100% { opacity: 0; top: 20px; }
}

.arrow span {
    display: block;
    width: 10px;
    height: 10px;
    border-bottom: 2px solid white;
    border-right: 2px solid white;
    transform: rotate(45deg);
    margin: -5px auto;
    animation: arrow 1.5s infinite;
}

.arrow span:nth-child(2) { animation-delay: 0.2s; }
.arrow span:nth-child(3) { animation-delay: 0.4s; }

@keyframes arrow {
    0% { opacity: 0; }
    50% { opacity: 1; }
    100% { opacity: 0; }
}

/* Quick Booking Section */
.quick-booking-section {
    position: relative;
    margin-top: -60px;
    z-index: 10;
    padding: 0 20px;
}

.quick-booking-card {
    background: white;
    padding: 30px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border-color);
}

.quick-booking-card .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.quick-booking-card .form-control,
.quick-booking-card .form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.quick-booking-card .form-control:focus,
.quick-booking-card .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255,193,7,0.1);
}

/* Section Common Styles */
.section-padding {
    padding: var(--section-padding) 0;
}

.section-header {
    margin-bottom: 50px;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-dark);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 40px;
}

.section-subtitle::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 2px;
    background: var(--primary-color);
}

.section-title {
    font-family: var(--font-secondary);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 15px;
    line-height: 1.3;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}











/* About Section */
.about-images {
    position: relative;
    padding-right: 40px;
}

.about-img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: 0;
    width: 250px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 5px solid white;
    box-shadow: var(--shadow-lg);
}

.experience-badge {
    position: absolute;
    top: 40px;
    right: -20px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 25px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.experience-badge .years {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1;
}

.experience-badge .text {
    font-size: 0.85rem;
    font-weight: 600;
    line-height: 1.3;
    margin-top: 5px;
}

.about-text {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    margin-top: 30px;
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    font-weight: 500;
}

.about-feature-item i {
    color: var(--success-color);
    font-size: 1.2rem;
}

.about-counters {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px dashed var(--border-color);
}

.counter-item {
    text-align: center;
}

.counter {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
}

.counter-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 5px;
    font-weight: 500;
}




/* Extra  */
.mission-card {
    background: linear-gradient(135deg, white, #E0E0E0);
    border-left: 5px solid #ffc107;
    border-bottom: 5px solid #FFC107;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
}

/* Hover Effect */
.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
}

/* Icon Styling */
.mission-icon {
    margin-bottom: 20px;
}

.mission-icon img {
    max-width: 100%;
    width: 100%;
    height: auto;
}

/* Heading */
.mission-card h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 15px;
}

/* Paragraph */
.mission-card p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
}

/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .mission-card {
        padding: 30px 20px;
    }

    .mission-card h3 {
        font-size: 20px;
    }

    .mission-card p {
        font-size: 15px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .mission-card {
        max-height: 80vh;
        padding: 0px 20px;
    }

    .mission-icon img {
        max-width: 100vw;
    }

    .mission-card h3 {
        font-size: 18px;
    }

    .mission-card p {
        font-size: 14px;
    }
}




/* Extra */
.team-card {
    position: relative;
    background: 
        linear-gradient(#ffffff, #ffffff) padding-box,
        linear-gradient(135deg, #0d6efd, #00c6ff, #0d6efd) border-box;
    border: 3px solid transparent;
    border-radius: 20px;
    padding: 70px 25px 30px;
    text-align: center;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    overflow: visible;
}

/* Hover Animation */
.team-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.12);
}

/* Floating Image */
.team-image {
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

.team-image img {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    border: 6px solid #ffffff;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    transition: 0.4s ease;
}

.team-card:hover .team-image img {
    transform: scale(1.05);
}

/* Content */
.team-content h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.team-content span {
    display: block;
    font-size: 14px;
    color: #0d6efd;
    font-weight: 500;
    margin-bottom: 15px;
}

/* Social Icons */
.team-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin: 0 5px;
    border-radius: 50%;
    background: #f4f7ff;
    color: #0d6efd;
    font-size: 14px;
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: linear-gradient(135deg, #0d6efd, #00c6ff);
    color: #fff;
    transform: translateY(-4px);
}


/* ================= RESPONSIVE ================= */

/* Tablet */
@media (max-width: 992px) {
    .team-card {
        padding: 60px 20px 25px;
    }

    .team-image img {
        width: 100px;
        height: 100px;
    }
}

/* Mobile */
@media (max-width: 576px) {
    .team-image {
        top: -50px;
    }

    .team-image img {
        width: 90px;
        height: 90px;
    }

    .team-card {
        padding: 55px 18px 25px;
        max-width: 80vw;
        display: block;
        margin: auto;
        margin-top: 60px;
    }
}





















/* Fleet Section */
.fleet-section{
    padding-top: 50px !important;
}
.fleet-card {
    background: white;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid var(--border-color);
    position: relative;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.fleet-card.featured {
    border: 2px solid var(--primary-color);
}

.fleet-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 5px 15px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.fleet-image {
    position: relative;
    overflow: hidden;
    height: 220px;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-normal);
}

.fleet-card:hover .fleet-overlay {
    opacity: 1;
}

.fleet-content {
    padding: 25px;
}

.fleet-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.fleet-type {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 15px;
}

.fleet-features {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--border-color);
}

.fleet-features span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.85rem;
    color: var(--text-dark);
    font-weight: 500;
}

.fleet-features i {
    color: var(--primary-dark);
}

.fleet-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
}

/* Why Choose Us Section */
.why-us-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    position: relative;
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="60" height="60" viewBox="0 0 60 60" xmlns="http://www.w3.org/2000/svg"><g fill="none" fill-rule="evenodd"><g fill="%23ffffff" fill-opacity="0.03"><path d="M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z"/></g></g></svg>');
}

.why-us-card {
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(255,255,255,0.1);
    transition: all var(--transition-normal);
    height: 100%;
}

.why-us-card:hover {
    background: rgba(255,255,255,0.1);
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

.why-us-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all var(--transition-normal);
}

.why-us-card:hover .why-us-icon {
    transform: rotateY(360deg);
    box-shadow: 0 0 30px rgba(255,193,7,0.5);
}

.why-us-card h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: white;
}

.why-us-card p {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials-section {
    background: var(--bg-light);
}

.testimonial-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border-color);
}

.testimonial-rating {
    color: var(--warning-color);
    font-size: 1.2rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 30px;
    position: relative;
}

.testimonial-text::before {
    content: '"';
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
    position: absolute;
    top: -20px;
    left: -10px;
    font-family: serif;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 3px solid var(--primary-color);
}

.author-info {
    text-align: left;
}

.author-info h5 {
    font-size: 1.1rem;
    margin-bottom: 3px;
    color: var(--secondary-color);
}

.author-info span {
    font-size: 0.9rem;
    color: var(--text-light);
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    border: none;
    margin: 0 5px;
}

.carousel-indicators button.active {
    background-color: var(--primary-color);
}

/* FAQ Section */
.faq-header {
    padding-right: 30px;
}

.faq-description {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.faq-contact {
    background: var(--bg-light);
    padding: 30px;
    border-radius: var(--radius-lg);
}

.accordion-item {
    border: none;
    margin-bottom: 15px;
    border-radius: var(--radius-md) !important;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
}

.accordion-button {
    padding: 20px 25px;
    font-weight: 600;
    color: var(--secondary-color);
    background: white;
    border: none;
    box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
    background: var(--primary-color);
    color: var(--secondary-color);
}

.accordion-button::after {
    background-size: 1.2rem;
    transition: all var(--transition-normal);
}

.accordion-button:not(.collapsed)::after {
    filter: invert(1);
    transform: rotate(-180deg);
}

.accordion-body {
    padding: 20px 25px;
    color: var(--text-light);
    line-height: 1.8;
    background: white;
}

/* CTA Section */
.cta-section {
    position: relative;
    padding: 120px 0;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-dark), var(--primary-color));
}

.cta-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://images.unsplash.com/photo-1449965408869-eaa3f722e40d?w=1920&h=600&fit=crop') center/cover;
    opacity: 0.2;
    mix-blend-mode: multiply;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.3);
}

.cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: var(--font-secondary);
    font-size: 3rem;
    color: white;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.cta-subtitle {
    font-size: 1.3rem;
    color: rgba(255,255,255,0.95);
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons .btn {
    padding: 15px 40px;
    font-weight: 600;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-normal);
}

.cta-buttons .btn-light {
    background: white;
    color: var(--secondary-color);
    border: 2px solid white;
}

.cta-buttons .btn-light:hover {
    background: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.cta-buttons .btn-outline-light {
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-outline-light:hover {
    background: white;
    color: var(--primary-dark);
    transform: translateY(-3px);
}

.cta-note {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
}









        

        /* --- TEMPO TRAVELLER SECTION STYLES (ready for homepage) --- */
        .tempo-section {
            padding: 70px 0;
            background: linear-gradient(170deg, var(--bg-white) 0%, var(--bg-light) 100%);
            border-top: 4px solid var(--primary-color);
            border-bottom: 4px solid var(--primary-light);
        }

        .section-header {
            text-align: center;
            margin-bottom: 3rem;
        }

        .section-header h2 {
            font-size: 2.6rem;
            font-weight: 700;
            font-family: var(--font-secondary);
            color: var(--secondary-color);
            line-height: 1.2;
        }

        .section-header h2 span {
            color: var(--primary-dark);
            background: linear-gradient(145deg, var(--primary-light), transparent);
            padding: 0 10px;
            display: inline-block;
        }

        .section-header .subhead {
            color: var(--text-light);
            font-size: 1.2rem;
            margin-top: 0.5rem;
            letter-spacing: 1px;
        }

        .section-header .subhead i {
            color: var(--primary-color);
            margin: 0 6px;
        }

        .tempo-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2.5rem;
            align-items: center;
        }

        /* left content – SEO friendly text */
        .tempo-info h3 {
            font-size: 1.9rem;
            font-weight: 600;
            color: var(--secondary-light);
            margin-bottom: 1.2rem;
            border-left: 8px solid var(--primary-color);
            padding-left: 1.2rem;
        }

        .tempo-info .highlight-text {
            font-size: 1.1rem;
            color: var(--text-dark);
            margin-bottom: 2rem;
            background: rgba(255, 193, 7, 0.1);
            padding: 1rem 1.5rem;
            border-radius: var(--radius-md);
            border-left: 3px solid var(--primary-color);
        }

        .feature-list {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 1.2rem 1.8rem;
            margin: 2rem 0;
        }

        .feature-item {
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .feature-item i {
            color: var(--primary-color);
            font-size: 1.4rem;
            background: var(--bg-white);
            width: 38px;
            height: 38px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            box-shadow: var(--shadow-sm);
        }

        .feature-item .text {
            font-weight: 500;
            color: var(--text-dark);
        }

        .feature-item .text small {
            color: var(--text-muted);
            font-weight: 400;
            display: block;
            font-size: 0.8rem;
        }

        .popular-routes {
            background: var(--bg-white);
            padding: 1.2rem 1.8rem;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            margin: 2rem 0 1.5rem;
        }

        .popular-routes p {
            font-weight: 600;
            color: var(--secondary-light);
            margin-bottom: 0.8rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .route-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }

        .route-tag {
            background: var(--bg-light);
            padding: 0.4rem 1.2rem;
            border-radius: var(--radius-full);
            font-size: 0.9rem;
            font-weight: 500;
            color: var(--text-dark);
            border: 1px solid var(--border-color);
            transition: var(--transition-fast);
        }

        .route-tag:hover {
            background: var(--primary-color);
            border-color: var(--primary-dark);
            color: var(--secondary-color);
            transform: scale(1.02);
        }

        .btn-tempo {
            text-decoration: none;
            background-color: var(--primary-color);
            color: var(--secondary-color);
            border: 2px solid var(--secondary-color);
            padding: 1rem 2.5rem;
            font-size: 1.2rem;
            font-weight: 600;
            border-radius: var(--radius-full);
            cursor: pointer;
            transition: var(--transition-normal);
            display: inline-flex;
            align-items: center;
            gap: 12px;
            box-shadow: var(--shadow-lg);
            margin-top: 1rem;
        }

        .btn-tempo i {
            font-size: 1.3rem;
        }

        .btn-tempo:hover {
            background-color: var(--primary-dark);
            color: white;
            border-color: var(--primary-dark);
            box-shadow: var(--shadow-xl);
            transform: translateY(-3px);
        }

        /* right side - image / card */
        .tempo-visual {
            position: relative;
        }

        .tempo-card {
            background: var(--bg-white);
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-xl);
            border: 2px solid var(--primary-light);
        }

        .tempo-img {
            width: 100%;
            height: auto;
            display: block;
            background-color: var(--secondary-light);
            /* SVG tempo traveller placeholder – modern clean vector */
            background-image: url(/images/Tempo-Traveller-img.jpg);
            background-size: cover;
            background-position: center;
            height: 220px;
        }

        .vehicle-specs {
            display: flex;
            justify-content: space-around;
            padding: 1.2rem 0.8rem;
            background: var(--secondary-color);
            color: white;
        }

        .spec {
            text-align: center;
        }

        .spec i {
            color: var(--primary-color);
            font-size: 1.5rem;
        }

        .spec span {
            display: block;
            font-size: 0.9rem;
            font-weight: 300;
        }

        .spec strong {
            font-size: 1.1rem;
            color: var(--primary-light);
        }

        .testimonial-mini {
            background: var(--primary-light);
            color: var(--secondary-color);
            padding: 0.8rem 1.2rem;
            border-radius: 50px;
            font-size: 0.95rem;
            font-weight: 500;
            margin-top: 1.5rem;
            display: inline-block;
            box-shadow: var(--shadow-sm);
        }

        .testimonial-mini i {
            margin-right: 6px;
            color: var(--secondary-color);
        }

        /* responsive */
        @media (max-width: 900px) {
            .tempo-grid {
                grid-template-columns: 1fr;
            }
            .section-header h2 {
                font-size: 2rem;
            }
            .feature-list {
                grid-template-columns: 1fr;
            }
        }

        /* ============================= */
/* GLOBAL IMPROVEMENTS */
/* ============================= */

.tempo-section {
    overflow: hidden;
}

.tempo-grid {
    width: 100%;
}

.tempo-img {
    min-height: 220px;
}

/* ============================= */
/* LARGE SCREENS (1400px+) */
/* ============================= */
@media (min-width: 1400px) {
    .tempo-section {
        padding: 100px 0;
    }

    .section-header h2 {
        font-size: 3rem;
    }

    .tempo-info h3 {
        font-size: 2.2rem;
    }

    .tempo-img {
        height: 280px;
    }
}

/* ============================= */
/* LAPTOPS (1200px and below) */
/* ============================= */
@media (max-width: 1200px) {
    .tempo-grid {
        gap: 2rem;
    }

    .tempo-img {
        height: 240px;
    }
}

/* ============================= */
/* TABLETS (900px and below) */
/* ============================= */
@media (max-width: 900px) {

    .tempo-section {
        padding: 60px 0;
    }

    .tempo-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .section-header h2 {
        font-size: 2rem;
    }

    .tempo-info h3 {
        font-size: 1.6rem;
    }

    .feature-list {
        grid-template-columns: 1fr 1fr;
    }

    .tempo-img {
        height: 220px;
    }

    .vehicle-specs {
        flex-wrap: wrap;
        gap: 1rem;
        padding: 1rem;
    }

    .spec {
        flex: 1 1 45%;
    }

    .btn-tempo {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
}

/* ============================= */
/* LARGE MOBILES (600px and below) */
/* ============================= */
@media (max-width: 600px) {

    .section-header h2 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .section-header .subhead {
        font-size: 1rem;
    }

    .tempo-info h3 {
        font-size: 1.4rem;
    }

    .highlight-text {
        font-size: 0.95rem;
        padding: 0.9rem 1rem;
    }

    .feature-list {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-item {
        align-items: flex-start;
    }

    .feature-item i {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
    }

    .popular-routes {
        padding: 1rem;
    }

    .route-tag {
        font-size: 0.8rem;
        padding: 0.35rem 0.9rem;
    }

    .tempo-img {
        height: 200px;
    }

    .vehicle-specs {
        flex-direction: column;
        gap: 1rem;
    }

    .spec {
        flex: none;
    }

    .btn-tempo {
        font-size: 1rem;
        padding: 0.9rem 1.5rem;
    }

    .testimonial-mini {
        font-size: 0.85rem;
        padding: 0.7rem 1rem;
        text-align: center;
    }
}

/* ============================= */
/* SMALL MOBILES (400px and below) */
/* ============================= */
@media (max-width: 400px) {

    .section-header h2 {
        font-size: 1.4rem;
    }

    .tempo-info h3 {
        font-size: 1.2rem;
    }

    .highlight-text {
        font-size: 0.9rem;
    }

    .btn-tempo {
        font-size: 0.9rem;
        padding: 0.8rem 1.2rem;
    }

    .route-tag {
        font-size: 0.75rem;
        padding: 0.3rem 0.7rem;
    }
}

    








/* Service Section */
/* Carousel Base */
.services-carousel-container {
    position: relative;
    overflow: hidden;
}
.services-carousel-container {
    overflow: hidden;
    position: relative;
}

.services-track {
    display: flex;
    gap: 20px;
    width: max-content;
    will-change: transform;
}

.service-slide {
    flex: 0 0 auto;
    width: 280px; /* card width */
}

/* Mobile */
@media (max-width: 768px) {
    .service-slide {
        width: 260px;
    }
}

/* Desktop - show 3 cards */
@media (min-width: 992px) {
    .service-slide {
        flex: 0 0 33.3333%;
    }
}

/* Tablet - show 2 cards */
@media (min-width: 768px) and (max-width: 991px) {
    .service-slide {
        flex: 0 0 50%;
    }
}
















/* Contact Section */
.contact-info-card {
    background: var(--bg-light);
    padding: 40px;
    border-radius: var(--radius-xl);
    height: 100%;
}

.contact-info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.5rem;
    color: var(--secondary-color);
}

.contact-details h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: var(--secondary-color);
}

.contact-details p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

.contact-details a {
    color: var(--text-light);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.contact-details a:hover {
    color: var(--primary-dark);
}

.social-links h5 {
    margin-bottom: 15px;
    color: var(--secondary-color);
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 45px;
    height: 45px;
    background: var(--secondary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.social-icons a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

.contact-form-card {
    background: white;
    padding: 40px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
}

.form-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--secondary-color);
    position: relative;
    padding-bottom: 15px;
}

.form-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 2px;
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 0.9rem;
}

.form-control,
.form-select {
    border: 2px solid var(--border-color);
    border-radius: var(--radius-md);
    padding: 12px 15px;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(255,193,7,0.1);
}

.map-container {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

/* Footer */
.footer {
    background: var(--secondary-color);
    color: white;
}

.footer-main {
    padding: 80px 0 50px;
}

.footer-widget {
    margin-bottom: 30px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-brand i {
    font-size: 2.5rem;
    color: var(--primary-color);
}

.footer-brand h4 {
    font-size: 1.4rem;
    margin: 0;
    color: white;
}

.footer-brand span {
    font-size: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-about {
    color: rgba(255,255,255,0.7);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.footer-contact-info p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-contact-info i {
    color: var(--primary-color);
    width: 20px;
}

.footer-widget h5 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: all var(--transition-fast);
    display: inline-block;
    font-size: 0.95rem;
}

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.footer-bottom {
    background: rgba(0,0,0,0.2);
    padding: 25px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.copyright {
    color: rgba(255,255,255,0.6);
    margin: 0;
    font-size: 0.9rem;
}


footer .footer-bottom .copyright a{
    text-decoration: none;
    color: #ffc107;
}


.footer-social {
    display: flex;
    justify-content: flex-end;
    gap: 15px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: all var(--transition-normal);
}

.footer-social a:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-3px);
}

/* Button Styles */
.btn {
    font-weight: 600;
    padding: 12px 30px;
    border-radius: var(--radius-full);
    transition: all var(--transition-normal);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-size: 0.9rem;
}

.btn-primary {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
    color: var(--secondary-color);
}

.btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    color: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255,193,7,0.3);
}

.btn-outline-primary {
    border: 2px solid var(--primary-color);
    color: var(--primary-dark);
    background: transparent;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--secondary-color);
    transform: translateY(-2px);
}

/* Responsive Design */
@media (max-width: 1399.98px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (max-width: 1199.98px) {
    :root {
        --section-padding: 80px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .section-title {
        font-size: 2.4rem;
    }
    
    .about-img-secondary {
        width: 200px;
    }
}

@media (max-width: 991.98px) {
    .navbar-collapse {
        background: rgba(33, 33, 33, 0.98);
        padding: 20px;
        border-radius: var(--radius-lg);
        margin-top: 15px;
        backdrop-filter: blur(10px);
    }
    
    .navbar.scrolled .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
    }
    
    .nav-link {
        color: white !important;
        padding: 12px 20px !important;
    }
    
    .navbar.scrolled .nav-link {
        color: var(--text-dark) !important;
    }
    
    .btn-book-now {
        margin-top: 10px;
        display: inline-block;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 2.2rem;
    }
    
    .about-images {
        padding-right: 0;
        margin-bottom: 40px;
    }
    
    .experience-badge {
        right: 20px;
    }
    
    .cta-title {
        font-size: 2.5rem;
    }
    
    .footer-social {
        justify-content: center;
        margin-top: 20px;
    }
    
    .copyright {
        text-align: center;
    }
}

@media (max-width: 767.98px) {
    :root {
        --section-padding: 60px;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .quick-booking-card {
        padding: 20px;
    }
    
    .about-img-secondary {
        display: none;
    }
    
    .experience-badge {
        top: 20px;
        right: 20px;
        padding: 15px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .cta-title {
        font-size: 2rem;
    }
    
    .cta-subtitle {
        font-size: 1.1rem;
    }
    
    .contact-info-card,
    .contact-form-card {
        padding: 30px 20px;
    }
}

@media (max-width: 575.98px) {
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-feature-item {
        padding: 15px 10px;
    }
    
    .hero-feature-item span {
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .service-card,
    .fleet-card,
    .why-us-card {
        margin-bottom: 20px;
    }
    
    .whatsapp-float {
        width: 50px;
        height: 50px;
        font-size: 24px;
        bottom: 20px;
        left: 20px;
    }
    
    .scroll-to-top {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        bottom: 20px;
        right: 20px;
    }
    
    .footer-main {
        padding: 60px 0 30px;
    }
}

/* Accessibility Improvements */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Focus Visible for Keyboard Navigation */
*:focus-visible {
    outline: 3px solid var(--primary-color);
    outline-offset: 2px;
}

/* Print Styles */
@media print {
    .navbar,
    .hero-scroll-indicator,
    .whatsapp-float,
    .scroll-to-top,
    .cta-section,
    .footer {
        display: none !important;
    }
    
    .hero-section {
        min-height: auto;
        padding: 40px 0;
    }
    
    .hero-background::before {
        display: none;
    }
    
    body {
        color: black;
    }
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    :root {
        --primary-color: #FFD700;
        --text-dark: #000000;
    }
    
    .btn-primary {
        border: 2px solid black;
    }
}











.services-carousel-container {
    overflow: hidden;
    position: relative;
}

.services-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s ease;
}

.service-slide {
    min-width: 320px;
}

@media (max-width: 768px) {
    .service-slide {
        min-width: 280px;
    }
}

@media (max-width: 480px) {
    .service-slide {
        min-width: 240px;
    }
}







/* Media query for mobile screen */
@media (max-width: 576px) {
    .scroll-to-top{
        position: fixed;
        bottom: 100px;
        right: 32px;
    }

    .floating-call{
        position: fixed;
        bottom: 20px;
    }

    .hero-subtitle{
        display: none;
    }

    .services-section{
        padding: 30px 10px !important;
    }

    .services-track{
        margin-left: 100px !important;
        margin-right: 100px !important;
    }

    .service-card{
        margin-left: -10px !important;
        margin-right: -10px !important;
    }

    .tempo-visual .btn-tempo, .testimonial-mini{
        max-width: 90vw;
    }
    .packages-section .container{
        padding: 0px 10px !important;
    }

    .contact-card{
        padding: 20px !important;
    }

    .contact-card .contact-info-large{
        padding: 30px 25px !important;
    }

    .hero-content{
        margin-top: 30px;
        padding: 0px 10px 10px !important;
    }
    .hero-content .text-center{
        margin-bottom: 50px !important;
    }

    .hero-scroll-indicator{
        margin-bottom: 80px;
    }

    .quick-booking-section{
        margin-top: -150px !important;
    }

    .hero-cta-group .btn-primary{
        margin-right: 0px !important;
    }

    #services{
        padding: 0px !important;
    }
    #services .container{
        padding: 20px 0px !important;
        width: 100% !important;
    }


    .contact-section .contact-info-card .contact-info-item{
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
    }
     .contact-section .contact-info-card .contact-info-item .contact-icon, .contact-details{
        align-self: flex-start;
     }

     .contact-info-large .contact-method-large .contact-icon-large, .contact-details-large{
        align-self: flex-start;
     }

}





/* Services Section */
.services-sections {
    background: linear-gradient(to bottom, var(--bg-light), white);
    overflow: hidden;
    padding: 50px 40px 10px;
}

/* Carousel Container */
.services-carousel-containers {
    position: relative;
    width: 100%;
    padding: 20px 0;
    margin: 0 -12px;
}

.services-tracks {
    display: flex;
    align-items: stretch;
    transition: transform 0.5s ease;
}

/* Slides */
.service-slides {
    flex: 0 0 calc(33.333% - 24px);
    margin: 0 12px;
    display: flex;
}

/* Card */
.service-cards {
    background: white;
    border-radius: 16px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    border: 1px solid var(--border-color);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    width: 100%;
}

/* Image */
.service-icons .img {
    width: 100%;
    height: 230px;
    overflow: hidden;
}

.service-icons .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Content */
.service-contents {
    flex: 1;
    display: flex;
    flex-direction: column;
    padding: 20px 10px;
}

.service-titles {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 12px;
}

.service-descriptions {
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.service-features {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

/* IMPORTANT FIX */
.service-contents .btn {
    margin-top: auto;
}

/* Responsive */
@media (max-width: 768px) {
    .service-slides {
        flex: 0 0 100%;
    }

    .service-icons .img {
        height: 160px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .service-slides {
        flex: 0 0 calc(50% - 24px);
    }
}

/* Auto Slide Indicator */
.auto-slide-indicator {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.auto-slide-pulse {
    width: 10px;
    height: 10px;
    background: var(--success-color);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 0.7; }
    50% { transform: scale(1.1); opacity: 1; }
    100% { transform: scale(0.9); opacity: 0.7; }
}





























/* ============================================
   COMPREHENSIVE RESPONSIVE FIXES
   Added by Assistant - March 2025
   ============================================ */

/* Fix for services section on all devices */
.services-sections {
    overflow: hidden;
    padding: 60px 0;
}

.services-carousel-containers {
    position: relative;
    width: 100%;
    padding: 0 15px;
    margin: 0 auto;
    max-width: 1400px;
}

.services-tracks {
    display: flex;
    transition: transform 0.5s ease;
    will-change: transform;
}

.service-slides {
    flex: 0 0 100%;
    padding: 0 12px;
    box-sizing: border-box;
}


/* Desktop - 3 cards */
@media (min-width: 992px) {
    .service-slides {
        flex: 0 0 33.333%;
    }
}

/* Tablet - 2 cards */
@media (min-width: 768px) and (max-width: 991px) {
    .service-slides {
        flex: 0 0 50%;
    }
}


@media (max-width: 576px) {
   .a{
    margin-left: 5px !important;
   }

   .b{
    margin-left: 30px !important;
   }

   .c{
    margin-left: 30px !important;
   }
   .d{
    margin-left: 35px !important;
   }
   .d{
    margin-left: 30px !important;
   }
   .e{
    margin-left: 30px !important;
   }
   .f{
    margin-right: 40px !important;
   }

   .carousel-dots{
    margin-bottom: 30px !important;
   }
}

/* Mobile - 1 card (already set above) */

/* Navigation dots for carousel */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    padding: 0;
}

.dot.active {
    background-color: var(--primary-color);
    transform: scale(1.2);
}

/* Hero section mobile fixes */
@media (max-width: 576px) {
    .hero-section {
        min-height: 90vh;
    }
    
    .hero-content {
        padding-top: 60px;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 6px 15px;
    }
    
    .hero-cta-group .btn {
        display: block;
        width: 100%;
        margin: 10px 0 !important;
    }
    
    .hero-feature-item {
        padding: 12px 8px;
    }
    
    .hero-feature-item i {
        font-size: 1.4rem;
    }
    
    .hero-feature-item span {
        font-size: 0.75rem;
    }
}

/* Quick booking section mobile fixes */
@media (max-width: 576px) {
    .quick-booking-section {
        margin-top: -120px !important;
    }
    
    .quick-booking-card {
        padding: 20px 15px;
    }
    
    .quick-booking-card .form-label {
        font-size: 0.85rem;
        margin-bottom: 5px;
    }
    
    .quick-booking-card .form-control,
    .quick-booking-card .form-select {
        padding: 10px 12px;
        font-size: 0.9rem;
    }
}

/* About section mobile fixes */
@media (max-width: 576px) {
    .about-section {
        padding: 40px 0;
    }
    
    .about-images {
        padding-right: 0;
    }
    
    .about-img-main {
        margin-bottom: 20px;
    }
    
    .about-img-secondary {
        position: relative;
        bottom: 0;
        width: 100%;
        margin-top: 20px;
    }
    
    .experience-badge {
        top: 20px;
        right: 20px;
        padding: 15px;
    }
    
    .experience-badge .years {
        font-size: 2rem;
    }
    
    .experience-badge .text {
        font-size: 0.7rem;
    }
    
    .about-counters .col-4 {
        padding: 0 5px;
    }
    
    .counter-item {
        text-align: center;
    }
    
    .counter {
        font-size: 1.5rem;
    }
    
    .counter-label {
        font-size: 0.7rem;
    }
}

/* Fleet section mobile fixes */
@media (max-width: 576px) {
    .fleet-section {
        padding: 40px 0;
    }
    
    .fleet-card {
        margin-bottom: 20px;
    }
    
    .fleet-image {
        height: 180px;
    }
    
    .fleet-content {
        padding: 15px;
    }
    
    .fleet-content h4 {
        font-size: 1.1rem;
    }
    
    .fleet-type {
        font-size: 0.8rem;
    }
    
    .fleet-features span {
        font-size: 0.75rem;
    }
    
    .fleet-price {
        font-size: 1.2rem;
    }
}

/* Why choose us section mobile fixes */
@media (max-width: 576px) {
    .why-us-section {
        padding: 40px 0;
    }
    
    .why-us-card {
        padding: 25px 20px;
    }
    
    .why-us-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .why-us-card h4 {
        font-size: 1.1rem;
    }
    
    .why-us-card p {
        font-size: 0.85rem;
    }
}

/* Testimonials section mobile fixes */
@media (max-width: 576px) {
    .testimonials-section {
        padding: 40px 0;
    }
    
    .testimonial-card {
        padding: 25px 15px;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
    }
    
    .testimonial-text::before {
        font-size: 3rem;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    .author-info h5 {
        font-size: 0.95rem;
    }
    
    .author-info span {
        font-size: 0.8rem;
    }
}

/* FAQ section mobile fixes */
@media (max-width: 576px) {
    .faq-section {
        padding: 40px 0;
    }
    
    .accordion-button {
        padding: 15px;
        font-size: 0.95rem;
    }
    
    .accordion-body {
        padding: 15px;
        font-size: 0.9rem;
    }
    
    .faq-contact {
        padding: 20px;
    }
    
    .faq-contact i {
        font-size: 1.5rem;
    }
    
    .faq-contact strong {
        font-size: 0.9rem;
    }
}

/* Contact section mobile fixes */
@media (max-width: 576px) {
    .contact-section {
        padding: 40px 0;
    }
    
    .contact-info-card {
        padding: 25px 15px;
    }
    
    .contact-info-item {
        gap: 15px;
    }
    
    .contact-icon {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon i {
        font-size: 1.2rem;
    }
    
    .contact-details h4 {
        font-size: 1rem;
    }
    
    .contact-details p,
    .contact-details a {
        font-size: 0.9rem;
    }
    
    .contact-form-card {
        padding: 25px 15px;
    }
    
    .form-title {
        font-size: 1.2rem;
    }
    
    .form-label {
        font-size: 0.85rem;
    }
}

/* Footer mobile fixes */
@media (max-width: 576px) {
    .footer-main {
        padding: 40px 0 20px;
    }
    
    .footer-widget {
        margin-bottom: 25px;
    }
    
    .footer-brand h4 {
        font-size: 1.1rem;
    }
    
    .footer-about {
        font-size: 0.85rem;
    }
    
    .footer-contact-info p {
        font-size: 0.85rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    .footer-bottom {
        padding: 15px 0;
    }
    
    .copyright {
        font-size: 0.8rem;
        text-align: center;
        margin-bottom: 10px;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-social a {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }
}

/* Page header mobile fixes */
@media (max-width: 576px) {
    .page-header {
        padding: 30px 0;
    }
    
    .page-title {
        font-size: 1.8rem;
    }
    
    .breadcrumb {
        font-size: 0.85rem;
    }
}

/* Modal responsive fixes */
@media (max-width: 576px) {
    .modal-dialog {
        margin: 10px;
    }
    
    .modal-content {
        padding: 15px;
    }
    
    .modal-header h5 {
        font-size: 1.1rem;
    }
    
    .modal-body {
        padding: 15px 0;
    }
}

/* Image responsiveness */
img {
    max-width: 100%;
    height: auto;
}

/* Touch-friendly buttons on mobile */
@media (max-width: 576px) {
    .btn,
    .nav-link,
    .footer-links a,
    .social-icons a {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    .hero-cta-group{
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 10px;
    }
    .hero-cta-group .btn-primary{
        padding: 14px 10px !important;
    }
}

/* Fix for horizontal scroll on all devices */
/* body {
    overflow-x: hidden;
    width: 100%;
}

.container,
.container-fluid {
    overflow-x: hidden;
} */

/* Fix for Bootstrap row margins */
.row {
    margin-left: -12px;
    margin-right: -12px;
}

.row > * {
    padding-left: 12px;
    padding-right: 12px;
}

/* Fix for navbar on mobile */
@media (max-width: 991px) {
    .navbar-collapse {
        max-height: 80vh;
        overflow-y: auto;
        padding: 15px;
    }
    
    .nav-item {
        width: 100%;
        text-align: center;
    }
    
    .nav-link {
        padding: 12px !important;
    }
    
    .btn-book-now {
        width: 100%;
        margin-top: 10px;
    }
}

/* Fix for AOS on mobile */
@media (max-width: 768px) {
    [data-aos] {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
    }
}


/* 
@media (max-width: 576px) {
    .navbar {
        max-height: 10vh !important;
    }
    .navbar.scrolled img{
        transform: scale(1.4);
    }
    .navbar-toggler{
        margin-right: 6.5% !important;
    }
} */










.services-sections .service-icons{
    height: 40vh !important;
}
.img {
    width: 100% !important;
    height: 125% !important;
}

.img img {
    width: 100% !important;
    height: 80% !important;
    object-fit: cover !important; /* fills parent without distortion */
    display: block !important;
}

@media (max-width: 576px) {
    #services .service-icons{
        height: 32vh !important;
    }
}