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

.services-header .header-inner.hi-about-us {
    position: relative;
    overflow: hidden;
}

.services-hero {
    background: linear-gradient(135deg, #071426 0%, #102a4a 40%, #153b63 100%);
    color: #ffffff;
}

.services-page {
    background: #f5f7fb;
    padding-top: 60px;
    padding-bottom: 80px;
}

/* Intro Section */
.services-intro-section {
    padding: 80px 0 60px;
    background: #ffffff;
}

.section-title {
    font-size: 42px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

.section-description {
    font-size: 18px;
    line-height: 1.8;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
}

/* Service Detail Cards */
.main-services-section {
    padding: 60px 0;
}

.service-detail-card {
    background: #ffffff;
    border-radius: 24px;
    margin-bottom: 60px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 70px rgba(58, 166, 245, 0.15);
}

.service-detail-card.reverse {
    flex-direction: row-reverse;
}

.service-image-col,
.service-content-col {
    padding: 0;
}

.service-image-wrapper {
    height: 100%;
    min-height: 500px;
    position: relative;
    background: linear-gradient(135deg, #0f2138 0%, #153b63 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 60px 50px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-badge {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #0d3a5c, #0a2d4a);
    color: #ffffff;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.service-title {
    font-size: 36px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-description {
    font-size: 16px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 30px;
}

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

.service-features li {
    padding: 12px 0;
    font-size: 15px;
    color: #444;
    display: flex;
    align-items: center;
    gap: 12px;
}

.service-features li i {
    color: #0d3a5c;
    font-size: 18px;
    flex-shrink: 0;
}

.service-stats {
    display: flex;
    gap: 40px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
}

.stat-item {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 36px;
    font-weight: 700;
    color: #0d3a5c;
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-info-box {
    background: rgba(58, 166, 245, 0.1);
    border-left: 4px solid #0d3a5c;
    padding: 20px;
    border-radius: 8px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-top: 20px;
}

.service-info-box i {
    font-size: 24px;
    color: #0d3a5c;
    flex-shrink: 0;
}

.service-info-box p {
    margin: 0;
    font-size: 15px;
    color: #444;
    line-height: 1.6;
}

.service-cta {
    display: flex;
    gap: 15px;
    margin-top: 30px;
}

.btn-service-primary {
    padding: 14px 32px;
    background: linear-gradient(135deg, #0d3a5c, #0a2d4a);
    color: #ffffff;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.btn-service-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(58, 166, 245, 0.4);
    color: #ffffff;
}

.btn-service-secondary {
    padding: 14px 32px;
    background: transparent;
    color: #0d3a5c;
    border: 2px solid #0d3a5c;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-service-secondary:hover {
    background: #0d3a5c;
    color: #ffffff;
    transform: translateY(-2px);
}

/* Special Services Section */
.special-services-section {
    padding: 80px 0;
    background: #ffffff;
}

.special-service-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.special-service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(58, 166, 245, 0.2);
    border-color: rgba(58, 166, 245, 0.2);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(58, 166, 245, 0.1), rgba(58, 166, 245, 0.05));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    color: #0d3a5c;
    margin-bottom: 24px;
    transition: all 0.4s ease;
}

.special-service-card:hover .service-icon {
    background: linear-gradient(135deg, #0d3a5c, #0a2d4a);
    color: #ffffff;
    transform: scale(1.1);
}

.special-service-card h4 {
    font-size: 20px;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.special-service-card > p {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

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

.service-list li {
    padding: 8px 0;
    font-size: 14px;
    color: #555;
    position: relative;
    padding-left: 20px;
}

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

/* Process Section */
.process-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f2138 0%, #153b63 100%);
    color: #ffffff;
}

.process-section .section-title {
    color: #ffffff;
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 30px;
    margin-top: 60px;
    position: relative;
}

.process-timeline:before {
    content: "";
    position: absolute;
    top: 40px;
    left: 0;
    right: 0;
    height: 2px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 0;
}

.process-step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 24px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.process-step:hover .step-number {
    background: #0d3a5c;
    transform: scale(1.1);
}

.step-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step-content p {
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.9;
    margin: 0;
}

/* CTA Section */
.services-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0d3a5c 0%, #0a2d4a 100%);
    color: #ffffff;
    text-align: center;
}

.cta-content h2 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.95;
}

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

.btn-cta-primary {
    padding: 18px 40px;
    background: #ffffff;
    color: #0d3a5c;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    color: #0a2d4a;
}

.btn-cta-secondary {
    padding: 18px 40px;
    background: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-cta-secondary:hover {
    background: #ffffff;
    color: #0d3a5c;
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
    .service-detail-card.reverse {
        flex-direction: column;
    }
    
    .service-content {
        padding: 40px 30px;
    }
    
    .service-image-wrapper {
        min-height: 400px;
    }
    
    .process-timeline {
        flex-direction: column;
        gap: 40px;
    }
    
    .process-timeline:before {
        display: none;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .services-page {
        padding-top: 40px;
        padding-bottom: 60px;
    }
    
    .services-intro-section {
        padding: 60px 0 40px;
    }
    
    .section-title {
        font-size: 32px;
    }
    
    .service-title {
        font-size: 28px;
    }
    
    .service-content {
        padding: 30px 24px;
    }
    
    .service-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .service-cta {
        flex-direction: column;
    }
    
    .cta-content h2 {
        font-size: 32px;
    }
}

@media (max-width: 576px) {
    .section-title {
        font-size: 26px;
    }
    
    .service-image-placeholder {
        width: 150px;
        height: 150px;
        font-size: 60px;
    }
    
    .service-image-wrapper {
        min-height: 300px;
    }
}
