/* Base Styles */
:root {
    --primary: #2E7D32;
    --secondary: #4FC3F7;
    --accent: #FF9800;
    --light-bg: #F5F5F5;
    --dark-bg: #424242;
    --white: #FFFFFF;
    --section-padding: 80px 0;
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Open Sans', sans-serif;
    line-height: 1.6;
    color: #333;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    margin-bottom: 20px;
}

section {
    padding: var(--section-padding);
}

/* disable a , li additional stylings */
a {
    text-decoration: none;
    color: inherit;
}
li {
    list-style: none;
}



.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.btn {
    display: inline-block;
    padding: 12px 30px;
    font-family: 'Roboto Condensed', sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    border: none;
    font-size: 16px;
    letter-spacing: 0.5px;
}

.btn-primary {
    background-color: var(--accent);
    color: var(--white);
}

.btn-primary:hover {
    background-color: #e68900;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.btn-secondary {
    background-color: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.btn-secondary:hover {
    background-color: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.text-center {
    text-align: center;
}

/* Header */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: transparent;
    transition: var(--transition);
    padding: 20px 0;
}

header.sticky {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    padding: 12px 0;
}

header.sticky .logo-white {
    display: none;
}

header.sticky .logo-dark {
    display: block;
}

header.sticky .nav-link {
    color: var(--dark-bg);
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

header.sticky .logo {
    color: var(--primary);
}

.logo img {
    height: 40px;
    margin-right: 10px;
}

.logo-white {
    display: block;
}

.logo-dark {
    display: none;
}

.nav-links {
    display: flex;
    list-style-type: none;
}

.nav-item {
    margin: 0 15px;
}

.nav-link {
    text-decoration: none;
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    transition: var(--transition);
    font-size: 16px;
}

.nav-link:hover {
    color: var(--accent);
}

.mobile-toggle {
    display: none;
    cursor: pointer;
    color: var(--white);
    font-size: 24px;
}

header.sticky .mobile-toggle {
    color: var(--dark-bg);
}

.language-toggle {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

.language-toggle a {
    text-decoration: none;
    color: var(--white);
    font-weight: 600;
    margin: 0 5px;
    font-size: 14px;
}

header.sticky .language-toggle a {
    color: var(--dark-bg);
}

.language-toggle .active {
    color: var(--accent);
    font-weight: 700;
}

/* Hero Section must be loaded lazy */
#hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/hero.jpg');
    background-size: cover;
    background-position: center center;
    height: 100vh;
    display: flex;
    align-items: center;
    text-align: center;
    color: var(--white);
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 48px;
    margin-bottom: 20px;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 24px;
    margin-bottom: 40px;
    font-weight: 400;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Services Section */
#services {
    background-color: var(--white);
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 60px;
    color: var (--primary);
    position: relative;
}

.section-title:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--accent);
}

.services-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.service-card {
    flex: 1;
    min-width: 300px;
    margin: 15px;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 10px;
    transition: var(--transition);
    text-align: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.service-icon {
    font-size: 48px;
    color: var(--primary);
    margin-bottom: 20px;
}

.service-title {
    font-size: 22px;
    margin-bottom: 15px;
    color: var(--dark-bg);
}

.service-description {
    margin-bottom: 20px;
    color: #666;
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.read-more i {
    margin-left: 5px;
    transition: var(--transition);
}

.read-more:hover i {
    transform: translateX(5px);
}

/* About Section */
#about {
    background-color: var(--light-bg);
}

.about-container {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.about-image {
    flex: 1;
    min-width: 300px;
    padding: 15px;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-content {
    flex: 1;
    min-width: 300px;
    padding: 15px;
}

.about-title {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text {
    margin-bottom: 30px;
    line-height: 1.8;
}

.quote-box {
    background-color: var(--primary);
    color: var(--white);
    padding: 30px;
    border-radius: 10px;
    margin: 30px 0;
    position: relative;
}

.quote-box:before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: 10px;
    color: rgba(255, 255, 255, 0.2);
}

.fleet-carousel {
    margin-top: 40px;
    border-radius: 10px;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.fleet-carousel:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fleet-carousel h3 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 24px;
    position: relative;
    padding-bottom: 10px;
    text-align: center;
}

.fleet-carousel h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background-color: var(--accent);
}

.fleet-showcase {
    display: flex;
    justify-content: space-between;
    gap: 20px;
    margin-top: 20px;
}

.showcase-item {
    flex: 1;
    position: relative;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.showcase-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.showcase-item img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.showcase-item:hover img {
    transform: scale(1.05);
}

.showcase-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 15px;
    background: linear-gradient(to top, rgba(0,0,0,0.8), rgba(0,0,0,0.3), transparent);
    color: white;
}

.showcase-caption h4 {
    font-size: 18px;
    margin-bottom: 5px;
    font-weight: 600;
}

.showcase-caption p {
    font-size: 14px;
    opacity: 0.9;
    margin: 0;
}

@media (max-width: 768px) {
    .fleet-showcase {
        flex-direction: column;
    }
    
    .showcase-item {
        margin-bottom: 20px;
    }
    
    .showcase-item img {
        height: 180px;
    }
}

.fleet-carousel {
    margin-top: 40px;
    border-radius: 10px;
    padding: 20px;
    background-color: #f9f9f9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.fleet-carousel:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.fleet-carousel h3 {
    margin-bottom: 20px;
    color: var(--primary);
    font-size: 24px;
    position: relative;
    padding-bottom: 10px;
}

.fleet-carousel h3:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

.carousel-container {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 250px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.carousel-slide {
    display: flex;
    transition: transform 0.7s ease-in-out;
    height: 100%;
}

.carousel-slide img {
    width: 100%;
    flex-shrink: 0;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.carousel-slide img:hover {
    transform: scale(1.02);
}

.carousel-nav {
    display: flex;
    justify-content: center;
    margin-top: 20px;
}

.carousel-dot {
    height: 12px;
    width: 12px;
    background-color: #ddd;
    border-radius: 50%;
    margin: 0 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background-color: #bbb;
}

.carousel-dot.active {
    background-color: var(--primary);
    transform: scale(1.2);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

/* Add carousel controls for better UX */
.carousel-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    transform: translateY(-50%);
    z-index: 5;
    padding: 0 15px;
}

.carousel-control {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--primary);
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s ease;
    border: none;
}

.carousel-container:hover .carousel-control {
    opacity: 1;
}

.carousel-control:hover {
    background: rgba(255, 255, 255, 0.95);
    color: var(--accent);
}

@media (max-width: 768px) {
    .carousel-container {
        height: 200px;
    }
    
    .carousel-control {
        width: 35px;
        height: 35px;
        font-size: 16px;
        opacity: 1;
    }
}

/* Impact Section */
#impact {
    background-color: var(--primary);
    color: var(--white);
}

.impact-title {
    color: var(--white);
}

.impact-title:after {
    background-color: var(--white);
}

.counters {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin-bottom: 50px;
}

.counter-item {
    text-align: center;
    padding: 20px;
    flex: 1;
    min-width: 250px;
}

.counter-value {
    font-size: 48px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.counter-label {
    font-size: 18px;
    margin-top: 10px;
    font-family: 'Roboto Condensed', sans-serif;
}

.impact-comparison {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    margin-top: 50px;
    gap: 30px;
    position: relative;
    padding: 20px 0;
}

.comparison-item {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    position: relative;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.comparison-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.comparison-title {
    font-size: 24px;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.comparison-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 50px;
    background-color: var(--accent);
}

.comparison-icon {
    font-size: 64px;
    margin-bottom: 25px;
    color: var(--accent);
    text-align: center;
}

.comparison-item ul {
    list-style-type: none;
    padding: 0;
    margin: 0;
}

.comparison-item ul li {
    padding: 10px 0;
    position: relative;
    padding-left: 30px;
    margin-bottom: 5px;
}

.comparison-item:first-child ul li::before {
    content: '\f00d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    color: #ff6b6b;
}

.comparison-item:last-child ul li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 10px;
    color: #51cf66;
}

.vs-separator {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    font-weight: 700;
    color: var(--accent);
    position: relative;
    width: 80px;
    height: 80px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    margin: 0 15px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
    z-index: 1;
    align-self: center;
}

.map-container {
    margin-top: 60px;
    height: 400px;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* How It Works Section */
#process {
    background-color: var(--white);
}

.process-steps {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin: 50px 0;
}

.process-steps:after {
    content: '';
    position: absolute;
    top: 55px;
    left: 0;
    right: 0;
    height: 4px;
    background-color: var(--light-bg);
    z-index: 1;
}

.process-step {
    text-align: center;
    position: relative;
    z-index: 2;
    flex: 1;
    padding: 0 15px;
}

.step-number {
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    position: relative;
    z-index: 3;
}

.step-title {
    font-size: 20px;
    margin-bottom: 15px;
    color: var (--primary);
}

.step-description {
    font-size: 14px;
    color: #666;
}

/* Testimonials Section */
#testimonials {
    background-color: var(--light-bg);
}

.testimonials-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.testimonial-slide {
    padding: 30px;
    background-color: var(--white);
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-slide.active {
    display: block;
    opacity: 1;
}

.testimonial-content {
    text-align: center;
    position: relative;
    padding: 20px;
}

.testimonial-content:before {
    content: '\201C';
    font-family: Georgia, serif;
    font-size: 80px;
    position: absolute;
    top: -20px;
    left: 0;
    color: rgba(46, 125, 50, 0.1);
}

.testimonial-text {
    font-style: italic;
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.author-image {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 10px;
    border: 3px solid var(--primary);
}

.author-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.author-name {
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 5px;
}

.author-company {
    font-size: 14px;
    color: #666;
}

.testimonial-navigation {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.testimonial-dot {
    height: 12px;
    width: 12px;
    background-color: #bbb;
    border-radius: 50%;
    margin: 0 5px;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background-color: var(--primary);
}

.partners {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 60px;
}

.partner-logo {
    height: 60px;
    margin: 15px 30px;
    opacity: 0.6;
    filter: grayscale(100%);
    transition: var(--transition);
}

.partner-logo:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* Pricing Section */
#pricing {
    background-color: var(--white);
}

.pricing-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}

.quote-calculator {
    flex: 1;
    min-width: 300px;
    padding: 30px;
    background-color: var(--light-bg);
    border-radius: 10px;
    margin: 15px;
}

.quote-title {
    font-size: 24px;
    text-align: center;
    margin-bottom: 30px;
    color: var(--primary);
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--dark-bg);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 16px;
    transition: var(--transition);
}

.form-control:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.2);
}

.radio-group {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    padding: 8px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    transition: var(--transition);
}

.radio-label:hover {
    background-color: #f0f0f0;
}

.radio-input {
    margin-right: 8px;
}

.quote-map {
    flex: 1;
    min-width: 300px;
    margin: 15px;
    border-radius: 10px;
    overflow: hidden;
}

.instant-quote {
    background-color: var(--accent);
    color: var(--white);
    padding: 15px;
    border-radius: 5px;
    margin-top: 20px;
    font-weight: 600;
    text-align: center;
    display: none;
}

/* Contact Section */
#contact {
    background-color: var(--light-bg);
}

.contact-container {
    display: flex;
    flex-wrap: wrap;
}

.contact-form {
    flex: 1;
    min-width: 300px;
    padding: 15px;
}

.contact-info {
    flex: 1;
    min-width: 300px;
    padding: 15px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
}

.contact-icon {
    font-size: 24px;
    color: var(--primary);
    margin-right: 15px;
    width: 30px;
}

.contact-text h3 {
    font-size: 18px;
    margin-bottom: 5px;
    color: var(--primary);
}

.contact-text p {
    color: #666;
}

.social-links {
    display: flex;
    margin-top: 30px;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: var(--primary);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.social-link:hover {
    background-color: var(--accent);
    transform: translateY(-3px);
}

.business-hours {
    margin-top: 40px;
}

.business-hours h3 {
    font-size: 20px;
    color: var(--primary);
    margin-bottom: 15px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px dashed #ddd;
}

.hours-day {
    font-weight: 600;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    background-color: #25D366;
    color: var(--white);
    padding: 12px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 20px;
    transition: var(--transition);
}

.whatsapp-button i {
    font-size: 20px;
    margin-right: 10px;
}

.whatsapp-button:hover {
    background-color: #128C7E;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

/* FAQ Section */
#faq {
    background-color: var(--white);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: 5px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.faq-question {
    padding: 20px;
    background-color: var(--light-bg);
    color: var(--dark-bg);
    font-weight: 600;
    cursor: pointer;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: var(--transition);
}

.faq-question:hover {
    background-color: #e9e9e9;
}

.faq-question i {
    transition: var(--transition);
}

.faq-item.active .faq-question {
    background-color: var(--primary);
    color: var(--white);
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: var(--transition);
    background-color: var(--white);
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-cta {
    text-align: center;
    margin-top: 40px;
}

/* Footer */
footer {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 60px 0 30px;
}

.footer-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.footer-logo {
    flex: 1;
    min-width: 250px;
    margin-bottom: 30px;
}

.footer-logo a {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 28px;
    color: var(--white);
    text-decoration: none;
    display: flex;
    align-items: center;
}

.footer-logo img {
    height: 40px;
    margin-right: 10px;
}

.footer-logo p {
    margin-top: 15px;
    color: #aaa;
}

.footer-links {
    flex: 1;
    min-width: 150px;
    margin-bottom: 30px;
}

.footer-title {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--white);
    position: relative;
    padding-bottom: 10px;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background-color: var(--accent);
}

.footer-links ul {
    list-style-type: none;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--accent);
    padding-left: 5px;
}

.footer-newsletter {
    flex: 2;
    min-width: 250px;
    margin-bottom: 30px;
}

.newsletter-form {
    display: flex;
    margin-top: 20px;
}

.newsletter-input {
    flex: 1;
    padding: 12px 15px;
    border: none;
    border-radius: 5px 0 0 5px;
}

.newsletter-button {
    background-color: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 0 5px 5px 0;
    padding: 0 20px;
    cursor: pointer;
    transition: var(--transition);
}

.newsletter-button:hover {
    background-color: #e68900;
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #555;
    margin-top: 30px;
    color: #aaa;
    font-size: 14px;
}

/* Responsive Styles */
@media (max-width: 991px) {
    .hero-title {
        font-size: 40px;
    }
    
    .hero-subtitle {
        font-size: 20px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .process-steps {
        flex-direction: column;
    }
    
    .process-step {
        margin-bottom: 30px;
    }
    
    .process-steps:after {
        display: none;
    }
    
    .counters {
        flex-direction: column;
    }
    
    .counter-item {
        margin-bottom: 30px;
    }
    
    .vs-separator {
        margin: 20px auto;
    }
    
    .impact-comparison {
        flex-direction: column;
    }
    
    .fleet-showcase {
        flex-direction: column;
    }
    
    .showcase-item {
        margin-bottom: 20px;
    }
}

@media (max-width: 900px) {
    .hero-title {
        font-size: 36px;
    }
    
    .hero-subtitle {
        font-size: 18px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .nav-links {
        position: absolute;
        top: 80px;
        left: 0;
        width: 100%;
        background-color: var(--white);
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 20px 0;
        box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
        transform: translateY(-150%);
        transition: var(--transition);
        opacity: 0;
    }
    
    .nav-links.active {
        transform: translateY(0);
        opacity: 1;
    }
    
    .nav-item {
        margin: 10px 0;
    }
    
    .nav-link {
        color: var(--dark-bg);
    }
    
    .mobile-toggle {
        display: block;
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .service-card {
        min-width: 100%;
    }
    
    .vs-separator {
        margin: 0 auto 30px;
    }
    
    .comparison-item {
        min-width: 100%;
    }
    
    .language-toggle {
        margin: 15px 0 0;
        width: 100%;
        justify-content: center;
    }
    
    .language-toggle a {
        padding: 8px 15px;
        margin: 0 5px;
        background-color: #f5f5f5;
        border-radius: 20px;
        transition: all 0.3s ease;
    }
    
    .language-toggle a.active {
        background-color: var(--accent);
        color: white;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .testimonial-author {
        flex-direction: column;
    }
    
    .author-image {
        margin-bottom: 10px;
    }
    
    .map-container {
        height: 300px;
    }
    
    .quote-calculator, .quote-map {
        min-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 32px;
    }
    
    .hero-subtitle {
        font-size: 16px;
    }
    
    .btn {
        padding: 10px 20px;
        font-size: 14px;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .service-card {
        padding: 20px;
        margin: 10px 0;
    }
    
    .about-title {
        font-size: 28px;
    }
    
    .quote-box {
        padding: 20px;
    }
    
    .testimonial-text {
        font-size: 16px;
    }
    
    .hero {
        height: auto;
        min-height: 100vh;
        padding: 120px 0 50px;
    }
    
    #hero {
        height: auto;
        min-height: 100vh;
        padding-top: 100px;
        padding-bottom: 50px;
    }
    
    .navbar {
        padding: 0 10px;
    }
    
    .logo {
        font-size: 22px;
    }
    
    .logo img {
        height: 30px;
    }
    
    .contact-container {
        flex-direction: column;
    }
    
    .faq-question {
        font-size: 16px;
        padding: 15px;
    }
    
    .footer-container {
        flex-direction: column;
    }
    
    .footer-logo, .footer-links, .footer-newsletter {
        width: 100%;
    }
    
    .counter-item {
        padding: 10px;
    }
    
    .counter-value {
        font-size: 36px;
    }
    
    .counter-label {
        font-size: 14px;
    }
    
    .section-title {
        margin-bottom: 30px;
    }
    
    section {
        padding: 50px 0;
    }
    
    .showcase-item {
        margin-bottom: 15px;
    }
    
    .showcase-item img {
        height: 180px;
    }
    
    .showcase-caption h4 {
        font-size: 16px;
    }
    
    .showcase-caption p {
        font-size: 12px;
    }
}

/* Additional Mobile Tweaks */
@media (max-width: 480px) {
    .hero-buttons {
        width: 100%;
    }
    
    .hero-buttons .btn {
        width: 100%;
        margin: 5px 0;
    }
    
    .social-links {
        justify-content: center;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-input {
        border-radius: 5px;
        margin-bottom: 10px;
    }
    
    .newsletter-button {
        border-radius: 5px;
        width: 100%;
        padding: 12px;
    }
    
    .scroll-to-top {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
    
    .business-hours {
        font-size: 14px;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
}

.scroll-to-top.active {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background-color: var(--accent);
}

/* New mobile-specific styles */
.swipe-hint {
    display: none;
    text-align: center;
    font-size: 14px;
    color: #777;
    padding: 10px 0;
    animation: pulse 2s infinite;
}

.swipe-hint i {
    margin: 0 10px;
    color: var(--accent);
}

@keyframes pulse {
    0% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .swipe-hint {
        display: flex;
        justify-content: center;
        align-items: center;
        margin-top: 10px;
    }
    
    /* Enhanced fleet showcase for mobile */
    .fleet-showcase {
        display: flex;
        flex-direction: row;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
        margin: 0 -15px;
        padding: 0 15px;
        scroll-behavior: smooth;
    }
    
    .fleet-showcase::-webkit-scrollbar {
        display: none; /* Chrome, Safari, Opera */
    }
    
    .showcase-item {
        flex: 0 0 85%;
        margin-right: 15px;
        scroll-snap-align: center;
        border-radius: 10px;
    }
    
    /* Force showcase items to be visible by default on mobile */
    .showcase-item {
        opacity: 1;
        visibility: visible;
    }
}

/* Enhance testimonials for mobile */
@media (max-width: 768px) {
    .testimonial-navigation {
        margin-top: 20px;
    }
    
    .testimonial-dot {
        height: 15px;
        width: 15px;
        margin: 0 8px;
    }
    
    .testimonial-slide {
        padding: 20px 15px;
    }
    
    .testimonial-text {
        font-size: 16px;
        line-height: 1.6;
    }
    
    .author-image {
        width: 60px;
        height: 60px;
    }
}

/* Enhanced language switcher styles */
.language-toggle a {
    position: relative;
    transition: all 0.3s ease;
}

.language-toggle a.active::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--accent);
}

@media (max-width: 900px) {
    .language-toggle {
        width: 100%;
        display: flex;
        justify-content: center;
        margin-top: 15px;
    }
    
    .language-toggle a {
        padding: 6px 15px;
        border-radius: 20px;
        margin: 0 5px;
    }
    
    .language-toggle a.active {
        background-color: var(--accent);
        color: white;
    }
    
    .language-toggle a.active::after {
        display: none;
    }
    
    .language-toggle span {
        margin: 0 5px;
        opacity: 0.5;
    }
}

