/* ============================================
   AURIC VAULT LOGISTICS - Premium Design System
   ============================================ */

/* === CSS Variables === */
:root {
    --primary: #0A1628;
    --primary-light: #162847;
    --primary-dark: #060E1A;
    --gold: #C9A84C;
    --gold-light: #DFC06A;
    --gold-dark: #A8892F;
    --accent: #1A3A6B;
    --accent-light: #2454A0;
    --white: #FFFFFF;
    --light: #F0F2F5;
    --gray-100: #E8ECF1;
    --gray-200: #D0D6E0;
    --gray-300: #B8C4D4;
    --gray-400: #8A9BB5;
    --gray-500: #6B7F9E;
    --text-light: #B8C4D4;
    --text-muted: #8A9BB5;
    --success: #10B981;
    --warning: #F59E0B;
    --danger: #EF4444;
    --info: #3B82F6;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Outfit', 'Inter', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.12);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.2);
    --shadow-gold: 0 4px 20px rgba(201,168,76,0.3);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --glass-bg: rgba(255,255,255,0.05);
    --glass-border: rgba(255,255,255,0.1);
}

/* === Reset & Base === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--primary);
    color: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

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

img { max-width: 100%; height: auto; }

.container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }

/* === Preloader === */
#preloader {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background: var(--primary-dark); z-index: 99999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
#preloader.loaded { opacity: 0; visibility: hidden; pointer-events: none; }

.loader { position: relative; width: 80px; height: 80px; display: flex; align-items: center; justify-content: center; }

.loader-ring {
    position: absolute; width: 100%; height: 100%;
    border: 3px solid transparent; border-top-color: var(--gold);
    border-radius: 50%; animation: spin 1s linear infinite;
}
.loader-ring::after {
    content: ''; position: absolute; top: 6px; left: 6px; right: 6px; bottom: 6px;
    border: 3px solid transparent; border-top-color: var(--gold-light);
    border-radius: 50%; animation: spin 0.6s linear reverse infinite;
}
.loader-text { font-family: var(--font-heading); font-weight: 800; color: var(--gold); font-size: 14px; letter-spacing: 2px; }

@keyframes spin { to { transform: rotate(360deg); } }

/* === Buttons === */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    padding: 12px 28px; border-radius: var(--radius-sm); font-family: var(--font-heading);
    font-weight: 600; font-size: 14px; letter-spacing: 0.5px; text-transform: uppercase;
    border: 2px solid transparent; cursor: pointer; transition: var(--transition);
    white-space: nowrap;
}
.btn-gold {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--primary-dark); border-color: var(--gold);
}
.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-light), var(--gold));
    box-shadow: var(--shadow-gold); transform: translateY(-2px);
}
.btn-outline-gold {
    border-color: var(--gold); color: var(--gold); background: transparent;
}
.btn-outline-gold:hover { background: var(--gold); color: var(--primary-dark); }

.btn-outline-light {
    border-color: rgba(255,255,255,0.3); color: var(--white); background: transparent;
}
.btn-outline-light:hover { border-color: var(--white); background: rgba(255,255,255,0.1); }

.btn-sm { padding: 8px 18px; font-size: 12px; }
.btn-lg { padding: 16px 36px; font-size: 16px; }

.btn-primary-solid {
    background: var(--accent-light); color: white; border-color: var(--accent-light);
}
.btn-primary-solid:hover { background: var(--accent); transform: translateY(-2px); }

.btn-danger { background: var(--danger); color: white; border-color: var(--danger); }
.btn-danger:hover { background: #dc2626; }

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

/* === Navbar === */
.navbar {
    position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
    padding: 20px 0; transition: var(--transition);
    background: transparent;
}
.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95); backdrop-filter: blur(20px);
    padding: 12px 0; box-shadow: 0 4px 30px rgba(0,0,0,0.3);
    border-bottom: 1px solid rgba(201,168,76,0.15);
}
.navbar-container {
    display: flex; align-items: center; justify-content: space-between;
}
.navbar-brand {
    display: flex; align-items: center; gap: 10px; font-family: var(--font-heading);
    font-size: 24px; font-weight: 800;
}
.brand-icon {
    width: 42px; height: 42px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-radius: var(--radius-sm); display: flex; align-items: center; justify-content: center;
    color: var(--primary-dark); font-size: 18px;
}
.brand-text { color: var(--white); }
.brand-gold { color: var(--gold); }

.navbar-menu { display: flex; align-items: center; gap: 32px; }
.navbar-nav { display: flex; list-style: none; gap: 8px; }
.nav-link {
    padding: 8px 16px; color: var(--gray-300); font-weight: 500; font-size: 15px;
    border-radius: var(--radius-sm); position: relative;
}
.nav-link:hover, .nav-link.active { color: var(--gold); }
.nav-link::after {
    content: ''; position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px; background: var(--gold); transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after { width: 60%; }

.navbar-actions { display: flex; align-items: center; gap: 12px; }
.d-inline { display: inline; }

.navbar-toggler {
    display: none; flex-direction: column; gap: 5px; background: none;
    border: none; cursor: pointer; padding: 8px;
}
.toggler-bar {
    width: 28px; height: 2px; background: var(--white); transition: var(--transition);
}
.navbar-toggler.active .toggler-bar:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.navbar-toggler.active .toggler-bar:nth-child(2) { opacity: 0; }
.navbar-toggler.active .toggler-bar:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* === Hero Section === */
.hero {
    min-height: 100vh; display: flex; align-items: center;
    background: #060E1A;
    position: relative; overflow: hidden; padding-top: 80px;
}
.hero-slider {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; z-index: 0;
}
.hero-slide {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background-size: cover; background-position: center; background-repeat: no-repeat;
    opacity: 0; transition: opacity 1.5s ease-in-out;
}
.hero-slide::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(rgba(6, 14, 26, 0.88), rgba(6, 14, 26, 0.88));
}
.hero-slide.active {
    opacity: 1;
}
.hero-grid-layout {
    display: grid; grid-template-columns: 1.15fr 1.25fr; gap: 48px; align-items: center;
    position: relative; z-index: 2; width: 100%;
}
.hero::before {
    content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 100%;
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100' viewBox='0 0 100 100'%3E%3Cg fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.03'%3E%3Cpath opacity='.5' d='M96 95h4v1h-4v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4h-9v4h-1v-4H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15v-9H0v-1h15V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h9V0h1v15h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9h4v1h-4v9zm-1 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-10 0v-9h-9v9h9zm-9-10h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9zm10 0h9v-9h-9v9z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.hero-particles {
    position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden;
}
.hero-particle {
    position: absolute; border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.3) 0%, transparent 70%);
    animation: float 15s infinite ease-in-out;
}
.hero-particle:nth-child(1) { width: 300px; height: 300px; top: 10%; right: -5%; animation-delay: 0s; }
.hero-particle:nth-child(2) { width: 200px; height: 200px; bottom: 20%; left: -3%; animation-delay: -5s; }
.hero-particle:nth-child(3) { width: 150px; height: 150px; top: 40%; right: 30%; animation-delay: -10s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.5; }
    50% { transform: translateY(-30px) rotate(5deg); opacity: 1; }
}

.hero-content { position: relative; z-index: 2; max-width: 700px; }
.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
    border-radius: 100px; font-size: 13px; color: var(--gold); margin-bottom: 24px;
    font-weight: 600; text-transform: uppercase; letter-spacing: 2px;
}
.hero h1 {
    font-size: clamp(40px, 6vw, 72px); font-weight: 900;
    line-height: 1.05; margin-bottom: 24px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gray-300) 100%);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero h1 span { color: var(--gold); -webkit-text-fill-color: var(--gold); }
.hero p { font-size: 18px; color: var(--gray-300); margin-bottom: 36px; max-width: 560px; line-height: 1.8; }
.hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

/* Hero Tracking Widget */
.hero-tracking {
    position: relative; z-index: 2; max-width: 480px; margin-top: 48px;
}
.tracking-widget {
    background: var(--glass-bg); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
    padding: 28px; box-shadow: var(--shadow-lg);
}
.tracking-widget h3 {
    font-size: 16px; color: var(--gold); margin-bottom: 16px; letter-spacing: 1px;
    text-transform: uppercase;
}
.tracking-input-group {
    display: flex; gap: 8px;
}
.tracking-input-group input {
    flex: 1; padding: 14px 18px; background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.15); border-radius: var(--radius-sm);
    color: var(--white); font-size: 15px; font-family: var(--font-body);
    outline: none; transition: var(--transition);
}
.tracking-input-group input:focus {
    border-color: var(--gold); background: rgba(201,168,76,0.08);
}
.tracking-input-group input::placeholder { color: var(--gray-400); }
.tracking-input-group button {
    padding: 14px 24px; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none; border-radius: var(--radius-sm); color: var(--primary-dark);
    font-weight: 700; cursor: pointer; transition: var(--transition);
    font-size: 15px;
}
.tracking-input-group button:hover { box-shadow: var(--shadow-gold); transform: translateY(-2px); }

/* === Section Styles === */
.section { padding: 100px 0; position: relative; }

.section-header { text-align: center; margin-bottom: 60px; }
.section-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 6px 18px; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.2);
    border-radius: 100px; font-size: 12px; color: var(--gold);
    font-weight: 600; text-transform: uppercase; letter-spacing: 2px; margin-bottom: 16px;
}
.section-title {
    font-size: clamp(28px, 4vw, 44px); font-weight: 800;
    margin-bottom: 16px;
}
.section-title span { color: var(--gold); }
.section-desc { color: var(--gray-400); max-width: 600px; margin: 0 auto; font-size: 16px; }

.section-dark { background: var(--primary-dark); }
.section-accent { background: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%); }

/* === Glass Card === */
.glass-card {
    background: var(--glass-bg); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: var(--radius-md);
    padding: 32px; transition: var(--transition);
}
.glass-card:hover {
    border-color: rgba(201,168,76,0.3); transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* === Service Cards === */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }

.service-card {
    background: var(--glass-bg); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: var(--radius-md);
    padding: 36px; transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
    content: ''; position: absolute; top: 0; left: 0;
    width: 100%; height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold));
    transform: scaleX(0); transform-origin: left; transition: transform 0.5s ease;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover {
    border-color: rgba(201,168,76,0.3); transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(0,0,0,0.25);
}
.service-icon {
    width: 64px; height: 64px; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    display: flex; align-items: center; justify-content: center;
    font-size: 26px; color: var(--gold); margin-bottom: 20px;
    border: 1px solid rgba(201,168,76,0.2);
}
.service-card h3 { font-size: 20px; margin-bottom: 12px; }
.service-card p { color: var(--gray-400); font-size: 15px; line-height: 1.7; margin-bottom: 20px; }
.service-link {
    color: var(--gold); font-weight: 600; font-size: 14px;
    display: inline-flex; align-items: center; gap: 6px;
}
.service-link:hover { gap: 10px; }

/* === Stats Section === */
.stats-section {
    background: linear-gradient(135deg, var(--accent) 0%, var(--primary-dark) 100%);
    position: relative; overflow: hidden;
}
.stats-section::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0; bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.stats-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px;
    position: relative; z-index: 1;
}
.stat-item { text-align: center; padding: 20px; }
.stat-icon { font-size: 36px; color: var(--gold); margin-bottom: 12px; }
.counter-value {
    font-family: var(--font-heading); font-size: 42px; font-weight: 800;
    color: var(--white); margin-bottom: 8px;
}
.stat-label { color: var(--gray-400); font-size: 14px; text-transform: uppercase; letter-spacing: 2px; font-weight: 500; }

/* === How It Works === */
.steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.step-item { text-align: center; position: relative; }
.step-number {
    width: 72px; height: 72px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-family: var(--font-heading); font-size: 28px; font-weight: 800;
    color: var(--primary-dark); margin: 0 auto 20px;
    box-shadow: var(--shadow-gold);
}
.step-item h3 { font-size: 20px; margin-bottom: 12px; }
.step-item p { color: var(--gray-400); font-size: 15px; }

/* === Testimonials === */
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }

.testimonial-card {
    background: var(--glass-bg); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: var(--radius-md);
    padding: 32px; transition: var(--transition);
}
.testimonial-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }

.testimonial-stars { color: var(--gold); margin-bottom: 16px; font-size: 14px; display: flex; gap: 2px; }
.testimonial-content { font-size: 15px; color: var(--gray-300); line-height: 1.8; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
    width: 48px; height: 48px; border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    display: flex; align-items: center; justify-content: center;
    font-weight: 700; color: var(--primary-dark); font-size: 18px;
}
.testimonial-name { font-weight: 600; font-size: 15px; }
.testimonial-role { color: var(--gray-400); font-size: 13px; }

/* === Blog Cards === */
.blog-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(340px, 1fr)); gap: 24px; }

.blog-card {
    background: var(--glass-bg); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: var(--radius-md);
    overflow: hidden; transition: var(--transition);
}
.blog-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-6px); }

.blog-card-image {
    height: 200px; background: linear-gradient(135deg, var(--accent), var(--primary));
    display: flex; align-items: center; justify-content: center;
    font-size: 48px; color: rgba(201,168,76,0.3); position: relative;
}
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-category {
    position: absolute; top: 16px; left: 16px;
    padding: 4px 14px; background: rgba(201,168,76,0.9); color: var(--primary-dark);
    border-radius: 100px; font-size: 11px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px;
}
.blog-card-body { padding: 24px; }
.blog-card-meta { display: flex; gap: 16px; margin-bottom: 12px; font-size: 13px; color: var(--gray-400); }
.blog-card-meta i { color: var(--gold); margin-right: 4px; }
.blog-card h3 { font-size: 18px; margin-bottom: 12px; line-height: 1.4; }
.blog-card h3 a:hover { color: var(--gold); }
.blog-card p { color: var(--gray-400); font-size: 14px; line-height: 1.7; }

/* === Partners === */
.partners-grid {
    display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap;
}
.partner-item {
    padding: 16px 24px; background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: var(--radius-sm); font-family: var(--font-heading); font-weight: 700;
    font-size: 16px; color: var(--gray-400); transition: var(--transition);
    letter-spacing: 1px;
}
.partner-item:hover { color: var(--gold); border-color: rgba(201,168,76,0.3); }

/* === CTA Section === */
.cta-section {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    text-align: center; padding: 80px 0;
}
.cta-section h2 { font-size: 36px; color: var(--primary-dark); margin-bottom: 16px; }
.cta-section p { color: var(--primary); font-size: 18px; margin-bottom: 32px; max-width: 600px; margin-left: auto; margin-right: auto; }
.btn-dark {
    background: var(--primary-dark); color: var(--gold); border-color: var(--primary-dark);
    padding: 16px 36px; font-size: 16px;
}
.btn-dark:hover { background: var(--primary); box-shadow: 0 8px 30px rgba(0,0,0,0.3); transform: translateY(-2px); }

/* === Page Header === */
.page-header {
    padding: 160px 0 80px; text-align: center;
    background: linear-gradient(135deg, var(--primary-dark), var(--accent));
    position: relative;
}
.page-header h1 { font-size: clamp(32px, 5vw, 52px); margin-bottom: 16px; }
.page-header h1 span { color: var(--gold); }
.page-breadcrumb {
    display: flex; align-items: center; justify-content: center; gap: 12px;
    color: var(--gray-400); font-size: 14px;
}
.page-breadcrumb a:hover { color: var(--gold); }
.page-breadcrumb .separator { color: var(--gold); }

/* === Forms === */
.form-group { margin-bottom: 20px; }
.form-label {
    display: block; font-weight: 600; font-size: 14px; margin-bottom: 8px;
    color: var(--gray-300); letter-spacing: 0.5px;
}
.form-control {
    width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12); border-radius: var(--radius-sm);
    color: var(--white); font-family: var(--font-body); font-size: 15px;
    outline: none; transition: var(--transition);
}
.form-control:focus {
    border-color: var(--gold); background: rgba(201,168,76,0.06);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.1);
}
.form-control::placeholder { color: var(--gray-500); }
textarea.form-control { min-height: 120px; resize: vertical; }
select.form-control { cursor: pointer; }
.form-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }

/* === Tracking Result === */
.tracking-result {
    background: var(--glass-bg); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: var(--radius-lg);
    padding: 40px;
}
.tracking-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 32px; flex-wrap: wrap; gap: 20px; }
.tracking-number-display { font-family: var(--font-heading); font-size: 24px; font-weight: 700; }
.tracking-status-badge {
    padding: 8px 20px; border-radius: 100px; font-weight: 700; font-size: 13px;
    text-transform: uppercase; letter-spacing: 1px;
}
.tracking-info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-bottom: 32px; }
.tracking-info-item {
    padding: 20px; background: rgba(255,255,255,0.03); border-radius: var(--radius-sm);
    border: 1px solid rgba(255,255,255,0.06);
}
.tracking-info-label { font-size: 12px; color: var(--gray-400); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 6px; }
.tracking-info-value { font-size: 16px; font-weight: 600; }

/* Tracking Timeline */
.tracking-timeline { position: relative; padding-left: 40px; }
.tracking-timeline::before {
    content: ''; position: absolute; left: 14px; top: 0; bottom: 0;
    width: 2px; background: rgba(201,168,76,0.2);
}
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-dot {
    position: absolute; left: -33px; top: 4px;
    width: 14px; height: 14px; border-radius: 50%;
    background: var(--gold); border: 3px solid var(--primary);
    z-index: 1;
}
.timeline-item.completed .timeline-dot { background: var(--success); }
.timeline-item.active .timeline-dot { background: var(--gold); box-shadow: 0 0 0 6px rgba(201,168,76,0.2); }
.timeline-date { font-size: 12px; color: var(--gray-400); margin-bottom: 4px; }
.timeline-status { font-weight: 700; font-size: 16px; margin-bottom: 4px; }
.timeline-location { font-size: 14px; color: var(--gray-400); }
.timeline-desc { font-size: 13px; color: var(--gray-500); margin-top: 4px; }

/* === Team Grid === */
.team-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }

.team-card {
    background: var(--glass-bg); backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border); border-radius: var(--radius-md);
    padding: 32px; text-align: center; transition: var(--transition);
}
.team-card:hover { border-color: rgba(201,168,76,0.3); transform: translateY(-4px); }

.team-avatar {
    width: 100px; height: 100px; border-radius: 50%; margin: 0 auto 16px;
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    display: flex; align-items: center; justify-content: center;
    font-size: 36px; color: var(--gold); font-family: var(--font-heading); font-weight: 700;
    border: 3px solid rgba(201,168,76,0.3);
}
.team-card h3 { font-size: 18px; margin-bottom: 4px; }
.team-position { color: var(--gold); font-size: 14px; font-weight: 500; margin-bottom: 12px; }
.team-bio { color: var(--gray-400); font-size: 14px; line-height: 1.7; }
.team-social { display: flex; justify-content: center; gap: 12px; margin-top: 16px; }
.team-social a {
    width: 36px; height: 36px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center;
    justify-content: center; color: var(--gray-400); font-size: 14px;
    transition: var(--transition);
}
.team-social a:hover { background: var(--gold); color: var(--primary-dark); border-color: var(--gold); }

/* === Contact === */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; }
.contact-info-list { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {
    display: flex; gap: 16px; padding: 20px;
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: var(--radius-md);
}
.contact-info-icon {
    width: 52px; height: 52px; min-width: 52px; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; color: var(--gold);
}
.contact-info-item h4 { font-size: 16px; margin-bottom: 4px; }
.contact-info-item p { color: var(--gray-400); font-size: 14px; }

/* === Alerts === */
.alert {
    padding: 16px 20px; border-radius: var(--radius-sm); margin-bottom: 24px;
    font-size: 15px; display: flex; align-items: center; gap: 12px;
}
.alert-success { background: rgba(16,185,129,0.15); border: 1px solid rgba(16,185,129,0.3); color: var(--success); }
.alert-danger { background: rgba(239,68,68,0.15); border: 1px solid rgba(239,68,68,0.3); color: var(--danger); }
.alert-warning { background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.3); color: var(--warning); }
.alert-info { background: rgba(59,130,246,0.15); border: 1px solid rgba(59,130,246,0.3); color: var(--info); }

/* === Footer === */
.footer { background: var(--primary-dark); border-top: 1px solid rgba(201,168,76,0.1); }
.footer-top { padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 40px; }
.footer-brand { display: flex; align-items: center; gap: 10px; font-family: var(--font-heading); font-size: 22px; font-weight: 800; margin-bottom: 16px; }
.footer-desc { color: var(--gray-400); font-size: 14px; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
    width: 40px; height: 40px; border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15); display: flex; align-items: center;
    justify-content: center; color: var(--gray-400); transition: var(--transition);
}
.social-link:hover { background: var(--gold); color: var(--primary-dark); border-color: var(--gold); }

.footer-title { font-size: 16px; margin-bottom: 20px; color: var(--white); position: relative; padding-bottom: 12px; }
.footer-title::after { content: ''; position: absolute; bottom: 0; left: 0; width: 30px; height: 2px; background: var(--gold); }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: var(--gray-400); font-size: 14px; }
.footer-links a:hover { color: var(--gold); padding-left: 4px; }

.footer-contact { list-style: none; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; color: var(--gray-400); font-size: 14px; }
.footer-contact i { color: var(--gold); margin-top: 4px; min-width: 16px; }

.footer-bottom { padding: 20px 0; border-top: 1px solid rgba(255,255,255,0.08); text-align: center; }
.footer-bottom p { color: var(--gray-500); font-size: 13px; }

/* === Back to Top === */
.back-to-top {
    position: fixed; bottom: 30px; right: 30px; width: 48px; height: 48px;
    border-radius: 50%; background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: none; color: var(--primary-dark); font-size: 18px; cursor: pointer;
    opacity: 0; visibility: hidden; transform: translateY(20px);
    transition: var(--transition); z-index: 999; box-shadow: var(--shadow-gold);
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { transform: translateY(-4px); }

/* === Blog Detail === */
.blog-content { max-width: 800px; margin: 0 auto; }
.blog-content h2 { font-size: 24px; margin: 32px 0 16px; }
.blog-content h3 { font-size: 20px; margin: 24px 0 12px; }
.blog-content p { color: var(--gray-300); line-height: 1.9; margin-bottom: 16px; }
.blog-content ul, .blog-content ol { color: var(--gray-300); margin: 12px 0 16px 20px; }
.blog-content li { margin-bottom: 8px; }

.blog-meta {
    display: flex; align-items: center; gap: 24px; padding: 20px 0;
    border-bottom: 1px solid var(--glass-border); margin-bottom: 32px;
    color: var(--gray-400); font-size: 14px;
}
.blog-meta i { color: var(--gold); margin-right: 6px; }

/* Blog Sidebar */
.blog-layout { display: grid; grid-template-columns: 1fr 340px; gap: 48px; }

.sidebar-widget {
    background: var(--glass-bg); border: 1px solid var(--glass-border);
    border-radius: var(--radius-md); padding: 24px; margin-bottom: 24px;
}
.sidebar-widget h4 { font-size: 18px; margin-bottom: 16px; padding-bottom: 12px; border-bottom: 1px solid var(--glass-border); }
.sidebar-widget ul { list-style: none; }
.sidebar-widget li { margin-bottom: 12px; }
.sidebar-widget li a { color: var(--gray-400); font-size: 14px; display: flex; justify-content: space-between; }
.sidebar-widget li a:hover { color: var(--gold); }
.sidebar-widget .count { background: rgba(201,168,76,0.15); color: var(--gold); padding: 2px 10px; border-radius: 100px; font-size: 12px; }

.recent-post-item { display: flex; gap: 12px; margin-bottom: 16px; }
.recent-post-item:last-child { margin-bottom: 0; }
.recent-post-thumb {
    width: 64px; height: 64px; min-width: 64px; border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--accent), var(--primary));
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 20px;
}
.recent-post-info h5 { font-size: 14px; margin-bottom: 4px; line-height: 1.4; }
.recent-post-info h5 a:hover { color: var(--gold); }
.recent-post-info span { font-size: 12px; color: var(--gray-500); }

/* === Pagination === */
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
    display: flex; align-items: center; justify-content: center;
    width: 40px; height: 40px; border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border); color: var(--gray-400);
    font-weight: 600; font-size: 14px; transition: var(--transition);
}
.pagination a:hover { border-color: var(--gold); color: var(--gold); }
.pagination .active span { background: var(--gold); color: var(--primary-dark); border-color: var(--gold); }

/* === Responsive === */
@media (max-width: 1024px) {
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .blog-layout { grid-template-columns: 1fr; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .navbar-toggler { display: flex; }
    .navbar-menu {
        position: fixed; top: 0; right: -100%; width: 300px; height: 100vh;
        background: var(--primary-dark); flex-direction: column; padding: 80px 24px 24px;
        gap: 24px; transition: var(--transition); z-index: 998;
        border-left: 1px solid rgba(201,168,76,0.15);
    }
    .navbar-menu.active { right: 0; }
    .navbar-nav { flex-direction: column; width: 100%; }
    .navbar-actions { flex-direction: column; width: 100%; }
    .navbar-actions .btn { width: 100%; }

    .hero { padding-top: 100px; }
    .hero-grid-layout { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .hero-content { text-align: center; order: 1; }
    .hero p { margin: 0 auto 36px; }
    .hero-buttons { justify-content: center; }
    .hero-tracking { margin: 0 auto; order: 2; width: 100%; max-width: 480px; }

    .services-grid { grid-template-columns: 1fr; }
    .steps-grid { grid-template-columns: 1fr; gap: 24px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .tracking-header { flex-direction: column; }
    .blog-grid { grid-template-columns: 1fr; }

    .section { padding: 60px 0; }
    .page-header { padding: 120px 0 60px; }
}

@media (max-width: 480px) {
    .stats-grid { grid-template-columns: 1fr; }
    .tracking-input-group { flex-direction: column; }
    .hero h1 { font-size: 32px; }
}

.blog-card:hover .blog-card-image img,
.service-card:hover .service-card-image img {
    transform: scale(1.08);
}

/* === Booking Wizard === */
.booking-wizard { max-width: 920px; margin: 0 auto; }
.wizard-progress {
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 40px; padding: 0 40px;
}
.wizard-step {
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    cursor: pointer; position: relative; z-index: 2;
}
.wizard-step-circle {
    width: 52px; height: 52px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.05); border: 2px solid rgba(255,255,255,0.1);
    transition: all 0.4s ease; position: relative;
}
.wizard-step-num { font-size: 16px; font-weight: 700; color: var(--gray-400); transition: all 0.3s ease; }
.wizard-step-check { display: none; font-size: 16px; color: var(--white); }
.wizard-step-label { font-size: 13px; color: var(--gray-400); font-weight: 500; white-space: nowrap; transition: color 0.3s ease; }
.wizard-step.active .wizard-step-circle {
    background: linear-gradient(135deg, var(--gold), #b8912f);
    border-color: var(--gold); box-shadow: 0 0 20px rgba(201,168,76,0.35);
}
.wizard-step.active .wizard-step-num { color: var(--white); }
.wizard-step.active .wizard-step-label { color: var(--white); }
.wizard-step.completed .wizard-step-circle {
    background: rgba(39,174,96,0.15); border-color: #27ae60;
}
.wizard-step.completed .wizard-step-num { display: none; }
.wizard-step.completed .wizard-step-check { display: block; color: #27ae60; }
.wizard-step.completed .wizard-step-label { color: #27ae60; }
.wizard-connector {
    flex: 1; height: 3px; background: rgba(255,255,255,0.06);
    margin: 0 -8px; position: relative; z-index: 1; border-radius: 3px; overflow: hidden;
}
.wizard-connector-fill {
    height: 100%; background: linear-gradient(90deg, #27ae60, var(--gold));
    width: 0; transition: width 0.6s ease; border-radius: 3px;
}
.wizard-panel { display: none; animation: fadeSlideIn 0.4s ease; }
.wizard-panel.active { display: block; }
@keyframes fadeSlideIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }
.wizard-panel-header {
    display: flex; align-items: center; gap: 16px;
    margin-bottom: 32px; padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.wizard-panel-icon {
    width: 56px; height: 56px; border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(201,168,76,0.15), rgba(201,168,76,0.05));
    border: 1px solid rgba(201,168,76,0.2); font-size: 22px; color: var(--gold); flex-shrink: 0;
}
.wizard-panel-header h2 { font-size: 22px; color: var(--white); margin-bottom: 4px; }
.wizard-panel-header p { font-size: 14px; color: var(--gray-400); margin: 0; }
.wizard-actions {
    display: flex; justify-content: space-between; align-items: center;
    margin-top: 24px; gap: 16px;
}
.wizard-actions .btn { min-width: 180px; }

/* Shipping Method Selector Cards */
.shipping-method-grid {
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-top: 8px;
}
.shipping-method-card {
    cursor: pointer; position: relative;
}
.shipping-method-card input[type="radio"] { position: absolute; opacity: 0; }
.shipping-method-content {
    text-align: center; padding: 20px 12px; border-radius: var(--radius-sm);
    background: rgba(255,255,255,0.03); border: 2px solid rgba(255,255,255,0.06);
    transition: all 0.3s ease;
}
.shipping-method-content i { font-size: 24px; color: var(--gray-400); margin-bottom: 10px; display: block; transition: color 0.3s ease; }
.shipping-method-content h4 { font-size: 14px; color: var(--white); margin-bottom: 4px; font-weight: 600; }
.shipping-method-content p { font-size: 12px; color: var(--gray-400); margin: 0; }
.shipping-method-card input:checked ~ .shipping-method-content {
    border-color: var(--gold); background: rgba(201,168,76,0.08);
    box-shadow: 0 0 16px rgba(201,168,76,0.15);
}
.shipping-method-card input:checked ~ .shipping-method-content i { color: var(--gold); }
.shipping-method-card:hover .shipping-method-content { border-color: rgba(201,168,76,0.4); }

/* Route Columns */
.route-columns {
    display: grid; grid-template-columns: 1fr auto 1fr; gap: 24px; align-items: start;
}
.route-column {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.05);
    border-radius: var(--radius-sm); padding: 24px;
}
.route-column-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.route-column-header h3 { font-size: 16px; color: var(--white); margin: 0; font-weight: 600; }
.route-dot { width: 12px; height: 12px; border-radius: 50%; flex-shrink: 0; }
.route-dot.origin { background: #27ae60; box-shadow: 0 0 10px rgba(39,174,96,0.4); }
.route-dot.destination { background: #e74c3c; box-shadow: 0 0 10px rgba(231,76,60,0.4); }
.route-arrow {
    display: flex; align-items: center; justify-content: center;
    font-size: 24px; color: var(--gold); padding-top: 60px;
}

/* Booking Summary Grid */
.booking-summary-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-bottom: 28px; }
.booking-summary-card {
    background: rgba(255,255,255,0.02); border: 1px solid rgba(255,255,255,0.06);
    border-radius: var(--radius-sm); overflow: hidden;
}
.summary-card-header {
    padding: 14px 16px; font-size: 13px; font-weight: 700; text-transform: uppercase;
    letter-spacing: 1px; color: var(--gold);
    background: rgba(201,168,76,0.06); border-bottom: 1px solid rgba(255,255,255,0.05);
}
.summary-card-header i { margin-right: 6px; }
.summary-card-body { padding: 16px; }
.summary-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 8px 0; font-size: 13px;
}
.summary-row span { color: var(--gray-400); }
.summary-row strong { color: var(--white); font-size: 13px; text-align: right; max-width: 55%; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.summary-row + .summary-row { border-top: 1px solid rgba(255,255,255,0.04); }

/* Cost Calculator Panel */
.cost-calculator-panel {
    background: linear-gradient(135deg, rgba(201,168,76,0.06), rgba(10,22,40,0.6));
    border: 1px solid rgba(201,168,76,0.15); border-radius: var(--radius-md); overflow: hidden;
}
.cost-calc-header {
    display: flex; align-items: center; gap: 12px;
    padding: 18px 24px; background: rgba(201,168,76,0.08);
    border-bottom: 1px solid rgba(201,168,76,0.1);
}
.cost-calc-header i { font-size: 20px; color: var(--gold); }
.cost-calc-header h3 { font-size: 16px; color: var(--white); margin: 0; font-weight: 600; }
.cost-calc-body { padding: 24px; }
.cost-breakdown { }
.cost-row {
    display: flex; justify-content: space-between; align-items: center;
    padding: 12px 0; font-size: 14px; color: var(--gray-300);
}
.cost-row + .cost-row { border-top: 1px solid rgba(255,255,255,0.04); }
.cost-row span:last-child { color: var(--white); font-weight: 600; }
.cost-row-total {
    margin-top: 8px; padding-top: 16px;
    border-top: 2px solid rgba(201,168,76,0.2) !important;
}
.cost-row-total span:first-child { font-size: 16px; font-weight: 700; color: var(--white); }
.cost-row-total span:last-child { font-size: 28px; font-weight: 800; color: var(--gold); font-family: var(--font-heading); }

/* Responsive Booking Wizard */
@media (max-width: 768px) {
    .shipping-method-grid { grid-template-columns: 1fr 1fr; }
    .route-columns { grid-template-columns: 1fr; }
    .route-arrow { transform: rotate(90deg); padding: 0; justify-content: center; }
    .booking-summary-grid { grid-template-columns: 1fr; }
    .wizard-progress { padding: 0; }
    .wizard-step-label { font-size: 11px; }
    .wizard-actions { flex-direction: column; }
    .wizard-actions .btn { width: 100%; }
}

