/* PAGE CONFIGURATION - Service Page */
:root {
    --header-height: 80px;
    --header-height-mobile: 60px;
    --hero-padding-top: 180px;
    --hero-min-height: 55vh;
    --page-padding-top: 80px;
}

/* =================================================================
   CUSTOMER SERVICE CONSULTING PAGE STYLES
   ================================================================= */

#custom-container-customer-service {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

/* Container */
#custom-container-customer-service .cms-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Hero Section */
#custom-container-customer-service .service-hero {
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    padding: 80px 0 80px 0;
    position: relative;
    overflow: hidden;
    margin-top: -80px;
    padding-top: 200px;
    text-align: center;
}

@media (max-width: 1024px) {
    #custom-container-customer-service .hero-bg {
        background-attachment: scroll !important;
        background-size: cover !important;
        background-position: center center !important;
    }
}

@media (max-width: 768px) {
    #custom-container-customer-service .service-hero {
        margin-top: -60px;
        padding-top: 160px;
    }
}

#custom-container-customer-service .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.6;
    background-image: url('https://images.unsplash.com/photo-1556745753-b2904692b3cd?auto=format&fit=crop&w=2000');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
}

@media (min-width: 1025px) {
    #custom-container-customer-service .hero-bg {
        background-attachment: fixed;
    }
}

#custom-container-customer-service .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(55, 163, 161, 0.4), rgba(42, 124, 122, 0.5));
}

#custom-container-customer-service .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
}

#custom-container-customer-service .service-icon-hero {
    width: 80px;
    height: 80px;
    background: var(--brand-accent);
    border-radius: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    font-size: var(--text-3xl);
    margin: 0 auto 2rem;
}

#custom-container-customer-service .hero-badge {
    display: inline-block;
    background: rgba(255, 210, 31, 0.2);
    border: 1px solid var(--brand-accent);
    color: var(--brand-accent);
    padding: 0.5rem 1.5rem;
    border-radius: 2rem;
    font-size: var(--text-sm);
    font-weight: var(--font-weight-semibold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

#custom-container-customer-service .hero-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-weight-bold);
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

#custom-container-customer-service .hero-subtitle {
    font-size: var(--text-xl);
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* Services Grid */
#custom-container-customer-service .services-section {
    padding: 5rem 0;
    background: white;
}

#custom-container-customer-service .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

#custom-container-customer-service .section-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-bold);
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

#custom-container-customer-service .section-subtitle {
    font-size: var(--text-lg);
    color: var(--brand-neutral);
    max-width: 700px;
    margin: 0 auto;
}

#custom-container-customer-service .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

#custom-container-customer-service .service-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    border: 2px solid var(--brand-light);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

#custom-container-customer-service .service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--brand-primary), var(--brand-accent));
    transform: translateX(-100%);
    transition: transform 0.3s;
}

#custom-container-customer-service .service-card:hover::before {
    transform: translateX(0);
}

#custom-container-customer-service .service-card:hover {
    box-shadow: 0 10px 30px rgba(44, 10, 113, 0.1);
    transform: translateY(-5px);
    border-color: var(--brand-primary);
}

#custom-container-customer-service .service-icon {
    width: 60px;
    height: 60px;
    background: var(--brand-light);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-primary);
    font-size: var(--text-2xl);
    margin-bottom: 1.5rem;
}

#custom-container-customer-service .service-title {
    font-size: var(--text-xl);
    font-weight: var(--font-weight-semibold);
    color: var(--brand-dark);
    margin-bottom: 1rem;
}

#custom-container-customer-service .service-description {
    color: var(--brand-neutral);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

#custom-container-customer-service .service-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

#custom-container-customer-service .service-features li {
    padding-left: 1.5rem;
    position: relative;
    margin-bottom: 0.5rem;
    color: var(--brand-neutral);
}

#custom-container-customer-service .service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--brand-accent);
    font-weight: var(--font-weight-bold);
}

/* Benefits Section */
#custom-container-customer-service .benefits-section {
    padding: 5rem 0;
    background: var(--brand-light);
}

#custom-container-customer-service .benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

#custom-container-customer-service .benefit-item {
    text-align: center;
}

#custom-container-customer-service .benefit-icon {
    width: 80px;
    height: 80px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--brand-primary);
    font-size: var(--text-3xl);
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
}

#custom-container-customer-service .benefit-title {
    font-size: var(--text-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--brand-dark);
    margin-bottom: 0.5rem;
}

#custom-container-customer-service .benefit-desc {
    color: var(--brand-neutral);
    line-height: 1.6;
}

/* CTA Section */
#custom-container-customer-service .cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--brand-primary), var(--brand-dark));
    text-align: center;
}

#custom-container-customer-service .cta-title {
    font-size: var(--text-4xl);
    font-weight: var(--font-weight-bold);
    color: white;
    margin-bottom: 1rem;
}

#custom-container-customer-service .cta-description {
    font-size: var(--text-lg);
    color: rgba(255, 255, 255, 0.9);
    max-width: 600px;
    margin: 0 auto 2rem;
}

#custom-container-customer-service .cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

#custom-container-customer-service .cta-btn {
    padding: 1rem 2rem;
    font-weight: var(--font-weight-semibold);
    text-decoration: none;
    border-radius: 0.5rem;
    transition: all 0.3s;
    display: inline-block;
}

#custom-container-customer-service .cta-btn-primary {
    background: var(--brand-accent);
    color: var(--brand-dark);
}

#custom-container-customer-service .cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(255, 210, 31, 0.3);
}

#custom-container-customer-service .cta-btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

#custom-container-customer-service .cta-btn-secondary:hover {
    background: white;
    color: var(--brand-primary);
}

/* Responsive */
@media (max-width: 768px) {
    #custom-container-customer-service .service-hero {
        margin-top: 0;
        padding-top: var(--header-height-mobile);
        min-height: 50vh;
    }

    #custom-container-customer-service .hero-title {
        font-size: var(--text-4xl);
    }

    #custom-container-customer-service .services-grid {
        grid-template-columns: 1fr;
    }

    #custom-container-customer-service .benefits-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
