/* Related Routes Section Styles */
.related-services .route-item {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 12px rgba(0, 123, 255, 0.1);
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.related-services .route-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 123, 255, 0.15);
    border-color: #007bff;
}

.related-services .route-icon {
    font-size: 3rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.related-services .route-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.related-services .route-details {
    margin-bottom: 1.5rem;
}

.related-services .route-details p {
    margin-bottom: 0.5rem;
    color: #6c757d;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-services .route-details i {
    margin-right: 0.5rem;
    color: #007bff;
    width: 16px;
}

.related-services .route-price {
    color: #28a745;
    font-weight: 600;
    font-size: 1rem;
}

.badge-popular {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    display: inline-block;
}

.related-services .btn-sm {
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.related-services .btn-primary:hover {
    background: #0056b3;
    transform: scale(1.05);
}

/* Responsive adjustments for related routes */
@media (max-width: 768px) {
    .related-services .route-item {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .related-services .route-title {
        font-size: 1.1rem;
    }
}

/* Homepage Styles */
.hero-homepage {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    position: relative;
    overflow: hidden;
}

.hero-homepage::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/img/shape/dot-a.svg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.hero-homepage .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.9;
}

.hero-features .feature-item {
    font-size: 1.1rem;
}

.trust-indicators {
    border-top: 1px solid #e9ecef;
    border-bottom: 1px solid #e9ecef;
}

.trust-item h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.service-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15) !important;
}

.service-icon i {
    display: inline-block;
    width: 80px;
    height: 80px;
    line-height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    color: white;
    text-align: center;
}

.feature-box {
    padding: 2rem 1rem;
}

.feature-icon i {
    display: inline-block;
    width: 70px;
    height: 70px;
    line-height: 70px;
    border-radius: 50%;
    background: rgba(0, 123, 255, 0.1);
    color: #007bff;
    text-align: center;
}

.route-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.route-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1) !important;
}

.testimonial-card {
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.testimonial-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 0.25rem 0.75rem rgba(0,0,0,0.1) !important;
}

.rating i {
    font-size: 1.1rem;
    margin-right: 0.25rem;
}

.cta-section {
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/assets/img/shape/dot-a.svg') no-repeat center center;
    background-size: cover;
    opacity: 0.1;
    z-index: 1;
}

.cta-content {
    position: relative;
    z-index: 2;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-homepage {
        padding-top: 100px !important;
        padding-bottom: 30px !important;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-cta .btn {
        margin-bottom: 1rem;
        width: 100%;
    }
    
    .trust-item h3 {
        font-size: 1.5rem;
    }
    
    .service-icon i {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
    
    .feature-icon i {
        font-size: 2rem;
        width: 60px;
        height: 60px;
        line-height: 60px;
    }
}

@media (max-width: 480px) {
    .hero-homepage {
        padding-top: 90px !important;
        padding-bottom: 20px !important;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* Revamped Courier Page Styles */

/* Header Enhancements */
.main-header-area {
    background: white;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    z-index: 1000;
}

/* Logo Text Styling */
.logo-text a {
    font-size: 1.8rem;
    font-weight: 800;
    color: #2d3748;
    text-decoration: none;
    letter-spacing: -0.5px;
    transition: all 0.3s ease;
    font-family: 'Inter', 'Segoe UI', sans-serif;
}

.logo-text a:hover {
    color: #4299e1;
    transform: scale(1.02);
}

/* Navigation Styling */
.navbar-nav .nav-link {
    color: #2d3748 !important;
    font-weight: 600;
    padding: 0.8rem 1.2rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: capitalize;
    font-size: 0.95rem;
}

.navbar-nav .nav-link:hover {
    color: #4299e1 !important;
    transform: translateY(-1px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: 0;
    left: 50%;
    background: linear-gradient(90deg, #4299e1, #63b3ed);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

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

.navbar-nav .nav-item.active .nav-link {
    color: #4299e1 !important;
}

.navbar-nav .nav-item.active .nav-link::after {
    width: 80%;
}

/* Dropdown Menu */
.dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 0.5rem 0;
    margin-top: 0.5rem;
    background: white;
}

.dropdown-item {
    color: #2d3748;
    padding: 0.8rem 1.5rem;
    transition: all 0.3s ease;
    font-weight: 500;
    border-bottom: 1px solid #f7fafc;
}

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

.dropdown-item:hover {
    background: linear-gradient(90deg, #f7fafc, #edf2f7);
    color: #4299e1;
    transform: translateX(8px);
}

/* Call Button Styling - Desktop */
.call-to {
    background: linear-gradient(135deg, #f7fafc, #edf2f7);
    padding: 0.8rem 1.2rem;
    border-radius: 12px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
}

.call-to:hover {
    background: linear-gradient(135deg, #e6fffa, #b2f5ea);
    border-color: #4299e1;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(66, 153, 225, 0.2);
}

.call-to img {
    width: 22px;
    height: 22px;
    margin-right: 0.7rem;
}

.call-text span {
    font-size: 0.75rem;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: block;
    line-height: 1.2;
    font-weight: 500;
}

.call-text .number {
    font-size: 1.1rem;
    font-weight: 700;
    color: #4299e1;
    margin: 0;
    line-height: 1.3;
}

.call-to:hover .number {
    color: #3182ce;
}

/* Mobile Menu Icon */
.hamburger-menu a {
    color: #2d3748;
    font-size: 1.3rem;
    padding: 0.6rem;
    background: #f7fafc;
    border-radius: 8px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.hamburger-menu a:hover {
    color: #4299e1;
    background: #e6fffa;
    border-color: #4299e1;
    transform: scale(1.05);
}

/* Responsive Header Styles */
@media (max-width: 991px) {
    .main-header-area {
        padding: 0.5rem 0;
    }
    
    .call-to {
        padding: 0.4rem 0.8rem;
        font-size: 0.85rem;
    }
    
    .call-text .number {
        font-size: 0.9rem;
    }
    
    .logo-text a {
        font-size: 1.6rem;
    }
}

@media (max-width: 768px) {
    .main-header-area {
        padding: 0.4rem 0;
    }
    
    .logo-text a {
        font-size: 1.4rem;
    }
    
    /* Force mobile call button styling with highest specificity */
    .main-header-area .hamburger-menu .call-to.d-flex.align-items-center.phoneclicked {
        margin-right: 0.4rem !important;
        padding: 0.4rem 0.8rem !important;
        border-radius: 25px !important;
        background: linear-gradient(135deg, #4299e1, #63b3ed) !important;
        border: none !important;
        box-shadow: 0 2px 8px rgba(66, 153, 225, 0.3) !important;
    }
    
    .main-header-area .hamburger-menu .call-to img {
        width: 16px !important;
        height: 16px !important;
        margin-right: 0.4rem !important;
    }
    
    .main-header-area .hamburger-menu .call-text {
        display: flex !important;
        flex-direction: column !important;
        align-items: flex-start !important;
    }
    
    /* Fix the white background on the <a> tag inside call button */
    .main-header-area .hamburger-menu .call-to a {
        background: transparent !important;
        text-decoration: none !important;
    }
    
    .main-header-area .hamburger-menu .call-text span {
        font-size: 0.6rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        text-transform: uppercase !important;
        font-weight: 600 !important;
        line-height: 1 !important;
        margin-bottom: 2px !important;
        letter-spacing: 0.5px !important;
    }
    
    .main-header-area .hamburger-menu .call-text .number {
        font-size: 0.8rem !important;
        color: white !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        margin: 0 !important;
    }
    
    .main-header-area .hamburger-menu .call-to:hover {
        background: linear-gradient(135deg, #3182ce, #4299e1) !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 4px 12px rgba(66, 153, 225, 0.4) !important;
    }
    
    .hamburger-menu {
        margin-left: 0.4rem;
    }
    
    .hamburger-menu a {
        padding: 0.4rem;
        font-size: 1.1rem;
    }
}

@media (max-width: 576px) {
    .main-header-area {
        padding: 0.3rem 0;
    }
    
    .logo-text a {
        font-size: 1.2rem;
    }
    
    /* Extra Small Mobile Call Button - Force styling with highest specificity */
    .main-header-area .hamburger-menu .call-to.d-flex.align-items-center.phoneclicked {
        padding: 0.35rem 0.6rem !important;
        margin-right: 0.3rem !important;
        border-radius: 20px !important;
        background: linear-gradient(135deg, #4299e1, #63b3ed) !important;
        border: none !important;
        box-shadow: 0 2px 6px rgba(66, 153, 225, 0.3) !important;
    }
    
    .main-header-area .hamburger-menu .call-to img {
        width: 14px !important;
        height: 14px !important;
        margin-right: 0.3rem !important;
    }
    
    /* Fix the white background on the <a> tag inside call button for small mobile */
    .main-header-area .hamburger-menu .call-to a {
        background: transparent !important;
        text-decoration: none !important;
    }
    
    .main-header-area .hamburger-menu .call-text span {
        font-size: 0.55rem !important;
        color: rgba(255, 255, 255, 0.9) !important;
        font-weight: 600 !important;
        line-height: 1 !important;
        margin-bottom: 2px !important;
        text-transform: uppercase !important;
        letter-spacing: 0.3px !important;
    }
    
    .main-header-area .hamburger-menu .call-text .number {
        font-size: 0.75rem !important;
        color: white !important;
        font-weight: 700 !important;
        line-height: 1 !important;
        margin: 0 !important;
    }
    
    .main-header-area .hamburger-menu .call-to:hover {
        background: linear-gradient(135deg, #3182ce, #4299e1) !important;
        transform: translateY(-1px) !important;
        box-shadow: 0 3px 10px rgba(66, 153, 225, 0.4) !important;
    }
    
    .hamburger-menu {
        margin-left: 0.3rem;
    }
    
    .hamburger-menu a {
        padding: 0.3rem;
        font-size: 1rem;
    }
}

/* Mobile Sidebar */
.slide-bar {
    background: white;
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
}

.side-mobile-menu ul li a {
    color: #2d3748;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #f1f5f9;
    transition: all 0.3s ease;
    font-weight: 500;
}

.side-mobile-menu ul li a:hover {
    background: linear-gradient(90deg, #f7fafc, #edf2f7);
    color: #4299e1;
    transform: translateX(10px);
}

.close-mobile-menu a {
    color: #2d3748;
    font-size: 1.5rem;
    padding: 1rem;
    transition: all 0.3s ease;
}

.close-mobile-menu a:hover {
    color: #4299e1;
    transform: rotate(90deg);
}

/* Additional Header Enhancements */
.main-header-area .container-fluid {
    max-width: 1400px;
    margin: 0 auto;
}

.navbar-nav .nav-item {
    margin: 0 0.25rem;
}

.phoneclicked a {
    text-decoration: none;
    color: inherit;
}

/* Header Sticky Effect */
.main-header-area.sticky {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
}

/* Hero Section */
.hero-revamped {
    background: linear-gradient(135deg, #4299e1 0%, #63b3ed 100%);
    position: relative;
    overflow: hidden;
    padding-top: 150px;
    padding-bottom: 80px;
}

.hero-revamped::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
}

.hero-revamped .container {
    position: relative;
    z-index: 2;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 1.5rem;
    font-weight: 400;
    opacity: 0.9;
    color: white;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.trust-badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.trust-badges .badge {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-size: 0.9rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.cta-buttons .btn {
    padding: 1rem 2rem;
    font-weight: 600;
    border-radius: 50px;
    transition: all 0.3s ease;
}

.btn-white {
    background: white;
    color: #2c5282;
    border: 2px solid white;
    transition: all 0.3s ease;
}

.btn-white:hover {
    background: rgba(255, 255, 255, 0.9);
    color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

.btn-outline-white {
    color: white;
    border: 2px solid white;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: #2c5282;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.3);
}

/* Pricing Table */
.pricing-section {
    background: #f8fafc;
}

.pricing-table-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.pricing-table {
    width: 100%;
    margin: 0;
}

.pricing-table thead th {
    background: #2c5282;
    color: white;
    padding: 1.5rem 1rem;
    font-weight: 600;
    text-align: center;
    border: none;
}

.pricing-table tbody td {
    padding: 1.5rem 1rem;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #e2e8f0;
}

.pricing-table .popular-plan {
    background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
    position: relative;
}

.pricing-table .popular-plan td {
    border-color: #38b2ac;
}

.badge-popular {
    background: #38b2ac;
    color: white;
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    margin-left: 0.5rem;
}

.price {
    font-size: 1.25rem;
    font-weight: 700;
    color: #2c5282;
}

/* Process Steps */
.process-step {
    padding: 2rem 1rem;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.process-step:hover {
    transform: translateY(-5px);
}

.step-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    position: relative;
}

.step-number {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 30px;
    height: 30px;
    background: #f56565;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    font-size: 0.9rem;
}

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

/* Feature Boxes */
.feature-box, .service-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

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

.feature-icon, .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #4299e1 0%, #3182ce 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.feature-icon i, .service-icon i {
    color: white;
    font-size: 1.25rem;
}

/* Info Cards */
.info-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: #e6fffa;
    color: #38b2ac;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

/* FAQ Section */
.accordion-item {
    border: none;
    margin-bottom: 1rem;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-radius: 10px;
    overflow: hidden;
}

.accordion-button {
    background: white;
    border: none;
    padding: 1.5rem;
    font-weight: 600;
    color: #2c5282;
}

.accordion-button:not(.collapsed) {
    background: #e6fffa;
    color: #2c5282;
}

.accordion-button:focus {
    border: none;
    box-shadow: none;
}

.accordion-body {
    padding: 1.5rem;
    background: #f8fafc;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, #2c5282 0%, #3182ce 100%);
}

/* Related Routes */
.related-route-card {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
}

.related-route-card:hover {
    transform: translateY(-3px);
}

/* Sticky CTA Bar */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: white;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    z-index: 1000;
}

.sticky-text {
    font-weight: 600;
    color: #2c5282;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 1001;
}

.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    text-decoration: none;
    box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4);
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Reduce section spacing for mobile */
    .hero-revamped {
        padding-top: 100px !important;
        padding-bottom: 60px !important;
    }
    
    .pricing-section,
    .process-section,
    .features-section,
    .location-info,
    .services-section,
    .pricing-breakdown,
    .coverage-area,
    .faq-section,
    .testimonials-section,
    .business-info-section,
    .comparison-section,
    .cta-section,
    .related-services {
        padding-top: 60px !important;
        padding-bottom: 40px !important;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1rem;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
        color: white;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.4);
        text-align: center;
    }
    
    .trust-badges {
        justify-content: center;
        margin-bottom: 2rem !important;
    }
    
    .trust-badges .badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 0.5rem;
    }
    
    .section-subtitle {
        margin-bottom: 1.5rem;
    }
    
    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 0.8rem 0.3rem;
        font-size: 0.85rem;
    }
    
    .cta-buttons .btn {
        padding: 0.8rem 1.5rem;
        margin-bottom: 1rem;
        font-size: 0.9rem;
    }
    
    .process-step {
        padding: 1.5rem 1rem;
        margin-bottom: 1.5rem;
    }
    
    .step-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 0.8rem;
    }
    
    .feature-box, .service-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .info-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.5rem;
    }
    
    /* Reduce margins between rows */
    .row {
        margin-bottom: 1rem;
    }
    
    .mb-40 {
        margin-bottom: 1.5rem !important;
    }
    
    .mb-50 {
        margin-bottom: 2rem !important;
    }
}

@media (max-width: 576px) {
    /* Even more compact spacing for extra small screens */
    .hero-revamped {
        padding-top: 90px !important;
        padding-bottom: 50px !important;
    }
    
    .pricing-section,
    .process-section,
    .features-section,
    .location-info,
    .services-section,
    .pricing-breakdown,
    .coverage-area,
    .faq-section,
    .testimonials-section,
    .business-info-section,
    .comparison-section,
    .cta-section,
    .related-services {
        padding-top: 40px !important;
        padding-bottom: 30px !important;
    }
    
    .hero-title {
        font-size: 1.8rem;
        line-height: 1.2;
        margin-bottom: 0.8rem;
        color: white;
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
        text-align: center;
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
        color: white;
        text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
        text-align: center;
        padding: 0 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.5rem;
        line-height: 1.3;
    }
    
    .pricing-table {
        font-size: 0.75rem;
    }
    
    .pricing-table thead th,
    .pricing-table tbody td {
        padding: 0.6rem 0.2rem;
    }
    
    .feature-box, .service-card, .info-card {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .process-step {
        margin-bottom: 1.25rem;
    }
    
    .testimonial-card {
        margin-bottom: 1.25rem;
    }
    
    .mb-40 {
        margin-bottom: 1.25rem !important;
    }
    
    .mb-50 {
        margin-bottom: 1.5rem !important;
    }
    
    .sticky-cta {
        display: none !important;
    }
}

/* Section Spacing */
.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c5282;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #666;
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
}

/* Background Utilities */
.bg-gradient-primary {
    background: linear-gradient(135deg, #4299e1 0%, #63b3ed 100%) !important;
}

/* Button Enhancements */
.btn-primary {
    background: linear-gradient(135deg, #3182ce 0%, #4299e1 100%);
    border: none;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #2b6cb0 0%, #3182ce 100%);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(49, 130, 206, 0.3);
}

/* Additional Service Card Enhancements */
.service-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.service-icon {
    margin-bottom: 1.5rem;
}

.service-icon i {
    font-size: 3rem;
}

/* Documentation Cards */
.documentation-card,
.info-card {
    background: white;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
}

.documentation-card:hover,
.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.12);
}

/* FAQ Accordion Styling */
.faq-section {
    background: #f8fafc;
}

.faq-section .accordion {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
    border-radius: 15px;
    overflow: hidden;
    margin-bottom: 2rem;
}

@media (max-width: 991px) {
    .faq-section .accordion {
        margin-bottom: 1rem;
    }
}

.faq-section .accordion-item {
    border: none;
    border-bottom: 1px solid #e2e8f0;
}

.faq-section .accordion-item:last-child {
    border-bottom: none;
}

.faq-section .accordion-button {
    background: white;
    color: #2c5282;
    font-weight: 600;
    font-size: 1.1rem;
    padding: 1.5rem 2rem;
    border: none;
    transition: all 0.3s ease;
}

.faq-section .accordion-button:not(.collapsed) {
    background: linear-gradient(135deg, #4299e1 0%, #63b3ed 100%);
    color: white;
    box-shadow: none;
}

.faq-section .accordion-button:focus {
    box-shadow: none;
    border: none;
}

.faq-section .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23212529'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23ffffff'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.faq-section .accordion-body {
    padding: 2rem;
    background: white;
    font-size: 1rem;
    line-height: 1.6;
}

.faq-section .accordion-body h6 {
    color: #2c5282;
    font-weight: 600;
}

.faq-section .accordion-body ul {
    margin-bottom: 1rem;
}

.faq-section .accordion-body li {
    margin-bottom: 0.5rem;
}

.faq-section .accordion-body .text-success {
    color: #38a169 !important;
}

.faq-section .accordion-body .text-danger {
    color: #e53e3e !important;
}

.faq-section .accordion-body .text-primary {
    color: #3182ce !important;
}

.btn-outline-primary {
    border: 2px solid #4299e1;
    color: #3182ce;
    transition: all 0.3s ease;
}

.btn-outline-primary:hover {
    background: #4299e1;
    color: white;
    transform: translateY(-2px);
}

/* Enhanced Service Cards */
.service-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.service-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid #e2e8f0;
    position: relative;
    padding-left: 20px;
}

.service-list li:before {
    content: "✓";
    color: #38b2ac;
    font-weight: bold;
    position: absolute;
    left: 0;
}

.price-info {
    background: #e6fffa;
    padding: 0.75rem;
    border-radius: 8px;
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #2c5282;
}

/* Pricing Breakdown */
.pricing-breakdown-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-detail-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.pricing-detail-table thead th {
    background: #2c5282;
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    border: 1px solid #2c5282;
}

.pricing-detail-table tbody td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    vertical-align: middle;
}

.pricing-detail-table .popular-row {
    background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
    font-weight: 600;
}

.pricing-detail-table .popular-row td {
    border-color: #38b2ac;
}

/* Additional Services Cards */
.additional-services-card, .discount-offers-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.services-pricing, .offers-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.services-pricing li, .offers-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e2e8f0;
}

.services-pricing li:last-child, .offers-list li:last-child {
    border-bottom: none;
}

.text-success {
    color: #38a169 !important;
}

/* Coverage Area */
.coverage-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.coverage-list li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 20px;
    border-bottom: 1px solid #e2e8f0;
}

.coverage-list li:before {
    content: "📍";
    position: absolute;
    left: 0;
}

.coverage-note {
    background: #fff5f5;
    border-left: 4px solid #f56565;
    padding: 1rem;
    margin-top: 1rem;
    border-radius: 0 8px 8px 0;
}

/* Testimonials */
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
    height: 100%;
    position: relative;
}

.rating {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.25rem;
}

.rating .fas {
    color: #fbbf24;
    font-size: 1.1rem;
}

.rating-text {
    margin-left: 0.5rem;
    font-weight: 600;
    color: #2c5282;
}

.testimonial-text {
    font-style: italic;
    margin: 1.5rem 0;
    line-height: 1.6;
    color: #4a5568;
}

.customer-info h5 {
    color: #2c5282;
    margin-bottom: 0.25rem;
}

.customer-info span {
    color: #718096;
    font-size: 0.9rem;
}

.service-used {
    display: block;
    color: #4299e1;
    font-size: 0.8rem;
    margin-top: 0.5rem;
    font-weight: 500;
}

.pricing-note {
    margin-top: 1rem;
    padding: 0.75rem;
    background: #f7fafc;
    border-left: 3px solid #4299e1;
    border-radius: 0 5px 5px 0;
}

.pricing-note small {
    color: #4a5568;
    font-style: italic;
}

/* Comparison Table */
.comparison-table-wrapper {
    background: white;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.comparison-table {
    width: 100%;
    margin: 0;
    border-collapse: collapse;
}

.comparison-table thead th {
    background: #2c5282;
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    border: 1px solid #2c5282;
}

.comparison-table thead th.our-service {
    background: #38b2ac;
    position: relative;
}

.comparison-table thead th.our-service:after {
    content: "BEST CHOICE";
    position: absolute;
    top: -8px;
    right: 10px;
    background: #f56565;
    color: white;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: bold;
}

.comparison-table tbody td {
    padding: 1rem;
    text-align: center;
    border: 1px solid #e2e8f0;
    vertical-align: middle;
}

.comparison-table tbody td.our-service {
    background: linear-gradient(135deg, #e6fffa 0%, #f0fff4 100%);
    font-weight: 600;
    color: #2c5282;
}

/* Business Information Section */
.business-info-section {
    background: white;
}

.info-content, .terms-content {
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
}

.highlight-list, .terms-list {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
}

.highlight-list li, .terms-list li {
    padding: 0.75rem 0;
    position: relative;
    padding-left: 25px;
    border-bottom: 1px solid #e2e8f0;
}

.highlight-list li:before {
    content: "🏆";
    position: absolute;
    left: 0;
}

.terms-list li:before {
    content: "📋";
    position: absolute;
    left: 0;
}

.business-credentials {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    border-left: 4px solid #3182ce;
}

.business-credentials p {
    margin: 0.5rem 0;
    color: #2c5282;
}

.terms-note {
    background: #fff5f5;
    border: 1px solid #fed7d7;
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 2rem;
    color: #c53030;
}

/* Footer Redesign */
.footer-redesigned {
    background: linear-gradient(135deg, #1a202c 0%, #2d3748 100%);
    color: #e2e8f0;
    margin-top: 0;
}

.footer-main {
    padding: 60px 0 40px;
}

.footer-brand {
    color: #4299e1;
    font-weight: 800;
    font-size: 1.5rem;
    margin-bottom: 0;
    letter-spacing: -0.5px;
}

.footer-title {
    color: white;
    font-weight: 600;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: #4299e1;
}

.company-info h5 {
    color: #4299e1;
    font-weight: 600;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.contact-item i {
    color: #4299e1;
    margin-top: 2px;
    min-width: 16px;
}

.footer-phone {
    color: #4299e1;
    text-decoration: none;
    font-weight: 600;
}

.footer-phone:hover {
    color: #63b3ed;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: #cbd5e0;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: block;
}

.footer-links a:hover {
    color: #4299e1;
    padding-left: 8px;
}

.footer-features .feature-item {
    display: flex;
    align-items: center;
    color: #cbd5e0;
    font-size: 0.9rem;
}

.footer-features .feature-item i {
    min-width: 20px;
}

.call-action {
    margin-top: 1rem;
}

.call-action .btn {
    font-size: 0.85rem;
    padding: 0.5rem 1rem;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.call-action .btn-primary {
    background: #4299e1;
    border-color: #4299e1;
}

.call-action .btn-primary:hover {
    background: #3182ce;
    border-color: #3182ce;
    transform: translateY(-1px);
}

.call-action .btn-success {
    background: #25d366;
    border-color: #25d366;
}

.call-action .btn-success:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-1px);
}

.footer-bottom {
    background: rgba(0, 0, 0, 0.2);
    padding: 20px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.copyright p {
    margin: 0;
    color: #a0aec0;
    font-size: 0.9rem;
}

.copyright strong {
    color: #4299e1;
}

.powered-by {
    color: #718096;
    font-size: 0.85rem;
}

/* Footer Responsive */
@media (max-width: 768px) {
    .footer-main {
        padding: 40px 0 30px;
    }
    
    .footer-brand {
        font-size: 1.3rem;
        text-align: center;
    }
    
    .footer-title {
        font-size: 1rem;
        text-align: center;
    }
    
    .footer-title::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .call-action {
        text-align: center;
    }
    
    .footer-meta {
        text-align: center !important;
        margin-top: 1rem;
    }
    
    .contact-item {
        justify-content: center;
        text-align: center;
        flex-direction: column;
        align-items: center;
    }
    
    .contact-item i {
        margin-bottom: 0.25rem;
    }
}

@media (max-width: 576px) {
    .call-action .btn {
        font-size: 0.8rem;
        padding: 0.4rem 0.8rem;
        margin-bottom: 0.5rem;
        display: block;
        text-align: center;
    }
    
    .call-action .btn.ms-2 {
        margin-left: 0 !important;
    }
}

/* Responsive Enhancements */
@media (max-width: 768px) {
    .service-list li,
    .services-pricing li,
    .offers-list li,
    .coverage-list li {
        font-size: 0.9rem;
        padding: 0.4rem 0;
    }
    
    .pricing-detail-table,
    .comparison-table {
        font-size: 0.8rem;
    }
    
    .pricing-detail-table thead th,
    .pricing-detail-table tbody td,
    .comparison-table thead th,
    .comparison-table tbody td {
        padding: 0.5rem 0.25rem;
    }
    
    .additional-services-card,
    .discount-offers-card {
        padding: 1.5rem;
        margin-bottom: 1.5rem;
    }
    
    .pricing-breakdown-card {
        padding: 1.5rem;
        margin-bottom: 2rem;
    }
    
    .comparison-table thead th.our-service:after {
        display: none;
    }
}

@media (max-width: 576px) {
    .pricing-detail-table,
    .comparison-table {
        font-size: 0.7rem;
    }
    
    .pricing-breakdown-card {
        padding: 1.25rem;
        margin-bottom: 1.5rem;
    }
    
    .additional-services-card,
    .discount-offers-card {
        padding: 1.25rem;
        margin-bottom: 1.25rem;
    }
    
    .service-list li,
    .services-pricing li,
    .offers-list li,
    .coverage-list li {
        font-size: 0.85rem;
        padding: 0.3rem 0;
    }
}