/* ========================================
   SERVICE DETAILS PAGE STYLES (srd- prefix)
======================================== */

/* ========================================
   PAGE HEADER
======================================== */
.srd-page-header {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.srd-header-content {
    max-width: 900px;
    margin: 0 auto;
}

.srd-breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.srd-breadcrumb a {
    color: #1e40af;
    text-decoration: none;
    transition: color 0.3s ease;
}

.srd-breadcrumb a:hover {
    color: #1e3a8a;
}

.srd-separator {
    color: #94a3b8;
}

.srd-current {
    color: #64748b;
}

.srd-page-title {
    font-size: 3rem;
    font-weight: 800;
    color: #0f172a;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.srd-page-subtitle {
    font-size: 1.1rem;
    color: #64748b;
    line-height: 1.7;
}

/* ========================================
   CONTENT SECTION
======================================== */
.srd-content-section {
    padding: 80px 0;
    background: #ffffff;
}

.srd-main-content {
    background: #ffffff;
}

.srd-featured-image {
    margin-bottom: 3rem;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.srd-featured-image img {
    width: 100%;
    height: auto;
}

/* Overview */
.srd-overview {
    margin-bottom: 3rem;
}

.srd-heading {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.srd-text {
    font-size: 1rem;
    color: #1e293b;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

/* Features */
.srd-features {
    margin-bottom: 3rem;
}

.srd-feature-box {
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    height: 100%;
    transition: all 0.3s ease;
}

.srd-feature-box:hover {
    border-color: #1e40af;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.srd-feature-icon {
    font-size: 32px;
    color: #1e40af;
    margin-bottom: 1rem;
}

.srd-feature-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.srd-feature-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* What We Offer */
.srd-offer {
    margin-bottom: 3rem;
}

.srd-offer-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.srd-offer-item {
    display: flex;
    gap: 1.5rem;
    background: #f8fafc;
    padding: 25px;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.srd-offer-item:hover {
    border-color: #1e40af;
    background: #ffffff;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.srd-offer-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.srd-offer-icon i {
    font-size: 28px;
    color: #ffffff;
}

.srd-offer-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.srd-offer-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* Benefits */
.srd-benefits {
    margin-bottom: 3rem;
}

.srd-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
}

.srd-benefit-item {
    text-align: center;
    padding: 30px 20px;
    background: #f8fafc;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
    transition: all 0.3s ease;
}

.srd-benefit-item:hover {
    border-color: #1e40af;
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
}

.srd-benefit-item i {
    font-size: 48px;
    color: #1e40af;
    margin-bottom: 1rem;
}

.srd-benefit-item h5 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.75rem;
}

.srd-benefit-item p {
    font-size: 14px;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 0;
}

/* Process Timeline */
.srd-process {
    margin-bottom: 3rem;
}

.srd-timeline {
    position: relative;
    padding-left: 40px;
}

.srd-timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 10px;
    bottom: 10px;
    width: 3px;
    background: linear-gradient(180deg, #1e40af 0%, #3b82f6 100%);
}

.srd-timeline-item {
    position: relative;
    margin-bottom: 2rem;
}

.srd-timeline-item:last-child {
    margin-bottom: 0;
}

.srd-timeline-marker {
    position: absolute;
    left: -40px;
    top: 0;
    width: 35px;
    height: 35px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-weight: 800;
    font-size: 14px;
    border: 4px solid #ffffff;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.3);
}

.srd-timeline-content {
    background: #f8fafc;
    padding: 20px 25px;
    border-radius: 15px;
    border: 2px solid #e2e8f0;
}

.srd-timeline-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 0.5rem;
}

.srd-timeline-text {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 0;
}

/* FAQ */
.srd-faq {
    margin-bottom: 3rem;
}

.srd-accordion-item {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
}

.srd-accordion-item:last-child {
    margin-bottom: 0;
}

.srd-accordion-btn {
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    background: #ffffff;
    border: none;
    padding: 20px 25px;
    width: 100%;
    text-align: left;
    transition: all 0.3s ease;
}

.srd-accordion-btn:not(.collapsed) {
    background: #f8fafc;
    color: #1e40af;
}

.srd-accordion-btn:focus {
    box-shadow: none;
    border-color: transparent;
}

.srd-accordion-btn::after {
    background-image: none;
    content: '\F282';
    font-family: 'Bootstrap-icons';
    font-size: 20px;
    color: #1e40af;
}

.srd-accordion-btn:not(.collapsed)::after {
    content: '\F286';
    transform: none;
}

.srd-accordion-body {
    padding: 20px 25px;
    font-size: 15px;
    color: #64748b;
    line-height: 1.7;
    background: #ffffff;
}

/* ========================================
   SIDEBAR
======================================== */
.srd-sidebar {
    position: sticky;
    top: 100px;
}

.srd-widget {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 15px;
    padding: 30px;
    margin-bottom: 2rem;
}

.srd-widget-title {
    font-size: 1.25rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e2e8f0;
}

/* Contact Widget */
.srd-contact-widget {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    border: none;
}

.srd-contact-widget .srd-widget-title {
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.2);
}

.srd-contact-text {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.srd-contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.srd-contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #ffffff;
    font-size: 14px;
    font-weight: 500;
}

.srd-contact-item i {
    font-size: 18px;
    color: #fbbf24;
}

.srd-contact-btn {
    width: 100%;
    padding: 14px 28px;
    background: #fbbf24;
    color: #0f172a;
    border: none;
    border-radius: 10px;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.srd-contact-btn:hover {
    background: #f59e0b;
    transform: translateY(-2px);
    color: #0f172a;
}

/* Services List */
.srd-services-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.srd-services-list li {
    margin-bottom: 0.75rem;
}

.srd-services-list li:last-child {
    margin-bottom: 0;
}

.srd-services-list a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: #f8fafc;
    border-radius: 8px;
    color: #1e293b;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.srd-services-list a:hover,
.srd-services-list a.active {
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    color: #ffffff;
    transform: translateX(5px);
}

.srd-services-list a i {
    font-size: 16px;
}

/* Download Widget */
.srd-download-widget {
    background: #f8fafc;
}

.srd-download-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 20px;
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 10px;
    color: #0f172a;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.srd-download-btn:last-child {
    margin-bottom: 0;
}

.srd-download-btn:hover {
    border-color: #1e40af;
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.srd-download-btn i:first-child {
    font-size: 24px;
    color: #1e40af;
}

/* Stats Widget */
.srd-stats-widget {
    background: linear-gradient(135deg, #f8fafc 0%, #e0f2fe 100%);
}

.srd-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.srd-stat-item {
    text-align: center;
    padding: 20px;
    background: #ffffff;
    border-radius: 10px;
}

.srd-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1e40af;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.srd-stat-label {
    font-size: 14px;
    color: #64748b;
    font-weight: 600;
    margin-bottom: 0;
}

/* ========================================
   RELATED SERVICES
======================================== */
.srd-related-section {
    padding: 80px 0;
    background: #f8fafc;
}

.srd-related-title {
    font-size: 2rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2.5rem;
    text-align: center;
}

.srd-related-card {
    background: #ffffff;
    border: 2px solid #e2e8f0;
    border-radius: 20px;
    padding: 35px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
}

.srd-related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: #1e40af;
}

.srd-related-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
}

.srd-related-card:hover .srd-related-icon {
    transform: scale(1.1);
}

.srd-related-icon i {
    font-size: 36px;
    color: #ffffff;
}

.srd-related-title-text {
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 1rem;
}

.srd-related-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.srd-related-link {
    color: #1e40af;
    font-weight: 700;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.srd-related-link:hover {
    gap: 8px;
}

/* ========================================
   CTA SECTION
======================================== */
.srd-cta-section {
    padding: 80px 0;
    background: #ffffff;
}

.srd-cta-wrapper {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    padding: 60px;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.3);
}

.srd-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 1rem;
}

.srd-cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
}

.srd-cta-btn {
    background: #fbbf24;
    color: #0f172a;
    padding: 16px 40px;
    border-radius: 10px;
    font-weight: 700;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.srd-cta-btn:hover {
    background: #f59e0b;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.4);
    color: #0f172a;
}

/* ========================================
   RESPONSIVE STYLES
======================================== */
@media (max-width: 991px) {
    .srd-page-header {
        padding: 120px 0 60px;
    }

    .srd-page-title {
        font-size: 2.25rem;
    }

    .srd-content-section {
        padding: 60px 0;
    }

    .srd-sidebar {
        position: relative;
        top: 0;
        margin-top: 3rem;
    }

    .srd-heading {
        font-size: 1.75rem;
    }

    .srd-related-section {
        padding: 60px 0;
    }

    .srd-related-title {
        font-size: 1.75rem;
    }

    .srd-cta-wrapper {
        padding: 50px 40px;
    }

    .srd-cta-title {
        font-size: 1.75rem;
    }
}

@media (max-width: 767px) {
    .srd-page-header {
        padding: 100px 0 50px;
    }

    .srd-page-title {
        font-size: 1.75rem;
    }

    .srd-page-subtitle {
        font-size: 1rem;
    }

    .srd-content-section {
        padding: 50px 0;
    }

    .srd-heading {
        font-size: 1.5rem;
    }

    .srd-feature-box,
    .srd-offer-item {
        padding: 20px;
    }

    .srd-offer-item {
        flex-direction: column;
        text-align: center;
    }

    .srd-offer-icon {
        margin: 0 auto;
    }

    .srd-benefits-grid {
        grid-template-columns: 1fr;
    }

    .srd-timeline {
        padding-left: 30px;
    }

    .srd-timeline::before {
        left: 10px;
    }

    .srd-timeline-marker {
        left: -30px;
        width: 30px;
        height: 30px;
        font-size: 12px;
    }

    .srd-widget {
        padding: 25px 20px;
    }

    .srd-related-section {
        padding: 50px 0;
    }

    .srd-related-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .srd-related-card {
        padding: 30px 25px;
    }

    .srd-cta-section {
        padding: 60px 0;
    }

    .srd-cta-wrapper {
        padding: 40px 25px;
    }

    .srd-cta-title {
        font-size: 1.5rem;
    }

    .srd-cta-text {
        font-size: 1rem;
    }
}
