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

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: #2B2A29;
    background-color: #ffffff;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}

/* User selection enabled for better UX */
body {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
    box-sizing: border-box;
}

/* Responsive Images */
img {
    max-width: 100%;
    height: auto;
}

/* Header */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.navbar {
    padding: 1rem 0;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo .logo {
    height: 50px;
    width: auto;
    opacity: 1 !important;
    transition: none !important;
}

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

.nav-link {
    text-decoration: none;
    color: #2B2A29;
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: #E31E24;
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: #E31E24;
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

/* Dropdown Menu */
.dropdown {
    position: relative;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-link {
    display: block;
    padding: 12px 20px;
    color: #2B2A29;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 8px;
    margin: 5px;
}

.dropdown-link:hover {
    background: #E31E24;
    color: white;
}

/* Service Button */
.service-btn,
a.service-btn,
.service-card a.service-btn {
    display: inline-block !important;
    background: linear-gradient(135deg, #E31E24, #ff4757) !important;
    color: white !important;
    padding: 12px 30px !important;
    border-radius: 50px !important;
    text-decoration: none !important;
    font-weight: 600 !important;
    font-size: 1rem !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    z-index: 1 !important;
    text-align: center !important;
    border: none !important;
    cursor: pointer !important;
    margin-top: 1rem !important;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4) !important;
    text-transform: none !important;
    letter-spacing: 0.5px !important;
}

.service-btn:hover,
a.service-btn:hover,
.service-card a.service-btn:hover {
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.6) !important;
    color: white !important;
    background: linear-gradient(135deg, #E31E24, #ff4757) !important;
}

.service-btn:visited,
.service-btn:active,
.service-btn:focus,
a.service-btn:visited,
a.service-btn:active,
a.service-btn:focus {
    color: white !important;
    background: linear-gradient(135deg, #E31E24, #ff4757) !important;
}

/* Mobile Menu Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #2B2A29;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section with Slider */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1 !important;
    transition: none !important;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: white;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    z-index: -1;
}

.slide-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #E31E24, #ff4757);
    color: white;
    padding: 15px 30px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.6);
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
}

.prev-btn {
    left: 30px;
}

.next-btn {
    right: 30px;
}

.prev-btn, .next-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 15px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.prev-btn:hover, .next-btn:hover {
    background: rgba(227, 30, 36, 0.8);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active {
    background: #E31E24;
    transform: scale(1.2);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2B2A29;
    margin-bottom: 1rem;
    position: relative;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, #E31E24, #ff4757);
    border-radius: 2px;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(227, 30, 36, 0.1), rgba(255, 71, 87, 0.1));
    transition: left 0.5s ease;
}

.service-card:hover::before {
    left: 0;
}

.service-card:hover {
    transform: translateY(-10px);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E31E24, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 1;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2B2A29;
    position: relative;
    z-index: 1;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    position: relative;
    z-index: 1;
}

/* About Section */
.about {
    padding: 100px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2B2A29;
    margin-bottom: 1.5rem;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.feature i {
    font-size: 1.5rem;
    color: #E31E24;
    width: 40px;
}

.feature h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2B2A29;
    margin-bottom: 0.5rem;
}

.feature p {
    color: #666;
    margin: 0;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, #E31E24, #ff4757);
    border-radius: 20px;
    color: white;
}

.stat h3 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.stat p {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: #f8f9fa;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.contact-item i {
    font-size: 1.5rem;
    color: #E31E24;
    width: 40px;
}

.contact-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2B2A29;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #666;
    margin: 0;
}

.contact-item a {
    color: #E31E24;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-item a:hover {
    color: #ff4757;
}

.contact-map {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.contact-map iframe {
    border-radius: 20px;
}

/* Footer */
.footer {
    background: #2B2A29;
    color: white;
    padding: 50px 0 20px;
}

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

.footer-section h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #E31E24;
}

.footer-logo {
    height: 60px;
    width: auto;
    margin-bottom: 1rem;
    opacity: 1 !important;
    transition: none !important;
    filter: brightness(0) invert(1);
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
}

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

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

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #E31E24;
}

.footer-bottom {
    border-top: 1px solid #444;
    padding-top: 20px;
    text-align: center;
    color: #ccc;
}

/* WhatsApp Button */
.whatsapp-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
}

.whatsapp-btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    color: white;
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    animation: pulse 2s infinite;
}

.whatsapp-btn a:hover {
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

/* Mobile Responsive */
@media screen and (max-width: 768px) {
    /* Global Mobile Fixes */
    section {
        width: 100%;
        overflow-x: hidden;
    }

    /* Container */
    .container {
        padding: 0 15px;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
        overflow-x: hidden;
    }

    /* Navigation */
    .nav-container {
        padding: 0 15px;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background-color: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: 0 10px 27px rgba(0, 0, 0, 0.1);
        padding: 2rem 0;
        z-index: 999;
        height: calc(100vh - 80px);
        overflow-y: auto;
    }

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

    .nav-item {
        margin: 1rem 0;
        width: 100%;
    }

    .nav-link {
        display: block;
        padding: 1rem;
        font-size: 1.1rem;
        border-bottom: 1px solid #f0f0f0;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
        box-shadow: none;
        background: #f8f9fa;
        padding: 1rem 0;
        margin-top: 0;
        border-radius: 8px;
        margin: 0.5rem 1rem;
    }

    .dropdown-link {
        padding: 0.8rem 1rem;
        color: #666;
        font-size: 1rem;
        display: block;
        border-bottom: 1px solid #e9ecef;
    }

    .dropdown-link:last-child {
        border-bottom: none;
    }

    .nav-toggle {
        display: flex;
        cursor: pointer;
        z-index: 1001;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    /* Hero Section */
    .hero {
        height: 70vh;
        min-height: 500px;
        padding-top: 80px;
    }

    .slide {
        height: 100%;
    }

    .slide-content {
        padding: 2rem 15px;
        max-width: 90%;
        margin: 0 auto;
    }

    .slide-content h1 {
        font-size: 2rem;
        margin-bottom: 1rem;
        line-height: 1.2;
    }

    .slide-content p {
        font-size: 1rem;
        margin-bottom: 1.5rem;
        line-height: 1.5;
    }

    .cta-button {
        font-size: 1rem;
        padding: 14px 28px;
        display: inline-block;
        width: auto;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card {
        padding: 2rem 1.5rem;
        background: white !important;
        border-radius: 20px !important;
        text-align: center !important;
        position: relative !important;
        transition: all 0.3s ease !important;
        margin-bottom: 2rem;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, #E31E24, #ff4757) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 1.5rem auto !important;
    }

    .service-icon i {
        font-size: 1.5rem;
        color: white !important;
    }

    /* Service Buttons */
    .service-btn,
    .btn-primary {
        display: inline-block !important;
        background: linear-gradient(135deg, #E31E24, #ff4757) !important;
        color: white !important;
        padding: 12px 24px !important;
        border-radius: 8px !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        transition: all 0.3s ease !important;
        border: none !important;
        cursor: pointer !important;
        text-align: center !important;
        margin-top: 1rem !important;
    }

    .service-btn:hover,
    .btn-primary:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4) !important;
        color: white !important;
    }

    /* About Section */
    .about {
        padding: 60px 0;
    }

    .about-content {
        display: flex !important;
        flex-direction: column !important;
        text-align: center !important;
        gap: 2rem !important;
        width: 100% !important;
        max-width: 100% !important;
        overflow: hidden !important;
    }

    .about-text {
        width: 100%;
        padding: 0;
    }

    .about-text h2 {
        font-size: 2rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 1rem;
        line-height: 1.6;
        margin-bottom: 1rem;
    }

    .about-image {
        margin-top: 0;
        width: 100%;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 10px;
    }

    /* Contact Section */
    .contact-content {
        grid-template-columns: 1fr !important;
        gap: 3rem !important;
    }

    .contact-info {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    .contact-item {
        padding: 1.5rem;
        background: white !important;
        border-radius: 15px !important;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1) !important;
    }

    .contact-form-section {
        text-align: center !important;
    }

    .contact-buttons {
        display: flex !important;
        gap: 1rem !important;
        justify-content: center !important;
        margin: 2rem 0 !important;
    }

    .contact-btn {
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
        padding: 1rem 2rem !important;
        border-radius: 10px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        transition: all 0.3s ease !important;
    }

    .phone-btn {
        background: linear-gradient(135deg, #E31E24, #ff4757) !important;
        color: white !important;
    }

    .whatsapp-contact-btn {
        background: linear-gradient(135deg, #25D366, #128C7E) !important;
        color: white !important;
    }

    .whatsapp-contact-btn:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4) !important;
        color: white !important;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: 1fr !important;
        text-align: center !important;
        gap: 2rem !important;
    }

    .footer-section {
        margin-bottom: 1rem !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }

    .footer-logo {
        margin-bottom: 1rem !important;
    }

    .footer-logo-img {
        height: 50px !important;
        width: auto !important;
        filter: brightness(0) invert(1) !important;
    }

    /* WhatsApp Button */
    .whatsapp-btn {
        bottom: 20px;
        right: 15px;
    }

    .whatsapp-btn a {
        width: 50px;
        height: 50px;
    }

    .whatsapp-btn i {
        font-size: 1.5rem;
    }

    /* Slider Navigation */
    .prev-btn, .next-btn {
        display: none;
    }

    /* Service Detail Pages - Mobile */
    .service-hero {
        padding: 80px 0 60px;
    }

    .service-hero-content {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

    .service-hero-text h1 {
        font-size: 2rem;
    }

    .service-hero-text p {
        font-size: 1rem;
    }

    .features-grid,
    .types-grid,
    .process-timeline {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-item,
    .type-card,
    .process-step {
        padding: 1.5rem;
    }

    .feature-item h3,
    .type-card h3,
    .process-step h3 {
        font-size: 1.2rem;
    }

    .page-header {
        padding: 100px 0 60px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 1rem;
    }

    .breadcrumb {
        font-size: 0.9rem;
    }

    /* Service sections */
    .service-features,
    .service-types,
    .service-process,
    .response-time-section,
    .service-areas,
    .vehicle-types,
    .why-choose-section {
        padding: 60px 0;
    }

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

    /* About Page Mobile */
    .about-intro {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .mvv-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .reasons-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    .team-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
    }

    .mvv-item,
    .reason-item {
        padding: 1.5rem !important;
    }

    .stat-number {
        font-size: 2.5rem !important;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 10px;
        max-width: 100%;
        margin: 0 auto;
        width: 100%;
    }

    /* Header */
    .nav-container {
        padding: 0 10px;
    }

    .nav-logo .logo {
        height: 40px;
    }

    .navbar {
        padding: 0.8rem 0;
    }

    /* Hero Section */
    .hero {
        height: 60vh;
        min-height: 400px;
        padding-top: 70px;
    }

    .slide-content {
        padding: 1.5rem 10px;
        max-width: 95%;
    }

    .slide-content h1 {
        font-size: 1.6rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
    }

    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 1.2rem;
        line-height: 1.4;
    }

    .cta-button {
        font-size: 0.9rem;
        padding: 12px 24px;
        width: auto;
        display: inline-block;
    }

    /* Services */
    .services {
        padding: 60px 0;
    }

    .services h2 {
        font-size: 1.8rem;
    }

    .service-card {
        padding: 1.5rem 1rem;
        background: white !important;
        border-radius: 15px !important;
        box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1) !important;
        text-align: center !important;
        position: relative !important;
        transition: all 0.3s ease !important;
        margin-bottom: 1.5rem;
    }

    .service-card h3 {
        font-size: 1.2rem;
        font-weight: 600 !important;
        margin-bottom: 1rem !important;
        color: #2B2A29 !important;
    }

    .service-card p {
        font-size: 0.9rem;
        color: #666 !important;
        line-height: 1.6 !important;
        margin-bottom: 1rem !important;
    }

    .service-icon {
        width: 50px !important;
        height: 50px !important;
        background: linear-gradient(135deg, #E31E24, #ff4757) !important;
        border-radius: 50% !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin: 0 auto 1rem auto !important;
    }

    .service-icon i {
        font-size: 1.2rem !important;
        color: white !important;
    }

    /* Service Buttons */
    .service-btn,
    .btn-primary {
        display: inline-block !important;
        background: linear-gradient(135deg, #E31E24, #ff4757) !important;
        color: white !important;
        padding: 10px 20px !important;
        border-radius: 6px !important;
        text-decoration: none !important;
        font-weight: 500 !important;
        font-size: 0.9rem !important;
        transition: all 0.3s ease !important;
        border: none !important;
        cursor: pointer !important;
        text-align: center !important;
        margin-top: 1rem !important;
        width: auto !important;
    }

    .service-btn:hover,
    .btn-primary:hover {
        transform: translateY(-2px) !important;
        box-shadow: 0 4px 12px rgba(227, 30, 36, 0.4) !important;
        color: white !important;
    }

    /* About Section */
    .about {
        padding: 50px 0;
    }

    .about-content {
        gap: 1.5rem;
    }

    .about-text {
        width: 100%;
        padding: 0;
    }

    .about-text h2 {
        font-size: 1.6rem;
        margin-bottom: 1rem;
    }

    .about-text p {
        font-size: 0.9rem;
        line-height: 1.5;
        margin-bottom: 0.8rem;
    }

    .about-image {
        width: 100%;
    }

    .about-image img {
        width: 100%;
        height: auto;
        border-radius: 8px;
    }

    /* Contact Section */
    .contact {
        padding: 60px 0;
    }

    .contact h2 {
        font-size: 1.8rem;
    }

    .contact-info {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .contact-item {
        padding: 1rem !important;
        text-align: center !important;
    }

    .contact-item h4 {
        font-size: 1.1rem;
        margin-bottom: 0.5rem !important;
    }

    .contact-item p {
        font-size: 0.9rem;
    }

    .contact-buttons {
        flex-direction: column !important;
        gap: 1rem !important;
        align-items: center !important;
    }

    .contact-btn {
        width: 200px !important;
        justify-content: center !important;
        padding: 1rem !important;
    }

    .whatsapp-contact-btn {
        background: linear-gradient(135deg, #25D366, #128C7E) !important;
        color: white !important;
    }

    /* Footer */
    .footer {
        padding: 40px 0 20px;
    }

    .footer-section h4 {
        font-size: 1.1rem;
    }

    .footer-section p,
    .footer-section a {
        font-size: 0.9rem;
    }

    /* WhatsApp Button */
    .whatsapp-btn a {
        width: 45px;
        height: 45px;
    }

    .whatsapp-btn i {
        font-size: 1.3rem;
    }

    /* Slider Dots */
    .slider-dots {
        bottom: 20px;
    }

    .dot {
        width: 8px;
        height: 8px;
        margin: 0 3px;
    }

    /* Service Detail Pages - Small Mobile */
    .service-hero {
        padding: 70px 0 50px;
    }

    .service-hero-text h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .service-hero-text p {
        font-size: 0.9rem;
    }

    .page-header {
        padding: 80px 0 50px;
    }

    .page-header h1 {
        font-size: 1.8rem;
    }

    .page-header p {
        font-size: 0.9rem;
    }

    .feature-item,
    .type-card,
    .process-step {
        padding: 1rem;
    }

    .feature-item h3,
    .type-card h3,
    .process-step h3 {
        font-size: 1.1rem;
    }

    .feature-item p,
    .type-card p,
    .process-step p {
        font-size: 0.9rem;
    }

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

    .service-features,
    .service-types,
    .service-process,
    .response-time-section,
    .service-areas,
    .vehicle-types,
    .why-choose-section {
        padding: 50px 0;
    }

    /* CTA Buttons */
    .cta-button,
    .btn-primary {
        font-size: 0.9rem;
        padding: 12px 20px;
    }

    /* About Page Small Mobile */
    .reasons-grid {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .team-stats {
        grid-template-columns: 1fr !important;
        gap: 1rem !important;
    }

    .mvv-item,
    .reason-item,
    .stat-item {
        padding: 1rem !important;
    }

    .stat-number {
        font-size: 2rem !important;
    }

    .mvv-icon,
    .reason-icon {
        width: 50px !important;
        height: 50px !important;
    }

    .mvv-icon i,
    .reason-icon i {
        font-size: 1.2rem !important;
    }
}

/* About Page Styles */
.about-main {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text .lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #E31E24;
    margin-bottom: 1.5rem;
}

.mission-vision {
    padding: 100px 0;
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.mvv-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mvv-item:hover {
    transform: translateY(-10px);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E31E24, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mvv-icon i {
    font-size: 2rem;
    color: white;
}

.why-choose-us {
    padding: 100px 0;
    background: #f8f9fa;
}

.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.reason-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E31E24, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.reason-icon i {
    font-size: 1.5rem;
    color: white;
}

.team-section {
    padding: 100px 0;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    font-size: 3rem !important;
    font-weight: 700 !important;
    color: #E31E24 !important;
    margin-bottom: 0.5rem !important;
    display: block !important;
    line-height: 1 !important;
}

.stat-label {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

/* Loading Animation */
.loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: white;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    transition: opacity 0.5s ease;
}

.loading.hidden {
    opacity: 0;
    pointer-events: none;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 5px solid #f3f3f3;
    border-top: 5px solid #E31E24;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Smooth scrolling for all browsers */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #E31E24;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #ff4757;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #2B2A29, #E31E24);
    color: white;
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-header p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    position: relative;
    z-index: 1;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

/* Global image styles - no transitions to prevent flickering */
img {
    opacity: 1 !important;
    transition: none !important;
}

.breadcrumb a:hover {
    opacity: 1;
}

.breadcrumb span {
    opacity: 0.6;
}

/* Active Navigation Link */
.nav-link.active {
    color: #E31E24;
}

.nav-link.active::after {
    width: 100%;
}

/* Services Detail Styles */
.services-detail {
    padding: 100px 0;
}

.service-detail {
    margin-bottom: 100px;
}

.service-detail:last-child {
    margin-bottom: 0;
}

.service-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-detail.reverse .service-content {
    direction: rtl;
}

.service-detail.reverse .service-text {
    direction: ltr;
}

.service-icon-large {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #E31E24, #ff4757);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
}

.service-icon-large i {
    font-size: 2.5rem;
    color: white;
}

.service-text h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: #2B2A29;
    margin-bottom: 1.5rem;
}

.service-description {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.service-features h3,
.service-coverage h3,
.service-time h3,
.service-process h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2B2A29;
    margin-bottom: 1rem;
}

.service-features ul {
    list-style: none;
    padding: 0;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #666;
}

.service-features li i {
    color: #E31E24;
    font-size: 0.9rem;
}

.service-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-image:hover img {
    transform: scale(1.05);
}

/* Process Steps */
.process-steps {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.step {
    text-align: center;
    flex: 1;
}

.step-number {
    display: inline-block;
    width: 40px;
    height: 40px;
    background: #E31E24;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.step p {
    font-size: 0.9rem;
    color: #666;
}

/* Emergency Contact */
.emergency-contact {
    background: linear-gradient(135deg, #E31E24, #ff4757);
    padding: 60px 0;
    color: white;
}

.emergency-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
}

.emergency-icon i {
    font-size: 3rem;
    animation: pulse 2s infinite;
}

.emergency-text h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.emergency-text p {
    font-size: 1.1rem;
    opacity: 0.9;
}

.emergency-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #E31E24;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.emergency-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

/* About Main Styles */
.about-main {
    padding: 100px 0;
}

.about-intro {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2B2A29;
    margin-bottom: 1.5rem;
}

.lead {
    font-size: 1.2rem;
    font-weight: 500;
    color: #E31E24;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.about-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.about-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Mission Vision Values */
.mission-vision {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.mvv-item {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.mvv-item:hover {
    transform: translateY(-10px);
}

.mvv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #E31E24, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mvv-icon i {
    font-size: 2rem;
    color: white;
}

.mvv-item h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2B2A29;
    margin-bottom: 1rem;
}

.mvv-item p {
    color: #666;
    line-height: 1.7;
}

/* Why Choose Us */
.why-choose-us {
    padding: 100px 0;
}

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

.reason-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 2rem;
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.reason-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.reason-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E31E24, #ff4757);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.reason-icon i {
    font-size: 1.5rem;
    color: white;
}

.reason-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2B2A29;
    margin-bottom: 0.5rem;
}

.reason-item p {
    color: #666;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Services Overview */
.services-overview {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.service-overview-item {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.service-overview-item:hover {
    transform: translateY(-10px);
}

.service-overview-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2B2A29;
    margin-bottom: 1rem;
}

.service-overview-content p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-overview-content ul {
    list-style: none;
    padding: 0;
}

.service-overview-content li {
    color: #E31E24;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.service-overview-content li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E31E24;
    font-weight: bold;
}

/* Statistics */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #2B2A29, #E31E24);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: white;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Team Section */
.team-section {
    padding: 100px 0;
}

.team-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.team-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2B2A29;
    margin-bottom: 1.5rem;
}

.team-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.team-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.team-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.team-feature i {
    font-size: 1.2rem;
    color: #E31E24;
    width: 30px;
}

.team-feature span {
    font-weight: 500;
    color: #2B2A29;
}

.team-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.team-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Contact CTA */
.contact-cta {
    padding: 80px 0;
    background: #f8f9fa;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2B2A29;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.2rem;
    color: #666;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.cta-btn.primary {
    background: linear-gradient(135deg, #E31E24, #ff4757);
    color: white;
    box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(227, 30, 36, 0.6);
}

.cta-btn.secondary {
    background: #25D366;
    color: white;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

.cta-btn.secondary:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.6);
}

/* Mobile Responsive Updates */
@media (max-width: 768px) {
    .page-header {
        padding: 120px 0 60px;
    }
    
    .page-header h1 {
        font-size: 2.2rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .service-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .service-detail.reverse .service-content {
        direction: ltr;
    }
    
    .about-intro {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .reasons-grid {
        grid-template-columns: 1fr;
    }
    
    .services-overview-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .emergency-content {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .process-steps {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn {
        width: 200px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .page-header h1 {
        font-size: 1.8rem;
    }
    
    .mvv-item {
        padding: 2rem;
    }
    
    .reason-item {
        padding: 1.5rem;
    }
    
    .service-overview-item {
        padding: 2rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
}

/* Service Detail Page Styles */
.service-detail-page {
    padding: 100px 0;
}

.service-hero {
    margin-bottom: 100px;
}

.service-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.service-hero-text .lead {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

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

.service-hero-image {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.service-hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* Features Section */
.service-features-section {
    margin-bottom: 100px;
}

.service-features-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2B2A29;
    text-align: center;
    margin-bottom: 3rem;
}

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

.feature-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E31E24, #ff4757);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.8rem;
    color: white;
}

.feature-item h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2B2A29;
    margin-bottom: 1rem;
}

.feature-item p {
    color: #666;
    line-height: 1.6;
}

/* Types Section */
.service-types {
    margin-bottom: 100px;
}

.service-types h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2B2A29;
    text-align: center;
    margin-bottom: 3rem;
}

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

.type-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.type-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.type-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E31E24, #ff4757);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.type-icon i {
    font-size: 1.5rem;
    color: white;
}

.type-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #2B2A29;
    margin-bottom: 1rem;
}

.type-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.type-card ul {
    list-style: none;
    padding: 0;
}

.type-card li {
    color: #E31E24;
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1rem;
}

.type-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E31E24;
    font-weight: bold;
}

/* Process Timeline */
.service-process {
    margin-bottom: 100px;
}

.service-process h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2B2A29;
    text-align: center;
    margin-bottom: 3rem;
}

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

.process-step {
    text-align: center;
    position: relative;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #E31E24, #ff4757);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}

.step-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2B2A29;
    margin-bottom: 0.5rem;
}

.step-content p {
    color: #666;
    line-height: 1.6;
}

/* Response Time Section */
.response-time-section {
    margin-bottom: 100px;
    background: #f8f9fa;
    padding: 60px 0;
    border-radius: 20px;
}

.response-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.response-text h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2B2A29;
    margin-bottom: 1.5rem;
}

.response-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.time-stats {
    display: flex;
    gap: 2rem;
    justify-content: space-around;
}

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

.time-stat .stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: #E31E24;
    margin-bottom: 0.5rem;
}

.time-stat .stat-label {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.response-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.response-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Service Areas */
.service-areas {
    margin-bottom: 100px;
}

.service-areas h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2B2A29;
    text-align: center;
    margin-bottom: 3rem;
}

.areas-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.areas-text h4 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2B2A29;
    margin-bottom: 1rem;
}

.areas-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.areas-list {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
}

.area-group h5 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #E31E24;
    margin-bottom: 0.5rem;
}

.area-group ul {
    list-style: none;
    padding: 0;
}

.area-group li {
    color: #666;
    margin-bottom: 0.3rem;
    padding-left: 1rem;
    position: relative;
}

.area-group li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E31E24;
}

.areas-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.areas-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

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

.area-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.area-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.area-card h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2B2A29;
    margin-bottom: 1rem;
    text-align: center;
}

.area-card ul {
    list-style: none;
    padding: 0;
}

.area-card li {
    color: #666;
    margin-bottom: 0.5rem;
    padding-left: 1rem;
    position: relative;
}

.area-card li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #E31E24;
}

/* Vehicle Types & Why Choose */
.vehicle-types,
.why-choose-section {
    margin-bottom: 100px;
}

.vehicle-types h3,
.why-choose-section h3 {
    font-size: 2rem;
    font-weight: 600;
    color: #2B2A29;
    text-align: center;
    margin-bottom: 3rem;
}

.why-choose-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.why-choose-text h3 {
    text-align: left;
    margin-bottom: 1rem;
}

.why-choose-text p {
    font-size: 1.1rem;
    color: #666;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.advantages-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.advantage-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.advantage-item i {
    color: #E31E24;
    font-size: 1.2rem;
}

.advantage-item span {
    color: #2B2A29;
    font-weight: 500;
}

.why-choose-image {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.why-choose-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

/* Mobile Responsive for Service Pages */
@media (max-width: 768px) {
    .service-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .types-grid {
        grid-template-columns: 1fr;
    }
    
    .process-timeline {
        grid-template-columns: 1fr;
    }
    
    .response-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .areas-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .why-choose-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .time-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .areas-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .service-detail-page {
        padding: 60px 0;
    }
    
    .service-hero {
        margin-bottom: 60px;
    }
    
    .service-features-section,
    .service-types,
    .service-process,
    .response-time-section,
    .service-areas,
    .vehicle-types,
    .why-choose-section {
        margin-bottom: 60px;
    }
    
    .feature-item,
    .type-card,
    .area-card {
        padding: 1.5rem;
    }
    
    .response-time-section {
        padding: 40px 0;
    }
}

/* Desktop Fixes */
@media screen and (min-width: 769px) {
    .footer-content {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 2rem !important;
        text-align: left !important;
        align-items: start !important;
    }
    
    .footer-section {
        display: block !important;
        text-align: left !important;
        margin-bottom: 0 !important;
        align-self: start !important;
    }
    
    .footer-logo {
        margin-bottom: 1rem !important;
        display: block !important;
    }
    
    .footer-logo-img {
        height: 60px !important;
        width: auto !important;
        filter: brightness(0) invert(1) !important;
        display: block !important;
    }
    
    .footer-section h4 {
        color: #E31E24 !important;
        font-size: 1.2rem !important;
        margin-bottom: 1rem !important;
        font-weight: 600 !important;
    }
    
    .footer-section ul {
        list-style: none !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    .footer-section ul li {
        margin-bottom: 0.5rem !important;
    }
    
    .footer-section ul li a {
        color: #ccc !important;
        text-decoration: none !important;
        transition: color 0.3s ease !important;
    }
    
    .footer-section ul li a:hover {
        color: #E31E24 !important;
    }
    
    .footer-contact p {
        color: #ccc !important;
        margin-bottom: 0.5rem !important;
        display: flex !important;
        align-items: center !important;
        gap: 0.5rem !important;
    }
    
    .footer-contact i {
        color: #E31E24 !important;
        width: 16px !important;
    }
    
    .service-btn,
    .service-card .service-btn,
    a.service-btn {
        display: inline-block !important;
        background: linear-gradient(135deg, #E31E24, #ff4757) !important;
        color: white !important;
        padding: 12px 30px !important;
        border-radius: 50px !important;
        text-decoration: none !important;
        font-weight: 600 !important;
        font-size: 1rem !important;
        transition: all 0.3s ease !important;
        border: none !important;
        cursor: pointer !important;
        margin-top: 1rem !important;
        position: relative !important;
        z-index: 1 !important;
        text-align: center !important;
        box-shadow: 0 5px 15px rgba(227, 30, 36, 0.4) !important;
        letter-spacing: 0.5px !important;
    }
    
    .service-btn:hover,
    .service-card .service-btn:hover,
    a.service-btn:hover {
        transform: translateY(-3px) !important;
        box-shadow: 0 8px 25px rgba(227, 30, 36, 0.6) !important;
        color: white !important;
        background: linear-gradient(135deg, #E31E24, #ff4757) !important;
    }
    
    .service-btn:visited,
    .service-btn:active,
    .service-btn:focus {
        color: white !important;
        background: linear-gradient(135deg, #E31E24, #ff4757) !important;
    }
}

/* Tablet Responsive */
@media screen and (max-width: 1024px) and (min-width: 769px) {
    .container {
        padding: 0 30px;
    }

    /* Navigation */
    .nav-menu {
        gap: 1.5rem;
    }

    /* Services Grid */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    /* Hero Section */
    .slide-content h1 {
        font-size: 2.8rem;
    }

    .slide-content p {
        font-size: 1.1rem;
    }

    .cta-button {
        font-size: 1rem;
        padding: 14px 28px;
    }

    /* About Section */
    .about-content {
        gap: 3rem;
    }

    /* Service Detail Pages */
    .service-hero-content {
        gap: 3rem;
        flex-direction: column;
        text-align: center;
    }

    .service-hero-text h1 {
        font-size: 2.5rem;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .types-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .process-timeline {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .service-hero-image {
        margin-top: 0;
    }

    /* Page Header */
    .page-header h1 {
        font-size: 2.5rem;
    }

    /* Navigation */
    .nav-menu {
        gap: 1.5rem;
    }

    /* Footer */
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
}
