/* ========================================
   Service Pages Common Styles
   ======================================== */

/* Body Background Fix */
body {
    background: var(--bg-light);
}

/* Service Hero */
.service-hero {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.95), rgba(44, 62, 80, 0.95));
    background-size: cover;
    background-position: center;
    padding: 120px 20px 80px;
    color: white;
    text-align: center;
    position: relative;
}

.service-hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 20px;
}

.service-hero p {
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

/* Breadcrumb */
.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    transition: color 0.3s;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb span {
    color: rgba(255,255,255,0.6);
}

/* Service Content Layout */
.service-content {
    max-width: 1200px;
    margin: -50px auto 80px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    background: transparent;
    position: relative;
    z-index: 10;
}

.main-content {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

/* Main Content */
.main-content h2 {
    color: var(--secondary-color);
    font-size: 32px;
    font-weight: 700;
    margin: 40px 0 20px;
}

.main-content h2:first-child {
    margin-top: 0;
}

.main-content h3 {
    color: var(--secondary-color);
    font-size: 24px;
    font-weight: 600;
    margin: 30px 0 15px;
}

.main-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.main-content ul {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.main-content ul li {
    padding: 12px 0 12px 35px;
    position: relative;
    color: var(--text-dark);
    line-height: 1.6;
}

.main-content ul li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 14px;
}

.main-content ul li strong {
    color: var(--secondary-color);
}

/* Sidebar */
.sidebar {
    position: sticky;
    top: 100px;
    height: fit-content;
}

.sidebar-box {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 30px;
}

.sidebar-box h3 {
    color: var(--secondary-color);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-box {
    background: var(--gradient-primary);
    color: white;
    text-align: center;
}

.cta-box h3 {
    color: white;
}

.cta-box p {
    color: white;
    margin-bottom: 15px;
}

.cta-box .phone {
    font-size: 28px;
    font-weight: 700;
    margin: 15px 0;
    display: block;
    color: white;
    text-decoration: none;
    transition: transform 0.3s;
}

.cta-box .phone:hover {
    transform: scale(1.05);
}

/* Districts Grid */
.districts-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin: 30px 0;
}

.district-tag {
    background: var(--bg-light);
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    font-weight: 500;
    color: var(--text-dark);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.district-tag:hover {
    border-color: var(--primary-color);
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.2);
}

.district-tag i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* Features List */
.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.feature-box {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 12px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.feature-box:hover {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.15);
    transform: translateY(-5px);
}

.feature-box i {
    font-size: 40px;
    color: var(--primary-color);
    margin-bottom: 15px;
    transition: transform 0.3s;
}

.feature-box:hover i {
    transform: scale(1.1);
}

.feature-box h4 {
    color: var(--secondary-color);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
}

.feature-box p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
}

/* Responsive */
@media (max-width: 968px) {
    .service-content {
        grid-template-columns: 1fr;
        gap: 40px;
        margin: -30px auto 60px;
    }
    
    .main-content {
        padding: 30px;
    }
    
    .sidebar {
        position: relative;
        top: 0;
    }
    
    .districts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .service-hero {
        padding: 100px 20px 60px;
    }
    
    .service-hero h1 {
        font-size: 32px;
    }
    
    .service-hero p {
        font-size: 16px;
    }
    
    .main-content h2 {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .districts-grid {
        grid-template-columns: 1fr;
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }
    
    .service-hero {
        padding: 100px 20px 60px;
    }
    
    .service-hero h1 {
        font-size: 28px;
    }
    
    .service-hero p {
        font-size: 14px;
    }
    
    .service-content {
        margin: -20px auto 40px;
    }
    
    .main-content {
        padding: 25px 20px;
    }
    
    .main-content h2 {
        font-size: 24px;
    }
    
    .cta-box .phone {
        font-size: 24px;
    }
}

