/* Management Services Page Styles */
/* Scoped with .mgmt-services wrapper class to avoid global overrides */
/* Maintains theme consistency with Transportation and Warehousing pages */

/* ===== MANAGEMENT HERO SECTION ===== */
.mgmt-services .management-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 0 80px;
}

.mgmt-services .hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.mgmt-services .hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(11, 35, 64, 0.8) 0%, 
        rgba(15, 163, 163, 0.7) 50%, 
        rgba(11, 35, 64, 0.9) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 600"><defs><linearGradient id="bg" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23f8fafc"/><stop offset="100%" style="stop-color:%23e2e8f0"/></linearGradient></defs><rect width="1200" height="600" fill="url(%23bg)"/><g opacity="0.1"><path d="M100 200h80v40h-80z" fill="%230FA3A3"/><circle cx="300" cy="250" r="30" fill="%230B2340"/><path d="M500 180l40 20v60l-40 20-40-20v-60z" fill="%230FA3A3"/><rect x="700" y="220" width="60" height="30" rx="15" fill="%230B2340"/><path d="M900 200h100l20 40h-120z" fill="%230FA3A3"/><circle cx="150" cy="400" r="25" fill="%230B2340"/><rect x="350" y="380" width="70" height="25" fill="%230FA3A3"/><path d="M600 370l30 15v45l-30 15-30-15v-45z" fill="%230B2340"/><circle cx="800" cy="400" r="20" fill="%230FA3A3"/><rect x="950" y="385" width="50" height="20" rx="10" fill="%230B2340"/></g></svg>') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.mgmt-services .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, 
        rgba(11, 35, 64, 0.85) 0%, 
        rgba(15, 163, 163, 0.75) 50%, 
        rgba(11, 35, 64, 0.9) 100%
    );
    z-index: 2;
}

.mgmt-services .management-hero .hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: var(--white);
    max-width: 1000px;
    margin: 0 auto;
}

.mgmt-services .management-hero .page-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
}

.mgmt-services .management-hero .page-subtitle {
    font-size: 1.25rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.6;
    color: var(--white);
    font-weight: 400;
}

.mgmt-services .hero-actions {
    margin-top: 2rem;
}

.mgmt-services .hero-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: var(--shadow-md);
}

.mgmt-services .hero-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* ===== INTRO SECTION ===== */
.mgmt-services .management-intro {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.mgmt-services .intro-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.mgmt-services .intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: var(--shadow-md);
}

.mgmt-services .intro-icon i {
    font-size: 2rem;
    color: var(--white);
}

.mgmt-services .intro-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin: 0;
}

/* ===== SERVICE BREAKDOWN SECTION ===== */
.mgmt-services .service-breakdown {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.mgmt-services .section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.mgmt-services .section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.mgmt-services .section-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.mgmt-services .management-cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.mgmt-services .management-card {
    background: var(--bg-primary);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-normal);
    border: 1px solid rgba(15, 163, 163, 0.1);
    position: relative;
    overflow: hidden;
}

.mgmt-services .management-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-teal), var(--primary-navy));
}

.mgmt-services .management-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.mgmt-services .card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-navy));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-md);
}

.mgmt-services .card-icon i {
    font-size: 1.8rem;
    color: var(--white);
}

.mgmt-services .card-title {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.mgmt-services .card-description {
    font-size: 1rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.mgmt-services .service-features {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

.mgmt-services .service-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
    line-height: 1.5;
}

.mgmt-services .service-features li i {
    color: var(--primary-teal);
    margin-right: 0.8rem;
    margin-top: 0.2rem;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.mgmt-services .card-cta {
    display: inline-block;
    color: var(--primary-teal);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.95rem;
    transition: all var(--transition-normal);
    border-bottom: 2px solid transparent;
}

.mgmt-services .card-cta:hover {
    color: var(--primary-navy);
    border-bottom-color: var(--primary-navy);
}

/* ===== FINAL CTA SECTION ===== */
.mgmt-services .final-cta-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, var(--primary-navy) 0%, var(--primary-teal) 100%);
    text-align: center;
}

.mgmt-services .cta-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.4;
}

.mgmt-services .cta-actions .btn {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 50px;
    background: var(--white);
    color: var(--primary-teal);
    border: none;
    transition: all var(--transition-normal);
    box-shadow: var(--shadow-md);
}

.mgmt-services .cta-actions .btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    background: var(--bg-secondary);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .mgmt-services .management-hero {
        padding: 100px 0 60px;
        min-height: 50vh;
    }
    
    .mgmt-services .management-hero .page-title {
        font-size: 2.5rem;
    }
    
    .mgmt-services .management-hero .page-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }
    
    .mgmt-services .management-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .mgmt-services .management-card {
        padding: 2rem;
    }
    
    .mgmt-services .section-title {
        font-size: 2rem;
    }
    
    .mgmt-services .cta-content h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .mgmt-services .management-hero .page-title {
        font-size: 2rem;
    }
    
    .mgmt-services .management-hero .page-subtitle {
        font-size: 1rem;
    }
    
    .mgmt-services .hero-actions .btn {
        padding: 0.8rem 2rem;
        font-size: 1rem;
    }
    
    .mgmt-services .management-card {
        padding: 1.5rem;
    }
    
    .mgmt-services .section-title {
        font-size: 1.8rem;
    }
    
    .mgmt-services .cta-content h2 {
        font-size: 1.5rem;
    }
}