/* ============================================
   TRADETTE - Premium Company Profile Stylesheet
   The Bridge Between Europe and Asia
   ============================================ */

/* === ROOT VARIABLES === */
:root {
    /* Colors - Premium Blue & Gold Palette */
    --primary-color: #1e3a8a;
    --primary-light: #3b82f6;
    --primary-dark: #1e40af;
    --secondary-color: #d97706;
    --secondary-light: #fbbf24;
    --accent-color: #0ea5e9;
    
    /* Neutrals */
    --white: #ffffff;
    --light-bg: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gray-800: #1e293b;
    --gray-900: #0f172a;
    --dark-bg: #0a0f1e;
    
    /* Typography */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-display: 'Playfair Display', Georgia, serif;
    
    /* Spacing */
    --section-padding: 120px;
    --container-width: 1280px;
    
    /* Effects */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

/* === RESET & BASE === */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

body {
    font-family: var(--font-primary);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

#main-content {
    width: 100%;
    max-width: 100%;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* === TYPOGRAPHY === */
h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }

.lead {
    font-size: 1.25rem;
    line-height: 1.7;
    color: var(--gray-600);
}

/* === CONTAINER & LAYOUT === */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

.section-dark {
    background: linear-gradient(135deg, var(--gray-900) 0%, var(--gray-800) 100%);
    color: var(--white);
}

.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p {
    color: var(--white);
}

/* === SECTION HEADERS === */
.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--primary-color);
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.section-dark .section-label {
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-title {
    font-family: var(--font-display);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--gray-600);
}

.section-dark .section-subtitle {
    color: var(--gray-300);
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 0.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: var(--white);
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
}

/* === NAVIGATION === */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.nav-brand {
    flex: 1 1 auto;
    min-width: 0;
}

.logo {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

.logo-tagline {
    font-size: 0.625rem;
    font-weight: 500;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transition: width 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link.cta-link {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 0.625rem 1.5rem;
    border-radius: 0.5rem;
}

.nav-link.cta-link::after {
    display: none;
}

.nav-link.cta-link:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.375rem;
    width: 44px;
    height: 44px;
    padding: 0.5rem;
    flex-shrink: 0;
}

.nav-toggle span {
    width: 100%;
    height: 3px;
    background: var(--gray-800);
    border-radius: 2px;
    transition: var(--transition);
}

/* === HERO SECTION === */
.hero {
    min-height: 100vh;
    min-height: 100svh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    position: relative;
    width: 100%;
    padding-top: 80px;
    padding-bottom: 2rem;
    overflow: hidden;
}

.hero-background {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a0f1e 0%, #1e3a8a 50%, #3b82f6 100%);
}

.hero-bg-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.15;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(14, 165, 233, 0.2) 0%, transparent 50%);
}

.animated-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.orb-1 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.8), transparent);
    top: -10%;
    left: -10%;
    animation-delay: 0s;
}

.orb-2 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(14, 165, 233, 0.6), transparent);
    bottom: -10%;
    right: -10%;
    animation-delay: 7s;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.4), transparent);
    top: 50%;
    left: 50%;
    animation-delay: 14s;
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(50px, -50px) scale(1.1); }
    66% { transform: translate(-50px, 50px) scale(0.9); }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    justify-content: center;
    text-align: center;
}

.hero-text {
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2rem;
}

.title-main {
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.05em;
}

.title-subtitle {
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 400;
    color: var(--gray-200);
    font-family: var(--font-display);
}

.hero-description {
    font-size: 1.25rem;
    color: var(--gray-300);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary-light), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gray-400);
}

.stat-divider {
    width: 2px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--gray-600), transparent);
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.scroll-indicator {
    position: relative;
    align-self: center;
    margin-top: 2rem;
    text-align: center;
    color: var(--gray-400);
    z-index: 2;
}

.mouse {
    width: 24px;
    height: 40px;
    border: 2px solid var(--gray-400);
    border-radius: 12px;
    margin: 0 auto 0.5rem;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: var(--gray-400);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% { top: 8px; opacity: 1; }
    50% { top: 20px; opacity: 0.5; }
    100% { top: 8px; opacity: 1; }
}

.scroll-indicator p {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

/* === ABOUT SECTION === */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-intro h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
}

.about-description {
    margin: 2rem 0;
}

.about-description p {
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.mission-box {
    display: flex;
    align-items: center;
    align-self: flex-start;
    gap: 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 1.5rem;
    border-radius: 1rem;
    color: var(--white);
    margin-top: 2rem;
}

.vision-box {
    background: linear-gradient(135deg, #0f766e, #14b8a6);
}

.mission-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

.mission-content h4 {
    color: var(--white);
    margin-top: 0;
    margin-bottom: 0.5rem;
}

.mission-content p {
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.mission-video {
    margin-top: 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    padding: 1.25rem;
    transition: var(--transition);
}

.mission-video:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.mission-video h4 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 1.125rem;
}

.video-embed {
    position: relative;
    width: 100%;
    height: 220px;
    border-radius: 0.75rem;
    overflow: hidden;
    box-shadow: var(--shadow);
    background: var(--gray-900);
}

.video-embed iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.mission-box,
.mission-video,
.feature-card {
    min-height: auto;
}

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 1rem;
}

.feature-card h4 {
    margin-bottom: 0.75rem;
}

.feature-card p {
    color: var(--gray-600);
}

.partner-showcase {
    margin-top: 4rem;
    overflow: hidden;
}

.partner-showcase-header {
    margin-bottom: 1.75rem;
    text-align: center;
}

.partner-showcase-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--gray-900);
}

.partner-marquee {
    position: relative;
    overflow: hidden;
    mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, black 10%, black 90%, transparent);
}

.partner-marquee-track {
    display: flex;
    align-items: center;
    width: max-content;
    gap: 1rem;
    animation: partner-marquee 24s linear infinite;
}

.partner-marquee:hover .partner-marquee-track {
    animation-play-state: paused;
}

.partner-logo-card {
    min-width: 220px;
    min-height: 96px;
    padding: 1.25rem 1.5rem;
    border-radius: 1.1rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
}

.partner-logo-image {
    width: 100%;
    max-width: 160px;
    max-height: 52px;
    object-fit: contain;
    object-position: center;
    filter: saturate(1.05);
}

@keyframes partner-marquee {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(calc(-50% - 0.5rem));
    }
}

@media (prefers-reduced-motion: reduce) {
    .partner-marquee-track {
        animation: none;
    }
}

/* === MILESTONES / TIMELINE === */
.milestones-section {
    padding: 56px 0;
}

.milestones-section .section-header {
    margin-bottom: 1.75rem;
}

.timeline-shell {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
    max-width: 1120px;
    margin: 0 auto;
}

.timeline-nav {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.22);
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition);
}

.timeline-nav:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: rgba(255, 255, 255, 0.4);
}

.timeline {
    display: flex;
    align-items: stretch;
    --timeline-gap: 0.85rem;
    gap: var(--timeline-gap);
    max-width: 100%;
    margin: 0;
    padding: 0.2rem 0.2rem 0.6rem;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-padding-inline: 0.2rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.timeline::-webkit-scrollbar {
    display: none;
}

.timeline::before {
    content: none;
}

.timeline-item {
    flex: 0 0 calc((100% - (var(--timeline-gap) * 2)) / 3);
    display: flex;
    align-items: stretch;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    padding-left: 0;
    margin-bottom: 0;
}

.timeline-marker {
    display: none;
}

.timeline-item-current .timeline-marker {
    animation: none;
}

@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(251, 191, 36, 0.4); }
    50% { box-shadow: 0 0 0 8px rgba(251, 191, 36, 0.2); }
}

.timeline-content {
    background: rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding: 0.9rem 1rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-left: 3px solid var(--secondary-light);
    height: 100%;
    min-height: 165px;
}

.timeline-year {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    background: rgba(251, 191, 36, 0.2);
    color: var(--gray-900);
    padding: 0.35rem 0.6rem;
    border-radius: 999px;
    margin-bottom: 0.5rem;
}

.timeline-content h4 {
    margin-bottom: 0.4rem;
    font-size: 1rem;
}

.timeline-content p {
    color: var(--gray-300);
    font-size: 0.9rem;
    line-height: 1.45;
}

/* === SERVICES SECTION === */
.services-section {
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
}

.services-grid .service-card {
    grid-column: auto;
}

.service-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    border-left: 4px solid transparent;
    position: relative;
    transition: var(--transition);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    border-left-color: var(--primary-light);
}

.service-card.large {
    grid-column: 1 / -1;
}

.service-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
}

.service-header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 0.9rem;
    padding-right: 3.5rem;
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--white);
    flex-shrink: 0;
}

.service-card h3 {
    margin-bottom: 0;
    color: var(--primary-color);
    font-size: 1.5rem;
    line-height: 1.25;
}

.service-intro {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    line-height: 1.6;
}

.service-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--gray-100);
}

.service-column h5 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
    color: var(--gray-800);
    font-size: 1rem;
}

.service-column h5 i {
    color: var(--primary-light);
}

.service-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.service-column ul li {
    color: var(--gray-600);
    padding-left: 1.5rem;
    position: relative;
}

.service-column ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-light);
    font-weight: bold;
}

.service-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0;
}

.service-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-700);
    line-height: 1.5;
    font-size: 0.9375rem;
}

.service-list li i {
    color: #10b981;
    font-size: 1rem;
    margin-top: 0.125rem;
}

/* === SUPPLY CHAIN SECTION === */
.supply-chain-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.supply-chain-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    transition: var(--transition);
}

.supply-chain-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.sc-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.supply-chain-card h4 {
    margin-bottom: 1rem;
}

.supply-chain-card p {
    color: var(--gray-300);
}

.supply-chain-visual {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 3rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.sc-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.flow-step {
    text-align: center;
}

.flow-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.flow-label {
    font-weight: 600;
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
}

.flow-arrow {
    font-size: 1.5rem;
    color: var(--secondary-light);
}

/* === WHY TRD SECTION === */
.why-section {
    background: var(--light-bg);
}

.why-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.expertise-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2rem;
}

.expertise-grid .expertise-card {
    grid-column: span 2;
}

.expertise-grid .expertise-card:nth-child(4) {
    grid-column: 2 / span 2;
}

.expertise-grid .expertise-card:nth-child(5) {
    grid-column: 4 / span 2;
}

.expertise-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: var(--transition);
}

.expertise-card:hover {
    transform: translateY(-5px) rotateY(5deg);
    box-shadow: var(--shadow-2xl);
}

.expertise-card.together {
    grid-column: 1 / -1;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
}

.expertise-card.together h4,
.expertise-card.together p {
    color: var(--white);
}

.expertise-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
}

.expertise-card.together .expertise-icon {
    background: rgba(255, 255, 255, 0.2);
}

.expertise-card h4 {
    margin-bottom: 1rem;
}

.expertise-card p {
    color: var(--gray-600);
}

/* === TEAM SECTION === */
.team-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.team-member {
    background: var(--white);
    border-radius: 1.5rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    border: 1px solid var(--gray-200);
    border-left: 4px solid transparent;
    display: flex;
    flex-direction: column;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    border-left-color: var(--primary-light);
}

.team-photo {
    width: 100%;
    height: 250px;
    object-fit: contain;
    object-position: center;
    display: block;
}

.team-info {
    padding: 1.4rem 1.4rem 1.5rem;
    text-align: center;
}

.team-name {
    font-size: 1.5rem;
    font-family: var(--font-heading);
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

.team-role {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}

.team-location {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.team-location i {
    color: var(--accent-color);
}

.team-bio {
    color: var(--gray-600);
    font-size: 0.92rem;
    line-height: 1.5;
    margin-bottom: 1rem;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
}

.expertise-tag {
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    color: var(--white);
    padding: 0.4rem 1rem;
    border-radius: 2rem;
    font-size: 0.85rem;
    font-weight: 500;
}

.team-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    background: transparent;
    padding: 0;
    border-radius: 0;
    margin-bottom: 2rem;
}

.team-stat {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--primary-light);
    border-radius: 0.9rem;
    padding: 1.1rem 1rem;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.team-stat:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-left-color: var(--secondary-color);
}

.team-stat:hover .team-stat-number {
    color: var(--secondary-color);
}

.team-stat-number {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 0.35rem;
    display: block;
    line-height: 1.1;
}

.team-stat-label {
    font-size: 0.82rem;
    color: var(--gray-600);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

/* === ADVANTAGES SECTION === */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.advantage-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 2.5rem;
    border-radius: 1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: var(--transition);
}

.advantage-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
}

.advantage-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.advantage-card h4 {
    margin-bottom: 1rem;
}

.advantage-card p {
    color: var(--gray-300);
}

/* === CONTACT SECTION === */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-card {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.contact-icon {
    width: 50px;
    height: 50px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-details h4 {
    margin-bottom: 0.5rem;
    font-size: 1.125rem;
}

.contact-details p {
    color: var(--gray-600);
    font-size: 0.9375rem;
}

.contact-details a {
    color: var(--primary-color);
    text-decoration: underline;
}

.contact-details a:hover {
    color: var(--primary-light);
}

.contact-placeholder {
    color: var(--gray-400) !important;
    font-style: italic;
}

.global-presence {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    padding: 2rem;
    border-radius: 1rem;
    color: var(--white);
}

.global-presence h4 {
    color: var(--white);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.countries {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.country-tag {
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.contact-form-wrapper {
    position: relative;
}

.contact-form {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--gray-200);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--gray-800);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid var(--gray-200);
    border-radius: 0.5rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-success {
    display: none;
    text-align: center;
    padding: 3rem;
    background: var(--white);
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.form-success.active {
    display: block;
}

.form-success i {
    font-size: 4rem;
    color: #10b981;
    margin-bottom: 1rem;
}

.form-success h4 {
    color: #10b981;
    margin-bottom: 0.5rem;
}

/* === FOOTER === */
.footer {
    background: linear-gradient(135deg, var(--gray-900), var(--gray-800));
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 4rem;
    margin-bottom: 3rem;
}

.footer-brand h3 {
    color: var(--white);
    font-size: 1.75rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    margin-bottom: 1.5rem;
    color: var(--gray-400);
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.footer-column h5 {
    color: var(--white);
    margin-bottom: 1rem;
}

.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-column a {
    color: var(--gray-400);
    font-size: 0.9375rem;
}

.footer-column a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.footer-bottom a {
    color: var(--gray-400);
}

.footer-bottom a:hover {
    color: var(--primary-light);
}

/* === GLOBAL NETWORK SECTION === */
.global-network-section {
    background: var(--white);
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.network-card {
    background: var(--white);
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.network-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.network-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.network-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.network-card:hover .network-image img {
    transform: scale(1.1);
}

.network-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0,0,0,0.7) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.network-flag {
    font-size: 3rem;
    text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.network-info {
    padding: 1.5rem;
}

.network-info h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.network-location {
    color: var(--gray-600);
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.network-description {
    color: var(--gray-700);
    margin-bottom: 1rem;
    line-height: 1.6;
}

.network-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag {
    display: inline-block;
    padding: 0.375rem 0.875rem;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    color: var(--white);
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Trade Routes Section */
.trade-routes-section {
    margin-top: 4rem;
    margin-bottom: 3rem;
    text-align: center;
}

.trade-routes-section h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary-color);
}

.routes-image-container {
    background: var(--white);
    padding: 2rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
}

.routes-map {
    width: 100%;
    height: auto;
    border-radius: 0.5rem;
    margin-bottom: 1rem;
}

.routes-caption {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: 0.5rem;
}

.routes-caption i {
    color: var(--primary-light);
    font-size: 1.5rem;
}

.routes-caption p {
    margin: 0;
    color: var(--gray-700);
    font-weight: 500;
}

/* Shipping Showcase */
.shipping-showcase {
    margin-top: 4rem;
}

.shipping-images {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.shipping-img-card {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.shipping-img-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

.shipping-img-card img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.cargo-card img {
    object-position: center;
}

.img-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent);
    color: var(--white);
    padding: 2rem 1.5rem 1.5rem;
    font-weight: 600;
    font-size: 1.125rem;
}

/* === SCROLL TO TOP === */
.scroll-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 998;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
}

/* === FLOATING WHATSAPP ACTION === */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 6rem;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #10b981, #059669);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    color: var(--white);
    box-shadow: var(--shadow-2xl);
    cursor: pointer;
    transition: var(--transition);
    animation: pulse-ai 2s infinite;
    text-decoration: none;
}

@keyframes pulse-ai {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(16, 185, 129, 0);
    }
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.typing-dots span:nth-child(2) {
    animation-delay: 0.2s;
}

.typing-dots span:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes typing {
    0%, 60%, 100% {
        opacity: 0.3;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-10px);
    }
}

/* === ENHANCED SERVICES SECTION === */
.services-detailed-section {
    background: var(--light-bg);
}

.services-process-flow {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.process-card {
    background: var(--white);
    border-radius: 1rem;
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    position: relative;
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.process-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-2xl);
    border-left-color: var(--primary-light);
}

.process-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: var(--gray-100);
    line-height: 1;
}

.process-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.25rem;
    color: var(--white);
    margin-bottom: 1.5rem;
}

.process-content h3 {
    margin-bottom: 0.75rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.process-desc {
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.process-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.process-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: var(--gray-700);
    font-size: 0.9375rem;
}

.process-list i {
    color: #10b981;
    margin-top: 0.125rem;
    flex-shrink: 0;
}

/* Enhanced Process Diagram */
.enhanced-process-diagram {
    background: var(--white);
    padding: 3rem;
    border-radius: 1rem;
    box-shadow: var(--shadow-xl);
    text-align: center;
}

.enhanced-process-diagram h3 {
    font-size: 2rem;
    margin-bottom: 2.5rem;
    color: var(--primary-color);
}

.diagram-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.diagram-step {
    text-align: center;
}

.diagram-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    margin: 0 auto 0.75rem;
    box-shadow: var(--shadow-lg);
}

.diagram-label {
    font-weight: 600;
    color: var(--gray-700);
    font-size: 0.9375rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.diagram-arrow {
    font-size: 1.5rem;
    color: var(--primary-light);
}

.diagram-caption {
    color: var(--gray-600);
    font-size: 1.125rem;
    font-weight: 500;
    margin: 0;
}

/* === TEAM SECTION === */
.team-section {
    background: var(--white);
    border-radius: 0;
    box-shadow: none;
    text-align: center;
}

.team-intro {
    margin-bottom: 3rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.team-intro h3 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    color: var(--gray-900);
}

.team-intro .lead {
    font-size: 1.125rem;
    font-weight: 400;
    color: var(--gray-600);
    line-height: 1.7;
}

.team-intro .text-highlight {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    background: linear-gradient(135deg, var(--primary-light), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.team-grid .team-member {
    grid-column: span 2;
}

.team-grid .team-member:nth-child(4) {
    grid-column: 2 / span 2;
}

.team-grid .team-member:nth-child(5) {
    grid-column: 4 / span 2;
}

.team-card {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.team-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--primary-light);
}

.team-image-placeholder {
    position: relative;
    margin-bottom: 1.5rem;
}

.team-avatar {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-lg);
}

.team-flag {
    font-size: 1.5rem;
    margin-top: 0.5rem;
}

.team-info h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
}

.team-title {
    color: var(--gray-600);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-bio {
    color: var(--gray-700);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.team-expertise {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.expertise-tag {
    background: var(--gray-100);
    color: var(--primary-color);
    padding: 0.375rem 0.875rem;
    border-radius: 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.team-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.team-social a {
    width: 40px;
    height: 40px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-600);
    transition: var(--transition);
}

.team-social a:hover {
    background: var(--primary-light);
    color: var(--white);
    transform: translateY(-3px);
}

.team-cta {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #eff6ff, #f8fafc);
    border: 1px solid var(--gray-200);
    border-left: 4px solid var(--primary-light);
    border-radius: 0.9rem;
    color: var(--gray-800);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
}

.team-cta-text {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0;
    color: var(--gray-800);
}

.team-cta .btn {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    color: var(--white);
    padding: 0.8rem 1.4rem;
}

.team-cta .btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
}

/* === AOS ANIMATIONS === */
[data-aos] {
    opacity: 0;
    transition-property: transform, opacity;
}

[data-aos].aos-animate {
    opacity: 1;
}

[data-aos="fade-up"] {
    transform: translateY(50px);
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
}

[data-aos="fade-right"] {
    transform: translateX(-50px);
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
}

[data-aos="fade-left"] {
    transform: translateX(50px);
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
}

[data-aos="zoom-in"] {
    transform: scale(0.8);
}

[data-aos="zoom-in"].aos-animate {
    transform: scale(1);
}

[data-aos="flip-left"] {
    transform: perspective(1000px) rotateY(-15deg);
}

[data-aos="flip-left"].aos-animate {
    transform: perspective(1000px) rotateY(0);
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .container,
    .nav-container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .section-header {
        margin-bottom: 3rem;
    }
    
    .expertise-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .expertise-grid .expertise-card,
    .expertise-grid .expertise-card:nth-child(4),
    .expertise-grid .expertise-card:nth-child(5),
    .expertise-card.together {
        grid-column: auto;
    }

    .about-grid,
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .partner-showcase {
        margin-top: 3rem;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .services-grid .service-card,
    .services-grid .service-card:nth-child(4),
    .services-grid .service-card:nth-child(5) {
        grid-column: auto;
    }

    .team-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .team-grid .team-member,
    .team-grid .team-member:nth-child(4),
    .team-grid .team-member:nth-child(5) {
        grid-column: auto;
    }

    .service-details {
        grid-template-columns: 1fr 1fr;
    }
    
    .network-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
    
    .shipping-images {
        grid-template-columns: 1fr 1fr;
    }

    .video-embed {
        height: 260px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }

    html {
        font-size: 15px;
    }

    .nav-container {
        display: grid;
        grid-template-columns: minmax(0, 1fr) auto;
        gap: 0.75rem;
    }

    .nav-brand {
        max-width: 100%;
    }
    
    .nav-toggle {
        display: flex;
        margin-left: auto;
        justify-self: end;
    }

    [data-aos="fade-right"],
    [data-aos="fade-left"] {
        transform: translateY(36px);
    }

    [data-aos="fade-right"].aos-animate,
    [data-aos="fade-left"].aos-animate {
        transform: translateY(0);
    }
    
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100dvh - 80px);
        background: var(--white);
        flex-direction: column;
        align-items: flex-start;
        gap: 1.25rem;
        padding: 1.5rem 1.5rem 2rem;
        box-shadow: var(--shadow-lg);
        transition: left 0.3s;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .nav-menu.active {
        left: 0;
    }

    .nav-link,
    .nav-link.cta-link {
        font-size: 1rem;
    }

    .nav-link.cta-link {
        width: 100%;
        justify-content: center;
        text-align: center;
    }
    
    .nav-toggle.active span:nth-child(1) {
        transform: rotate(45deg) translate(5px, 5px);
    }
    
    .nav-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    
    .nav-toggle.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        padding-top: 96px;
        padding-bottom: 3rem;
        justify-content: center;
    }

    .hero-text {
        max-width: 100%;
    }

    .hero-title {
        gap: 0.75rem;
        margin-bottom: 1.5rem;
    }

    .title-main {
        font-size: clamp(2.6rem, 12vw, 4.5rem);
        letter-spacing: 0.03em;
    }

    .title-subtitle {
        font-size: clamp(1.1rem, 4.5vw, 1.5rem);
        line-height: 1.35;
    }

    .hero-description {
        font-size: 1.0625rem;
        line-height: 1.65;
        margin-bottom: 2rem;
    }
    
    .hero-stats {
        width: 100%;
        gap: 1.25rem;
        margin-bottom: 2rem;
    }

    .stat-divider {
        display: none;
    }

    .stat-item {
        min-width: 96px;
    }

    .stat-number {
        font-size: 2.4rem;
    }

    .hero-cta {
        width: 100%;
    }

    .scroll-indicator {
        display: none;
    }
    
    .timeline {
        gap: 0.75rem;
        padding: 0.1rem 0.1rem 0.5rem;
    }
    
    .timeline-item {
        flex: 0 0 82vw;
        padding-left: 0;
    }

    .timeline-shell {
        grid-template-columns: 1fr;
    }

    .timeline-nav {
        display: none;
    }

    .mission-box {
        gap: 1rem;
        padding: 1.25rem;
    }

    .partner-logo-card {
        min-width: 180px;
        min-height: 88px;
        padding: 1rem 1.25rem;
    }

    .mission-icon {
        font-size: 2rem;
    }

    .service-card {
        padding: 2rem;
    }

    .service-icon {
        width: 68px;
        height: 68px;
        font-size: 1.9rem;
    }

    .service-number {
        font-size: 2.5rem;
    }
    
    .service-card.large {
        grid-column: auto;
    }
    
    .service-details {
        grid-template-columns: 1fr;
    }
    
    .sc-flow {
        flex-direction: column;
    }
    
    .flow-arrow {
        transform: rotate(90deg);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-links {
        grid-template-columns: 1fr;
    }
    
    .network-grid,
    .shipping-images {
        grid-template-columns: 1fr;
    }
    
    .network-image {
        height: 220px;
    }

    .routes-image-container {
        padding: 1.25rem;
    }

    .routes-caption {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
    }
    
    .services-process-flow {
        grid-template-columns: 1fr;
    }
    
    .diagram-container {
        flex-direction: column;
    }
    
    .diagram-arrow {
        transform: rotate(90deg);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }

    .mission-box,
    .mission-video,
    .feature-card {
        min-height: auto;
    }

    .contact-card {
        align-items: flex-start;
        gap: 1rem;
        padding: 1.25rem;
    }

    .contact-details,
    .contact-details p,
    .contact-details a,
    .team-cta-text,
    .country-tag {
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .contact-form {
        padding: 1.5rem;
    }
    
    .whatsapp-float {
        bottom: calc(1rem + env(safe-area-inset-bottom, 0px));
        right: calc(1rem + env(safe-area-inset-right, 0px));
        width: 56px;
        height: 56px;
        font-size: 1.5rem;
    }

    .scroll-top {
        bottom: calc(5.25rem + env(safe-area-inset-bottom, 0px));
        right: calc(1rem + env(safe-area-inset-right, 0px));
        width: 46px;
        height: 46px;
        font-size: 1.1rem;
    }

    .scroll-top.visible {
        transform: translateY(0);
    }

}

@media (max-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }

    .nav-container {
        padding: 0.875rem calc(0.75rem + env(safe-area-inset-right, 0px)) 0.875rem calc(0.75rem + env(safe-area-inset-left, 0px));
    }

    .logo-text {
        font-size: 1.2rem;
    }

    .logo-tagline {
        font-size: 0.55rem;
        letter-spacing: 0.08em;
    }
    
    .hero-cta {
        flex-direction: column;
    }

    .hero-stats {
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1rem;
    }

    .stat-item {
        min-width: 0;
    }

    .stat-item:last-child {
        grid-column: 1 / -1;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }

    .btn,
    .btn-large {
        padding: 0.95rem 1.2rem;
        font-size: 1rem;
    }

    .section-header {
        margin-bottom: 2.25rem;
    }

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

    .about-grid,
    .contact-content {
        gap: 2rem;
    }

    .partner-logo-card {
        min-width: 160px;
    }

    .partner-logo-image {
        max-width: 130px;
        max-height: 44px;
    }

    .timeline {
        flex-direction: row;
        gap: 0.75rem;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding-inline: 8%;
        padding: 0 8% 0.5rem;
        max-width: 100%;
    }

    .timeline-item {
        flex: 0 0 84%;
        max-width: 84%;
        scroll-snap-align: start;
    }

    .mission-box {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-card,
    .team-cta {
        flex-direction: column;
        align-items: flex-start;
    }

    .team-cta .btn {
        width: 100%;
        justify-content: center;
    }

    .feature-card,
    .service-card,
    .contact-form,
    .routes-image-container,
    .global-presence {
        padding: 1.25rem;
    }

    .service-header {
        padding-right: 2.5rem;
    }

    .service-number {
        top: 1rem;
        right: 1rem;
        font-size: 2rem;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
    
    .expertise-grid,
    .advantages-grid,
    .supply-chain-grid,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .network-grid,
    .shipping-images {
        gap: 1.25rem;
    }

    .network-grid {
        grid-template-columns: 1fr;
    }

    .network-image,
    .shipping-img-card img {
        height: 200px;
    }

    .img-caption {
        padding: 1.5rem 1rem 1rem;
        font-size: 1rem;
    }

    .team-photo {
        height: 220px;
    }

    .footer {
        padding-top: 3rem;
    }

    .footer-content {
        gap: 2rem;
    }

    .video-embed {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .nav-container {
        padding: 0.75rem calc(0.625rem + env(safe-area-inset-right, 0px)) 0.75rem calc(0.625rem + env(safe-area-inset-left, 0px));
        gap: 0.5rem;
    }

    .whatsapp-float {
        right: calc(0.75rem + env(safe-area-inset-right, 0px));
    }

    .scroll-top {
        right: calc(0.75rem + env(safe-area-inset-right, 0px));
    }

    .hero {
        padding-top: 88px;
    }

    .nav-toggle {
        width: 40px;
        height: 40px;
        padding: 0.375rem;
    }

    .nav-container {
        gap: 0.5rem;
    }

    .logo-text {
        font-size: 1.1rem;
        letter-spacing: 0.03em;
    }

    .logo-tagline {
        font-size: 0.5rem;
        letter-spacing: 0.06em;
    }

    .timeline-item {
        flex: 0 0 86%;
        max-width: 86%;
    }

    .partner-logo-card {
        min-width: 140px;
        padding: 0.875rem 1rem;
    }

    .partner-logo-image {
        max-width: 116px;
        max-height: 40px;
    }

    .service-card,
    .feature-card,
    .contact-form,
    .routes-image-container,
    .global-presence,
    .contact-card {
        padding: 1rem;
    }

    .service-header {
        padding-right: 0;
    }

    .service-number {
        position: static;
        display: inline-block;
        margin-bottom: 0.5rem;
        font-size: 1.5rem;
    }

    .network-image,
    .shipping-img-card img,
    .team-photo {
        height: 180px;
    }

    .video-embed {
        height: 190px;
    }
}
