/* ===== CSS RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
    background-color: #0a0a0a;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.text-highlight {
    color: #FF6200;
}

.section-heading {
    font-family: 'Roboto Slab', serif;
    font-size: 42px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    line-height: 1.2;
}

.section-heading .text-highlight {
    color: #FF6200;
}

/* ===== BUTTONS ===== */
.btn-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF6200, #F96904);
    color: #ffffff;
    padding: 14px 32px;
    font-size: 18px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 30px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
}

.btn-phone i {
    font-size: 18px;
}

.btn-phone:hover {
    background: linear-gradient(135deg, #e55a00, #d95a00);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 98, 0, 0.3);
}

/* ===== MOBILE STICKY BAR ===== */
.mobile-sticky-bar {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 99999;
    background: #FF6200;
    padding: 10px 20px;
    text-align: center;
}

.sticky-phone-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
}

.sticky-phone-btn i {
    font-size: 16px;
}

/* ===== HERO SECTION ===== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: url('https://wetowitall.com/wp-content/uploads/2026/05/Rectangle-4476.png') center center / cover no-repeat;
    padding: 100px 0 60px;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.75) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
}

.hero-logo {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
}

.hero-logo img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
}

.hero-heading {
    font-family: 'Roboto Slab', serif;
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    color: #ffffff;
}

.hero-heading .text-highlight {
    color: #FF6200;
}

.hero-subheading {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    color: #cccccc;
    margin-bottom: 15px;
}

.hero-description {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #aaaaaa;
    margin-bottom: 30px;
    line-height: 1.8;
}

.hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 30px;
}

.rating-stars i {
    color: #FF6200;
    font-size: 20px;
    margin: 0 2px;
}

.rating-text {
    font-family: 'DM Sans', sans-serif;
    font-size: 18px;
    color: #ffffff;
}

.rating-text strong {
    color: #FF6200;
    font-weight: 700;
}

.btn-hero-phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF6200, #F96904);
    color: #ffffff;
    padding: 16px 40px;
    font-size: 20px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-hero-phone i {
    font-size: 20px;
}

.btn-hero-phone:hover {
    background: linear-gradient(135deg, #e55a00, #d95a00);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(255, 98, 0, 0.4);
}

/* ===== BRAND STRIP ===== */
.brand-strip {
    background: #1a1a1a;
    padding: 30px 0;
    text-align: center;
}

.brand-logo-strip {
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

/* ===== SERVICES SECTION ===== */
.services-section {
    background: #111111;
    padding: 80px 0;
}

.service-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 25px;
    align-items: start;
    transition: all 0.3s ease;
}

.service-card:hover {
    border-color: #FF6200;
    box-shadow: 0 8px 30px rgba(255, 98, 0, 0.1);
    transform: translateY(-3px);
}

.service-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon svg {
    width: 100%;
    height: 100%;
}

.service-content {
    min-width: 0;
}

.service-title {
    font-family: 'Roboto Slab', serif;
    font-size: 24px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.service-title .text-highlight {
    color: #FF6200;
}

.service-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #aaaaaa;
    line-height: 1.8;
    margin-bottom: 12px;
}

.service-desc:last-of-type {
    margin-bottom: 0;
}

.service-phone-btn {
    grid-column: 1 / -1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #FF6200, #F96904);
    color: #ffffff;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 30px;
    transition: all 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin-top: 10px;
}

.service-phone-btn i {
    font-size: 16px;
}

.service-phone-btn:hover {
    background: linear-gradient(135deg, #e55a00, #d95a00);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 98, 0, 0.3);
}

/* ===== PRICING SECTION ===== */
.pricing-section {
    background: #0a0a0a;
    padding: 80px 0;
    text-align: center;
}

.pricing-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 500;
    margin-bottom: 20px;
}

.pricing-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #aaaaaa;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 30px;
}

.pricing-btn {
    margin-top: 10px;
}

/* ===== VEHICLE TYPES SECTION ===== */
.vehicle-types-section {
    background: #111111;
    padding: 80px 0;
    text-align: center;
}

.vehicle-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    font-weight: 300;
    color: #aaaaaa;
    line-height: 1.8;
    max-width: 800px;
    margin: 0 auto 40px;
}

.vehicle-icons-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
}

.vehicle-icon-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 20px 10px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.vehicle-icon-item:hover {
    border-color: #FF6200;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 98, 0, 0.15);
}

.vehicle-icon-item i {
    font-size: 32px;
    color: #FF6200;
}

.vehicle-icon-item span {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #cccccc;
}

/* ===== CTA BANNER ===== */
.cta-banner {
    position: relative;
    padding: 100px 0;
    background: url('https://wetowitall.com/wp-content/uploads/2026/05/Rectangle-4491.png') center center / cover no-repeat;
    background-attachment: fixed;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 98, 0, 0.85) 0%, rgba(249, 105, 4, 0.85) 100%);
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-heading {
    font-family: 'Roboto Slab', serif;
    font-size: 36px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.cta-btn {
    font-size: 22px;
    padding: 18px 45px;
    background: #ffffff;
    color: #FF6200;
}

.cta-btn:hover {
    background: #f0f0f0;
    color: #e55a00;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.cta-btn i {
    color: #FF6200;
}

/* ===== WHY CHOOSE US ===== */
.why-choose-section {
    background: #0a0a0a;
    padding: 80px 0;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin: 0 0 30px;
}

.feature-card {
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #2a2a2a;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #FF6200;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 98, 0, 0.15);
}

.feature-image {
    position: relative;
    min-height: 300px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.feature-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.85) 100%);
    z-index: 1;
}

.feature-content {
    position: relative;
    z-index: 2;
    padding: 30px;
    text-align: left;
}

.feature-title {
    font-family: 'Roboto Slab', serif;
    font-size: 24px;
    font-weight: 600;
    color: #FF6200;
    margin-bottom: 12px;
}

.feature-desc {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #cccccc;
    line-height: 1.8;
}

.why-choose-bottom {
    font-family: 'Roboto', sans-serif;
    font-size: 18px;
    font-weight: 300;
    color: #aaaaaa;
    margin-bottom: 25px;
    text-align: center;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials-section {
    background: #111111;
    padding: 80px 0;
}

.testimonial-swiper {
    padding: 20px 0 60px;
}

.testimonial-slide {
    height: auto;
}

.testimonial-card {
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    border-color: #FF6200;
    box-shadow: 0 8px 30px rgba(255, 98, 0, 0.1);
}

.testimonial-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid #FF6200;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-name {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 10px;
}

.testimonial-stars {
    margin-bottom: 15px;
}

.testimonial-stars i {
    color: #FF6200;
    font-size: 18px;
    margin: 0 2px;
}

.testimonial-text {
    font-family: 'Roboto', sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: #aaaaaa;
    line-height: 1.8;
    font-style: italic;
}

/* Swiper Navigation */
.swiper-button-next,
.swiper-button-prev {
    color: #FF6200 !important;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    font-size: 24px !important;
    font-weight: 700;
}

.swiper-pagination-bullet {
    background: #555555 !important;
    opacity: 1 !important;
}

.swiper-pagination-bullet-active {
    background: #FF6200 !important;
}

.testimonial-bottom-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.btn-testimonial-rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: transparent;
    color: #FF6200;
    border: 2px solid #FF6200;
    padding: 12px 24px;
    font-size: 16px;
    font-weight: 600;
    font-family: 'Montserrat', sans-serif;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.btn-testimonial-rating i {
    color: #FF6200;
}

.btn-testimonial-rating:hover {
    background: #FF6200;
    color: #ffffff;
}

.btn-testimonial-rating:hover i {
    color: #ffffff;
}

/* ===== INFINITE SCROLL BANNER ===== */
.scroll-banner {
    background: linear-gradient(90deg, #0a4b8a 0%, #FF6200 100%);
    padding: 30px 0;
    overflow: hidden;
    white-space: nowrap;
}

.horizontal-scrolling-items {
    display: flex;
    width: fit-content;
    animation: infiniteScroll 20s linear infinite;
}

.scrolling-item {
    font-family: 'Metrophobic', sans-serif;
    font-size: 160px;
    font-weight: 400;
    color: #ffffff;
    text-transform: lowercase;
    padding: 0 40px;
    flex-shrink: 0;
}

@keyframes infiniteScroll {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-50%);
    }
}

/* ===== FOOTER ===== */
.site-footer {
    background: #0a0a0a;
    padding: 60px 0 40px;
    text-align: center;
}

.footer-content {
    max-width: 700px;
}

.footer-logo {
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.footer-logo img {
    width: 150px;
    height: 150px;
    border-radius: 50%;
}

.footer-heading {
    font-family: 'Roboto Slab', serif;
    font-size: 28px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 25px;
    line-height: 1.3;
}

.footer-divider {
    width: 80px;
    height: 3px;
    background: #FF6200;
    margin: 0 auto 25px;
    border-radius: 2px;
}

.footer-phone {
    font-size: 20px;
    padding: 16px 38px;
    margin-bottom: 25px;
}

.footer-copyright {
    font-family: 'Roboto', sans-serif;
    font-size: 14px;
    font-weight: 300;
    color: #666666;
    margin-top: 20px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* Tablet */
@media (max-width: 1024px) {
    .section-heading {
        font-size: 34px;
    }

    .hero-heading {
        font-size: 38px;
    }

    .hero-subheading {
        font-size: 18px;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-icons-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .scrolling-item {
        font-size: 100px;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .mobile-sticky-bar {
        display: block;
    }

    .hero-section {
        padding: 100px 0 50px;
        min-height: auto;
    }

    .hero-heading {
        font-size: 28px;
    }

    .hero-subheading {
        font-size: 16px;
    }

    .hero-description {
        font-size: 14px;
    }

    .section-heading {
        font-size: 26px;
        margin-bottom: 30px;
    }

    .service-card {
        grid-template-columns: 1fr;
        padding: 25px;
        gap: 15px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        margin: 0 auto;
    }

    .service-title {
        font-size: 20px;
        text-align: center;
    }

    .service-desc {
        font-size: 14px;
        text-align: center;
    }

    .service-phone-btn {
        max-width: 100%;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .feature-image {
        min-height: 250px;
    }

    .vehicle-icons-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }

    .vehicle-icon-item {
        padding: 15px 8px;
    }

    .vehicle-icon-item i {
        font-size: 24px;
    }

    .vehicle-icon-item span {
        font-size: 11px;
    }

    .cta-heading {
        font-size: 24px;
    }

    .cta-banner {
        padding: 60px 0;
    }

    .testimonial-card {
        padding: 25px;
    }

    .testimonial-bottom-cta {
        flex-direction: column;
        align-items: center;
    }

    .scrolling-item {
        font-size: 60px;
        padding: 0 15px;
    }

    .footer-heading {
        font-size: 22px;
    }

    .btn-phone,
    .btn-hero-phone {
        font-size: 16px;
        padding: 12px 24px;
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .hero-heading {
        font-size: 24px;
    }

    .section-heading {
        font-size: 22px;
    }

    .vehicle-icons-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .scrolling-item {
        font-size: 42px;
    }

    .pricing-subtitle {
        font-size: 16px;
    }
}