﻿/* ========================================
   KOC PPE Recycling Campaign - Custom Styles
   Bootstrap 5 Version
   ======================================== */

/* ===== CSS Variables / Design System ===== */
:root {
    /* Corporate Colors */
    --primary: #0060A9;
    --primary-dark: #0059B3;
    --primary-foreground: #ffffff;

    /* Sustainability Colors */
    --sustainability: #16A34A;
    --sustainability-light: #16a2490d;
    --sustainability-dark: #15803D;
    --sustainability-foreground: #ffffff;

    /* Neutral Colors */
    --foreground: #0f172a;
    --muted-foreground: #64748b;
    --background: #ffffff;
    --muted: #f1f5f9;
    --accent:rgb(210, 247, 223);
    --accent-foreground: #15803D;
    --border: #e2e8f0;

    /* Destructive */
    --destructive: #ef4444;

    /* Gradients */
    --gradient-corporate: linear-gradient(135deg, var(--primary), var(--sustainability));
    --gradient-sustainability:linear-gradient(135deg, var(--sustainability), #0165a4);
    --gradient-hero: linear-gradient(135deg, rgba(0, 114, 229, 0.8), rgba(22, 163, 74, 0.7));
    --gradient-subtle: linear-gradient(180deg, var(--background), var(--accent));

    /* Shadows */
    --shadow-corporate: 0 10px 30px -10px rgba(0, 114, 229, 0.2);
    --shadow-elevated: 0 20px 60px -20px rgba(15, 23, 42, 0.1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);

    /* Border Radius */
    --radius: 0.75rem;
    --radius-lg: 1rem;
    --radius-xl: 1.5rem;

    /* Transitions */
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* ===== Base Styles ===== */
body {
    font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
    color: var(--foreground);
    background-color: var(--background);
}
.bg-primary-60 {
    background-color: #0073e61a;
    border: 0 !important;
    border-left: 5px solid var(--primary) !important;
    max-width: 800px;
}
.text-sustainability-light {
    color: #c6ecd4;
}
.text-primary {
    color: var(--primary) !important;
}

.text-sustainability {
    color: var(--sustainability) !important;
}

.text-muted-foreground {
    color: var(--muted-foreground) !important;
}

.text-accent-foreground {
    color: var(--accent-foreground) !important;
}

.bg-primary {
    background-color: var(--primary) !important;
}

.bg-sustainability {
    background-color: var(--sustainability) !important;
}

.bg-muted {
    background-color: var(--muted) !important;
}

.bg-accent {
    background-color: var(--accent) !important;
}

/* ===== Gradient Backgrounds ===== */
.bg-gradient-corporate {
    background: var(--gradient-corporate) !important;
}

.bg-gradient-sustainability {
    background: var(--gradient-sustainability) !important;
}

.bg-gradient-hero {
    background: var(--gradient-hero) !important;
}

.bg-gradient-subtle {
    background: var(--gradient-subtle) !important;
}

.bg-gradient-primary-muted {
    background: linear-gradient(135deg, rgba(0, 114, 229, 0.05), rgba(22, 163, 74, 0.05));
}

/* ===== Shadow Utilities ===== */
.shadow-corporate {
    box-shadow: var(--shadow-corporate) !important;
}

.shadow-elevated {
    box-shadow: var(--shadow-elevated) !important;
}
#pills-tab {
    border-radius: 14px;
    background-color: #ffffff14;
    border: 1px solid #ffffff26 !important;
}
/* ===== Card Styles ===== */
.card {
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition-smooth);
}

.card:hover {
    box-shadow: var(--shadow-elevated);
}

.card-gradient-top {
    position: relative;
}

.card-gradient-top::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.card-gradient-top.corporate::before {
    background: var(--gradient-corporate);
}

.card-gradient-top.sustainability::before {
    background: var(--gradient-sustainability);
}

/* ===== Header Styles ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: var(--transition-smooth);
}

.header .nav-pills .nav-link {
    color: rgba(255, 255, 255, 0.9);
    border-radius: var(--radius);
    transition: var(--transition-smooth);
    font-weight: 500;
}

.header .nav-pills .nav-link.active {
    background-color: rgba(255, 255, 255, 1);
    color: var(--primary);
}

.header .nav-pills .nav-link:not(.active):hover {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Scrolled header state */
.header.scrolled .nav-pills .nav-link {
    color: var(--primary);
}

.header.scrolled .nav-pills .nav-link.active {
    background-color: var(--primary);
    color: white;
}

.header.scrolled .nav-pills {
    background-color: rgba(0, 114, 229, 0.1);
    border: 1px solid rgba(0, 114, 229, 0.2);
    border-radius: var(--radius);
    padding: 0.25rem;
}

.header.scrolled .header-title,
.header.scrolled .header-subtitle {
    color: var(--primary) !important;
}

/* ===== Hero Section ===== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url('../img/ppe-recycling-hero.jpg');
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: var(--gradient-hero);
}

.hero-content {
    position: relative;
    z-index: 10;
}

/* ===== Button Styles ===== */
.btn-hero {
    background: linear-gradient(45deg, #076ca8, #107d4f);
    font-weight: 600;
    padding: 1rem 2.5rem;
    border-radius: var(--radius);
    transition: var(--transition-smooth);
    border: none;
    color: white;
}

.btn-hero:hover {
    background-color: #f1f5f9;
    color:white;
    transform: translateY(-2px);
    box-shadow: var(--shadow-elevated);
}

.btn-sustainability {
    background-color: var(--sustainability);
    color: white;
    border: none;
}

.btn-sustainability:hover {
    background-color: var(--sustainability-dark);
    color: white;
}


/* Main container */
.koc-sustainability-container {
    background-color: rgba(13, 110, 253, 0.1); /* bg-primary/10 */
    border-radius: 1rem; /* rounded-2xl */
    padding: 2rem; /* p-8 */
    max-width: 896px; /* max-w-4xl */
  }
  
  /* Icon */
  .leaf-icon {
    color: #0d6efd;
  }
  
  /* Title */
  .koc-title {
    font-size: 1.5rem; /* text-2xl */
    font-weight: 700;
    color: #212529;
  }
  
  /* Description */
  .koc-description {
    color: #6c757d;
    max-width: 640px; /* max-w-2xl */
    text-align: center;
  }
  
  /* Stats */
  .koc-stat-value {
    font-size: 1.75rem; /* text-3xl */
    font-weight: 700;
    color: #0d6efd;
    margin-bottom: 0.25rem;
  }
  
  .koc-stat-label {
    font-size: 0.875rem; /* text-sm */
    color: #6c757d;
  }

  
  /* Section */
.recognition-section {
    background-color: #ffffff;
  }
  
  /* Titles */
  .recognition-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
  }
  
  .recognition-subtitle {
    font-size: 1.25rem;
    color: #6c757d;
    max-width: 720px;
  }
  
  /* Card */
  .recognition-card {
    background-color: #ffffff;
    border: 1px solid #e9ecef;
    border-radius: 0.75rem;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    position: relative;
    overflow: hidden;
    height: 100%;
    transition: all 0.3s ease;
  }
  
  .recognition-card:hover {
    box-shadow: 0 12px 40px rgba(0,0,0,0.08);
    transform: translateY(-4px);
  }
  
  /* Top gradient bar */
  .card-bar {
    height: 6px;
  }
  
  .card-bar.corporate {
    background: linear-gradient(135deg, #0160a9, #28b774);
  }
  
  .card-bar.sustainability {
    background: linear-gradient(135deg, #0160a9, #28b774);
  }
  
  /* Icon */
  .icon-circle {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    margin: auto;
  }
  
  .icon-circle.corporate {
    background: linear-gradient(135deg, #0160a9, #28b774);
    /* margin: auto; */
  }
  
  .icon-circle.sustainability {
    background: linear-gradient(135deg, #0160a9, #28b774);
  }
  
  .icon-circle svg {
    width: 32px;
    height: 32px;
  }
  
  /* Badge */
  .badge-secondary {
    background-color: #e9ecef;
    color: #495057;
    font-weight: 600;
  }
  
  /* Card text */
  .card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
  }
  
  .card-text {
    color: #6c757d;
    line-height: 1.6;
  }
  
  /* Feature list */
  .feature-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .feature-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
    color: #212529;
  }
  
  .feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #0d6efd;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.6rem;
  }
  
  /* CTA */
  .cta-box {
    background: linear-gradient(135deg, #0160a9, #28b774);
    padding: 3rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 16px 40px rgba(0,0,0,0.15);
  }
  
  .cta-title {
    font-size: 1.875rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
  }
  
  .cta-text {
    font-size: 1.25rem;
    color: rgba(255,255,255,0.9);
    max-width: 720px;
    margin-bottom: 2rem;
  }
  
  .cta-note {
    color: rgba(255,255,255,0.8);
    align-self: center;
  }
  .header.scrolled {
    background-color: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.header.scrolled #pills-tab {
    
    border: 1px solid #d0ebff !important;
}


/* ===== Countdown Section ===== */
.countdown-item {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
}

.countdown-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1;
}

.countdown-label {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-foreground);
    margin-top: 0.5rem;
}

.countdown-urgent .countdown-value {
    color: #dc2626;
}

.countdown-warning .countdown-value {
    color: #ca8a04;
}

/* ===== DCEO Section ===== */
.leadership-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-corporate);
}

.leadership-photo {
    background: var(--gradient-corporate);
    padding: 2rem;
    text-align: center;
}

.leadership-avatar {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    object-fit: cover;
    margin: 0 auto 1rem;
}

.leadership-avatar-placeholder {
    width: 12rem;
    height: 12rem;
    border-radius: 50%;
    border: 4px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.blockquote-custom {
    border-left: 4px solid var(--primary);
    padding-left: 1.5rem;
    font-style: italic;
    color: var(--foreground);
}

/* ===== Process Flow ===== */
.ppe-card {
    cursor: pointer;
    border: 2px solid;
    transition: var(--transition-smooth);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
}

.ppe-card.helmets {
    border-color: rgba(59, 130, 246, 0.2);
    background: rgba(59, 130, 246, 0.05);
}

.ppe-card.helmets.active,
.ppe-card.helmets:hover {
    border-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.ppe-card.coveralls {
    border-color: rgba(16, 185, 129, 0.2);
    background: rgba(16, 185, 129, 0.05);
}

.ppe-card.coveralls.active,
.ppe-card.coveralls:hover {
    border-color: #10b981;
    background: rgba(16, 185, 129, 0.1);
}

.process-step-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-elevated);
}

.step-connector {
    color: var(--primary);
    animation: pulse 2s infinite;
}

/* ===== Collection Map ===== */
.location-item {
    padding: 1rem;
    border-radius: var(--radius);
    border: 2px solid var(--border);
    background: rgba(241, 245, 249, 0.3);
    cursor: pointer;
    transition: var(--transition-smooth);
}

.location-item:hover,
.location-item.active {
    border-color: var(--primary);
    background: rgba(0, 114, 229, 0.05);
}

.location-number {
    width: 2rem;
    height: 2rem;
    padding: 12px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .75rem;
    font-weight: 700;
    background: var(--muted);
    color: var(--muted-foreground);
}

.location-item.active .location-number {
    background: var(--primary);
    color: white;
}

/* ===== Form Styles ===== */
.form-control:focus,
.form-check-input:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 0.25rem rgba(0, 114, 229, 0.25);
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.donation-confirmation {
    background: var(--accent);
    padding: 1rem;
    border-radius: var(--radius);
}

/* ===== Impact Dashboard ===== */
.stat-card {
    transition: var(--transition-smooth);
}

.stat-card:hover .stat-icon {
    transform: scale(1.1);
}

.stat-icon {
    width: 2rem;
    height: 2rem;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.stat-value {
    font-size: 2rem;
    font-weight: 700;
    color: var(--foreground);
}

/* ===== Stories Board ===== */
.story-card {
    transition: var(--transition-smooth);
}

.story-avatar {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--gradient-corporate);
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-badge {
    font-size: 0.75rem;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
}

/* ===== Footer ===== */
.footer {
    background-color: var(--primary);
    color: white;
}

.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: var(--transition-smooth);
}

.footer a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-logo {
    width: 3rem;
    height: 3rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem;
}

.footer-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.support-hours {
    background: var(--primary-dark);
    border-radius: var(--radius);
    padding: 1rem;
}

/* ===== Badge Styles ===== */
.badge-outline {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--foreground);
    font-weight: 500;
}

.badge-secondary {
    background: var(--muted);
    color: var(--muted-foreground);
}

.badge-accent {
    background: var(--accent);
    color: var(--accent-foreground);
}

/* ===== Section Styles ===== */
.section-padding {
    padding: 2rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--muted-foreground);
    max-width: 48rem;
    margin: 0 auto;
}

/* ===== ESG Section ===== */
.esg-pillar-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.esg-pillar-icon.environmental {
    background: #dcfce7;
    color: #16a34a;
}

.esg-pillar-icon.social {
    background: #dbeafe;
    color: #2563eb;
}

.esg-pillar-icon.governance {
    background: #f3e8ff;
    color: #9333ea;
}

.esg-bullet {
    width: 0.5rem;
    height: 0.5rem;
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.esg-bullet.green {
    background: #16a34a;
}

.esg-bullet.blue {
    background: #2563eb;
}

.esg-bullet.purple {
    background: #9333ea;
}

/* ===== Video Cards ===== */
.video-thumbnail {
    position: relative;
    height: 12rem;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.video-content {
    position: relative;
    z-index: 10;
    text-align: center;
}

.video-info {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    display: flex;
    justify-content: space-between;
    z-index: 10;
}

.video-badge {
    background: rgba(0, 0, 0, 0.5);
    color: white;
    font-size: 0.875rem;
    padding: 0.25rem 0.5rem;
    border-radius: 0.25rem;
}

/* ===== Animations ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes bounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

.animate-fade-in {
    animation: fadeIn 0.5s ease-out forwards;
}

.animate-slide-up {
    animation: slideUp 0.6s ease-out forwards;
}

.animate-pulse {
    animation: pulse 2s infinite;
}

.animate-bounce {
    animation: bounce 1s infinite;
}

/* Animation delays */
.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

.delay-400 {
    animation-delay: 0.4s;
}

.delay-500 {
    animation-delay: 0.5s;
}

/* ===== Utility Classes ===== */
.rounded-xl {
    border-radius: var(--radius-lg) !important;
}

.rounded-2xl {
    border-radius: var(--radius-xl) !important;
}

.transition-smooth {
    transition: var(--transition-smooth);
}

.hover-scale:hover {
    transform: scale(1.05);
}

.hover-lift:hover {
    transform: translateY(-4px);
}

.text-gradient {
    background: var(--gradient-corporate);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.line-clamp-2 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ===== Tab Content ===== */
.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* ===== Responsive Adjustments ===== */
@media (max-width: 768px) {
    .section-title {
        font-size: 1.75rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    .countdown-value {
        font-size: 1.75rem;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .leadership-avatar,
    .leadership-avatar-placeholder {
        width: 8rem;
        height: 8rem;
    }

    .stat-value {
        font-size: 1.5rem;
    }

    .header .nav-pills {
        width: 100%;
        border-radius: 13px !important;
        background-color: #ffffff03;
    }

    .header .nav-pills .nav-link {
        flex: 1;
        text-align: center;
        font-size: 0.75rem;
        padding: 0.5rem;
    }
}
.cta-box .btn {
    color: #0565a6;
}/* Section background */
.esg-section {
    background: linear-gradient(135deg, #ffffff, #f1f8f4);
  }
  
  /* Header */
  .esg-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #212529;
  }
  
  .esg-subtitle {
    font-size: 1.2rem;
    color: #6c757d;
    max-width: 900px;
  }
  
  /* Info card */
  .esg-info-card {
    border: 1px solid #dbe7df;
    background: linear-gradient(90deg, rgba(13,110,253,0.05), rgba(25,135,84,0.05));
  }
  
  /* Icon styles */
  .icon-soft-primary,
  .icon-soft-green,
  .icon-soft-blue,
  .icon-soft-purple {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .icon-soft-primary {
    background-color: rgba(13,110,253,0.1);
    color: #0d6efd;
  }
  
  .icon-soft-green {
    background-color: #e9f7ef;
    color: #198754;
  }
  
  .icon-soft-blue {
    background-color: #e7f1ff;
    color: #0d6efd;
  }
  
  .icon-soft-purple {
    background-color: #f2e9fb;
    color: #6f42c1;
  }
  
  .icon-soft-primary svg,
  .icon-soft-green svg,
  .icon-soft-blue svg,
  .icon-soft-purple svg {
    width: 32px;
    height: 32px;
  }
  
  /* Pillar cards */
  .esg-pillar-card {
    border: 1px solid #e9ecef;
    transition: box-shadow 0.3s ease;
  }
  
  .esg-pillar-card:hover {
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
  }
  
  /* Lists */
  .esg-list {
    list-style: none;
    padding: 0;
    text-align: left;
  }
  
  .esg-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.5rem;
    color: #6c757d;
  }
  
  .esg-list.green li::before,
  .esg-list.blue li::before,
  .esg-list.purple li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.6rem;
  }
  
  .esg-list.green li::before { background: #198754; }
  .esg-list.blue li::before { background: #0d6efd; }
  .esg-list.purple li::before { background: #6f42c1; }
  
  /* Strategy box */
  .esg-strategy-box {
    background: linear-gradient(135deg, rgba(25,135,84,0.1), rgba(13,110,253,0.1));
    border-radius: 1rem;
    padding: 2.5rem;
  }
  
  /* Year */
  .strategy-year-box {
    background: rgba(255,255,255,0.6);
    padding: 2rem;
    border-radius: 1rem;
  }
  
  .strategy-year-box .year {
    font-size: 3rem;
    font-weight: 700;
    color: #198754;
  }

  /* Section title */
.why-esg-title {
    font-size: 1.875rem; /* text-3xl */
    font-weight: 700;
    color: #212529;
  }
  
  /* Card */
  .why-esg-card {
    background: linear-gradient(135deg, #ffffff, rgba(13,110,253,0.05));
    border: 1px solid rgba(13,110,253,0.2);
    border-radius: 0.75rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.04);
  }
  
  /* Icon */
  .icon-soft-primary {
    width: fit-content;
    background-color: rgba(13,110,253,0.1);
    padding: 1rem;
    border-radius: 50%;
    color: #0d6efd;
  }
  
  .icon-soft-primary svg {
    width: 32px;
    height: 32px;
  }
  
  /* Card text */
  .why-esg-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #212529;
  }
  
  .why-esg-text {
    color: #6c757d;
  }
  
  /* List */
  .why-esg-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .why-esg-list li {
    position: relative;
    padding-left: 1rem;
    margin-bottom: 0.75rem;
    color: #6c757d;
  }
  
  .why-esg-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: #198754;
    border-radius: 50%;
    position: absolute;
    left: 0;
    top: 0.6rem;
  }

  .footer-main {
    background-color: #0160a9;
    color: #ffffff;
  }
  
  /* Typography */
  .footer-title {
    font-size: 1.5rem;
    font-weight: 700;
  }
  
  .footer-section-title {
    font-size: 1.1rem;
    font-weight: 600;
  }
  
  .footer-text {
    color: rgba(255,255,255,0.9);
    line-height: 1.6;
  }
  
  .footer-muted {
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
  }
  
  /* Logo */
  .logo-box {
    width: 48px;
    height: 48px;
    background: rgba(255,255,255,0.1);
    border-radius: 0.5rem;
    padding: 0.5rem;
  }
  
  .logo-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  
  /* Links */
  .footer-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.9);
    text-decoration: none;
    transition: all 0.2s ease;
  }
  
  .footer-links a:hover {
    color: #ffffff;
    transform: translateX(4px);
  }
  
  .footer-links svg {
    width: 16px;
    height: 16px;
    color: #28a745;
  }
  
  /* Contact */
  .footer-contact div {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255,255,255,0.9);
  }
  
  .footer-contact svg {
    width: 16px;
    height: 16px;
    color: #28a745;
  }
  
  /* Support hours */
  .support-hours {
    background-color: #034c84;
    border-radius: 0.5rem;
    padding: 1rem;
    font-size: 0.9rem;
  }
  
  /* Divider */
  .footer-divider {
    border-color: rgba(255,255,255,0.2);
  }
  
  /* Policies */
  .footer-policy-links a {
    color: rgba(255,255,255,0.8);
    text-decoration: none;
    margin: 0 0.25rem;
  }
  
  .footer-policy-links a:hover {
    color: #ffffff;
  }
  
  /* Quote */
  .footer-quote-main {
    font-size: 1.1rem;
    font-weight: 600;
    color: #28a745;
  }
  
/* ===== Print Styles ===== */
@media print {

    .header,
    .footer,
    button,
    .btn {
        display: none !important;
    }

    .hero-section {
        min-height: auto;
        padding: 2rem 0;
    }

    * {
        box-shadow: none !important;
        animation: none !important;
    }
}
/* Card */
.journey-card {
    background: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    border: 1px solid #dee2e6;
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.08);
  }
  
  /* Desktop steps */
  .journey-step {
    text-align: center;
    max-width: 160px;
  }
  
  .journey-step h6 {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
  }
  
  .journey-step p {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.4;
  }
  
  /* Icons */
  .step-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    color: #fff;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.15);
    transition: transform 0.3s ease;
  }
  
  .step-icon:hover {
    transform: scale(1.1);
  }
  
  .step-icon svg {
    width: 32px;
    height: 32px;
  }
  
  /* Arrows */
  .journey-arrow {
    color: #0d6efd;
    animation: pulse 1.5s infinite;
  }
  
  /* Mobile */
  .mobile-step {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    border-radius: 0.75rem;
    border: 1px solid #dee2e6;
    background: #ffffff;
    box-shadow: 0 0.5rem 1rem rgba(0,0,0,0.05);
  }
  
  .mobile-step h6 {
    font-weight: 600;
    margin-bottom: 0.25rem;
  }
  
  .mobile-step p {
    font-size: 0.85rem;
    color: #6c757d;
    margin-bottom: 0;
  }
  
  .step-icon-sm {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
  }
  
  .step-icon-sm svg {
    width: 24px;
    height: 24px;
  }
  
  .arrow-down {
    text-align: center;
    margin: 0.5rem 0;
    color: #0d6efd;
    
    animation: bounce 1.5s infinite;
  }
  /* Card */
.mission-card {
    background-color: #ffffff;
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.18);
  }
  
  /* Badge */
  .mission-badge {
    display: inline-flex;
    align-items: center;
    background-color: #0d6efd;
    color: #ffffff;
    border-radius: 999px;
    padding: 0.35rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
  }
  
  /* List dots */
  .dot-primary {
    width: 8px;
    height: 8px;
    background-color: #0160a9;
    border-radius: 50%;
    flex-shrink: 0;
  }
  
  /* Image */
  .image-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: 1rem;
    box-shadow: 0 1.5rem 3rem rgba(0, 0, 0, 0.25);
  }
  
  .image-wrapper img {
    width: 100%;
    height: 320px;
    object-fit: cover;
  }
  
  /* Typography helper */
  .leading-relaxed {
    line-height: 1.7;
  }
  
  /* Animation */
  .fade-in-up {
    animation: fadeInUp 0.6s ease both;
  }
  
  @keyframes fadeInUp {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* Card */
.journey-card {
    background: #ffffff;
    border-radius: 1.25rem;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.18);
  }
  
  /* Desktop steps */
  .journey-desktop {
    gap: 1rem;
  }
  
  .journey-step {
    text-align: center;
    max-width: 160px;
  }
  
  .journey-step h6 {
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 0.25rem;
  }
  
  .journey-step p {
    font-size: 0.75rem;
    color: #6c757d;
    line-height: 1.5;
  }
  
  /* Icons */
  .journey-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.75rem;
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.25);
    transition: transform 0.3s ease;
  }
  
  .journey-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
  }
  
  .journey-icon:hover {
    transform: scale(1.1);
  }
  
  /* Arrow */
  .journey-arrow {
    color: #0d6efd;
    width: 24px;
    height: 24px;
    animation: pulse 1.5s infinite;
  }
  
  /* Mobile */
  .journey-mobile-card {
    background: #ffffff;
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 0.75rem;
    padding: 1rem;
    box-shadow: 0 .5rem 1.5rem rgba(0,0,0,.12);
  }
  
  .journey-mobile-card h6 {
    font-weight: 600;
    margin-top: 0.5rem;
  }
  
  .journey-mobile-card p {
    font-size: 0.875rem;
    color: #6c757d;
  }
  
  .journey-mobile-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  .journey-mobile-icon svg {
    color: #ffffff;
  }
  
  /* Arrow down */
  .arrow-down {
    text-align: center;
    margin: 0.75rem 0;
  }
  
  .arrow-down svg {
    color: #0d6efd;
    animation: bounce 1.2s infinite;
  }
  
  /* Colors */
  .bg-blue { background: #0d6efd; }
  .bg-green { background: #198754; }
  .bg-orange { background: #fd7e14; }
  .bg-purple { background: #6f42c1; }
  .bg-emerald { background: #20c997; }
  
  /* Animations */
  .fade-in-down {
    animation: fadeDown 0.6s ease both;
  }
  
  @keyframes fadeDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
  }
  
  @keyframes pulse {
    0%,100% { opacity: 0.4; }
    50% { opacity: 1; }
  }
  
  @keyframes bounce {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
  }
/* Card */
.mission-card {
    background: #ffffff;
    border-radius: 1.5rem;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.06);
    box-shadow: 0 1.5rem 3rem rgba(0,0,0,0.18);
  }
  
  /* Badge */
  .mission-badge {
    background: #0160a9;
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 0.35rem 0.75rem;
    border-radius: 999px;
  }
  
  /* Bullet dots */
  .dot-emerald {
    width: 8px;
    height: 8px;
    background: #20c997;
    border-radius: 50%;
    display: inline-block;
  }
  
  /* Image cards */
  .image-card {
    background: #ffffff;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: 0 .75rem 1.5rem rgba(0,0,0,0.15);
    padding: 0.5rem;
  }
  
  .image-card img {
    width: 100%;
    height: 160px;
    object-fit: contain;
  }
  
  /* Animation */
  .slide-in-bottom {
    animation: slideInBottom 0.5s ease both;
  }
  
  @keyframes slideInBottom {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
/* Section */
.how-it-works {
    background: #f8f9fa;
  }
  
  /* CTA box */
  .cta-box {
    /* background: #eef7f3; */
    box-shadow: 0 1rem 2rem rgba(0,0,0,0.12);
  }
  
  /* Steps */
  .steps-wrapper {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
  }
  
  
  .step-item {
    display: flex;
    align-items: flex-start;
  }
  
  .step-content {
    flex: 1;              /* Ã°Å¸â€Â´ THIS is the key */
    min-width: 0;         /* prevents flex overflow issues */
    text-align: left;
  }
  
  .step-content h4 {
    margin-bottom: 0.5rem;
  }
  
  /* Icons */
  .step-icon {
    position: relative;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    flex-shrink: 0;
    box-shadow: 0 0.75rem 1.5rem rgba(0,0,0,0.2);
  }
  
  .step-icon i {
    width: 36px;
    height: 36px;
  }
  
  /* Icon themes */
  .step-icon.corporate {
    background: linear-gradient(135deg, #1daf7c, #0a58ca);
  }
  
  .step-icon.sustainability {
    background: linear-gradient(135deg, #198754, #8ceace);
  }
  
  /* Step number */
  .step-number {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 32px;
    height: 32px;
    background: #c6ecde;
    color: #07a631;
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 4px solid #f8f9fa;
  }
  
  /* Animations */
  .fade-in {
    animation: fadeIn 0.6s ease both;
  }
  
  .delay-1 { animation-delay: 0.2s; }
  .delay-2 { animation-delay: 0.4s; }
  .delay-3 { animation-delay: 0.6s; }
  .delay-4 { animation-delay: 0.8s; }
  
  .slide-up {
    animation: slideUp 0.6s ease both;
  }
  
  @keyframes fadeIn {
    from {
      opacity: 0;
      transform: translateY(15px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  @keyframes slideUp {
    from {
      opacity: 0;
      transform: translateY(25px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  
  .step-item {
    align-items: flex-start;
  }
  
  .step-content {
    text-align: left;
  }
  
  /* Mobile: still stacked, but LEFT aligned */
  @media (max-width: 768px) {
    .step-item {
      flex-direction: column;
      align-items: flex-start;
    }
  }
  .icon-box {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.icon-box i {
    width: 18px;
    height: 18px;
    color: #fff;
}
.icon-box svg path,.icon-box svg circle,.icon-box svg rect {
    
    stroke: #fff;
}
.impact-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.impact-icon i {
    width: 22px;
    height: 22px;
    color: #fff;
}

  /* Colors */
  .bg-blue { background: #0d6efd; }
  .bg-green { background: #28a745; }
  .bg-orange { background: #fd7e14; }
  .bg-purple { background: #6f42c1; }
  .bg-emerald { background: #20c997; }
    
  /* Animations */
  @keyframes pulse {
    0% { opacity: 0.4; }
    50% { opacity: 1; }
    100% { opacity: 0.4; }
  }
  
  @keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
  }
  
  /* Stories auto-scroll container */
  .stories-scroll-container {
    max-height: 420px;
    //overflow-y: hidden;
    position: relative;
  }
  
  .stories-scroll-container:hover {
    cursor: pointer;
  }
  #location-maps-link {
    background-color: #0160a9;
    border-color: #0160a9;
    padding: 11px;
}
.story-card {
    transition: all 0.25s ease;
}

.story-card:hover {
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.story-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0060A9, #00A3E0);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.story-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.animate-fade-in {
    animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
