/* ================================
   NAVIGATION STYLES
   ================================ */

:root {
    --primary-red: #b30000;    /* Deeper, more "Official" Red */
    --dark-red: #8b0000;       /* Blood Red */
    --light-red: #fff5f5;      /* Crisp White-Red tint */
    --dark-gray: #121212;      /* Pure Matte Black */
    --medium-gray: #718096;    
    --light-gray: #f7fafc;
}

/* bread */
        /* Minimal CSS for responsive breadcrumb hero */
        .breadcrumb-hero {
            height: 35vh;
        }

        @media (max-width: 768px) {
            .breadcrumb-hero {
                height: 25vh;
                min-height: 250px;
            }
            .display-5-md {
                font-size: 2rem !important;
            }
        }

        @media (max-width: 576px) {
            .breadcrumb-hero {
                height: 30vh;
                min-height: 220px;
            }
            .display-6-sm {
                font-size: 1.5rem !important;
            }
        }
        /* Breadcrumb slide-up animation */
.breadcrumb li,h2 {
    opacity: 0;
    transform: translateY(15px);
    animation: breadcrumbUp .45s ease-out forwards;
}

.breadcrumb li:nth-child(2) {
    animation-delay: .10s;
}

/* Keyframes */
@keyframes breadcrumbUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}



* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}
        
        body {
            background-color: #fff;
            color: #333;
        }
      .info-bar {
    background: #f3f3f3;
    border-bottom: 1px solid #e0e0e0;
    font-size: 12px;
    color: #333;
}

.info-bar .container {
    max-width: 1300px;
    margin: auto;
    padding: 6px 12px;
}

.info-bar-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

/* LEFT */
.info-left {
    display: flex;
    gap: 18px;
    align-items: center;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 500;
}

.info-item i {
    color: #0d6efd;
}

/* CENTER */
.info-center {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.info-link {
    text-decoration: none;
    color: #444;
    font-weight: 500;
}

.info-link:hover {
    color: #0d6efd;
}

.divider {
    color: #aaa;
}

.info-highlight {
    color: #d63384;
    font-weight: 600;
}

/* RIGHT */
.info-right {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-info {
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    font-weight: 600;
    color: #fff;
    white-space: nowrap;
}

.btn-green {
    background: #198754;
}

.btn-blue {
    background: #0d6efd;
}

.info-call {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #000;
    font-weight: 700;
    text-decoration: none;
}

.info-call i {
    color: #198754;
}

/* MOBILE */
@media (max-width: 992px) {
    .desktop-only {
        display: none;
    }

    .info-bar-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    .info-right {
        justify-content: center;
    }
}

        
        /* MAIN NAVIGATION */
        .main-navigation {
            width: 100%;
            background: #fff;
            box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
            position: sticky;
            top: 0;
            z-index: 1040;
        }
        
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 0;
        }
        
        /* Logo Section */
        .logo-container {
            display: flex;
            align-items: center;
            gap: 15px;
            
            text-decoration: none;
        }
        
        .logo-icon {
            width: 50px;
            padding-right:10px;
            padding-left:10px;
            height: 50px;
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
            font-weight: bold;
            box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
            transition: transform 0.3s ease;
        }
        
        .logo-container:hover .logo-icon {
            transform: rotate(-5deg) scale(1.05);
        }
        
        .logo-text h1 {
            font-size: 1.8rem;
            font-weight: 800;
            margin: 0;
            color: var(--dark-gray);
            letter-spacing: -0.5px;
        }
        
        .logo-text h1 span {
            color: var(--primary-red);
        }
        
        .logo-text p {
            font-size: 0.85rem;
            color: var(--medium-gray);
            margin: 0;
            font-weight: 500;
        }
        
        /* Desktop Navigation Menu */
        .nav-menu {
            display: flex;
            align-items: center;
            list-style: none;
            margin: 0;
            padding: 0;
            gap: 5px;
        }
        
        .nav-item {
            position: relative;
        }
        
        .nav-link {
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            padding: 12px 20px;
            border-radius: 6px;
            transition: all 0.3s ease;
            position: relative;
            text-transform: uppercase;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
        }
        
        .nav-link::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 0;
            height: 3px;
            background: var(--primary-red);
            transition: width 0.3s ease;
        }
        
        .nav-link:hover::before,
        .nav-link.active::before {
            width: 70%;
        }
        
        .nav-link:hover {
            color: var(--primary-red);
            background: rgba(220, 53, 69, 0.05);
        }
        
        .nav-link.active {
            color: var(--primary-red);
            font-weight: 700;
        }
        
        /* Dropdown Menu */
        .nav-item.dropdown:hover .dropdown-menu {
            display: block;
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        
        .dropdown-menu {
            display: block;
            opacity: 0;
            visibility: hidden;
            transform: translateY(10px);
            transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            border: none;
            border-radius: 8px;
            padding: 15px 0;
            min-width: 230px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            background: #fff;
            border-top: 3px solid var(--primary-red);
        }
        
        .dropdown-item {
            padding: 12px 20px;
            color: var(--dark-gray);
            text-decoration: none;
            transition: all 0.3s ease;
            font-weight: 500;
            font-size: 0.9rem;
            border-left: 3px solid transparent;
            display: flex;
            align-items: center;
            gap: 10px;
        }
        
        .dropdown-item i {
            color: var(--primary-red);
            width: 20px;
        }
        
        .dropdown-item:hover {
            background: rgba(220, 53, 69, 0.05);
            color: var(--dark-red);
            border-left: 3px solid var(--primary-red);
            padding-left: 25px;
        }
        
        /* CTA Button */
        .nav-cta {
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            color: white;
            font-weight: 700;
            padding: 12px 28px;
            border-radius: 8px;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 15px rgba(220, 53, 69, 0.3);
            transition: all 0.3s ease;
            border: none;
            font-size: 0.95rem;
            letter-spacing: 0.5px;
        }
        
        .nav-cta:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 53, 69, 0.4);
            color: white;
        }
        
        /* Mobile Menu Toggle */
        .mobile-toggle {
            display: none;
            width: 40px;
            height: 40px;
            background: var(--primary-red);
            border: none;
            border-radius: 6px;
            cursor: pointer;
            padding: 0;
            z-index: 1001;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px;
        }
        
        .mobile-toggle span {
            display: block;
            height: 2px;
            width: 24px;
            background: white;
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        
        .mobile-toggle.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
        }
        
        .mobile-toggle.active span:nth-child(2) {
            opacity: 0;
        }
        
        .mobile-toggle.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
        }
        
        /* Mobile Menu */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: -100%;
            width: 100%;
            max-width: 350px;
            height: 100vh;
            background: white;
            box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
            z-index: 1060;
            transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
            overflow-y: auto;
        }
        
        .mobile-menu.active {
            right: 0;
        }
        
        .mobile-header {
            padding: 25px;
            background: linear-gradient(135deg, var(--dark-gray), #343a40);
            border-bottom: 3px solid var(--primary-red);
        }
        
        .mobile-logo {
            display: flex;
            align-items: center;
            gap: 15px;
        }
        
        .mobile-logo-icon {
            width: 45px;
            height: 45px;
            background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.3rem;
            font-weight: bold;
        }
        
        .mobile-logo-text h3 {
            font-size: 1.3rem;
            font-weight: 700;
            margin: 0;
            color: white;
        }
        
        .mobile-logo-text p {
            font-size: 0.8rem;
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
        }
        
        .mobile-nav {
            padding: 20px;
            list-style: none;
        }
        
        .mobile-nav-item {
            margin-bottom: 8px;
        }
        
        .mobile-nav-link {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 15px 20px;
            color: var(--dark-gray);
            text-decoration: none;
            font-weight: 600;
            font-size: 0.95rem;
            border-radius: 6px;
            transition: all 0.3s ease;
            background: #f8f9fa;
        }
        
        .mobile-nav-link.active {
            background: rgba(220, 53, 69, 0.1);
            color: var(--primary-red);
            border-left: 4px solid var(--primary-red);
        }
        
        .mobile-nav-link:hover {
            background: rgba(220, 53, 69, 0.1);
            transform: translateX(5px);
        }
        
        .mobile-dropdown {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: #f1f1f1;
            border-radius: 6px;
            margin-top: 5px;
        }
        
        .mobile-dropdown.active {
            max-height: 500px;
        }
        
        .mobile-dropdown-item {
            padding: 12px 20px 12px 40px;
            color: var(--dark-gray);
            text-decoration: none;
            display: block;
            font-weight: 500;
            font-size: 0.9rem;
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        
        .mobile-dropdown-item:last-child {
            border-bottom: none;
        }
        
        .mobile-dropdown-item:hover {
            background: rgba(220, 53, 69, 0.1);
            color: var(--primary-red);
        }
        
        .overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5);
            backdrop-filter: blur(3px);
            z-index: 1055;
            opacity: 0;
            visibility: hidden;
            transition: all 0.4s ease;
        }
        
        .overlay.active {
            opacity: 1;
            visibility: visible;
        }
        
        /* Mobile Contact Section */
        .mobile-contact-section {
            padding: 20px;
            background: #f8f9fa;
            border-top: 1px solid #dee2e6;
        }
        
        .mobile-contact-item {
            display: flex;
            align-items: center;
            gap: 15px;
            padding: 12px;
            background: white;
            border-radius: 8px;
            margin-bottom: 10px;
            text-decoration: none;
            color: var(--dark-gray);
            transition: all 0.3s ease;
        }
        
        .mobile-contact-item:hover {
            background: rgba(220, 53, 69, 0.05);
            transform: translateX(5px);
        }
        
        .mobile-contact-icon {
            width: 40px;
            height: 40px;
            background: rgba(220, 53, 69, 0.1);
            border-radius: 8px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary-red);
        }
        
        /* MOBILE RESPONSIVE */
        @media (max-width: 991px) {
            .contact-items .contact-item:nth-child(3),
            .top-social {
                display: none;
            }
            
            .contact-items {
                justify-content: center;
                width: 100%;
                gap: 20px;
            }
            
            .mobile-toggle {
                display: flex;
            }
            
            .nav-menu,
            .nav-cta {
                display: none;
            }
        }
        
        @media (max-width: 767px) {
            .logo-text h1 {
                font-size: 1.5rem;
            }
            
            .logo-text p {
                font-size: 0.8rem;
            }
            
            .contact-item {
                font-size: 0.9rem;
            }
            
            .contact-icon {
                width: 28px;
                height: 28px;
                font-size: 0.8rem;
            }
            
            .top-bar {
                padding: 10px 0;
            }
        }
        
        @media (max-width: 575px) {
            .logo-text h1 {
                font-size: 1.3rem;
            }
            
            .logo-icon {
                width: 45px;
                height: 45px;
                font-size: 1.3rem;
            }
            
            .contact-items {
                gap: 8px;
                align-items: center;
            }
            
            .mobile-menu {
                max-width: 300px;
            }
            
            .nav-container {
                padding: 10px 0;
            }
        }

/* ================================
   ABOUT PAGE STYLES
   ================================ */

/* Breadcrumb Section */
.about-breadcrumb {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2d3748 100%);
    padding: 50px 0 40px;
    position: relative;
    overflow: hidden;
}

.about-breadcrumb::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 1440 320"><path fill="rgba(179,0,0,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.breadcrumb-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.about-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    justify-content: center;
}

.about-breadcrumb .breadcrumb-item {
    font-size: 1rem;
    font-weight: 500;
}

.about-breadcrumb .breadcrumb-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
    pointer-events: auto;
}

.about-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-red);
    text-decoration: none;
}

.about-breadcrumb .breadcrumb-item.active {
    color: #fff;
}

.about-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    color: rgba(255, 255, 255, 0.5);
    content: "›";
    padding: 0 10px;
}

/* About Company Section */
.about-company {
    background: #fff;
}

.about-image-wrapper {
    position: relative;
}

.about-image-wrapper img {
    border-radius: 12px;
    width: 100%;
}

.about-experience-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 12px;
    padding: 25px 30px;
    box-shadow: 0 10px 30px rgba(179, 0, 0, 0.3);
    text-align: center;
}

.badge-content h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin: 0;
    line-height: 1;
}

.badge-content p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 5px 0 0;
    font-weight: 600;
}

.about-subtitle {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 15px;
}

.about-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    line-height: 1.2;
}

.about-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--medium-gray);
    margin-bottom: 15px;
}

.about-features .feature-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.about-features .feature-item:hover {
    background: rgba(179, 0, 0, 0.05);
    transform: translateX(5px);
}

.about-features .feature-item i {
    font-size: 2rem;
    color: var(--primary-red);
}

.about-features .feature-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 5px;
}

.about-features .feature-item p {
    font-size: 0.9rem;
    color: var(--medium-gray);
    margin: 0;
}

/* Stats Section */
.about-stats {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2d3748 100%);
    position: relative;
}

.stat-card {
    padding: 40px 20px;
    transition: all 0.3s ease;
}

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

.stat-card i {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 20px;
}

.stat-card h3 {
    font-size: 3rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}

.stat-card p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    font-weight: 500;
}

/* Why Choose Us Section */
.why-choose-us {
    background: #fff;
}

.section-subtitle {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 10px;
}

.section-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
    line-height: 1.2;
}

.why-card {
    background: #fff;
    border: 2px solid #f1f1f1;
    border-radius: 12px;
    padding: 25px;
    transition: all 0.3s ease;
    height: 100%;
}

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

.why-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.why-icon i {
    font-size: 2rem;
    color: #fff;
}

.why-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.why-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin: 0;
}

/* Services Overview Section */
.services-overview {
    background: #f8f9fa;
}

.service-overview-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 25px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s ease;
    height: 100%;
}

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

.service-overview-icon {
    width: 60px;
    height: 60px;
    background: rgba(179, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.service-overview-icon i {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.service-overview-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 10px;
}

.service-overview-content p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin: 0;
}

/* Get Quote Section */
.get-quote-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

.get-quote-section::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: rgba(179, 0, 0, 0.1);
    transform: skewX(-10deg);
    transform-origin: top right;
}

.quote-content {
    position: relative;
    z-index: 1;
}

.quote-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.quote-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
    color: #fff;
    margin-bottom: 15px;
    font-weight: 500;
}

.quote-features li i {
    font-size: 1.3rem;
    color: var(--primary-red);
}

.quote-form-wrapper {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
    .breadcrumb-title {
        font-size: 2.5rem;
    }
    
    .about-title,
    .section-title {
        font-size: 2rem;
    }
    
    .about-experience-badge {
        bottom: 20px;
        right: 20px;
        padding: 20px 25px;
    }
    
    .badge-content h3 {
        font-size: 2.5rem;
    }
}

@media (max-width: 767px) {
    .breadcrumb-title {
        font-size: 2rem;
    }
    
    .about-title,
    .section-title {
        font-size: 1.8rem;
    }
    
    .stat-card h3 {
        font-size: 2.5rem;
    }
    
    .stat-card i {
        font-size: 3rem;
    }
    
    .about-experience-badge {
        position: static;
        margin-top: 20px;
        display: inline-block;
    }
}

/* Welcome Section - About Page */
.about-welcome {
    background-color: var(--primary-red) !important;
    background: var(--primary-red) !important;
}

/* About Welcome Section - Custom Text Colors */
.about-welcome .about-subtitle,
.about-welcome .about-title,
.about-welcome .about-intro-text {
    color: #ffffff !important;
}

/* Why Intro Section - About Page */
.why-intro-section {
    background-color: var(--primary-red) !important;
    background: var(--primary-red) !important;
}

.why-intro-section .about-subtitle,
.why-intro-section .about-title,
.why-intro-section .about-intro-text {
    color: #ffffff !important;
}

.about-intro-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--medium-gray);
    max-width: 900px;
    margin: 0 auto;
}

/* Who We Are Additional Styles */
.about-section-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-gray);
    line-height: 1.2;
}

/* Mission Section */
.mission-section {
    background: #fff;
}

.mission-card {
    background: linear-gradient(135deg, rgba(179, 0, 0, 0.05) 0%, rgba(179, 0, 0, 0.02) 100%);
    border-left: 5px solid var(--primary-red);
    padding: 35px;
    border-radius: 12px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50px;
    width: 200px;
    height: 200px;
    background: rgba(179, 0, 0, 0.05);
    border-radius: 50%;
}

.mission-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    z-index: 1;
}

.mission-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.mission-title {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 15px;
    position: relative;
    z-index: 1;
}

.mission-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--medium-gray);
    margin: 0;
    position: relative;
    z-index: 1;
}

/* Section Description */
.section-description {
    font-size: 1.05rem;
    color: var(--medium-gray);
    margin-top: 10px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Our Services Section */
.our-services {
    background: #fff;
}

/* Moving Process Section */
.moving-process {
    background: #f8f9fa;
}

.process-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    border: 2px solid #f1f1f1;
}

.process-card:hover {
    border-color: var(--primary-red);
    box-shadow: 0 15px 40px rgba(179, 0, 0, 0.1);
    transform: translateY(-10px);
}

.process-number {
    position: absolute;
    top: -20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.2rem;
    font-weight: 800;
    box-shadow: 0 5px 15px rgba(179, 0, 0, 0.3);
}

.process-icon {
    width: 70px;
    height: 70px;
    background: rgba(179, 0, 0, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s ease;
}

.process-card:hover .process-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
}

.process-icon i {
    font-size: 2rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.process-card:hover .process-icon i {
    color: #fff;
}

.process-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.process-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin: 0;
}

/* Testimonials Section */
.testimonials-section {
    background: #fff;
}

.testimonial-card {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
    position: relative;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s ease;
    height: 100%;
}

.testimonial-card:hover {
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    transform: translateY(-5px);
}

.testimonial-quote {
    position: absolute;
    top: -15px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(179, 0, 0, 0.3);
}

.testimonial-quote i {
    font-size: 1.5rem;
    color: #fff;
}

.testimonial-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--dark-gray);
    margin: 30px 0 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-info h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 5px;
}

.rating i {
    color: #ffc107;
    font-size: 0.9rem;
}

/* Community Section */
.community-section {
    background: #f8f9fa;
}

.community-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.community-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid var(--primary-red);
    transition: all 0.3s ease;
}

.community-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateX(10px);
}

.community-item i {
    font-size: 2.5rem;
    color: var(--primary-red);
}

.community-item h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin: 0 0 5px;
}

.community-item p {
    font-size: 0.95rem;
    color: var(--medium-gray);
    margin: 0;
}

/* Responsive Updates */
@media (max-width: 991px) {
    .mission-card {
        padding: 40px 30px;
    }
    
    .mission-title {
        font-size: 1.8rem;
    }
    
    .about-section-title {
        font-size: 1.8rem;
    }
    
    .process-card {
        margin-bottom: 40px;
    }
}

@media (max-width: 767px) {
    .about-intro-text {
        font-size: 1rem;
    }
    
    .mission-card {
        padding: 30px 20px;
    }
    
    .mission-title {
        font-size: 1.6rem;
    }
    
    .mission-text {
        font-size: 1rem;
    }
    
    .testimonial-card {
        padding: 30px 20px;
        padding-top: 40px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
}

/* Why Choose Us Page Specific Styles */
.why-intro-section {
    background: #fff;
}

.benefits-section {
    background: #fff;
}

.benefit-card {
    background: #fff;
    border: 2px solid #f1f1f1;
    border-radius: 12px;
    padding: 30px 25px;
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    overflow: hidden;
}

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

.benefit-number {
    position: absolute;
    top: -10px;
    right: 20px;
    font-size: 4rem;
    font-weight: 800;
    color: rgba(179, 0, 0, 0.05);
    line-height: 1;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: rgba(179, 0, 0, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    background: linear-gradient(135deg, var(--primary-red), var(--dark-red));
}

.benefit-icon i {
    font-size: 1.8rem;
    color: var(--primary-red);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon i {
    color: #fff;
}

.benefit-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.benefit-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--medium-gray);
    margin: 0;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2d3748 100%);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 320"><path fill="rgba(179,0,0,0.1)" d="M0,96L48,112C96,128,192,160,288,160C384,160,480,128,576,112C672,96,768,96,864,112C960,128,1056,160,1152,160C1248,160,1344,128,1392,112L1440,96L1440,320L1392,320C1344,320,1248,320,1152,320C1056,320,960,320,864,320C768,320,672,320,576,320C480,320,384,320,288,320C192,320,96,320,48,320L0,320Z"></path></svg>') bottom center no-repeat;
    background-size: cover;
    opacity: 0.3;
}

.cta-section h2 {
    font-size: 2.2rem;
    font-weight: 800;
}

.cta-section p {
    font-size: 1.1rem;
}

@media (max-width: 991px) {
    .benefit-card {
        padding: 25px 20px;
    }
    
    .benefit-number {
        font-size: 3rem;
    }
    
    .cta-section h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 767px) {
    .cta-section h2 {
        font-size: 1.5rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
}

/* ================================
   SERVICES PAGE STYLES
   ================================ */

/* Services Hero Section */
.services-hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.05)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.services-hero .container-fluid {
    position: relative;
    z-index: 1;
}

.services-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.services-main-title {
    font-size: 3rem;
    font-weight: 900;
    color: #fff;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.services-intro {
    font-size: 1.15rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    max-width: 900px;
    margin: 0 auto;
}

.services-contact-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.2);
    padding: 15px 30px;
    border-radius: 50px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.services-contact-badge:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
}

.services-contact-badge i {
    font-size: 1.3rem;
}

.services-contact-badge a {
    color: #fff;
    text-decoration: none;
    font-weight: 700;
}

/* Table of Contents */
.services-toc {
    background: #f8f9fa;
}

.toc-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--dark-gray);
}

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

.toc-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: #fff;
    border-radius: 12px;
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.toc-item:hover {
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(179, 0, 0, 0.2);
    color: var(--primary-red);
}

.toc-item i {
    font-size: 1.5rem;
    color: var(--primary-red);
}

/* Service Detail Cards */
.services-details {
    background: #fff;
}

.service-detail-card {
    margin-bottom: 80px;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-detail-card:hover {
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.service-icon-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    min-height: 300px;
}

.service-large-icon {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(179, 0, 0, 0.3);
    position: relative;
}

.service-large-icon::before {
    content: '';
    position: absolute;
    width: 220px;
    height: 220px;
    border: 3px solid var(--primary-red);
    border-radius: 50%;
    opacity: 0.3;
}

.service-large-icon i {
    font-size: 5rem;
    color: #fff;
}

.service-detail-title {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 15px;
}

.service-detail-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-red);
    border-radius: 2px;
}

.service-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

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

.service-features li {
    padding: 12px 0;
    font-size: 1rem;
    color: var(--dark-gray);
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

/* Vehicle Service Boxes */
.vehicle-service-box {
    background: #f8f9fa;
    border-radius: 15px;
    padding: 30px;
    height: 100%;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
}

.vehicle-service-box:hover {
    border-color: var(--primary-red);
    box-shadow: 0 5px 20px rgba(179, 0, 0, 0.15);
    transform: translateY(-5px);
}

.vehicle-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.vehicle-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.vehicle-service-box h4 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.vehicle-service-box p {
    color: #555;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Why Choose Cards */
.services-why-choose {
    background: #f8f9fa;
}

.section-title-dark {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.section-description {
    font-size: 1.1rem;
    color: #666;
}

.why-choose-card {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.why-choose-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(179, 0, 0, 0.2);
}

.why-choose-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 5px 20px rgba(179, 0, 0, 0.3);
}

.why-choose-icon i {
    font-size: 2.5rem;
    color: #fff;
}

.why-choose-card h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 15px;
}

.why-choose-card p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.7;
    margin: 0;
}

/* CTA Section */
.services-cta {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2d3436 100%);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.services-cta .container {
    position: relative;
    z-index: 1;
}

.cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 20px;
}

.cta-text {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 35px;
}

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

.btn-cta-primary,
.btn-cta-secondary {
    padding: 15px 35px;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.btn-cta-primary {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

.btn-cta-primary:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(179, 0, 0, 0.4);
}

.btn-cta-secondary {
    background: transparent;
    color: #fff;
    border-color: #fff;
}

.btn-cta-secondary:hover {
    background: #fff;
    color: var(--dark-gray);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Styles for Services */
@media (max-width: 991px) {
    .services-main-title {
        font-size: 2.2rem;
    }
    
    .service-detail-title {
        font-size: 1.8rem;
    }
    
    .service-large-icon {
        width: 150px;
        height: 150px;
    }
    
    .service-large-icon i {
        font-size: 3.5rem;
    }
    
    .toc-grid {
        grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    }
}

@media (max-width: 767px) {
    .services-main-title {
        font-size: 1.8rem;
    }
    
    .service-detail-card {
        padding: 25px;
        margin-bottom: 40px;
    }
    
    .service-detail-title {
        font-size: 1.5rem;
    }
    
    .service-icon-wrapper {
        min-height: 200px;
    }
    
    .service-large-icon {
        width: 120px;
        height: 120px;
    }
    
    .service-large-icon i {
        font-size: 3rem;
    }
    
    .cta-title {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .toc-grid {
        grid-template-columns: 1fr;
    }
}

/* ================================
   INDIVIDUAL SERVICE PAGE STYLES
   ================================ */

/* Service Hero Section */
.service-hero-section {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    padding: 40px 0 30px;
    position: relative;
    overflow: hidden;
}

.service-hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="heroPattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23heroPattern)"/></svg>');
    opacity: 0.5;
}

.service-hero-section .container-fluid {
    position: relative;
    z-index: 1;
}

.service-hero-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.service-hero-icon i {
    font-size: 2rem;
    color: #fff;
}

.service-hero-title {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.service-hero-subtitle {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 500;
}

/* Service Overview Section */
.service-overview {
    background: #fff;
}

.service-label {
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: block;
    margin-bottom: 15px;
}

.service-section-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--dark-gray);
    margin-bottom: 25px;
    line-height: 1.2;
}

.service-text {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
}

.service-highlight-box {
    background: linear-gradient(135deg, #fff5f5 0%, #ffe6e6 100%);
    padding: 25px;
    border-radius: 15px;
    border-left: 4px solid var(--primary-red);
    display: flex;
    gap: 20px;
    align-items: start;
}

.service-highlight-box i {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-top: 5px;
}

.service-highlight-box h5 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.service-highlight-box p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.service-image-wrapper img {
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

/* Feature Boxes */
.service-features-section {
    background: #f8f9fa;
}

.feature-box {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    height: 100%;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.feature-box:hover {
    border-color: var(--primary-red);
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(179, 0, 0, 0.2);
}

.feature-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 5px 20px rgba(179, 0, 0, 0.3);
}

.feature-icon i {
    font-size: 2rem;
    color: #fff;
}

.feature-box h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.feature-box p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

/* Services Included Section */
.services-included {
    background: #fff;
}

.included-service-card {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 15px;
    display: flex;
    gap: 20px;
    align-items: start;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.included-service-card:hover {
    border-color: var(--primary-red);
    background: #fff;
    box-shadow: 0 5px 20px rgba(179, 0, 0, 0.15);
    transform: translateX(10px);
}

.included-service-card i {
    font-size: 2rem;
    color: var(--primary-red);
    flex-shrink: 0;
}

.included-service-card h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 8px;
}

.included-service-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* How It Works Section */
.how-it-works-section {
    background: #f8f9fa;
}

.process-step {
    background: #fff;
    padding: 35px 25px;
    border-radius: 15px;
    text-align: center;
    position: relative;
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    height: 100%;
}

.process-step:hover {
    border-color: var(--primary-red);
    box-shadow: 0 8px 30px rgba(179, 0, 0, 0.15);
    transform: translateY(-5px);
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--dark-red) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 5px 15px rgba(179, 0, 0, 0.3);
}

.process-step h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 12px;
}

.process-step p {
    color: #666;
    margin: 0;
    line-height: 1.6;
    font-size: 0.95rem;
}

/* Service CTA Section */
.service-cta-section {
    background: linear-gradient(135deg, var(--dark-gray) 0%, #2d3436 100%);
    position: relative;
    overflow: hidden;
}

.service-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><defs><pattern id="ctaPattern" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="2" cy="2" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23ctaPattern)"/></svg>');
}

.service-cta-section .container {
    position: relative;
    z-index: 1;
}

.cta-title-white {
    font-size: 1.8rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
}

.cta-text-white {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.btn-cta-light {
    background: var(--primary-red);
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid var(--primary-red);
}

.btn-cta-light:hover {
    background: var(--dark-red);
    border-color: var(--dark-red);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(179, 0, 0, 0.4);
    color: #fff;
}

.btn-cta-outline {
    background: transparent;
    color: #fff;
    padding: 12px 28px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn-cta-outline:hover {
    background: #fff;
    color: var(--dark-gray);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Styles for Individual Service Pages */
@media (max-width: 991px) {
    .service-hero-title {
        font-size: 2.5rem;
    }
    
    .service-section-title {
        font-size: 2rem;
    }
    
    .service-hero-icon {
        width: 100px;
        height: 100px;
    }
    
    .service-hero-icon i {
        font-size: 3rem;
    }
}

@media (max-width: 767px) {
    .service-hero-title {
        font-size: 2rem;
    }
    
    .service-hero-subtitle {
        font-size: 1.1rem;
    }
    
    .service-section-title {
        font-size: 1.6rem;
    }
    
    .service-hero-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-hero-icon i {
        font-size: 2.5rem;
    }
    
    .service-highlight-box {
        flex-direction: column;
        text-align: center;
    }
    
    .included-service-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-title-white {
        font-size: 1.8rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-cta-light,
    .btn-cta-outline {
        width: 100%;
        justify-content: center;
    }
}

/* Country Badges for International Moving */
.country-badge {
    background: #f8f9fa;
    padding: 15px 20px;
    border-radius: 10px;
    text-align: center;
    font-weight: 600;
    color: var(--dark-gray);
    border: 2px solid #e9ecef;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.country-badge:hover {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(179, 0, 0, 0.2);
}

.country-badge i {
    font-size: 1.2rem;
}



/* ===========================
   Gallery Page Styles
   =========================== */
.gallery-item {
    overflow: hidden;
    border-radius: 12px;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

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

.gallery-item img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

/* ===========================
   Contact Page Styles
   =========================== */
.contact-info-wrapper {
    padding: 20px 0;
}

.contact-heading {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
}

.contact-details {
    margin-top: 2rem;
}

.contact-item {
    padding-left: 0;
}

.contact-label {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-value {
    font-size: 1rem;
    color: #555;
    line-height: 1.6;
    padding-left: 1rem;
}

.contact-form-wrapper {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.contact-form-wrapper .form-control {
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
}

.contact-form-wrapper .form-control:focus {
    border-color: var(--primary-red, #b30000);
    box-shadow: 0 0 0 0.2rem rgba(179, 0, 0, 0.25);
}

.contact-form-wrapper .btn-primary {
    background-color: #007bff;
    border: none;
    padding: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: background-color 0.3s ease;
}

.contact-form-wrapper .btn-primary:hover {
    background-color: #0056b3;
}

@media (max-width: 991px) {
    .contact-heading {
        font-size: 2rem;
    }
    
    .contact-form-wrapper {
        margin-top: 2rem;
    }
}

/* ===========================
   Contact Page Enhanced Styles
   =========================== */
.contact-info-box {
    padding: 2rem;
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
    border-radius: 12px;
    border-left: 4px solid var(--primary-red, #b30000);
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.contact-heading {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary-red, #b30000);
    margin-bottom: 1.5rem;
}

.contact-description {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2rem;
}

.contact-details-list {
    margin-top: 2rem;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-detail-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 12px rgba(179, 0, 0, 0.15);
}

.contact-detail-icon {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--primary-red, #b30000), var(--dark-red, #8b0000));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

.contact-detail-icon i {
    font-size: 1.2rem;
    color: #fff;
}

.contact-detail-content h5 {
    font-size: 1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.3rem;
}

.contact-detail-content p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-form-card {
    background: #fff;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-top: 4px solid var(--primary-red, #b30000);
}

.form-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

.contact-form-card .form-label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-form-card .form-control {
    padding: 0.85rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.contact-form-card .form-control:focus {
    border-color: var(--primary-red, #b30000);
    box-shadow: 0 0 0 0.2rem rgba(179, 0, 0, 0.15);
    outline: none;
}

.btn-contact-submit {
    background: linear-gradient(135deg, var(--primary-red, #b30000), var(--dark-red, #8b0000));
    color: #fff;
    border: none;
    padding: 1rem;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    width: 100%;
    cursor: pointer;
}

.btn-contact-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(179, 0, 0, 0.3);
}

.btn-contact-submit:active {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .contact-heading {
        font-size: 1.8rem;
    }
    
    .contact-form-card {
        margin-top: 2rem;
        padding: 1.5rem;
    }
    
    .form-card-title {
        font-size: 1.5rem;
    }
}

/* Modern Quote Form Card */
.modern-quote-card {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
}

.modern-quote-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.modern-quote-subtitle {
    font-size: 1rem;
    color: #888;
    margin-bottom: 2.5rem;
}

.modern-input-group {
    position: relative;
}

.modern-input-icon {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-red, #b30000);
    font-size: 1.1rem;
    z-index: 2;
}

.modern-input {
    width: 100%;
    padding: 1rem 1rem 1rem 3.2rem;
    border: 2px solid #e8e8e8;
    border-radius: 12px;
    font-size: 1rem;
    color: #333;
    background: #ffffff;
    transition: all 0.3s ease;
}

.modern-input:focus {
    border-color: var(--primary-red, #b30000);
    outline: none;
    box-shadow: 0 0 0 4px rgba(179, 0, 0, 0.08);
}

.modern-input::placeholder {
    color: #aaa;
}

.modern-input-date {
    padding-left: 1rem;
    color: #666;
}

.modern-submit-btn {
    width: 100%;
    padding: 1.1rem;
    background: var(--primary-red, #b30000);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modern-submit-btn:hover {
    background: var(--dark-red, #8b0000);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(179, 0, 0, 0.3);
}

.modern-submit-btn:active {
    transform: translateY(0);
}

@media (max-width: 991px) {
    .modern-quote-card {
        margin-top: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .modern-quote-title {
        font-size: 1.6rem;
    }
}

/* Modern Quote Form */
.quote-form-modern {
    background: #ffffff;
    padding: 3rem 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.quote-form-heading {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.quote-form-subtext {
    font-size: 1rem;
    color: #999;
    margin-bottom: 2.5rem;
}

.form-input-modern {
    position: relative;
}

.form-icon-modern {
    position: absolute;
    left: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: #d32f2f;
    font-size: 1.1rem;
    z-index: 2;
}

.form-field-modern {
    width: 100%;
    padding: 1rem 1rem 1rem 3.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 1rem;
    color: #333;
    background: #ffffff;
    transition: all 0.3s ease;
}

.form-field-modern:focus {
    border-color: #d32f2f;
    outline: none;
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.1);
}

.form-field-modern::placeholder {
    color: #bbb;
}

.form-field-date {
    padding-left: 1rem;
    color: #666;
}

.btn-quote-modern {
    width: 100%;
    padding: 1.1rem;
    background: #d32f2f;
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-quote-modern:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(211, 47, 47, 0.4);
}

.btn-quote-modern:active {
    transform: translateY(0);
}

@media (max-width: 767px) {
    .quote-form-modern {
        padding: 2rem 1.5rem;
    }
    
    .quote-form-heading {
        font-size: 1.6rem;
    }
}

/* Contact Info Container */
.contact-info-container {
    padding: 2rem 0;
}

.contact-info-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.contact-info-desc {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 2.5rem;
}

.contact-details-box {
    background: #ffffff;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.contact-detail-row {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #f0f0f0;
}

.contact-detail-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.detail-label {
    font-size: 1rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
}

.detail-value {
    font-size: 1rem;
    color: #666;
    margin: 0;
    padding-left: 1rem;
    line-height: 1.6;
}

@media (max-width: 991px) {
    .contact-info-container {
        margin-bottom: 2rem;
    }
    
    .contact-info-title {
        font-size: 2rem;
    }
}

/* Contact Information Card */
.contact-info-card {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #d32f2f;
}

.contact-card-header i {
    font-size: 1.8rem;
    color: #d32f2f;
}

.contact-card-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2c3e50;
}

.contact-card-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.8rem;
    padding: 1rem;
    background: #fff5f5;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.contact-info-item:hover {
    background: #ffebee;
    transform: translateX(5px);
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-right: 1rem;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.3);
}

.contact-icon-box i {
    font-size: 1.3rem;
    color: #ffffff;
}

.contact-info-content {
    flex: 1;
}

.contact-info-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: #d32f2f;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}

.contact-info-text {
    font-size: 1rem;
    color: #2c3e50;
    margin: 0;
    line-height: 1.6;
    font-weight: 500;
}

.quote-form-header {
    display: flex;
    align-items: center;
    margin-bottom: 0.5rem;
}

.quote-form-header i {
    font-size: 1.8rem;
    color: #d32f2f;
}

@media (max-width: 991px) {
    .contact-info-card {
        margin-bottom: 2rem;
    }
    
    .contact-card-title {
        font-size: 1.5rem;
    }
    
    .contact-icon-box {
        width: 45px;
        height: 45px;
    }
    
    .contact-icon-box i {
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .contact-info-card {
        padding: 1.5rem;
    }
    
    .contact-info-item {
        padding: 0.8rem;
    }
    
    .contact-icon-box {
        width: 40px;
        height: 40px;
        margin-right: 0.8rem;
    }
    
    .contact-icon-box i {
        font-size: 1rem;
    }
}

/* FAQ Section */
.faq-header-icon {
    display: inline-block;
}

.faq-header-icon i {
    font-size: 4rem;
    color: #d32f2f;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

.faq-main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: #666;
}

.faq-item {
    border: none;
    margin-bottom: 1rem;
    border-radius: 15px !important;
    overflow: hidden;
    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 5px 25px rgba(211, 47, 47, 0.15);
    transform: translateY(-2px);
}

.faq-question {
    background: #ffffff;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.5rem 1.5rem;
    border: none;
    transition: all 0.3s ease;
}

.faq-question:not(.collapsed) {
    background: linear-gradient(135deg, #d32f2f 0%, #b71c1c 100%);
    color: #ffffff;
    box-shadow: none;
}

.faq-question:not(.collapsed) i {
    color: #ffffff;
}

.faq-question i {
    font-size: 1.4rem;
    color: #d32f2f;
    transition: all 0.3s ease;
}

.faq-question:focus {
    box-shadow: none;
    border: none;
}

.faq-question::after {
    background-image: none;
    content: "\F282";
    font-family: "bootstrap-icons";
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.faq-question:not(.collapsed)::after {
    content: "\F286";
    color: #ffffff;
    transform: rotate(0deg);
}

.faq-answer {
    background: #f8f9fa;
    color: #555;
    font-size: 1rem;
    line-height: 1.8;
    padding: 1.5rem 1.5rem;
    border-top: 2px solid #ffebee;
}

@media (max-width: 768px) {
    .faq-main-title {
        font-size: 2rem;
    }
    
    .faq-header-icon i {
        font-size: 3rem;
    }
    
    .faq-question {
        font-size: 1rem;
        padding: 1.2rem 1rem;
    }
    
    .faq-question i {
        font-size: 1.2rem;
    }
    
    .faq-answer {
        font-size: 0.95rem;
        padding: 1.2rem 1rem;
    }
}

/* Quote Modal Styles */
.quote-modal-content {
    border-radius: 20px;
    border: none;
    box-shadow: 0 10px 40px rgba(0,0,0,0.15);
}

.quote-modal-content .modal-header {
    padding: 1.5rem 2rem 1rem 2rem;
}

.quote-modal-content .modal-body {
    padding: 0 2rem 2rem 2rem;
}

.input-with-icon {
    position: relative;
}

.input-with-icon i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #dc3545;
    font-size: 18px;
    z-index: 10;
}

.input-with-icon .form-control {
    padding-left: 48px;
    border-radius: 8px;
    border: 1px solid #d1d5db;
    font-size: 15px;
    padding-top: 14px;
    padding-bottom: 14px;
    background: #ffffff;
    color: #6b7280;
}

.input-with-icon .form-control::placeholder {
    color: #9ca3af;
}

.input-with-icon .form-control:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220,53,69,0.1);
    outline: none;
}

input[type="date"].form-control {
    color: #6b7280;
    padding-left: 16px;
}

.btn-submit {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    font-weight: 700;
    border-radius: 8px;
    font-size: 16px;
    padding: 14px 24px;
    border: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(220,53,69,0.4);
}

.btn-submit i {
    font-size: 16px;
}

.nav-cta {
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer;
}

.nav-cta:hover {
    background: linear-gradient(135deg, #c82333, #bd2130);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(220,53,69,0.3);
    color: white;
}

/* Hero Form Card - Quote Form */
.hero-form-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e7eb;
}

.form-title {
    font-weight: 700;
    font-size: 1.5rem;
    margin-bottom: 8px;
    color: #1f2937;
    display: flex;
    align-items: center;
}

.form-subtitle {
    color: #9ca3af;
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.hero-form-card .input-with-icon {
    position: relative;
}

.hero-form-card .input-with-icon i {
    position: absolute;
    font-size: 16px;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #dc3545;
    z-index: 1;
}

.hero-form-card .input-with-icon .form-control {
    padding-left: 45px;
    font-size: 0.95rem;
    padding: 12px 15px 12px 45px;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.hero-form-card .input-with-icon .form-control:focus {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.hero-form-card .btn-submit {
    font-size: 1rem;
    padding: 12px 20px;
    background: #dc3545;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.hero-form-card .btn-submit:hover {
    background: #c82333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(220, 53, 69, 0.3);
}

.hero-form-card .btn-submit i {
    font-size: 16px;
}
/* ===== HOME PAGE STYLES - START ===== */

/* WHO WE ARE SECTION */
.who-we-are-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.content-wrapper .main-heading {
  font-size: 42px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 25px;
  line-height: 1.2;
}

.highlight-text {
  color: #dc3545;
  position: relative;
  display: inline-block;
}

.highlight-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60%;
  height: 4px;
  background: #dc3545;
  border-radius: 2px;
}

.intro-text {
  font-size: 18px;
  color: #374151;
  line-height: 1.8;
  margin-bottom: 20px;
  font-weight: 500;
}

.desc-text {
  font-size: 16px;
  color: #6b7280;
  line-height: 1.8;
  margin-bottom: 30px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 35px;
}

.icon-wrapper {
  width: 55px;
  height: 55px;
  background: linear-gradient(135deg, #dc3545, #c82333);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.icon-wrapper i {
  font-size: 24px;
  color: white;
}

.feature-item h6 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 2px;
}

.feature-item p {
  font-size: 13px;
  color: #6b7280;
  margin: 0;
}

.image-section {
  position: relative;
  height: 100%;
}

.main-image {
  width: 100%;
  height: 550px;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.floating-card {
  position: absolute;
  bottom: 40px;
  left: 40px;
  background: white;
  padding: 25px 30px;
  border-radius: 15px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 20px;
}

.floating-card i {
  font-size: 42px;
  color: #dc3545;
}

.floating-card h4 {
  font-size: 32px;
  font-weight: 800;
  color: #1f2937;
  margin: 0;
  line-height: 1;
}

.floating-card p {
  font-size: 14px;
  color: #6b7280;
  margin: 5px 0 0;
  line-height: 1.3;
}

/* SERVICES SECTION */
.services-main-section {
  padding: 90px 0;
  background: white;
}

.section-heading {
  font-size: 40px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 15px;
}

.section-subtext {
  font-size: 17px;
  color: #6b7280;
  max-width: 650px;
  margin: 0 auto;
}

.service-box {
  background: #f9fafb;
  padding: 35px;
  border-radius: 15px;
  border-left: 5px solid #dc3545;
  transition: all 0.3s ease;
  height: 100%;
}

.service-box:hover {
  background: white;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  transform: translateY(-5px);
  border-left-width: 8px;
}

.service-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 15px;
}

.service-header i {
  font-size: 32px;
  color: #dc3545;
}

.service-header h4 {
  font-size: 19px;
  font-weight: 700;
  color: #1f2937;
  margin: 0;
}

.service-box p {
  font-size: 15px;
  color: #6b7280;
  line-height: 1.7;
  margin: 0;
}

.service-box.highlight {
  background: linear-gradient(135deg, #dc3545, #c82333);
  border-left: none;
  color: white;
}

.service-box.highlight .service-header i,
.service-box.highlight .service-header h4,
.service-box.highlight p {
  color: white;
}

/* METHODOLOGY SECTION */
.methodology-section {
  padding: 90px 0;
  background: linear-gradient(135deg, #fef2f2 0%, #ffffff 100%);
}

.methodology-main-image {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  height: 600px;
  box-shadow: 0 15px 50px rgba(220, 53, 69, 0.3);
  transition: all 0.4s ease;
}

.methodology-main-image:hover {
  transform: translateY(-10px);
  box-shadow: 0 25px 60px rgba(220, 53, 69, 0.4);
}

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

.methodology-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(220, 53, 69, 0.9), transparent);
  padding: 30px;
  color: white;
}

.methodology-overlay h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0;
}

.timeline-wrapper {
  position: relative;
  padding-left: 40px;
}

.timeline-wrapper::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, #dc3545, #c82333);
}

.timeline-item {
  display: flex;
  gap: 30px;
  margin-bottom: 35px;
  position: relative;
  animation: fadeInRight 0.6s ease forwards;
  opacity: 0;
}

.timeline-item:nth-child(1) { animation-delay: 0.1s; }
.timeline-item:nth-child(2) { animation-delay: 0.2s; }
.timeline-item:nth-child(3) { animation-delay: 0.3s; }
.timeline-item:nth-child(4) { animation-delay: 0.4s; }
.timeline-item:nth-child(5) { animation-delay: 0.5s; }
.timeline-item:nth-child(6) { animation-delay: 0.6s; }
.timeline-item:nth-child(7) { animation-delay: 0.7s; }

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
  from {
    transform: translateX(20px);
  }
}

.timeline-marker {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #dc3545, #c82333);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 800;
  color: white;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(220,53,69,0.3);
  z-index: 2;
  transition: all 0.3s ease;
}

.timeline-item:hover .timeline-marker {
  transform: scale(1.1);
  box-shadow: 0 8px 20px rgba(220,53,69,0.5);
}

.timeline-content {
  background: white;
  padding: 25px;
  border-radius: 12px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  flex: 1;
  transition: all 0.3s ease;
}

.timeline-content:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.timeline-content h5 {
  font-size: 18px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 8px;
}

.timeline-content p {
  font-size: 15px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* WHY CHOOSE SECTION */
.why-choose-new-section {
  padding: 90px 0;
  background: white;
}

.why-box {
  text-align: center;
  padding: 35px 25px;
  background: linear-gradient(135deg, #f9fafb, #ffffff);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid #e5e7eb;
  height: 100%;
}

.why-box:hover {
  border-color: #dc3545;
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(220,53,69,0.15);
}

.why-box i {
  font-size: 48px;
  color: #dc3545;
  margin-bottom: 15px;
}

.why-box h6 {
  font-size: 17px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 10px;
}

.why-box p {
  font-size: 14px;
  color: #6b7280;
  margin: 0;
  line-height: 1.6;
}

/* TESTIMONIALS SECTION */
.testimonials-section {
  padding: 70px 0;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.testimonials-section .section-header {
  margin-bottom: 50px;
}

.testimonials-section .section-header h2 {
  font-size: 36px;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 15px;
}

.testimonials-section .section-header p {
  font-size: 16px;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

.testimonial-card {
  background: white;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  height: 100%;
  transition: all 0.3s ease;
  position: relative;
  border-top: 3px solid #dc3545;
}

.testimonial-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 35px rgba(220, 53, 69, 0.15);
}

.quote-icon {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 40px;
  color: rgba(220, 53, 69, 0.1);
  line-height: 1;
}

.rating {
  display: flex;
  gap: 5px;
  margin-bottom: 15px;
}

.rating i {
  color: #fbbf24;
  font-size: 16px;
}

.testimonial-text {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.7;
  margin-bottom: 25px;
  font-style: italic;
}

.customer-info {
  display: flex;
  align-items: center;
  gap: 15px;
  padding-top: 20px;
  border-top: 1px solid #e5e7eb;
}

.customer-avatar {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #dc3545, #c82333);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.customer-avatar i {
  font-size: 30px;
  color: white;
}

.customer-details h5 {
  font-size: 16px;
  font-weight: 700;
  color: #1f2937;
  margin: 0 0 5px 0;
}

.customer-details span {
  font-size: 13px;
  color: #6b7280;
}

/* CONTACT CTA & FAQ SECTION */
.contact-cta-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #1f2937, #111827);
}

.cta-wrapper {
  background: linear-gradient(135deg, #dc3545, #c82333);
  padding: 30px 35px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.3);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-wrapper h3 {
  font-size: 24px;
  font-weight: 700;
  color: white;
  margin-bottom: 12px;
}

.cta-wrapper p {
  font-size: 14px;
  color: rgba(255,255,255,0.95);
  margin: 0 0 20px 0;
  line-height: 1.6;
}

.cta-phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 25px;
  background: white;
  color: #dc3545;
  text-decoration: none;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  align-self: flex-start;
}

.cta-phone-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
  color: #c82333;
}

/* Home FAQ Accordion Styles */
.faq-wrapper-home {
  background: white;
  padding: 20px 25px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
  height: 100%;
}

.faq-wrapper-home h3 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.faq-wrapper-home h3 i {
  color: #dc3545;
  font-size: 1.4rem;
}

.home-faq-item {
  border: none;
  margin-bottom: 8px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s ease;
}

.home-faq-item:hover {
  box-shadow: 0 4px 12px rgba(220, 47, 47, 0.12);
}

.home-faq-question {
  background: #ffffff;
  color: #1f2937;
  font-size: 0.9rem;
  font-weight: 600;
  padding: 12px 15px;
  border: none;
  transition: all 0.3s ease;
}

.home-faq-question:not(.collapsed) {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: #ffffff;
  box-shadow: none;
}

.home-faq-question:focus {
  box-shadow: none;
  border: none;
}

.home-faq-question::after {
  background-image: none;
  content: "\F282";
  font-family: "bootstrap-icons";
  font-size: 1.1rem;
  transition: all 0.3s ease;
}

.home-faq-question:not(.collapsed)::after {
  content: "\F286";
  color: #ffffff;
  transform: rotate(0deg);
}

.home-faq-answer {
  background: #f8f9fa;
  color: #555;
  font-size: 0.85rem;
  line-height: 1.6;
  padding: 12px 15px;
  border-top: 2px solid #ffebee;
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .methodology-main-image {
    height: 400px;
    margin-bottom: 40px;
  }
  
  .timeline-wrapper {
    padding-left: 0;
  }
  
  .timeline-wrapper::before {
    left: 30px;
  }
}

@media (max-width: 768px) {
  .main-heading {
    font-size: 32px !important;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
  }
  
  .floating-card {
    left: 20px;
    bottom: 20px;
    padding: 20px;
  }
  
  .main-image {
    height: 400px;
  }
  
  .section-heading {
    font-size: 28px;
  }
  
  .timeline-wrapper::before {
    left: 20px;
  }
  
  .timeline-marker {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
  
  .cta-wrapper {
    padding: 40px 30px;
  }
  
  .cta-wrapper h3 {
    font-size: 26px;
  }
  
  .cta-phone-btn {
    margin-top: 20px;
  }
  
  .faq-wrapper-home h3 {
    font-size: 1.1rem;
  }
  
  .home-faq-question {
    font-size: 0.85rem;
    padding: 10px 12px;
  }
  
  .home-faq-answer {
    font-size: 0.8rem;
    padding: 10px 12px;
  }
}
.breadcrumb-item+.breadcrumb-item::before{
    color: white !important;
}
/* ===== HOME PAGE STYLES - END ===== */
