/*
   AGL Supply Chain - Premium Logistics Theme
   Inspired by modern corporate logistics design
   Colors: AGL Blue #0048bb | AGL Red #d31245 | Dark Blue #022359
*/

/* ========================
   CSS VARIABLES
   ======================== */
:root {
    --primary-blue: #0048bb;
    --primary-red: #d31245;
    --dark-blue: #022359;
    --text-main: #333333;
    --text-muted: #666666;
    --bg-light: #f4f6f9;
    --bg-white: #ffffff;
    --transition: all 0.3s ease;
    --font-main: 'interface', 'Inter', sans-serif;
    --shadow-sm: 0 4px 12px rgba(0,0,0,0.06);
    --shadow-md: 0 10px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 50px rgba(0,0,0,0.12);
    --border-radius: 12px;
}

/* ========================
   RESET & BASE
   ======================== */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    color: var(--text-main);
    line-height: 1.7;
    background-color: var(--bg-light);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* ========================
   UTILITIES
   ======================== */
.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mb-4 { margin-bottom: 1.5rem; }
.flex-grow { flex-grow: 1; }
.img-responsive { max-width: 100%; height: auto; display: block; }
.rounded-shadow { border-radius: var(--border-radius); box-shadow: var(--shadow-lg); }

/* ========================
   TYPOGRAPHY
   ======================== */
h1, h2, h3, h4 {
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--dark-blue);
}

a { text-decoration: none; color: var(--primary-blue); transition: var(--transition); }
a:hover { color: var(--primary-red); }

/* ========================
   BUTTONS
   ======================== */
.btn {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid transparent;
    font-size: 0.95rem;
}
.btn-sm { padding: 8px 20px; font-size: 0.85rem; }
.btn-lg { padding: 16px 44px; font-size: 1.1rem; }

.btn-primary { background-color: var(--primary-blue); color: white; }
.btn-primary:hover { background-color: var(--dark-blue); color: white; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0,72,187,0.25); }

.btn-secondary { background-color: var(--primary-red); color: white; }
.btn-secondary:hover { background-color: #b00d36; color: white; transform: translateY(-2px); box-shadow: 0 10px 20px rgba(211,18,69,0.25); }

.btn-outline { border-color: white; color: white; }
.btn-outline:hover { background-color: white; color: var(--primary-blue); }

.btn-outline-white { border-color: white; color: white; }
.btn-outline-white:hover { background-color: white; color: var(--dark-blue); }

/* ========================
   HEADER
   ======================== */
.header {
    position: fixed; top: 0; left: 0; width: 100%;
    background: rgba(255,255,255,0.97);
    backdrop-filter: blur(12px);
    z-index: 1000;
    transition: var(--transition);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}
.header.scrolled { box-shadow: var(--shadow-md); }

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    transition: height 0.3s ease;
}
.header.scrolled .header-inner { height: 68px; }

.logo img { height: 55px; width: auto; transition: var(--transition); }
.header.scrolled .logo img { height: 46px; }

.nav-wrapper { display: flex; align-items: center; }
.main-nav { display: flex; align-items: center; }
.main-nav > ul { list-style: none; display: flex; margin-right: 24px; }
.main-nav > ul > li { margin: 0 12px; }

.main-nav > ul > li > a {
    color: var(--dark-blue);
    font-weight: 600;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.main-nav > ul > li > a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 2px;
    background-color: var(--primary-red);
    transition: var(--transition);
}
.main-nav > ul > li > a:hover::after { width: 100%; }
.dropdown-arrow { font-size: 0.65rem; opacity: 0.7; }

/* Dropdown */
.has-dropdown { position: relative; }

.submenu {
    display: none !important;
    position: absolute;
    top: calc(100% + 16px);
    left: 0;
    background: white;
    min-width: 240px;
    box-shadow: var(--shadow-lg);
    border-radius: 0 0 var(--border-radius) var(--border-radius);
    border-top: 3px solid var(--primary-red);
    z-index: 100;
    list-style: none !important;
    flex-direction: column !important;
    padding: 8px 0;
    animation: dropDown 0.2s ease;
}

.submenu-wide { min-width: 280px; }

@keyframes dropDown {
    from { opacity: 0; transform: translateY(-8px); }
    to { opacity: 1; transform: translateY(0); }
}

.has-dropdown.open .submenu { display: flex !important; }
.submenu li { margin: 0 !important; }

.submenu li a {
    display: flex !important;
    align-items: center;
    gap: 10px;
    padding: 10px 20px !important;
    color: var(--text-main) !important;
    font-size: 0.88rem !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    font-weight: 500 !important;
}
.submenu li a::after { display: none !important; }
.submenu li a i { color: var(--primary-blue); width: 16px; text-align: center; }
.submenu li a:hover { background-color: var(--bg-light); color: var(--primary-blue) !important; padding-left: 24px !important; }

/* Mobile Toggle */
.mobile-toggle { display: none; background: none; border: none; font-size: 1.5rem; color: var(--dark-blue); cursor: pointer; }

/* ========================
   HERO SECTION
   ======================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 640px;
    background: url('../images/hero-bg.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    background-color: var(--dark-blue);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(2,35,89,0.93) 0%, rgba(0,72,187,0.5) 60%, rgba(2,35,89,0.7) 100%);
}

.hero-content {
    position: relative; z-index: 10; color: white; max-width: 1200px; width: 100%;
}

.hero-badge {
    display: inline-block;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    color: white;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
    backdrop-filter: blur(4px);
    animation: fadeIn 0.6s ease;
}

.hero-title {
    color: white;
    font-size: clamp(2.8rem, 6vw, 5rem);
    font-weight: 800;
    margin-bottom: 20px;
    line-height: 1.05;
    opacity: 1;
    animation: slideUp 0.8s ease-out forwards;
}

.hero-subtitle {
    font-size: 1.25rem;
    margin-bottom: 36px;
    opacity: 0.88;
    max-width: 600px;
    animation: slideUp 1s ease-out forwards;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    animation: slideUp 1.2s ease-out;
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 60px;
    animation: fadeIn 1.4s ease-out;
    flex-wrap: wrap;
}

.hero-stat { text-align: left; }
.stat-num { display: block; font-size: 2rem; font-weight: 800; color: white; }
.stat-label { font-size: 0.8rem; opacity: 0.75; text-transform: uppercase; letter-spacing: 1px; }

/* ========================
   TRACK SECTION
   ======================== */
.track-section {
    margin-top: -70px;
    position: relative;
    z-index: 20;
    padding-bottom: 0;
}

.track-card {
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
    border-top: 4px solid var(--primary-red);
    overflow: hidden;
}

.track-card-inner {
    display: flex;
    align-items: center;
    gap: 40px;
    padding: 36px 40px;
    flex-wrap: wrap;
}

.track-info { display: flex; align-items: center; gap: 20px; min-width: 280px; }
.track-icon { font-size: 2.5rem; color: var(--primary-red); }
.track-info h2 { margin-bottom: 4px; font-size: 1.4rem; }
.track-info p { color: var(--text-muted); margin: 0; font-size: 0.9rem; }

.track-form { display: flex; gap: 14px; flex: 1; align-items: center; flex-wrap: wrap; }
.form-control {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    font-family: inherit;
    outline: none;
    transition: var(--transition);
    background: #fafafa;
}
.form-control:focus { border-color: var(--primary-blue); box-shadow: 0 0 0 3px rgba(0,72,187,0.1); background: white; }

/* ========================
   STATS SECTION
   ======================== */
.stats-section {
    padding: 40px 0;
    background: var(--dark-blue);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stat-card {
    text-align: center;
    color: white;
    padding: 30px 20px;
    border-radius: var(--border-radius);
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    transition: var(--transition);
}
.stat-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-4px); }
.stat-icon { font-size: 2rem; color: var(--primary-red); margin-bottom: 14px; }
.stat-number { font-size: 2.8rem; font-weight: 800; display: block; }
.stat-label { font-size: 0.85rem; opacity: 0.7; text-transform: uppercase; letter-spacing: 1px; margin-top: 4px; display: block; }

/* ========================
   SECTION HEADER
   ======================== */
.section-header { margin-bottom: 60px; }
.section-tag {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-red);
    margin-bottom: 10px;
}
.section-tag.light { color: rgba(255,255,255,0.7); }

.section-header h2 {
    font-size: 2.5rem;
    position: relative;
    display: inline-block;
    padding-bottom: 16px;
}
.section-header h2::after {
    content: '';
    position: absolute;
    bottom: 0; left: 50%;
    transform: translateX(-50%);
    width: 60px; height: 3px;
    background-color: var(--primary-red);
}
.section-header p { font-size: 1.1rem; color: var(--text-muted); margin-top: 16px; }

/* ========================
   SERVICES SECTION
   ======================== */
.services-section {
    padding: 60px 0;
    background-color: var(--bg-white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 28px;
}

.service-card {
    position: relative;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 40px 28px 36px;
    text-align: center;
    overflow: hidden;
    transition: all 0.35s ease;
    cursor: pointer;
    border: 1px solid transparent;
}
.service-card:hover { border-color: var(--primary-blue); transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.service-icon { font-size: 3rem; color: var(--primary-blue); margin-bottom: 18px; transition: var(--transition); }
.service-card h3 { margin: 0 0 10px; font-size: 1.1rem; transition: var(--transition); }
.service-short-desc { color: var(--text-muted); font-size: 0.9rem; line-height: 1.5; margin: 0; }

.service-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.35s ease;
}
.service-card:hover .service-hover { opacity: 1; transform: translateY(0); }
.service-hover-icon { font-size: 2.5rem; margin-bottom: 14px; }
.service-hover h3 { color: white; margin-bottom: 10px; font-size: 1.1rem; }
.service-hover p { font-size: 0.85rem; opacity: 0.88; margin-bottom: 20px; }

/* ========================
   ABOUT SECTION
   ======================== */
.about-section { padding: 60px 0; background-color: var(--bg-light); }

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.about-content .lead { font-size: 1.2rem; color: var(--primary-blue); font-weight: 600; margin-bottom: 20px; }
.about-content p { margin-bottom: 18px; color: var(--text-muted); }

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 28px 0;
}
.about-feature {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.9rem; font-weight: 600; color: var(--dark-blue);
}
.about-feature i { color: var(--primary-red); font-size: 1rem; }

.about-image { position: relative; }
.about-badge {
    position: absolute;
    bottom: 30px; left: -20px;
    background: var(--primary-red);
    color: white;
    padding: 20px 24px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-md);
    text-align: center;
}
.badge-num { display: block; font-size: 2rem; font-weight: 800; }
.badge-text { font-size: 0.75rem; opacity: 0.9; line-height: 1.3; }

/* ========================
   MARKETS SECTION
   ======================== */
.markets-section { padding: 60px 0; background-color: var(--bg-white); }

.markets-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.market-card {
    position: relative;
    background: var(--bg-light);
    border-radius: var(--border-radius);
    padding: 50px 36px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    border: 1px solid transparent;
}
.market-card:hover { border-color: var(--primary-blue); transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.market-card-bg {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    opacity: 0;
    transition: all 0.35s ease;
}
.market-card:hover .market-card-bg { opacity: 1; }

.market-icon {
    position: relative; z-index: 2;
    font-size: 2.5rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
    transition: var(--transition);
}
.market-card:hover .market-icon { color: rgba(255,255,255,0.8); }
.market-card h3 { position: relative; z-index: 2; margin-bottom: 10px; transition: var(--transition); }
.market-card:hover h3 { color: white; }
.market-card p { position: relative; z-index: 2; color: var(--text-muted); font-size: 0.9rem; transition: var(--transition); }
.market-card:hover p { color: rgba(255,255,255,0.8); }
.market-link { position: relative; z-index: 2; display: inline-flex; align-items: center; gap: 6px; margin-top: 20px; font-weight: 600; font-size: 0.9rem; }
.market-card:hover .market-link { color: white; }

/* ========================
   WHY SECTION
   ======================== */
.why-section { padding: 60px 0; background: var(--dark-blue); }

.why-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.why-content h2 { color: white; font-size: 2.5rem; }
.why-content > p { color: rgba(255,255,255,0.75); margin-bottom: 36px; }

.why-points { display: flex; flex-direction: column; gap: 28px; }
.why-point { display: flex; gap: 20px; align-items: flex-start; }
.why-point-icon {
    width: 50px; height: 50px; min-width: 50px;
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.3rem; color: var(--primary-red);
}
.why-point h4 { color: white; margin-bottom: 6px; font-size: 1rem; }
.why-point p { color: rgba(255,255,255,0.65); font-size: 0.9rem; margin: 0; }

.why-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.why-mini-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 28px 16px;
    text-align: center;
    color: white;
    transition: var(--transition);
}
.why-mini-card:hover { background: rgba(255,255,255,0.12); transform: translateY(-4px); }
.why-mini-card i { font-size: 2rem; color: var(--primary-red); display: block; margin-bottom: 12px; }
.why-mini-card span { font-size: 0.8rem; font-weight: 600; opacity: 0.85; }

/* ========================
   CTA SECTION
   ======================== */
.cta-section {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--primary-red) 0%, #a00a28 100%);
}
.cta-content { text-align: center; color: white; }
.cta-content h2 { color: white; font-size: 2.2rem; margin-bottom: 16px; }
.cta-content p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 36px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-buttons .btn-secondary { background: white; color: var(--primary-red); border-color: white; }
.cta-buttons .btn-secondary:hover { background: var(--dark-blue); color: white; border-color: var(--dark-blue); }

/* ========================
   PAGE HEADER (inner pages)
   ======================== */
.page-header {
    padding-top: 80px;
    position: relative;
    background: url('/images/hero-bg.jpg') no-repeat center center/cover;
    background-color: var(--dark-blue);
}
.page-header-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.2) 100%);
}
.page-header-content {
    position: relative; z-index: 10; color: white;
    padding: 70px 24px 60px;
}
.page-header-content h1 { color: white; font-size: 3rem; margin-bottom: 10px; }
.page-header-content p { color: rgba(255,255,255,0.85); font-size: 1.15rem; }
.page-header-tag { color: var(--primary-red); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px; font-size: 0.8rem; margin-bottom: 8px; }

.breadcrumb-nav {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.85rem; color: rgba(255,255,255,0.7);
    margin-bottom: 16px;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.7); }
.breadcrumb-nav a:hover { color: white; }
.breadcrumb-nav i { font-size: 0.65rem; opacity: 0.6; }
.breadcrumb-nav span { color: rgba(255,255,255,0.9); }

/* ========================
   PAGE BODY (inner pages)
   ======================== */
.page-body { padding: 80px 0; background: var(--bg-light); }

.content-grid-2-1 {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}

.main-content-col { }
.sidebar-col { }

.content-block {
    background: white;
    padding: 40px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    margin-bottom: 28px;
}
.content-block h2 { font-size: 1.6rem; margin-bottom: 16px; color: var(--dark-blue); }
.content-block h3 { font-size: 1.2rem; margin-bottom: 14px; color: var(--dark-blue); }
.content-block h4 { font-size: 1rem; margin-bottom: 10px; }
.content-block p { color: var(--text-muted); margin-bottom: 16px; }
.content-block p:last-child { margin-bottom: 0; }

.lead-text { font-size: 1.1rem; color: var(--primary-blue); font-weight: 600; margin-bottom: 20px; }

/* Highlight list */
.highlight-list { display: flex; flex-direction: column; gap: 12px; }
.highlight-item {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 16px;
    background: var(--bg-light);
    border-radius: 8px;
    border-left: 3px solid var(--primary-blue);
}
.highlight-item i { color: var(--primary-red); font-size: 1.1rem; margin-top: 2px; flex-shrink: 0; }
.highlight-item span { font-size: 0.95rem; color: var(--text-main); line-height: 1.5; }

/* Tagline box */
.tagline-box {
    background: var(--dark-blue);
    color: white;
    padding: 30px 40px;
    border-radius: var(--border-radius);
    text-align: center;
    margin-bottom: 28px;
}
.tagline-box p { color: white; margin: 0; font-size: 1rem; }
.tagline-box p + p { margin-top: 8px; }

/* Service Page Hero */
.service-page-hero {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 36px 40px;
    background: linear-gradient(135deg, var(--dark-blue), var(--primary-blue));
    border-radius: var(--border-radius);
    color: white;
    margin-bottom: 28px;
}
.service-page-icon {
    font-size: 3rem;
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.1);
    width: 80px; height: 80px; min-width: 80px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 16px;
}
.service-page-hero h2 { color: white; margin-bottom: 6px; font-size: 1.6rem; }
.service-page-hero .lead-text { color: rgba(255,255,255,0.85); margin: 0; }
.service-page-hero a { color: rgba(255,255,255,0.85); }
.service-page-hero a:hover { color: white; }

/* Service CTA Quote */
.service-cta-quote {
    background: var(--bg-light);
    border-left: 4px solid var(--primary-red);
    padding: 24px 28px;
    border-radius: 0 var(--border-radius) var(--border-radius) 0;
    margin-bottom: 28px;
    position: relative;
}
.service-cta-quote i { font-size: 1.5rem; color: var(--primary-red); opacity: 0.3; margin-bottom: 8px; display: block; }
.service-cta-quote p { color: var(--dark-blue); font-style: italic; font-size: 0.95rem; margin: 0; }

/* Info Cards */
.info-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 30px; margin-bottom: 28px; }
.info-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 28px 24px;
    box-shadow: var(--shadow-sm);
    border-top: 3px solid var(--primary-blue);
    transition: var(--transition);
}
.info-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.info-card-icon { font-size: 1.8rem; color: var(--primary-red); margin-bottom: 14px; }
.info-card h4 { font-size: 0.95rem; margin-bottom: 8px; color: var(--dark-blue); }
.info-card p { font-size: 0.85rem; color: var(--text-muted); margin-bottom: 14px; }
.info-card-link { font-size: 0.85rem; font-weight: 700; color: var(--primary-blue); display: flex; align-items: center; gap: 6px; }
.info-card-link:hover { color: var(--primary-red); gap: 10px; }

/* ========================
   SIDEBAR
   ======================== */
.sidebar-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}
.sidebar-card h3 { font-size: 1.1rem; margin-bottom: 18px; color: var(--dark-blue); position: relative; padding-bottom: 12px; }
.sidebar-card h3::after { content: ''; position: absolute; bottom: 0; left: 0; width: 36px; height: 2px; background: var(--primary-red); }

.sidebar-card-dark { background: var(--dark-blue); color: white; }
.sidebar-card-dark h3 { color: white; }
.sidebar-card-dark h3::after { background: var(--primary-red); }
.sidebar-card-dark p { color: rgba(255,255,255,0.8); }

.sidebar-links { list-style: none; }
.sidebar-links li { margin-bottom: 8px; }
.sidebar-links li a {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 14px;
    border-radius: 8px;
    color: var(--text-main);
    font-size: 0.9rem;
    font-weight: 500;
    transition: var(--transition);
}
.sidebar-links li a i { color: var(--primary-blue); width: 16px; text-align: center; }
.sidebar-links li a:hover { background: var(--bg-light); color: var(--primary-blue); padding-left: 18px; }
.sidebar-links li.active a { background: var(--primary-blue); color: white; }
.sidebar-links li.active a i { color: white; }

/* ISO Badge */
.iso-badge {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    padding: 20px;
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    color: var(--primary-blue);
}
.iso-badge i { font-size: 2.5rem; color: var(--primary-red); }
.iso-badge span { font-size: 1.1rem; font-weight: 800; }
.iso-badge small { font-size: 0.78rem; color: var(--text-muted); }

/* Sidebar Stats */
.sidebar-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.sidebar-stat { text-align: center; padding: 16px; background: var(--bg-light); border-radius: 8px; }
.sidebar-stat-num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--primary-blue); }
.sidebar-stat span:not(.sidebar-stat-num) { font-size: 0.78rem; color: var(--text-muted); }

/* ========================
   CONTACT PAGE
   ======================== */
.contact-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-bottom: 28px; }
.contact-card {
    display: flex; align-items: flex-start; gap: 16px;
    background: white;
    border-radius: 10px;
    padding: 20px;
    box-shadow: var(--shadow-sm);
    border-left: 3px solid var(--primary-blue);
    transition: var(--transition);
}
.contact-card:hover { transform: translateX(4px); box-shadow: var(--shadow-md); }
.contact-card-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: var(--bg-light);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem;
    color: var(--primary-red);
}
.contact-card-info h4 { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 4px; color: var(--text-muted); }
.contact-card-info a { color: var(--dark-blue); font-weight: 600; display: block; font-size: 0.9rem; word-break: break-all; }
.contact-card-info span { color: var(--text-muted); font-size: 0.85rem; display: block; }

/* Contact Form */
.contact-form { }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 22px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 600; font-size: 0.9rem; color: var(--dark-blue); }
.req { color: var(--primary-red); }
.form-group textarea.form-control { resize: vertical; }
.form-success {
    display: flex; align-items: center; gap: 12px;
    background: #e8f5e9; color: #2e7d32;
    padding: 16px 20px;
    border-radius: 8px;
    margin-top: 16px;
    font-weight: 600;
}
.form-success i { font-size: 1.2rem; }

/* ========================
   TRANSIT / AFGHANISTAN
   ======================== */
.stats-mini-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.stats-mini-card { background: var(--bg-light); border-radius: 10px; padding: 20px; text-align: center; }
.stats-mini-num { display: block; font-size: 1.6rem; font-weight: 800; color: var(--primary-blue); }
.stats-mini-label { font-size: 0.8rem; color: var(--text-muted); display: block; margin-top: 4px; }

.content-grid-3col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.detail-list { list-style: none; }
.detail-list li { display: flex; align-items: flex-start; gap: 10px; padding: 8px 0; font-size: 0.88rem; color: var(--text-main); border-bottom: 1px solid #f0f0f0; }
.detail-list li:last-child { border-bottom: none; }
.detail-list li i { margin-top: 2px; flex-shrink: 0; }

/* CIS Countries Grid */
.cis-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.cis-card {
    background: var(--bg-light);
    border-radius: 10px;
    padding: 18px;
    border-top: 3px solid var(--primary-blue);
}
.cis-card h5 { font-size: 0.9rem; color: var(--dark-blue); margin-bottom: 6px; display: flex; align-items: center; gap: 6px; }
.cis-card h5 i { color: var(--primary-red); }
.cis-card p { font-size: 0.8rem; color: var(--text-muted); margin: 0; }

/* Feature Table */
.feature-table { border: 1px solid #e8e8e8; border-radius: 10px; overflow: hidden; }
.feature-row { display: grid; grid-template-columns: 180px 1fr; gap: 0; }
.feature-row:not(:last-child) { border-bottom: 1px solid #e8e8e8; }
.feature-label { background: var(--dark-blue); color: white; padding: 14px 20px; font-size: 0.85rem; font-weight: 700; }
.feature-value { padding: 14px 20px; font-size: 0.88rem; color: var(--text-main); }
.feature-row:nth-child(even) .feature-value { background: var(--bg-light); }

/* Network Regions */
.network-regions { display: flex; flex-direction: column; gap: 20px; }
.network-region {
    display: flex; align-items: flex-start; gap: 20px;
    padding: 20px;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 3px solid var(--primary-blue);
}
.network-region-icon {
    width: 50px; height: 50px; min-width: 50px;
    background: white;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--primary-blue);
    box-shadow: var(--shadow-sm);
}
.network-region h4 { color: var(--dark-blue); margin-bottom: 4px; font-size: 1rem; }
.network-region p { color: var(--text-muted); font-size: 0.88rem; margin: 0; }

/* ========================
   FOOTER
   ======================== */
.footer { background-color: var(--dark-blue); color: white; padding: 80px 0 0; }

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr 1.4fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-brand p { color: rgba(255,255,255,0.65); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }

.footer-badges { margin-bottom: 20px; }
.footer-badge {
    display: inline-flex; align-items: center; gap: 6px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    color: white;
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
}
.footer-badge i { color: var(--primary-red); }

.footer-social a {
    display: inline-flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 8px;
    color: white;
    font-size: 0.95rem;
    transition: var(--transition);
    margin-right: 8px;
}
.footer-social a:hover { background: var(--primary-red); }

.footer-logo { max-width: 200px; height: auto; filter: drop-shadow(1px 1px 0 white) drop-shadow(-1px -1px 0 white) drop-shadow(1px -1px 0 white) drop-shadow(-1px 1px 0 white); }

.footer h3 {
    color: white;
    font-size: 1rem;
    margin-bottom: 22px;
    position: relative;
    padding-bottom: 12px;
}
.footer h3::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 36px; height: 2px;
    background-color: var(--primary-red);
}

.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a { color: rgba(255,255,255,0.65); font-size: 0.88rem; transition: var(--transition); }
.footer ul li a:hover { color: white; padding-left: 4px; }

.footer-contact-info { margin-top: 22px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.footer-contact-item i { color: var(--primary-red); margin-top: 3px; width: 14px; flex-shrink: 0; }
.footer-contact-item a { color: rgba(255,255,255,0.75); font-size: 0.88rem; word-break: break-all; }
.footer-contact-item a:hover { color: white; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.footer-bottom p { color: rgba(255,255,255,0.45); font-size: 0.85rem; margin: 0; }
.footer-tagline { color: rgba(255,255,255,0.35) !important; font-style: italic; font-size: 0.78rem !important; }

/* ========================
   ANIMATIONS
   ======================== */
@keyframes slideUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

/* ========================
   RESPONSIVE
   ======================== */
@media (max-width: 1100px) {
    .about-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 992px) {
    .hero-title { font-size: 2.8rem; }
    .markets-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .content-grid-2-1 { grid-template-columns: 1fr; }
    .sidebar-col { order: -1; }
    .info-cards { grid-template-columns: repeat(2, 1fr); }
    .contact-cards { grid-template-columns: 1fr; }
    .stats-mini-grid { grid-template-columns: repeat(2, 1fr); }
    .cis-grid { grid-template-columns: repeat(2, 1fr); }
    .content-grid-3col { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .mobile-toggle { display: block; }

    .main-nav {
        position: absolute;
        top: 100%; left: 0; width: 100%;
        background: white;
        flex-direction: column;
        padding: 20px;
        box-shadow: var(--shadow-lg);
        clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
        transition: clip-path 0.4s ease-out;
    }
    .main-nav.active { clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%); }
    .main-nav > ul { flex-direction: column; width: 100%; margin-right: 0; margin-bottom: 16px; }
    .main-nav > ul > li { margin: 6px 0; }
    .submenu { position: static; box-shadow: none; border-radius: 8px; margin-top: 8px; border-top: none; background: var(--bg-light); }
    .has-dropdown.open .submenu { display: flex !important; }
    .header-actions { width: 100%; }
    .header-actions .btn { display: block; text-align: center; }
    .track-card-inner { flex-direction: column; align-items: stretch; }
    .track-info { min-width: auto; }
    .track-form { flex-direction: column; }
    .hero-title { font-size: 2.2rem; }
    .hero-stats { gap: 24px; }
    .hero-buttons { flex-direction: column; }
    .hero-buttons .btn, .cta-buttons .btn { width: 100%; }
    .cta-buttons { flex-direction: column; }
    .info-cards { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .why-card-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .stats-mini-grid { grid-template-columns: repeat(2, 1fr); }
    .cis-grid { grid-template-columns: 1fr; }
    .feature-row { grid-template-columns: 1fr; }
    .feature-label { border-bottom: none; }
    .content-block { padding: 28px 20px; }
    .service-page-hero { flex-direction: column; text-align: center; }
}

/* ========================
   ACCREDITATIONS SECTION
   ======================== */
.accreditations-section { padding: 30px 0 20px; background: var(--bg-white); text-align: center; border-top: 1px solid #f0f0f0; }
.accreditations-title { font-size: 1.5rem; color: var(--dark-blue); margin-bottom: 25px; font-weight: 700; position: relative; padding-bottom: 12px; display: inline-block; }
.accreditations-title::after { content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 40px; height: 3px; background: var(--primary-red); }
.accreditations-img-wrapper { overflow: hidden; max-width: 1000px; margin: 0 auto; }
.accreditations-img { max-width: 100%; height: auto; animation: fadeUpSlow 1.5s ease-out forwards; transition: transform 0.6s ease, filter 0.6s ease; filter: grayscale(15%); transform-origin: center; cursor: pointer; }
.accreditations-img:hover { transform: scale(1.025); filter: grayscale(0%); }
@keyframes fadeUpSlow { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
