/* swiftlogix-styles.css - Complete Stylesheet for SwiftLogix Logistics Website */
/* Version 1.0 - Includes styles for Home, About, Contact, and Tracking pages */

:root {
    /* Light theme (default) */
    --primary-color: #1a73e8;
    --primary-dark: #0d47a1;
    --primary-light: #e8f0fe;
    --secondary-color: #34a853;
    --accent-color: #fbbc05;
    --warning-color: #fbbc05;
    --error-color: #ea4335;
    --text-color: #202124;
    --text-secondary: #5f6368;
    --bg-color: #ffffff;
    --bg-secondary: #f8f9fa;
    --bg-card: #ffffff;
    --border-color: #dadce0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    --header-bg: rgba(255, 255, 255, 0.95);
    --footer-bg: #1a237e;
    --transition: all 0.3s ease;
}

[data-theme="dark"] {
    /* Dark theme */
    --primary-color: #8ab4f8;
    --primary-dark: #669df6;
    --primary-light: #202124;
    --secondary-color: #81c995;
    --accent-color: #fdd663;
    --warning-color: #fdd663;
    --error-color: #f28b82;
    --text-color: #e8eaed;
    --text-secondary: #9aa0a6;
    --bg-color: #121212;
    --bg-secondary: #202124;
    --bg-card: #1e1e1e;
    --border-color: #3c4043;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    --header-bg: rgba(18, 18, 18, 0.95);
    --footer-bg: #0a0e2e;
}

/* ============================================
   BASE STYLES & RESET
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
    font-weight: 600;
    line-height: 1.3;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ============================================
   HEADER & NAVIGATION
   ============================================ */
header {
    background-color: var(--header-bg);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 15px 0;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
}

.logo-icon {
    background-color: var(--primary-color);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Desktop Navigation */
.desktop-nav {
    display: flex;
}

.desktop-nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.desktop-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
    position: relative;
    padding: 5px 0;
}

.desktop-nav a:hover {
    color: var(--primary-color);
}

.desktop-nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 3px;
    background-color: var(--primary-color);
    bottom: -5px;
    left: 0;
    transition: width 0.3s ease;
}

.desktop-nav a:hover::after {
    width: 100%;
}

.desktop-nav a.active {
    color: var(--primary-color);
}

.desktop-nav a.active::after {
    width: 100%;
}

/* Mobile Navigation */
.mobile-nav {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: var(--header-bg);
    z-index: 999;
    padding: 100px 20px 40px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.mobile-nav.active {
    transform: translateX(0);
}

.mobile-nav ul {
    list-style: none;
}

.mobile-nav li {
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-nav.active li {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered animation for mobile nav items */
.mobile-nav.active li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav.active li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav.active li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav.active li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav.active li:nth-child(5) { transition-delay: 0.3s; }
.mobile-nav.active li:nth-child(6) { transition-delay: 0.35s; }
.mobile-nav.active li:nth-child(7) { transition-delay: 0.4s; }
.mobile-nav.active li:nth-child(8) { transition-delay: 0.45s; }

.mobile-nav a {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    font-size: 1.5rem;
    display: block;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
    transition: var(--transition);
}

.mobile-nav a:hover {
    color: var(--primary-color);
    padding-left: 10px;
}

.mobile-nav .mobile-actions {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.3s ease 0.5s, transform 0.3s ease 0.5s;
}

.mobile-nav.active .mobile-actions {
    opacity: 1;
    transform: translateY(0);
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
}

/* Theme Toggle */
.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 1.3rem;
    color: var(--text-color);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--bg-secondary);
    transition: var(--transition);
}

.theme-toggle:hover {
    background-color: var(--primary-light);
}

/* Mobile Menu Toggle Button */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    width: 40px;
    height: 40px;
    position: relative;
    cursor: pointer;
    z-index: 1001;
    padding: 0;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 3px;
    width: 70%;
    background: var(--text-color);
    border-radius: 3px;
    left: 15%;
    transition: all 0.3s ease;
}

.mobile-menu-toggle span:nth-child(1) {
    top: 12px;
}

.mobile-menu-toggle span:nth-child(2) {
    top: 18px;
    width: 50%;
}

.mobile-menu-toggle span:nth-child(3) {
    top: 24px;
}

/* Animated Hamburger to Close */
.mobile-menu-toggle.active span:nth-child(1) {
    top: 18px;
    transform: rotate(45deg);
    width: 70%;
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    top: 18px;
    transform: rotate(-45deg);
    width: 70%;
}

/* ============================================
   COMMON COMPONENTS
   ============================================ */
/* Page Header */
.page-header {
    padding: 150px 0 100px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-color) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.page-header h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    color: var(--text-color);
    position: relative;
    display: inline-block;
}

.page-header h1 span {
    color: var(--primary-color);
}

.page-header h1::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background-color: var(--primary-color);
    border-radius: 2px;
}

.page-header p {
    font-size: 1.3rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 30px auto 0;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 30px;
    color: var(--text-secondary);
    font-size: 1rem;
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: var(--transition);
}

.breadcrumb a:hover {
    text-decoration: underline;
}

.breadcrumb i {
    font-size: 0.8rem;
}

/* Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 60px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--text-color);
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
}

/* Buttons */
.cta-button {
    display: inline-block;
    background-color: var(--primary-color);
    color: white;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.cta-button:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.cta-button:disabled:hover {
    transform: none;
    box-shadow: none;
}

.outline-button {
    display: inline-block;
    background-color: transparent;
    color: var(--primary-color);
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
}

.outline-button:hover {
    background-color: var(--primary-color);
    color: white;
    transform: translateY(-3px);
}

/* Cards */
.service-card, .feature-card, .testimonial-card, .blog-card, .mv-card, 
.leader-card, .value-card, .info-card, .support-card, .tool-card, 
.details-card, .office-card {
    background-color: var(--bg-card);
    border-radius: 10px;
    padding: 30px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-card:hover, .feature-card:hover, .testimonial-card:hover, 
.blog-card:hover, .mv-card:hover, .leader-card:hover, .value-card:hover, 
.info-card:hover, .support-card:hover, .tool-card:hover, .details-card:hover, 
.office-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-color);
}

/* Icons */
.service-icon, .feature-icon, .mv-icon, .value-icon, .info-icon, 
.support-icon, .tool-icon, .details-icon {
    width: 70px;
    height: 70px;
    background-color: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: var(--primary-color);
    font-size: 1.8rem;
}

.mv-icon, .info-icon, .support-icon, .tool-icon {
    width: 80px;
    height: 80px;
    font-size: 2rem;
}

.details-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin: 0;
}

/* Forms */
.form-container {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
}

.form-group {
    flex: 1;
}

.form-group.full-width {
    width: 100%;
}

label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-color);
}

.form-input, .form-textarea, .form-select, .tracking-input {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    background-color: var(--bg-color);
    color: var(--text-color);
    transition: var(--transition);
}

.form-input:focus, .form-textarea:focus, .form-select:focus, .tracking-input:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
}

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%235f6368' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14 2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 20px center;
    background-size: 16px;
    padding-right: 50px;
}

.tracking-input {
    padding: 17px 25px;
    font-size: 1.1rem;
}

.tracking-form {
    display: flex;
    gap: 15px;
    margin-bottom: 30px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 25px;
}

.checkbox-group input {
    margin-top: 5px;
}

.checkbox-group label {
    font-weight: normal;
    margin-bottom: 0;
}

.checkbox-group a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-group a:hover {
    text-decoration: underline;
}

/* FAQ Accordion */
.faq-item {
    background-color: var(--bg-card);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.faq-item.active {
    border-color: var(--primary-color);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.1rem;
    color: var(--text-color);
}

.faq-question i {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    padding: 0 25px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-item.active .faq-answer {
    padding: 0 25px 25px;
    max-height: 500px;
}

/* Grid Systems */
.services-grid, .testimonials-grid, .blog-grid, .features-grid, 
.leadership-grid, .values-grid, .info-grid, .support-grid, 
.tools-grid, .details-grid, .offices-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.features-grid, .values-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

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

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

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 30px;
    align-items: center;
}

/* ============================================
   HOME PAGE SPECIFIC STYLES
   ============================================ */
/* Hero Slider */
.hero-slider {
    position: relative;
    height: 700px;
    overflow: hidden;
    margin-top: 0;
}

.hero-slides {
    display: flex;
    transition: transform 0.8s ease;
    height: 100%;
}

.hero-slide {
    min-width: 100%;
    position: relative;
    height: 100%;
}

.hero-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 100%);
    display: flex;
    align-items: center;
}

.slide-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    color: white;
    width: 100%;
}

.slide-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.slide-content h1 span {
    color: #8ab4f8;
}

.slide-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    max-width: 700px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.slider-nav {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 15px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: var(--transition);
}

.slider-dot.active {
    background-color: white;
    transform: scale(1.3);
}

.slider-arrows {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-arrow {
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-arrow:hover {
    background-color: rgba(0, 0, 0, 0.8);
}

/* Quick Tracking */
.quick-tracking {
    padding: 60px 0;
    background-color: var(--bg-secondary);
    position: relative;
    z-index: 5;
    margin-top: -50px;
    border-radius: 20px 20px 0 0;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.1);
}

.tracking-box {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.tracking-box h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--text-color);
}

.tracking-features {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.tracking-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
}

.tracking-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

/* About Section (Home) */
.about-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-text {
    flex: 1;
}

.about-image {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-image img {
    width: 100%;
    border-radius: 10px;
    box-shadow: var(--shadow);
    transition: transform 0.5s ease;
}

.about-image img:hover {
    transform: scale(1.03);
}

.about-image img:nth-child(1) {
    grid-column: 1 / span 2;
}

/* Video Section */
.video-section {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.video-container {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.video-placeholder {
    position: relative;
    background-color: var(--bg-secondary);
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-placeholder i {
    font-size: 5rem;
    color: var(--primary-color);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.video-placeholder i:hover {
    transform: scale(1.1);
}

.video-caption {
    padding: 25px;
    background-color: var(--bg-card);
    text-align: center;
}

.video-caption h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

/* Partners */
.partner-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    background-color: var(--bg-card);
    border-radius: 8px;
    padding: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.partner-logo:hover {
    transform: translateY(-5px);
    border-color: var(--primary-color);
}

.partner-logo img {
    max-width: 100%;
    max-height: 60px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: var(--transition);
}

.partner-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

/* Stats */
.stats {
    padding: 80px 0;
    background-color: var(--primary-light);
}

.stat-item h3 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-item p {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

/* ============================================
   ABOUT PAGE SPECIFIC STYLES
   ============================================ */
/* About Hero */
.about-hero-content {
    display: flex;
    align-items: center;
    gap: 50px;
}

.about-hero-text {
    flex: 1;
}

.about-hero-image {
    flex: 1;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-hero-image:hover img {
    transform: scale(1.05);
}

.about-hero-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-stat {
    text-align: center;
}

.hero-stat h3 {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 5px;
}

/* Mission & Vision */
.mission-vision {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.mv-card {
    padding: 50px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary-color);
}

/* Timeline */
.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    width: 4px;
    background-color: var(--primary-light);
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-content {
    flex: 1;
    padding: 30px;
    background-color: var(--bg-card);
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    position: relative;
}

.timeline-item:nth-child(odd) .timeline-content {
    margin-right: 40px;
}

.timeline-item:nth-child(even) .timeline-content {
    margin-left: 40px;
}

.timeline-content::before {
    content: '';
    position: absolute;
    top: 30px;
    width: 20px;
    height: 20px;
    background-color: var(--primary-color);
    border-radius: 50%;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -50px;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -50px;
}

.timeline-year {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* Leadership */
.leader-card {
    border-radius: 15px;
    overflow: hidden;
}

.leader-image {
    height: 300px;
    overflow: hidden;
}

.leader-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.leader-card:hover .leader-image img {
    transform: scale(1.05);
}

.leader-info {
    padding: 30px;
    text-align: center;
}

.leader-info .position {
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.leader-social {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.leader-social a {
    color: var(--text-secondary);
    font-size: 1.2rem;
    transition: var(--transition);
}

.leader-social a:hover {
    color: var(--primary-color);
}

/* Global Presence */
.global-presence {
    padding: 100px 0;
    background-color: var(--bg-secondary);
}

.presence-stat {
    text-align: center;
    padding: 30px;
    background-color: var(--bg-card);
    border-radius: 10px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.presence-stat h3 {
    font-size: 2.8rem;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.presence-stat p {
    color: var(--text-secondary);
    font-weight: 600;
    font-size: 1.1rem;
}

.map-placeholder {
    height: 400px;
    background-color: var(--bg-secondary);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    margin-top: 30px;
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.map-placeholder p {
    max-width: 400px;
}

/* About CTA */
.about-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--bg-color) 100%);
    text-align: center;
}

/* ============================================
   CONTACT PAGE SPECIFIC STYLES
   ============================================ */
.contact-info {
    padding: 100px 0;
    background-color: var(--bg-color);
}

.info-card {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Global Offices */
.office-card {
    border-radius: 15px;
    overflow: hidden;
}

.office-header {
    padding: 30px 30px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.office-flag {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.office-details {
    padding: 30px;
}

.office-detail {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
}

.office-detail i {
    color: var(--primary-color);
    font-size: 1.2rem;
    margin-top: 3px;
}

/* Live Support */
.live-support {
    padding: 100px 0;
    background-color: var(--bg-color);
}

/* Map Section */
.map-section {
    padding: 0 0 100px;
    background-color: var(--bg-secondary);
}

.map-container {
    background-color: var(--bg-card);
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.map-header {
    padding: 30px;
    text-align: center;
    border-bottom: 1px solid var(--border-color);
}

.map-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.map-header p {
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================
   TRACKING PAGE SPECIFIC STYLES
   ============================================ */
.tracking-form-section {
    padding: 60px 0;
    background-color: var(--bg-color);
}

.tracking-container {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 50px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    max-width: 900px;
    margin: 0 auto;
}

/* Tracking Results */
.tracking-results {
    padding: 100px 0;
    background-color: var(--bg-secondary);
    display: none;
}

.tracking-results.active {
    display: block;
}

.tracking-summary {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    margin-bottom: 40px;
}

.summary-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
    flex-wrap: wrap;
    gap: 20px;
}

.summary-header h3 {
    font-size: 1.8rem;
    color: var(--text-color);
}

.status-badge {
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.status-in-transit {
    background-color: #e8f0fe;
    color: var(--primary-color);
}

.status-delivered {
    background-color: #e6f4ea;
    color: var(--secondary-color);
}

.status-pending {
    background-color: #fef7e0;
    color: var(--warning-color);
}

.status-delayed {
    background-color: #fce8e6;
    color: var(--error-color);
}

.summary-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.summary-item {
    padding: 20px;
    background-color: var(--bg-secondary);
    border-radius: 10px;
}

.summary-item h4 {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.summary-item p {
    font-size: 1.2rem;
    color: var(--text-color);
    font-weight: 600;
}

/* Tracking Timeline */
.tracking-timeline {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
}

.timeline-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.timeline {
    position: relative;
    padding-left: 30px;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 15px;
    width: 2px;
    background-color: var(--border-color);
}

.timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: 5px;
    left: -15px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--border-color);
    z-index: 1;
}

.timeline-item.active::before {
    background-color: var(--primary-color);
    box-shadow: 0 0 0 3px var(--primary-light);
}

.timeline-item.completed::before {
    background-color: var(--secondary-color);
}

.timeline-content {
    background-color: var(--bg-secondary);
    border-radius: 10px;
    padding: 20px;
}

.timeline-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
    gap: 10px;
}

.timeline-header h4 {
    font-size: 1.1rem;
    color: var(--text-color);
}

.timeline-date {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.timeline-location {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.timeline-location i {
    color: var(--primary-color);
}

.timeline-description {
    color: var(--text-color);
    line-height: 1.6;
}

/* Shipment Details */
.shipment-details {
    padding: 100px 0;
    background-color: var(--bg-color);
    display: none;
}

.shipment-details.active {
    display: block;
}

.details-list {
    list-style: none;
}

.details-list li {
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
}

.details-list li:last-child {
    border-bottom: none;
}

.details-label {
    color: var(--text-secondary);
}

.details-value {
    color: var(--text-color);
    font-weight: 600;
    text-align: right;
}

/* Sample Tracking */
.sample-tracking {
    padding: 80px 0;
    background-color: var(--bg-secondary);
    text-align: center;
}

.sample-container {
    background-color: var(--bg-card);
    border-radius: 15px;
    padding: 40px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border-color);
    max-width: 800px;
    margin: 0 auto;
}

.sample-container h3 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    color: var(--text-color);
}

.tracking-samples {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.tracking-sample {
    background-color: var(--bg-secondary);
    border: 1px dashed var(--border-color);
    padding: 15px 25px;
    border-radius: 8px;
    font-family: monospace;
    font-size: 1.1rem;
    color: var(--text-color);
    cursor: pointer;
    transition: var(--transition);
}

.tracking-sample:hover {
    background-color: var(--primary-light);
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    background-color: var(--footer-bg);
    color: white;
    padding: 70px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 50px;
}

.footer-column h3 {
    font-size: 1.3rem;
    margin-bottom: 25px;
    color: white;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

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

.footer-links a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1200px) {
    .container {
        max-width: 100%;
        padding: 0 30px;
    }
}

@media (max-width: 992px) {
    .hero-slider {
        height: 600px;
    }
    
    .slide-content h1 {
        font-size: 2.8rem;
    }
    
    .slide-content p {
        font-size: 1.2rem;
    }
    
    .about-content, .about-hero-content {
        flex-direction: column;
        text-align: center;
    }
    
    .about-image, .about-hero-image {
        order: -1;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-content {
        margin-left: 80px !important;
        margin-right: 0 !important;
    }
    
    .timeline-content::before {
        left: -50px !important;
        right: auto !important;
    }
    
    .form-row, .tracking-form {
        flex-direction: column;
        gap: 0;
    }
    
    .form-group {
        margin-bottom: 25px;
    }
    
    .page-header h1 {
        font-size: 2.8rem;
    }
    
    .summary-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .mobile-nav {
        display: block;
    }
    
    .hero-slider {
        height: 500px;
    }
    
    .slide-content h1 {
        font-size: 2.2rem;
    }
    
    .slide-content p {
        font-size: 1.1rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .page-header {
        padding: 120px 0 80px;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .tracking-container, .tracking-summary, .tracking-timeline,
    .form-container, .tracking-box, .sample-container {
        padding: 30px 20px;
    }
    
    .timeline {
        padding-left: 20px;
    }
    
    .timeline::before {
        left: 10px;
    }
    
    .timeline-item {
        padding-left: 20px;
    }
    
    .timeline-item::before {
        left: -10px;
    }
    
    .timeline-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .header-actions .cta-button {
        display: none;
    }
    
    .video-placeholder {
        height: 300px;
    }
    
    .tracking-box h2 {
        font-size: 1.8rem;
    }
    
    .about-hero-text h2 {
        font-size: 2rem;
    }
    
    .mv-card {
        padding: 40px 30px;
    }
    
    .info-card, .support-card {
        padding: 30px 20px;
    }
    
    .hero-stat h3 {
        font-size: 2rem;
    }
    
    .presence-stat h3 {
        font-size: 2.2rem;
    }
    
    .tracking-samples {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 1.5rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .cta-button, .outline-button {
        padding: 12px 20px;
        font-size: 1rem;
    }
    
    .services-grid, .testimonials-grid, .blog-grid, .features-grid, 
    .leadership-grid, .values-grid, .info-grid, .support-grid, 
    .tools-grid, .details-grid, .offices-grid {
        grid-template-columns: 1fr;
    }
    
    .presence-stats, .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}