/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #ffffff;
    --accent-color: #34495e;
    --concrete-color: #7f8c8d;
    --text-color: #333333;
    --text-light: #666666;
    --border-color: #e5e5e5;
    --bg-light: #f8f9fa;
    --bg-dark: #2c3e50;
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: var(--secondary-color);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
}

.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-menu a {
    color: var(--text-color);
    text-decoration: none;
    font-weight: 500;
    transition: var(--transition);
    font-size: 0.95rem;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.btn-primary {
    background: var(--primary-color);
    color: var(--secondary-color);
    padding: 0.6rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.btn-primary:hover {
    background: var(--accent-color);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    transform: translateY(-1px);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

/* Hero Section */
.hero {
    margin-top: 80px;
    padding: 8rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--secondary-color);
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    letter-spacing: -1px;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

.btn-large {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

.btn-outline {
    background: transparent;
    border: 2px solid var(--secondary-color);
    color: var(--secondary-color);
    font-weight: 700;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-outline:hover {
    background: var(--secondary-color);
    color: var(--primary-color);
    text-shadow: none;
}

.btn:not(.btn-outline) {
    background: var(--secondary-color);
    color: var(--primary-color);
    font-weight: 700;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.btn:not(.btn-outline):hover {
    background: #f0f0f0;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Trusted By Section */
.trusted-by {
    padding: 5rem 0;
    background: var(--bg-light);
    color: var(--text-color);
}

.trusted-by .section-title,
.trusted-by .section-subtitle {
    color: var(--text-color);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
    color: var(--text-color);
}

.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.logos-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.logo-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    background: var(--secondary-color);
    border-radius: 8px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    text-decoration: none;
}

.logo-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    color: var(--primary-color);
}

/* Built For Section */
.built-for {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.built-for-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.built-for-card {
    padding: 2rem;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    transition: var(--transition);
}

.built-for-card:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.built-for-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.built-for-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Services Section */
.services {
    padding: 5rem 0;
    background: var(--bg-light);
    color: var(--text-color);
}

/* Ensure text is dark on light backgrounds */
.services[style*="background: var(--bg-light)"],
.services[style*="background: var(--bg-light)"] .section-title,
.services[style*="background: var(--bg-light)"] .section-subtitle,
.services[style*="background: var(--bg-light)"] p,
.services[style*="background: var(--bg-light)"] h2,
.services[style*="background: var(--bg-light)"] h3 {
    color: var(--text-color) !important;
}

.why-choose[style*="background: var(--bg-light)"],
.why-choose[style*="background: var(--bg-light)"] .section-title,
.why-choose[style*="background: var(--bg-light)"] .section-subtitle,
.why-choose[style*="background: var(--bg-light)"] p,
.why-choose[style*="background: var(--bg-light)"] h2,
.why-choose[style*="background: var(--bg-light)"] h3 {
    color: var(--text-color) !important;
}

.faq[style*="background: var(--bg-light)"],
.faq[style*="background: var(--bg-light)"] .section-title,
.faq[style*="background: var(--bg-light)"] .section-subtitle,
.faq[style*="background: var(--bg-light)"] p,
.faq[style*="background: var(--bg-light)"] h2,
.faq[style*="background: var(--bg-light)"] h3 {
    color: var(--text-color) !important;
}

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

.service-card {
    padding: 2.5rem;
    background: var(--secondary-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.service-card-link .service-card {
    cursor: pointer;
}

.service-card-link:hover .service-card {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

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

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.service-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
}

.service-link:hover {
    text-decoration: underline;
}

/* Fleet Section */
.fleet {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.fleet-categories {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0 3rem;
}

.fleet-category {
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    background: var(--secondary-color);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    font-size: 0.95rem;
}

.fleet-category:hover,
.fleet-category.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    border-color: var(--primary-color);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.fleet-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    background: var(--secondary-color);
}

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

.fleet-image {
    width: 100%;
    height: 200px;
    background: var(--bg-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.fleet-placeholder {
    color: var(--text-light);
    font-weight: 600;
    text-align: center;
}

.fleet-card h3 {
    padding: 1.5rem 1.5rem 0.5rem;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary-color);
}

.fleet-card p {
    padding: 0 1.5rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.fleet-badge {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--bg-light);
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0 1.5rem 1.5rem;
    color: var(--text-light);
}

.fleet-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Why Choose Section */
.why-choose {
    padding: 5rem 0;
    background: var(--bg-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-card {
    padding: 2.5rem;
    background: var(--secondary-color);
    border-radius: 8px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

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

.feature-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.feature-card p {
    color: var(--text-light);
    line-height: 1.7;
}

/* Testimonials Section */
.testimonials {
    padding: 5rem 0;
    background: var(--secondary-color);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.testimonial-card {
    padding: 2.5rem;
    background: var(--bg-light);
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--primary-color);
    color: var(--secondary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: var(--text-color);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    margin-bottom: 0.5rem;
}

.testimonial-author strong {
    display: block;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.testimonial-author span {
    color: var(--text-light);
    font-size: 0.9rem;
}

.testimonial-location {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

/* FAQ Section */
.faq {
    padding: 5rem 0;
    background: var(--bg-light);
}

.faq-list {
    max-width: 800px;
    margin: 3rem auto 0;
}

.faq-item {
    border-bottom: 1px solid var(--border-color);
    margin-bottom: 1rem;
}

.faq-question {
    width: 100%;
    padding: 1.5rem 0;
    background: none;
    border: none;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--accent-color);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

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

.faq-answer p {
    padding: 0 0 1.5rem;
    color: var(--text-light);
    line-height: 1.7;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: var(--secondary-color);
    text-align: center;
}

.cta-section .section-title,
.cta-section .section-subtitle {
    color: var(--secondary-color);
}

/* Ensure button text is readable on dark backgrounds */
.cta-section .btn,
.hero .btn {
    font-weight: 700;
    letter-spacing: 0.3px;
}

.cta-section .btn-outline,
.hero .btn-outline {
    color: #ffffff;
    border-color: #ffffff;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    background: rgba(255, 255, 255, 0.1);
}

.cta-section .btn-outline:hover,
.hero .btn-outline:hover {
    background: #ffffff;
    color: var(--primary-color);
    text-shadow: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:not(.btn-outline),
.hero .btn:not(.btn-outline) {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.cta-section .btn:not(.btn-outline):hover,
.hero .btn:not(.btn-outline):hover {
    background: #f8f9fa;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin: 2rem 0;
}

.cta-badges {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

.badge {
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
    background: var(--bg-dark);
    color: var(--secondary-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-logo {
    font-size: 1.2rem;
    letter-spacing: 1px;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-section ul li a:hover {
    color: var(--secondary-color);
}

.footer-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
}

.footer-badges span {
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    font-size: 0.85rem;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.footer-contact {
    text-align: left;
}

.footer-phone,
.footer-email {
    display: block;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-location {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.footer-cta h4 {
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.footer-cta p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.footer-cta-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.footer-cta-buttons .btn {
    padding: 0.75rem 1.5rem;
    font-size: 0.95rem;
}

.footer-copyright {
    text-align: left;
}

.footer-copyright p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.footer-links {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--secondary-color);
}

.footer-availability {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: var(--secondary-color);
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
        transition: left 0.3s ease;
        box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-menu li {
        width: 100%;
    }

    .nav-menu a {
        display: block;
        padding: 1rem 0;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

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

    .hero {
        padding: 4rem 0;
    }

    .built-for-grid,
    .services-grid,
    .features-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
    }

    .fleet-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }

    .logos-grid {
        grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    }

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

    .footer-contact,
    .footer-copyright {
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

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

    .btn-large {
        padding: 0.875rem 2rem;
        font-size: 1rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Hide fleet cards by default (for filtering) */
.fleet-card[data-category] {
    display: block;
}

/* Quote Form Container */
.quote-form-container {
    margin-top: 4rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

/* Form Button Styling - Match Site Theme */
#inline-V7mXyrGZONSO7AzOE3YH iframe,
iframe[id*="V7mXyrGZONSO7AzOE3YH"] {
    border: none !important;
}

/* Style form buttons within iframe */
#inline-V7mXyrGZONSO7AzOE3YH button,
#inline-V7mXyrGZONSO7AzOE3YH input[type="submit"],
#inline-V7mXyrGZONSO7AzOE3YH input[type="button"],
iframe[id*="V7mXyrGZONSO7AzOE3YH"] button,
iframe[id*="V7mXyrGZONSO7AzOE3YH"] input[type="submit"],
iframe[id*="V7mXyrGZONSO7AzOE3YH"] input[type="button"] {
    background-color: #2c3e50 !important;
    color: #ffffff !important;
    border: 2px solid #2c3e50 !important;
    border-radius: 4px !important;
    padding: 0.875rem 2rem !important;
    font-weight: 600 !important;
    transition: all 0.3s ease !important;
    cursor: pointer !important;
}

#inline-V7mXyrGZONSO7AzOE3YH button:hover,
#inline-V7mXyrGZONSO7AzOE3YH input[type="submit"]:hover,
#inline-V7mXyrGZONSO7AzOE3YH input[type="button"]:hover,
iframe[id*="V7mXyrGZONSO7AzOE3YH"] button:hover,
iframe[id*="V7mXyrGZONSO7AzOE3YH"] input[type="submit"]:hover,
iframe[id*="V7mXyrGZONSO7AzOE3YH"] input[type="button"]:hover {
    background-color: #34495e !important;
    border-color: #34495e !important;
    transform: translateY(-2px) !important;
}

