/* Services Page - Modern Clean Design */
/* Matches About & Brands Page Aesthetic */

/* ===== HERO SECTION - SPLIT LAYOUT ===== */
.services-hero-modern {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    background: #fff;
}

.services-hero-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 70vh;
    width: 100%;
}

.services-hero-image {
    position: relative;
    overflow: hidden;
}

.services-hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.services-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(0, 51, 102, 0.85) 0%, 
        rgba(107, 70, 193, 0.75) 50%,
        rgba(227, 30, 36, 0.65) 100%);
}

.services-hero-content {
    display: flex;
    align-items: center;
    padding: 80px 60px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
}

.services-hero-inner {
    max-width: 600px;
    color: #fff;
}

.services-hero-label {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
    color: #fff;
}

.services-hero-title {
    font-family: var(--font-heading);
    font-size: 52px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 25px;
    color: #fff;
}

.services-hero-title .gradient-text-white {
    background: linear-gradient(135deg, #fff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 10px rgba(255,255,255,0.3));
}

.services-hero-description {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 40px;
    opacity: 0.95;
    color: #fff;
}

.services-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
}

.services-stat-mini {
    text-align: left;
}

.services-stat-mini h3 {
    font-size: 36px;
    font-weight: 700;
    margin: 0 0 5px 0;
    color: #fff;
}

.services-stat-mini p {
    font-size: 14px;
    margin: 0;
    opacity: 0.9;
    color: #fff;
}

/* ===== SERVICES GRID - SIMPLE CARDS ===== */
.services-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.service-card-modern {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 40px 35px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple), var(--accent-red));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.service-card-modern:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.15);
    border-color: var(--primary-blue);
}

.service-card-modern:hover::before {
    transform: scaleX(1);
}

.service-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 48px;
    font-weight: 800;
    color: rgba(0, 51, 102, 0.05);
    font-family: var(--font-heading);
    line-height: 1;
}

.service-icon-modern {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.service-card-modern:hover .service-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.service-icon-modern i {
    font-size: 32px;
    color: #fff;
    position: relative;
    z-index: 2;
    display: block !important;
    opacity: 1 !important;
    filter: none !important;
}

/* Ensure icon visibility for all service cards */
.service-card-modern .service-icon-modern i {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Featured service icon - ensure full visibility */
.service-card-modern.featured .service-icon-modern {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-red)) !important;
}

.service-card-modern.featured .service-icon-modern i {
    color: #fff !important;
    opacity: 1 !important;
    filter: brightness(1) !important;
    display: inline-block !important;
    visibility: visible !important;
}

/* Force icon display with maximum specificity */
.service-card-modern.featured .service-icon-modern i.fa-route,
.service-card-modern .service-icon-modern i.fa-route,
.service-card-modern.featured .service-icon-modern i.fa-map-marked-alt,
.service-card-modern .service-icon-modern i.fa-map-marked-alt,
.service-card-modern.featured .service-icon-modern i.fa-chart-line,
.service-card-modern .service-icon-modern i.fa-chart-line {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff !important;
    font-size: 32px !important;
}

/* Universal fallback for ALL icons in service cards */
.service-icon-modern i.fas,
.service-icon-modern i.far,
.service-icon-modern i.fab {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
    color: #ffffff !important;
    font-size: 32px !important;
    line-height: 1 !important;
    font-weight: 900 !important;
}

.service-title-modern {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.service-description-modern {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 25px;
}

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

.service-features-list li {
    font-size: 14px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    align-items: center;
    color: #555;
}

.service-features-list li:last-child {
    border-bottom: none;
}

.service-features-list li i {
    color: var(--accent-purple);
    margin-right: 12px;
    font-size: 12px;
}

/* Featured Service Card */
.service-card-modern.featured {
    background: #fff;\n    border: 2px solid var(--accent-purple);\n    position: relative;\n}\n\n.service-card-modern.featured::before {\n    background: linear-gradient(90deg, var(--accent-purple), var(--accent-red));\n}

.featured-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 15px;
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-red));
    color: #fff;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.featured-badge i {
    font-size: 10px;
}

/* ===== RESPONSIVE DESIGN ===== */

/* ===== CTA SECTION - VISIBLE DESIGN ===== */
.services-cta-section {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(227, 30, 36, 0.2) 0%, transparent 70%);
    border-radius: 50%;
}

.services-cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title-large {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 20px 0;
    line-height: 1.3;
}

.cta-title-large i {
    color: #fff;
    margin-right: 15px;
}

.cta-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin: 0 0 40px 0;
    line-height: 1.6;
}

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

.btn-white {
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    color: #fff;
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(0, 51, 102, 0.3);
}

.btn-white:hover {
    background: linear-gradient(135deg, var(--accent-purple), var(--accent-red));
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 70, 193, 0.4);
}

.btn-outline-white-solid {
    background: transparent;
    color: #fff;
    padding: 16px 35px;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.btn-outline-white-solid:hover {
    background: #fff;
    color: var(--primary-blue);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* ===== PROCESS SECTION - CLEAN REDESIGN ===== */
.process-section-modern {
    padding: 80px 0;
    background: #fff;
}

.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
    margin-top: 50px;
}

.process-step-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.process-step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-blue), var(--accent-purple));
    border-radius: 16px 16px 0 0;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.process-step-card:hover::before {
    transform: scaleX(1);
}

.process-step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 51, 102, 0.15);
    border-color: var(--accent-purple);
}

.process-step-number {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    color: #fff;
    font-size: 32px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-family: var(--font-heading);
}

.process-step-title {
    font-family: var(--font-heading);
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary-blue), var(--accent-purple));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0 0 15px 0;
}

.process-step-description {
    font-size: 15px;
    line-height: 1.7;
    color: #666;
    margin: 0;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 992px) {
    .services-hero-split {
        grid-template-columns: 1fr;
    }
    
    .services-hero-image {
        min-height: 50vh;
    }
    
    .services-hero-content {
        padding: 60px 40px;
    }
    
    .services-hero-title {
        font-size: 42px;
    }
    
    .services-grid-modern {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
}

@media (max-width: 768px) {
    .services-hero-content {
        padding: 50px 30px;
    }
    
    .services-hero-title {
        font-size: 36px;
    }
    
    .services-hero-description {
        font-size: 16px;
    }
    
    .services-hero-stats {
        gap: 30px;
    }
    
    .services-stat-mini h3 {
        font-size: 28px;
    }
    
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .service-card-modern {
        padding: 35px 30px;
    }
    
    .service-title-modern {
        font-size: 22px;
    }
    
    .cta-title-large {
        font-size: 32px;
    }
    
    .cta-subtitle {
        font-size: 16px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .process-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 480px) {
    .services-hero-content {
        padding: 40px 20px;
    }
    
    .services-hero-title {
        font-size: 32px;
    }
    
    .services-hero-stats {
        flex-wrap: wrap;
        gap: 20px;
    }
    
    .service-card-modern {
        padding: 30px 25px;
    }
    
    .service-icon-modern {
        width: 60px;
        height: 60px;
    }
    
    .service-icon-modern i {
        font-size: 28px;
    }
}
