/* Modern Service Page Design - Unique CSS for Service Detail View */

/* Hero Section - Modern & Clean with Background */
.service-hero-modern {
    background: linear-gradient(135deg, #007bff 0%, #0056b3 100%);
    padding: 1.5rem 0;
    position: relative;
    overflow: hidden;
}

.service-hero-modern::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.service-hero-modern::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 86, 179, 0.03) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

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

.hero-title-modern {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    color: #ffffff;
    margin-bottom: 1rem;
    letter-spacing: -0.3px;
}

.hero-description-modern {
    font-size: 1rem; /* 16px */
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    max-width: 90%;
}

.hero-image-modern {
    max-height: 650px;
    width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Modern Buttons - Smaller */
.btn-modern-primary {
    background: rgba(255, 255, 255, 0.95);
    border: none;
    color: #0056b3;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.btn-modern-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    color: #004085;
    background: #ffffff;
}

.btn-modern-outline {
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    font-weight: 600;
    font-size: 0.875rem;
    padding: 0.5rem 1.25rem;
    border-radius: 8px;
    background: transparent;
    transition: all 0.3s ease;
}

.btn-modern-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #ffffff;
    transform: translateY(-2px);
    border-color: #ffffff;
}

/* Feature Pills - Smaller */
.feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.95);
    padding: 0.375rem 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.feature-pill:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.5);
}

.feature-pill i {
    color: #ffffff;
    font-size: 0.875rem;
}

/* Content Section */
.content-section-modern {
    padding: 4rem 0;
}

.section-heading-modern {
    font-size: 1.875rem; /* 30px */
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.section-heading-modern::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #0056b3 0%, #004085 100%);
    border-radius: 2px;
}

.section-subheading-modern {
    font-size: 1.125rem; /* 18px */
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 0.5rem;
}

.content-text-modern {
    font-size: 0.9375rem; /* 15px */
    line-height: 1.7;
    color: #4a5568;
    margin-bottom: 0;
}

/* Process Cards - Modern Design */
.process-card-modern {
    background: white;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 1.5rem;
    height: 100%;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.process-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0056b3 0%, #004085 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.process-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 86, 179, 0.12);
    border-color: #0056b3;
}

.process-card-modern:hover::before {
    transform: scaleY(1);
}

.process-number-modern {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.25rem;
    flex-shrink: 0;
    box-shadow: 0 3px 12px rgba(0, 86, 179, 0.25);
}

/* Sidebar - Modern Design */
.sidebar-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 2rem;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.sidebar-card-modern:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.sidebar-header-modern {
    background: linear-gradient(135deg, #0056b3 0%, #004085 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    font-weight: 700;
    font-size: 1.125rem; /* 18px */
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-header-modern i {
    font-size: 1.25rem;
}

.sidebar-body-modern {
    padding: 1.5rem;
}

.sidebar-item-modern {
    padding: 1.25rem 0;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.sidebar-item-modern:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.sidebar-icon-modern {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f0f7ff 0%, #e0f2fe 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.sidebar-icon-modern i {
    color: #0056b3;
    font-size: 1.25rem;
}

.sidebar-label-modern {
    font-size: 0.9375rem; /* 15px */
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.25rem;
    display: block;
}

.sidebar-value-modern {
    font-size: 0.9375rem; /* 15px */
    color: #718096;
}

.sidebar-link-modern {
    font-size: 0.9375rem; /* 15px */
    color: #0056b3;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.sidebar-link-modern:hover {
    color: #004085;
    text-decoration: underline;
}


/* Breadcrumbs */
.breadcrumb-modern {
    background: #f8f9fa;
    padding: 0.75rem 0;
    font-size: 0.875rem; /* 14px */
}

.breadcrumb-modern .breadcrumb-item a {
    color: #0056b3;
    text-decoration: none;
}

.breadcrumb-modern .breadcrumb-item a:hover {
    text-decoration: underline;
}

/* Content Typography */
.content-body-modern h2 {
    font-size: 1.875rem; /* 30px */
    font-weight: 700;
    color: #1a1a1a;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 3px solid #e2e8f0;
}

.content-body-modern h3 {
    font-size: 1.375rem; /* 22px */
    font-weight: 600;
    color: #2d3748;
    margin-top: 2rem;
    margin-bottom: 0.75rem;
}

.content-body-modern p {
    font-size: 1rem; /* 16px */
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
    text-align: justify;
}

.content-body-modern ul, .content-body-modern ol {
    font-size: 1.0625rem; /* 17px */
    line-height: 1.8;
    color: #4a5568;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-body-modern li {
    margin-bottom: 0.75rem;
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 1.75rem; /* 28px - Professional size for mobile */
        line-height: 1.3;
        margin-bottom: 1rem;
    }

    .hero-description-modern {
        font-size: 1rem; /* 16px */
        line-height: 1.75;
        max-width: 100%;
        margin-bottom: 1.5rem;
    }

    .section-heading-modern {
        font-size: 1.5rem; /* 24px - Professional size for mobile */
        margin-bottom: 1.5rem;
        padding-bottom: 0.75rem;
    }

    .section-subheading-modern {
        font-size: 1rem; /* 16px - Professional size for mobile */
        line-height: 1.4;
        margin-bottom: 0.5rem;
    }

    .content-text-modern {
        font-size: 0.875rem; /* 14px - Professional size for mobile */
        line-height: 1.6;
    }

    .content-body-modern {
        text-align: justify;
    }

    .content-body-modern h2 {
        font-size: 1.5rem; /* 24px - Professional size for mobile */
        margin-top: 2rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.5rem;
    }

    .content-body-modern h3 {
        font-size: 1.125rem; /* 18px - Professional size for mobile */
        margin-top: 1.5rem;
        margin-bottom: 0.5rem;
    }

    .content-body-modern p {
        font-size: 1rem; /* 16px */
        line-height: 1.8;
        text-align: justify;
        margin-bottom: 1.5rem;
    }

    .content-body-modern ul, .content-body-modern ol {
        font-size: 0.9375rem; /* 15px - Professional size for mobile */
        line-height: 1.7;
        padding-left: 1.5rem;
    }

    .service-hero-modern {
        padding: 1rem 0;
    }

    .hero-title-modern {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }

    .hero-description-modern {
        font-size: 0.9375rem;
        margin-bottom: 1rem;
    }

    .hero-image-modern {
        max-height: 280px;
    }

    .feature-pill {
        font-size: 0.6875rem;
        padding: 0.25rem 0.5rem;
        gap: 0.25rem;
    }

    .feature-pill i {
        font-size: 0.75rem;
    }

    .btn-modern-primary,
    .btn-modern-outline {
        font-size: 0.8125rem;
        padding: 0.4375rem 1rem;
    }

    .content-section-modern {
        padding: 2.5rem 0;
    }

    .process-card-modern {
        padding: 1.25rem;
        margin-bottom: 1rem;
    }

    .process-number-modern {
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }

    /* Sidebar adjustments for mobile */
    .sidebar-card-modern {
        margin-bottom: 1.5rem;
    }

    .sidebar-header-modern {
        font-size: 1rem; /* 16px - Professional size for mobile */
        padding: 1rem 1.25rem;
    }

    .sidebar-label-modern {
        font-size: 0.875rem; /* 14px - Professional size for mobile */
    }

    .sidebar-value-modern {
        font-size: 0.8125rem; /* 13px - Professional size for mobile */
    }

    .sidebar-link-modern {
        font-size: 0.875rem; /* 14px - Professional size for mobile */
    }

}



