/* Supply Chain Management Services Page Styles */
/* Maintains theme consistency with Transportation and Warehousing pages */

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

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

.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"><circle cx="200" cy="150" r="40" fill="%230FA3A3"/><circle cx="350" cy="200" r="30" fill="%230B2340"/><circle cx="500" cy="120" r="35" fill="%230FA3A3"/><circle cx="650" cy="180" r="25" fill="%230B2340"/><circle cx="800" cy="140" r="45" fill="%230FA3A3"/><circle cx="950" cy="190" r="30" fill="%230B2340"/><path d="M200,150 Q275,100 350,200 T500,120 Q575,80 650,180 T800,140 Q875,100 950,190" stroke="%230FA3A3" stroke-width="3" fill="none" opacity="0.6"/><rect x="150" y="300" width="60" height="40" fill="%230B2340" rx="5"/><rect x="250" y="320" width="80" height="30" fill="%230FA3A3" rx="5"/><rect x="370" y="310" width="70" height="35" fill="%230B2340" rx="5"/><rect x="480" y="330" width="90" height="25" fill="%230FA3A3" rx="5"/><rect x="600" y="315" width="75" height="40" fill="%230B2340" rx="5"/><rect x="720" y="325" width="85" height="30" fill="%230FA3A3" rx="5"/><rect x="840" y="305" width="65" height="45" fill="%230B2340" rx="5"/><rect x="940" y="320" width="80" height="35" fill="%230FA3A3" rx="5"/><path d="M180,340 L280,350 L400,327 L520,342 L637,335 L762,340 L872,325 L980,337" stroke="%230FA3A3" stroke-width="2" fill="none" opacity="0.4"/></g></svg>') center/cover;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.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;
}

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

.supplychain-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;
}

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

.supplychain-hero .hero-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.supplychain-hero .hero-stats {
    margin-top: 3rem;
}

.supplychain-hero .stats-row {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--white);
    opacity: 0.9;
}

.supplychain-hero .stat-item {
    white-space: nowrap;
}

.supplychain-hero .stat-divider {
    color: var(--primary-teal);
    font-weight: 300;
}

/* ===== INTRO SECTION ===== */
.intro-section {
    padding: 4rem 0;
    background: var(--bg-primary);
}

.intro-section .intro-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.intro-section .intro-text {
    font-size: 1.25rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 400;
}

/* ===== FEATURE CARDS SECTION ===== */
.feature-cards {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.feature-cards .cards-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border: 1px solid rgba(15, 163, 163, 0.1);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.feature-card .card-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;
    color: var(--white);
    font-size: 2rem;
}

.feature-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.feature-card .card-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

/* ===== KEY SERVICES SECTION ===== */
.key-services {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.key-services .services-content {
    max-width: 1200px;
    margin: 0 auto;
}

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

.key-services .section-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.key-services .section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.service-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border-left: 4px solid var(--primary-teal);
}

.service-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.service-item .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-navy));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    color: var(--white);
    font-size: 1.5rem;
}

.service-item .service-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.service-item .service-description {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== CORE SERVICES SECTION ===== */
.core-services {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

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

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

.core-services .section-subtitle {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    box-shadow: var(--shadow-md);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border: 1px solid rgba(15, 163, 163, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-card .card-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-bottom: 2rem;
    color: var(--white);
    font-size: 2rem;
}

.service-card .card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.service-card .card-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .service-features {
    list-style: none;
    margin-bottom: 2rem;
}

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

.service-card .service-features li i {
    color: var(--primary-teal);
    margin-right: 0.75rem;
    margin-top: 0.25rem;
    flex-shrink: 0;
}

.service-card .card-cta {
    display: inline-block;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-navy));
    color: var(--white);
    padding: 0.75rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    text-align: center;
    transition: transform var(--transition-fast), box-shadow var(--transition-fast);
    margin-top: auto;
}

.service-card .card-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(15, 163, 163, 0.3);
    color: var(--white);
}

/* ===== INTEGRATION SECTION ===== */
.integration-section {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.integration-section .integration-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.integration-section .section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.integration-section .section-description {
    font-size: 1.125rem;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

/* ===== INDUSTRIES SECTION ===== */
.industries-section {
    padding: var(--section-padding);
    background: var(--bg-primary);
}

.industries-section .industries-content {
    max-width: 1200px;
    margin: 0 auto;
}

.industries-section .industries-header {
    text-align: center;
    margin-bottom: 3rem;
}

.industries-section .section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.industries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.industry-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border: 1px solid rgba(15, 163, 163, 0.1);
}

.industry-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.industry-card .industry-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: 0 auto 1.5rem;
    color: var(--white);
    font-size: 1.75rem;
}

.industry-card .industry-title {
    font-family: var(--font-heading);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-primary);
}

/* ===== WHY AVKIR SECTION ===== */
.why-avkir {
    padding: var(--section-padding);
    background: var(--bg-secondary);
}

.why-avkir .why-content {
    max-width: 1200px;
    margin: 0 auto;
}

.why-avkir .why-header {
    text-align: center;
    margin-bottom: 3rem;
}

.why-avkir .section-title {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.why-boxes {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.why-box {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    box-shadow: var(--shadow-sm);
    transition: transform var(--transition-normal), box-shadow var(--transition-normal);
    border: 1px solid rgba(15, 163, 163, 0.1);
}

.why-box:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.why-box .box-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-teal), var(--primary-navy));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.why-box .box-content .box-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.why-box .box-content .box-text {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

/* ===== METRICS SECTION ===== */
.metrics-section {
    padding: 4rem 0;
    background: linear-gradient(135deg, var(--primary-navy), var(--primary-teal));
    color: var(--white);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.metric-item {
    padding: 1.5rem;
}

.metric-number {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.metric-label {
    font-size: 1rem;
    opacity: 0.9;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===== FINAL CTA SECTION ===== */
.final-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, 
        rgba(11, 35, 64, 0.95) 0%, 
        rgba(15, 163, 163, 0.9) 100%
    ),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 400"><defs><linearGradient id="patternGradient" x1="0%" y1="0%" x2="100%" y2="100%"><stop offset="0%" style="stop-color:%23ffffff;stop-opacity:0.05" /><stop offset="100%" style="stop-color:%23ffffff;stop-opacity:0.1" /></linearGradient></defs><path d="M0,200 Q300,100 600,200 T1200,200 L1200,400 L0,400 Z" fill="url(%23patternGradient)" /></svg>') center/cover;
    color: var(--white);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(11, 35, 64, 0.9) 0%, 
        rgba(15, 163, 163, 0.8) 100%
    );
    z-index: 1;
}

.final-cta-section .container {
    position: relative;
    z-index: 2;
}

.final-cta-section .cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.final-cta-section h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2.5rem;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.final-cta-section .cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .why-boxes {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-cards-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .supplychain-hero {
        padding: 100px 0 60px;
        min-height: 50vh;
    }
    
    .supplychain-hero .hero-content {
        padding: 0 1rem;
    }
    
    .supplychain-hero .page-title {
        font-size: 2.5rem;
    }
    
    .supplychain-hero .page-subtitle {
        font-size: 1.125rem;
        margin-bottom: 2rem;
    }
    
    .supplychain-hero .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 1rem;
    }
    
    .supplychain-hero .stats-row {
        flex-direction: column;
        gap: 0.5rem;
        font-size: 0.8rem;
    }
    
    .supplychain-hero .stat-divider {
        display: none;
    }
    
    .feature-cards .cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-cards-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .industries-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .why-boxes {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .why-box {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .supplychain-overview .section-title,
    .core-services .section-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem !important;
    }
    
    .section-description {
        font-size: 1rem !important;
    }
    
    .intro-section .intro-text {
        font-size: 1.125rem;
    }
    
    .final-cta-section h2 {
        font-size: 1.75rem;
    }
    
    .final-cta-section {
        padding: 3rem 0;
    }
    
    .metrics-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
    
    .metric-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .supplychain-hero {
        padding: 100px 0 60px;
    }
    
    .supplychain-hero .page-title {
        font-size: 2rem;
    }
    
    .supplychain-hero .page-subtitle {
        font-size: 1rem;
    }
    
    .service-card {
        padding: 1.5rem;
    }
    
    .service-card .card-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-card .card-icon i {
        font-size: 1.5rem;
    }
    
    .supplychain-overview .section-title,
    .core-services .section-title {
        font-size: 1.75rem;
    }
    
    .final-cta-section h2 {
        font-size: 1.5rem;
    }
    
    .metrics-grid {
        grid-template-columns: 1fr;
    }
    
    .highlight-card {
        padding: 2rem 1.5rem;
    }
    
    .highlight-card .highlight-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}