﻿/* Premium B2B Logistics CSS */
:root {
    --bg-base: #0f172a; /* Deep Slate */
    --bg-panel: rgba(30, 41, 59, 0.6);
    --primary-blue: #3b82f6;
    --primary-teal: #14b8a6;
    --text-main: #f8fafc;
    --text-muted: #94a3b8;
    --glass-border: rgba(59, 130, 246, 0.2);
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: var(--font-body);
    background-color: var(--bg-base);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    scroll-behavior: smooth;
}

/* Unique Element: Animated Logistics Network */
.logistics-network-bg { position: fixed; top: 0; left: 0; width: 100vw; height: 100vh; z-index: -1; overflow: hidden; background: linear-gradient(135deg, #0f172a, #020617); }
.network-grid { position: absolute; width: 200%; height: 200%; top: -50%; left: -50%; background-image: radial-gradient(rgba(20, 184, 166, 0.1) 2px, transparent 2px); background-size: 60px 60px; transform: perspective(1000px) rotateX(60deg) translateY(-100px); animation: moveGrid 30s linear infinite; }
@keyframes moveGrid { 100% { transform: perspective(1000px) rotateX(60deg) translateY(60px); } }
.routing-line { position: absolute; background: linear-gradient(90deg, transparent, var(--primary-teal), transparent); height: 2px; filter: drop-shadow(0 0 8px var(--primary-teal)); }
.line-1 { width: 40vw; top: 40%; left: -40vw; transform: rotate(20deg); animation: shoot 8s infinite linear; }
.line-2 { width: 50vw; top: 70%; right: -50vw; transform: rotate(-15deg); animation: shootRev 12s infinite linear; }
@keyframes shoot { 100% { left: 120vw; } }
@keyframes shootRev { 100% { right: 120vw; } }
.glowing-node { position: absolute; border-radius: 50%; filter: blur(100px); opacity: 0.3; }
.node-a { width: 45vw; height: 45vw; background: var(--primary-blue); top: -10%; left: -10%; animation: pulse 10s alternate infinite; }
.node-b { width: 35vw; height: 35vw; background: var(--primary-teal); bottom: -15%; right: -5%; animation: pulse 14s alternate-reverse infinite; }
@keyframes pulse { 0% { transform: scale(1); opacity: 0.2; } 100% { transform: scale(1.2); opacity: 0.4; } }

/* Typography */
h1, h2, h3, .brand-text { font-family: var(--font-heading); font-weight: 800; letter-spacing: -0.5px; }
a { color: var(--text-main); text-decoration: none; transition: 0.3s; }
a:hover { color: var(--primary-teal); }
.text-center { text-align: center; }
.text-gradient { background: linear-gradient(90deg, var(--primary-teal), var(--primary-blue)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* Structural */
.container { max-width: 1200px; margin: 0 auto; padding: 0 5%; }
.glass-panel { background: var(--bg-panel); backdrop-filter: blur(24px); -webkit-backdrop-filter: blur(24px); border: 1px solid var(--glass-border); border-radius: 16px; box-shadow: 0 20px 40px rgba(0,0,0,0.5); }

/* Buttons & Tags */
.badge-tag { display: inline-block; padding: 0.5rem 1.2rem; background: rgba(20, 184, 166, 0.1); border: 1px solid var(--primary-teal); color: var(--primary-teal); border-radius: 50px; font-size: 0.85rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 2rem; }
.btn-primary { display: inline-flex; align-items: center; justify-content: center; gap: 10px; background: linear-gradient(135deg, var(--primary-blue), var(--primary-teal)); color: #fff !important; padding: 1.2rem 2.5rem; border-radius: 8px; font-weight: 700; font-family: var(--font-body); border: none; cursor: pointer; transition: 0.4s; box-shadow: 0 8px 25px rgba(20, 184, 166, 0.3); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 12px 30px rgba(20, 184, 166, 0.5); }
.btn-ghost { padding: 0.8rem 1.8rem; border: 1px solid var(--primary-blue); color: var(--text-main); border-radius: 8px; font-weight: 600; transition: 0.3s; }
.btn-ghost:hover { background: var(--primary-blue); color: #fff; }
.btn-block { width: 100%; font-size: 1.1rem; }

/* Header */
.glass-navbar { position: fixed; width: 100%; top: 0; z-index: 1000; border-radius: 0; border-top: none; border-left: none; border-right: none; background: rgba(15, 23, 42, 0.85); }
.nav-wrapper { display: flex; justify-content: space-between; align-items: center; height: 90px; }
.brand { display: flex; align-items: center; gap: 12px; font-size: 2rem; }
.dot { color: var(--primary-teal); }
.desktop-menu { display: flex; gap: 3rem; align-items: center; }
.desktop-menu a { font-size: 1rem; font-weight: 500; }

/* Global Section */
section { padding: 9rem 0; }
.section-heading { font-size: clamp(2.2rem, 4.5vw, 3.5rem); margin-bottom: 1.5rem; line-height: 1.15; }
.section-subheading { color: var(--text-muted); font-size: 1.15rem; margin-bottom: 4rem; }

/* Hero */
.hero { display: flex; align-items: center; min-height: 100vh; padding-top: 130px; }
.hero-card { padding: 5rem; max-width: 850px; }
.hero-title { font-size: clamp(3rem, 6vw, 5rem); line-height: 1.05; margin-bottom: 1.5rem; }
.hero-desc { font-size: 1.2rem; color: var(--text-muted); margin-bottom: 3rem; line-height: 1.8; max-width: 750px; }

/* Process */
.process-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2.5rem; text-align: left; }
.process-step { padding: 3rem 2.5rem; position: relative; transition: 0.3s; overflow: hidden; border-top: 4px solid transparent; }
.process-step:hover { border-top-color: var(--primary-teal); transform: translateY(-8px); }
.step-indicator { position: absolute; top: 10px; right: 20px; font-family: var(--font-heading); font-size: 5rem; font-weight: 900; color: rgba(255,255,255,0.03); line-height: 1; }
.process-step h3 { font-size: 1.4rem; color: var(--primary-blue); margin-bottom: 1rem; position: relative; z-index: 2; }
.process-step p { color: var(--text-muted); position: relative; z-index: 2; }

/* Features */
.feature-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: center; }
.image-box { position: relative; padding: 1.5rem; }
.image-box img { width: 100%; border-radius: 12px; display: block; filter: contrast(1.1); }
.floating-stat { position: absolute; bottom: -20px; right: -20px; background: #020617; border: 1px solid var(--primary-teal); padding: 1.5rem 2rem; border-radius: 12px; display: flex; align-items: center; gap: 15px; box-shadow: 0 15px 30px rgba(0,0,0,0.8); }
.floating-stat i { font-size: 2.5rem; color: var(--primary-teal); }
.stat-value { display: block; font-size: 2.2rem; font-weight: 900; font-family: var(--font-heading); line-height: 1; }
.stat-label { font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }
.benefits-list { list-style: none; margin-top: 2.5rem; }
.benefits-list li { display: flex; gap: 20px; margin-bottom: 2.5rem; }
.icon-wrap { background: rgba(20, 184, 166, 0.1); border: 1px solid var(--glass-border); width: 65px; height: 65px; border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.icon-wrap i { font-size: 1.6rem; color: var(--primary-teal); }
.benefit-text h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.benefit-text p { color: var(--text-muted); }

/* Form */
.form-container { display: grid; grid-template-columns: 1fr 1.2fr; gap: 4rem; padding: 4.5rem; }
.trust-marks { display: flex; flex-direction: column; gap: 1rem; margin-top: 2.5rem; color: var(--primary-teal); font-size: 0.95rem; font-weight: 600; }
.input-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.input-group { margin-bottom: 1.5rem; }
label { display: block; margin-bottom: 0.5rem; font-size: 0.85rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; }
input { width: 100%; padding: 1.2rem; background: rgba(0,0,0,0.4); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: white; font-family: var(--font-body); font-size: 1rem; transition: 0.3s; }
input:focus { outline: none; border-color: var(--primary-teal); background: rgba(0,0,0,0.7); box-shadow: 0 0 15px rgba(20, 184, 166, 0.15); }
.checkbox-group { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 2.5rem; font-size: 0.85rem; color: var(--text-muted); }
.checkbox-group input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--primary-teal); }
.checkbox-group a { color: var(--primary-teal); text-decoration: underline; }
.success-box { text-align: center; padding: 2.5rem; border: 1px solid var(--primary-teal); border-radius: 8px; background: rgba(20, 184, 166, 0.1); color: var(--primary-teal); margin-top: 1rem; }

/* About */
.about-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 5rem; align-items: center; }
.about-text { padding: 4rem; }
.about-text p { margin-bottom: 1.5rem; color: var(--text-muted); font-size: 1.05rem; }
.img-rounded { width: 100%; border-radius: 16px; border: 1px solid var(--glass-border); opacity: 0.9; }

/* FAQ */
.accordion { max-width: 850px; margin: 0 auto; display: flex; flex-direction: column; gap: 1.2rem; }
.faq-item { padding: 1.5rem 2.5rem; cursor: pointer; border-left: 3px solid transparent; }
.faq-item:hover { border-left-color: var(--primary-teal); }
.faq-item summary { font-weight: 600; font-size: 1.15rem; list-style: none; display: flex; justify-content: space-between; align-items: center; outline: none; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '\f067'; font-family: 'FontAwesome'; color: var(--primary-teal); transition: 0.3s; }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-answer { margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); color: var(--text-muted); }

/* Footer */
.site-footer { border-radius: 0; border-bottom: none; border-left: none; border-right: none; padding: 5rem 0 2rem; margin-top: 5rem; background: rgba(2, 6, 23, 0.95); }
.footer-layout { display: grid; grid-template-columns: 2fr 1fr; gap: 5rem; margin-bottom: 3rem; }
.address-text { margin: 1.5rem 0; color: var(--text-muted); line-height: 1.8; }
.contact-info p { margin-bottom: 0.5rem; color: var(--text-muted); }
.contact-info i { color: var(--primary-teal); margin-right: 12px; width: 20px; text-align: center; }
.legal-links h3 { margin-bottom: 1.5rem; font-size: 1.2rem; color: #fff; }
.legal-links nav { display: flex; flex-direction: column; gap: 1rem; }
.legal-links a { color: var(--text-muted); }
.copyright { text-align: center; border-top: 1px solid rgba(255,255,255,0.05); padding-top: 2rem; color: #475569; font-size: 0.85rem; }

/* Cookie Banner */
.cookie-banner { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); width: 90%; max-width: 800px; padding: 1.5rem 2.5rem; z-index: 9999; display: none; align-items: center; justify-content: space-between; gap: 2rem; border-radius: 12px; border: 1px solid var(--primary-blue); }
.cookie-text { font-size: 0.9rem; color: var(--text-main); }
.cookie-text a { color: var(--primary-teal); }

/* Legal Pages (White Paper Clean Style) */
.legal-wrapper { padding-top: 150px; padding-bottom: 100px; }
.legal-card { max-width: 900px; margin: 0 auto; padding: 5rem; background: #ffffff; color: #0f172a; border-radius: 16px; box-shadow: 0 25px 50px rgba(0,0,0,0.4); }
.legal-card h1 { font-size: 2.4rem; border-bottom: 2px solid #e2e8f0; padding-bottom: 1.5rem; margin-bottom: 2.5rem; color: #0f172a; }
.legal-card h2 { font-size: 1.5rem; margin-top: 3rem; margin-bottom: 1rem; color: #3b82f6; font-family: var(--font-body); }
.legal-card p, .legal-card li { color: #475569; margin-bottom: 1.2rem; line-height: 1.8; font-size: 1.05rem; }
.legal-card ul { margin-left: 2.5rem; margin-bottom: 2rem; }
.legal-card a { color: #3b82f6; font-weight: 600; text-decoration: underline; }

/* Responsive Media Queries */
@media (max-width: 992px) {
    .feature-layout, .form-container, .about-grid, .footer-layout { grid-template-columns: 1fr; gap: 3.5rem; }
    .input-grid { grid-template-columns: 1fr; }
    .desktop-menu { display: none; }
    .hero-card, .form-container { padding: 2.5rem; }
    .floating-stat { position: relative; bottom: auto; right: auto; margin-top: -20px; display: inline-flex; }
    .cookie-banner { flex-direction: column; text-align: center; }
    .legal-card { padding: 2.5rem; }
}
