/* ─── Google Fonts ─────────────────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=DM+Sans:ital,opsz,wght@0,9..40,300;0,9..40,400;0,9..40,500;0,9..40,600;0,9..40,700;1,9..40,400&family=JetBrains+Mono:wght@400;600&display=swap');

/* ─── CSS Variables — Professional Navy/Gold ─────────────────────────────── */
:root {
  --navy:         #0A1628;
  --navy-mid:     #112240;
  --navy-light:   #1B3461;
  --gold:         #C9A84C;
  --gold-light:   #E8C97A;
  --gold-pale:    #F5E6C0;
  --white:        #FFFFFF;
  --off-white:    #F8F9FC;
  --gray-100:     #EEF1F7;
  --gray-200:     #D4DAE8;
  --gray-400:     #8B9BB8;
  --gray-600:     #4A5568;
  --border:       #1E3A5F;
  --border-light: #D4DAE8;
  --danger:       #E53E3E;
  --warning:      #D69E2E;
  --info:         #3182CE;
  --success:      #38A169;
  --card-bg:      #112240;
  --dark-bg:      #0A1628;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'DM Sans', sans-serif;
  --font-mono:    'JetBrains Mono', monospace;

  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --shadow-sm:  0 2px 8px rgba(0,0,0,0.08);
  --shadow:     0 8px 32px rgba(0,0,0,0.14);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.2);
  --radius:     8px;
  --radius-lg:  16px;
  --radius-xl:  24px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); background: var(--off-white); color: var(--navy); line-height: 1.65; overflow-x: hidden; }
img { max-width: 100%; display: block; object-fit: cover; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }
input, textarea, select, button { font-family: var(--font-body); }

h1,h2,h3,h4,h5 { font-family: var(--font-display); line-height: 1.05; letter-spacing: 0.5px; }
h1 { font-size: clamp(3rem,7vw,6.5rem); }
h2 { font-size: clamp(2rem,4.5vw,3.8rem); }
h3 { font-size: clamp(1.4rem,2.5vw,2rem); }
h4 { font-size: 1.35rem; }

.mono { font-family: var(--font-mono); }
.label { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); font-weight: 700; display: inline-block; }
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-white { color: var(--white); }
.text-muted { color: var(--gray-400); }

.container { max-width: 1300px; margin: 0 auto; padding: 0 40px; }
.section    { padding: 110px 0; }
.section-sm { padding: 70px 0; }
.section-dark  { background: var(--navy); color: var(--white); }
.section-navy  { background: var(--navy-mid); color: var(--white); }
.section-light { background: var(--off-white); }
.section-white { background: var(--white); }
.section-gray  { background: var(--gray-100); }

/* Buttons */
.btn { display: inline-flex; align-items: center; gap: 10px; padding: 14px 34px; border-radius: var(--radius); font-weight: 700; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; cursor: pointer; border: none; transition: var(--transition); }
.btn:disabled { opacity: 0.55; cursor: not-allowed; }
.btn-primary { background: var(--gold); color: var(--navy); box-shadow: 0 4px 16px rgba(201,168,76,0.3); }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,168,76,0.4); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn-outline:hover { background: var(--navy); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-gold { background: transparent; color: var(--gold); border: 2px solid var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--navy); }
.btn-danger  { background: var(--danger);  color: #fff; }
.btn-success { background: var(--success); color: #fff; }
.btn-sm { padding: 8px 20px; font-size: 11px; }
.btn-lg { padding: 18px 48px; font-size: 14px; }
.btn-xl { padding: 22px 56px; font-size: 16px; }

/* Navigation */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; transition: background var(--transition), box-shadow var(--transition); padding: 0 40px; }
.nav.scrolled { background: rgba(10,22,40,0.97); box-shadow: 0 2px 30px rgba(0,0,0,0.35); backdrop-filter: blur(12px); }
.nav-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; height: 76px; }
.nav-logo { display: flex; align-items: center; gap: 12px; font-family: var(--font-display); font-size: 22px; letter-spacing: 2px; color: var(--white); }
.nav-logo img { width: 38px; height: 38px; border-radius: 6px; }
.nav-logo span.accent { color: var(--gold); }
.nav-links { display: flex; align-items: center; gap: 2px; }
.nav-links > li { position: relative; }
.nav-links > li > a { display: flex; align-items: center; gap: 5px; padding: 8px 16px; border-radius: 6px; font-size: 13px; font-weight: 600; letter-spacing: 0.5px; text-transform: uppercase; color: rgba(255,255,255,0.8); transition: var(--transition); }
.nav-links > li > a:hover, .nav-links > li > a.active { color: var(--gold); }
.dropdown-menu { position: absolute; top: calc(100% + 10px); left: 0; min-width: 210px; background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); box-shadow: var(--shadow-lg); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: var(--transition); z-index: 200; }
.nav-links > li:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu a { display: flex; align-items: center; gap: 10px; padding: 12px 18px; font-size: 13px; font-weight: 500; color: var(--navy); border-bottom: 1px solid var(--gray-100); transition: var(--transition); }
.dropdown-menu a:last-child { border-bottom: none; }
.dropdown-menu a img { width: 18px; height: 18px; border-radius: 3px; flex-shrink: 0; }
.dropdown-menu a:hover { background: var(--gray-100); color: var(--gold); padding-left: 24px; }
.chevron { transition: transform var(--transition); font-size: 9px; opacity: 0.6; }
.nav-links > li:hover .chevron { transform: rotate(180deg); }
.nav-cta { margin-left: 20px; }
.nav-cta .btn { padding: 10px 28px; font-size: 12px; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 6px; background: none; border: none; }
.hamburger span { display: block; width: 26px; height: 2px; background: var(--white); border-radius: 2px; transition: var(--transition); }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu { display: none; position: fixed; top: 76px; left: 0; right: 0; bottom: 0; background: var(--navy); overflow-y: auto; padding: 24px; z-index: 999; transform: translateX(-100%); transition: transform var(--transition); }
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a { display: flex; align-items: center; gap: 10px; padding: 14px 0; border-bottom: 1px solid var(--border); font-size: 15px; font-weight: 500; color: rgba(255,255,255,0.8); }
.mobile-menu a:hover { color: var(--gold); }
.mobile-menu a img { width: 20px; height: 20px; border-radius: 3px; filter: brightness(0) invert(1); opacity: 0.7; }
.mobile-group-title { font-size: 10px; letter-spacing: 2.5px; text-transform: uppercase; color: var(--gold); padding: 20px 0 8px; font-weight: 700; }

/* Hero */
.hero-slider { position: relative; height: 100vh; min-height: 700px; overflow: hidden; }
.hero-slide { position: absolute; inset: 0; display: flex; align-items: center; opacity: 0; transition: opacity 1.2s ease; background-size: cover; background-position: center; }
.hero-slide.active { opacity: 1; z-index: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(110deg, rgba(10,22,40,0.93) 0%, rgba(10,22,40,0.62) 55%, rgba(10,22,40,0.3) 100%); }
.hero-content { position: relative; z-index: 3; max-width: 1300px; margin: 0 auto; padding: 100px 40px 160px; width: 100%; }
.hero-label { display: inline-flex; align-items: center; gap: 10px; padding: 8px 20px; background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.4); border-radius: 30px; font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 24px; animation: fadeInUp 0.8s ease both; }
.hero-label img { width: 18px; height: 18px; border-radius: 2px; }
.hero-title { font-size: clamp(2.8rem,8vw,8rem); line-height: 0.93; text-transform: uppercase; color: var(--white); animation: fadeInUp 0.8s 0.2s ease both; }
.hero-title .line2 { color: var(--gold); }
.hero-subtitle { font-size: 16px; color: rgba(255,255,255,0.72); max-width: 560px; margin: 20px 0 32px; line-height: 1.7; animation: fadeInUp 0.8s 0.4s ease both; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; animation: fadeInUp 0.8s 0.6s ease both; }
.hero-ctas .btn { min-width: 200px; justify-content: center; }

.hero-stats { position: absolute; bottom: 0; left: 0; right: 0; z-index: 5; background: rgba(10,22,40,0.92); backdrop-filter: blur(10px); border-top: 1px solid rgba(201,168,76,0.2); padding: 20px 40px; }
.hero-stats-inner { max-width: 1300px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 16px; }
.hero-stat { text-align: center; flex: 1; min-width: 100px; }
.hero-stat-num { font-family: var(--font-display); font-size: 2.2rem; color: var(--gold); line-height: 1; }
.hero-stat-label { font-size: 11px; letter-spacing: 1px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.hero-stat-divider { width: 1px; height: 40px; background: rgba(255,255,255,0.1); }

.slider-dots { position: absolute; bottom: 92px; left: 50%; transform: translateX(-50%); z-index: 10; display: flex; gap: 10px; }
.slider-dot { width: 8px; height: 8px; border-radius: 4px; background: rgba(255,255,255,0.3); cursor: pointer; transition: var(--transition); }
.slider-dot.active { width: 30px; background: var(--gold); }
.slider-nav { position: absolute; top: 50%; transform: translateY(-50%); z-index: 10; background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.25); color: var(--white); width: 52px; height: 52px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; transition: var(--transition); font-size: 18px; }
.slider-nav:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.slider-prev { left: 28px; }
.slider-next { right: 28px; }

/* Inner page hero */
.page-hero { position: relative; min-height: 460px; display: flex; align-items: flex-end; padding-bottom: 70px; background-size: cover; background-position: center; background-attachment: fixed; margin-top: 76px; }
.page-hero::before { content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,22,40,0.38) 0%, rgba(10,22,40,0.88) 100%); }
.page-hero::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px; background: linear-gradient(90deg, var(--gold), var(--gold-light), var(--gold)); }
.page-hero-content { position: relative; z-index: 1; width: 100%; }
.page-hero h1 { color: var(--white); animation: fadeInUp 0.6s 0.15s ease both; }
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.5); margin-top: 16px; }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.25); }

/* Section headers */
.section-header { margin-bottom: 70px; }
.section-header.center { text-align: center; }
.section-header .label { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 18px; }
.section-header p { font-size: 17px; max-width: 580px; color: var(--gray-600); line-height: 1.8; }
.section-header.center p { margin: 0 auto; }
.section-dark .section-header p, .section-navy .section-header p { color: rgba(255,255,255,0.6); }
.section-dark .section-header h2, .section-navy .section-header h2 { color: var(--white); }
.section-header h2::after { content: ''; display: block; width: 56px; height: 3px; background: var(--gold); margin-top: 14px; border-radius: 2px; }
.section-header.center h2::after { margin: 14px auto 0; }

/* Stats */
.stats-section { background: var(--navy); padding: 80px 0; }
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); }
.stat-item { text-align: center; padding: 24px 0; border-right: 1px solid rgba(255,255,255,0.07); }
.stat-item:last-child { border-right: none; }
.stat-number { font-family: var(--font-display); font-size: 4.5rem; color: var(--gold); line-height: 1; }
.stat-label { font-size: 13px; color: rgba(255,255,255,0.45); margin-top: 6px; letter-spacing: 1px; }

/* Tracking bar */
.tracking-bar { background: var(--white); padding: 88px 0; border-top: 1px solid var(--gray-200); border-bottom: 1px solid var(--gray-200); }
.tracking-bar-inner { max-width: 740px; margin: 0 auto; text-align: center; }
.tracking-bar h3 { color: var(--navy); margin-bottom: 8px; }
.tracking-bar p { color: var(--gray-600); margin-bottom: 32px; font-size: 16px; }
.tracking-form { display: flex; border-radius: var(--radius); overflow: hidden; box-shadow: 0 4px 24px rgba(0,0,0,0.1); border: 2px solid var(--gray-200); }
.tracking-input { flex: 1; padding: 18px 24px; background: var(--white); border: none; outline: none; color: var(--navy); font-size: 15px; font-family: var(--font-mono); letter-spacing: 1px; }
.tracking-input::placeholder { color: var(--gray-400); font-family: var(--font-body); letter-spacing: 0; }
.tracking-form:focus-within { border-color: var(--gold); }

/* Service cards */
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.service-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-sm); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--gold); }
.service-card-img { width: 100%; height: 200px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; transition: transform 0.6s ease; }
.service-card:hover .service-card-img img { transform: scale(1.06); }
.service-card-body { padding: 28px; }
.service-card h4 { margin-bottom: 10px; color: var(--navy); }
.service-card p { color: var(--gray-600); font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.service-card .btn-link { font-size: 12px; font-weight: 700; letter-spacing: 1.5px; color: var(--gold); text-transform: uppercase; display: inline-flex; align-items: center; gap: 6px; }
.service-card-tag { display: inline-block; background: var(--gray-100); color: var(--navy-light); font-size: 11px; letter-spacing: 1px; text-transform: uppercase; font-weight: 700; padding: 4px 12px; border-radius: 20px; margin-bottom: 12px; }

/* Why section */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.why-image { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.why-image img { width: 100%; height: 520px; }
.why-badge { position: absolute; bottom: 28px; right: 28px; background: var(--gold); color: var(--navy); border-radius: var(--radius-lg); padding: 20px 28px; text-align: center; box-shadow: 0 8px 24px rgba(201,168,76,0.5); }
.why-badge .big-num { font-family: var(--font-display); font-size: 3.5rem; line-height: 1; }
.why-badge .small { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }
.why-features { margin-top: 36px; display: flex; flex-direction: column; gap: 16px; }
.why-feature { display: flex; gap: 18px; align-items: flex-start; padding: 20px 22px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); transition: var(--transition); box-shadow: var(--shadow-sm); }
.why-feature:hover { border-color: var(--gold); }
.why-feature-img { width: 48px; height: 48px; border-radius: 10px; overflow: hidden; flex-shrink: 0; }
.why-feature-img img { width: 100%; height: 100%; }
.why-feature h5 { font-size: 15px; font-family: var(--font-body); font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.why-feature p { font-size: 13px; color: var(--gray-600); }

/* How it works */
.how-steps { display: grid; grid-template-columns: repeat(3,1fr); gap: 0; position: relative; }
.how-steps::before { content: ''; position: absolute; top: 64px; left: 16.67%; right: 16.67%; height: 2px; background: linear-gradient(90deg, var(--gold) 0%, var(--gray-200) 100%); }
.how-step { text-align: center; padding: 0 36px; }
.step-img-wrap { width: 130px; height: 130px; border-radius: 50%; overflow: hidden; margin: 0 auto 24px; border: 4px solid var(--gold); box-shadow: 0 0 0 8px rgba(201,168,76,0.1); position: relative; z-index: 1; }
.step-img-wrap img { width: 100%; height: 100%; }
.step-num { position: absolute; top: -4px; right: -4px; width: 34px; height: 34px; border-radius: 50%; background: var(--gold); color: var(--navy); font-family: var(--font-display); font-size: 1rem; display: flex; align-items: center; justify-content: center; border: 3px solid var(--white); font-weight: 900; }
.how-step h4 { margin-bottom: 12px; color: var(--navy); }
.how-step p { color: var(--gray-600); font-size: 14px; line-height: 1.7; }

/* Industries */
.industries-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 20px; }
.industry-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; transition: var(--transition); box-shadow: var(--shadow-sm); }
.industry-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow); }
.industry-card-img { width: 100%; height: 110px; overflow: hidden; }
.industry-card-img img { width: 100%; height: 100%; transition: transform 0.5s ease; }
.industry-card:hover .industry-card-img img { transform: scale(1.08); }
.industry-card-body { padding: 14px 12px; text-align: center; }
.industry-card-body span { font-size: 11px; font-weight: 700; color: var(--navy); letter-spacing: 0.5px; text-transform: uppercase; }

/* Testimonials */
.testimonials-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.testimonial-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px 32px; box-shadow: var(--shadow-sm); transition: var(--transition); }
.testimonial-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.testimonial-stars { color: var(--gold); font-size: 13px; margin-bottom: 16px; letter-spacing: 3px; }
.testimonial-text { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 28px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar { width: 52px; height: 52px; border-radius: 50%; overflow: hidden; border: 2px solid var(--gold); flex-shrink: 0; }
.author-avatar img { width: 100%; height: 100%; }
.author-name  { font-weight: 700; font-size: 15px; color: var(--navy); }
.author-title { font-size: 12px; color: var(--gray-400); }

/* Partners */
.partners-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 48px; }
.partner-logo { font-family: var(--font-display); font-size: 1.3rem; letter-spacing: 2px; color: var(--gray-400); transition: var(--transition); }
.partner-logo:hover { color: var(--gold); }

/* CTA banner */
.cta-banner { position: relative; overflow: hidden; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 120px 0; }
.cta-banner::before { content: ''; position: absolute; inset: 0; background: url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=1400&q=50') center/cover; opacity: 0.05; }
.cta-banner-content { position: relative; z-index: 1; text-align: center; }
.cta-banner h2 { color: var(--white); margin-bottom: 16px; }
.cta-banner p { color: rgba(255,255,255,0.68); max-width: 520px; margin: 0 auto 40px; font-size: 18px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Footer */
footer { background: var(--navy); color: var(--white); padding: 90px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 52px; padding-bottom: 60px; border-bottom: 1px solid var(--border); }
.footer-brand p { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.85; max-width: 320px; margin-top: 16px; }
.footer-social { display: flex; gap: 10px; margin-top: 24px; }
.social-btn { width: 40px; height: 40px; border-radius: 8px; background: rgba(255,255,255,0.06); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; transition: var(--transition); overflow: hidden; font-size: 14px; color: rgba(255,255,255,0.5); }
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.footer-col h5 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 22px; font-weight: 700; }
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.45); transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 6px; }
.footer-contact-item { display: flex; gap: 12px; margin-bottom: 14px; font-size: 14px; color: rgba(255,255,255,0.45); align-items: flex-start; }
.footer-contact-item a { color: rgba(255,255,255,0.65); }
.footer-contact-item a:hover { color: var(--gold); }
.footer-bottom { padding: 24px 0; font-size: 13px; color: rgba(255,255,255,0.28); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 8px; }
.footer-bottom a { color: var(--gold); }

/* Track page */
.track-status-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 40px; margin-bottom: 28px; box-shadow: var(--shadow-sm); }
.track-status-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 20px; }
.tracking-number-display { font-family: var(--font-mono); font-size: 2rem; color: var(--gold); }
.status-badge { padding: 8px 22px; border-radius: 20px; font-size: 12px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; display: inline-block; }
.status-Pending                    { background: rgba(214,158,46,0.1);   color: #D69E2E;  border: 1px solid #D69E2E; }
.status-In-Transit                 { background: rgba(49,130,206,0.1);   color: #3182CE;  border: 1px solid #3182CE; }
.status-Out-for-Delivery           { background: rgba(128,90,213,0.1);   color: #805AD5;  border: 1px solid #805AD5; }
.status-Delivered                  { background: rgba(56,161,105,0.1);   color: #38A169;  border: 1px solid #38A169; }
.status-On-Hold                    { background: rgba(160,100,0,0.1);    color: #975A16;  border: 1px solid #975A16; }
.status-Seized-by-Customs          { background: rgba(229,62,62,0.1);    color: #C53030;  border: 1px solid #C53030; }
.status-Awaiting-Customs-Clearance { background: rgba(49,130,206,0.08);  color: #2B6CB0;  border: 1px solid #2B6CB0; }
.status-Returned-to-Sender         { background: rgba(229,62,62,0.1);    color: #C53030;  border: 1px solid #C53030; }
.status-Delivery-Attempted         { background: rgba(214,158,46,0.1);   color: #B7791F;  border: 1px solid #B7791F; }
.status-Lost                       { background: rgba(113,128,150,0.1);  color: #718096;  border: 1px solid #718096; }
.status-Damaged                    { background: rgba(229,62,62,0.1);    color: #E53E3E;  border: 1px solid #E53E3E; }
.status-Cancelled                  { background: rgba(113,128,150,0.1);  color: #4A5568;  border: 1px solid #4A5568; }

.track-info-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 16px; margin-top: 28px; }
.track-info-item { padding: 16px 20px; background: var(--gray-100); border-radius: var(--radius); }
.track-info-item .ti-label { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 6px; font-weight: 700; }
.track-info-item .ti-value { font-size: 14px; font-weight: 600; color: var(--navy); }
#track-map { height: 420px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 28px; border: 1px solid var(--gray-200); }
.timeline { padding: 36px; background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); box-shadow: var(--shadow-sm); }
.timeline-title { margin-bottom: 32px; color: var(--navy); }
.timeline-item { display: flex; gap: 20px; padding-bottom: 28px; border-left: 2px solid var(--gray-200); padding-left: 28px; position: relative; }
.timeline-item:last-child { border-left-color: transparent; padding-bottom: 0; }
.timeline-dot { width: 14px; height: 14px; border-radius: 50%; background: var(--white); border: 3px solid var(--gray-400); position: absolute; left: -8px; top: 2px; }
.timeline-item.latest .timeline-dot { background: var(--gold); border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201,168,76,0.2); }
.timeline-status { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; font-weight: 700; }
.timeline-location { font-weight: 700; margin-bottom: 4px; color: var(--navy); font-size: 15px; }
.timeline-time { font-size: 13px; color: var(--gray-400); }
.timeline-notes { font-size: 13px; color: var(--gray-600); margin-top: 4px; }

/* Forms */
.form-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 48px; box-shadow: var(--shadow-sm); }
.form-section-title { font-family: var(--font-display); font-size: 1.15rem; color: var(--navy); margin: 28px 0 16px; padding: 14px 20px; background: var(--gray-100); border-left: 4px solid var(--gold); border-radius: 0 var(--radius) var(--radius) 0; letter-spacing: 0.5px; }
.form-section-title:first-of-type { margin-top: 0; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 7px; }
.form-group.full { grid-column: 1/-1; }
.form-group label { font-size: 11px; letter-spacing: 0.5px; text-transform: uppercase; color: var(--gray-600); font-weight: 700; }
.form-group input, .form-group select, .form-group textarea { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 12px 16px; color: var(--navy); font-size: 14px; transition: var(--transition); }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.1); }
.form-group input::placeholder, .form-group textarea::placeholder { color: var(--gray-400); }
.field-error { font-size: 12px; color: var(--danger); }
.form-group input.error, .form-group select.error, .form-group textarea.error { border-color: var(--danger); }

/* Quote layout */
.quote-layout { display: grid; grid-template-columns: 1fr 360px; gap: 48px; align-items: start; }
.quote-sidebar { position: sticky; top: 100px; }
.sidebar-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 32px; margin-bottom: 20px; box-shadow: var(--shadow-sm); }
.sidebar-feature { display: flex; gap: 14px; margin-bottom: 22px; }
.sidebar-feature:last-child { margin-bottom: 0; }
.sf-icon { width: 44px; height: 44px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--gray-100); display: flex; align-items: center; justify-content: center; }
.sf-icon img { width: 24px; height: 24px; }
.sf-text h6 { font-size: 14px; font-weight: 700; margin-bottom: 3px; color: var(--navy); }
.sf-text p  { font-size: 12px; color: var(--gray-600); }
.form-success { display: none; text-align: center; padding: 48px 20px; }
.form-success .success-icon { width: 88px; height: 88px; border-radius: 50%; background: rgba(56,161,105,0.1); border: 2px solid var(--success); display: flex; align-items: center; justify-content: center; margin: 0 auto 24px; }
.form-success h3 { margin-bottom: 12px; color: var(--navy); }
.form-success p { color: var(--gray-600); }
.form-success .ref { font-family: var(--font-mono); font-size: 1.4rem; color: var(--gold); margin: 20px 0; }

/* Services page */
.service-section { padding: 100px 0; }
.service-section.alt-bg { background: var(--gray-100); }
.service-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.service-layout.reverse .service-img-wrap { order: 2; }
.service-layout.reverse .service-text { order: 1; }
.service-img-wrap { border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow-lg); }
.service-img-wrap img { width: 100%; height: 420px; transition: transform 0.6s ease; }
.service-img-wrap:hover img { transform: scale(1.04); }
.service-features { margin: 24px 0; display: flex; flex-direction: column; gap: 10px; }
.service-feature-item { display: flex; align-items: center; gap: 12px; font-size: 14px; color: var(--gray-600); }
.feature-check { width: 18px; height: 18px; border-radius: 50%; background: rgba(201,168,76,0.15); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; flex-shrink: 0; font-size: 9px; color: var(--gold); font-weight: 900; }

/* About page */
.values-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
.value-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 36px 28px; text-align: center; transition: var(--transition); box-shadow: var(--shadow-sm); }
.value-card:hover { border-color: var(--gold); transform: translateY(-5px); box-shadow: var(--shadow); }
.value-img { width: 72px; height: 72px; border-radius: 50%; overflow: hidden; margin: 0 auto 18px; border: 3px solid var(--gold); }
.value-img img { width: 100%; height: 100%; }
.value-card h4 { margin-bottom: 10px; color: var(--navy); font-size: 1.2rem; }
.value-card p { font-size: 14px; color: var(--gray-600); }

.timeline-about { max-width: 740px; margin: 0 auto; }
.timeline-about-item { display: flex; gap: 28px; margin-bottom: 36px; }
.year-badge { background: var(--gold); color: var(--navy); font-family: var(--font-display); font-size: 1.1rem; letter-spacing: 1px; padding: 5px 16px; border-radius: 20px; flex-shrink: 0; height: fit-content; margin-top: 4px; font-weight: 900; }
.timeline-about-text h5 { font-size: 16px; font-weight: 700; margin-bottom: 6px; color: var(--navy); }
.timeline-about-text p { font-size: 14px; color: var(--gray-600); }

.mission-vision { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.mv-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); padding: 44px; box-shadow: var(--shadow-sm); }
.mv-card.mission { border-top: 4px solid var(--gold); }
.mv-card h3 { margin-bottom: 16px; color: var(--navy); }
.mv-card p { color: var(--gray-600); line-height: 1.85; }

.team-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 28px; }
.team-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); transition: var(--transition); }
.team-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--gold); }
.team-img { width: 100%; height: 280px; overflow: hidden; }
.team-img img { width: 100%; height: 100%; transition: transform 0.5s ease; }
.team-card:hover .team-img img { transform: scale(1.05); }
.team-info { padding: 24px; }
.team-info h4 { color: var(--navy); margin-bottom: 4px; font-size: 1.2rem; }
.team-role { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--gold); font-weight: 700; margin-bottom: 10px; display: block; }
.team-info p { font-size: 13px; color: var(--gray-600); line-height: 1.6; }

.certifications { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
.cert-badge { background: var(--white); border: 2px solid var(--gray-200); border-radius: var(--radius); padding: 14px 28px; font-family: var(--font-display); letter-spacing: 2px; font-size: 1rem; color: var(--navy); transition: var(--transition); box-shadow: var(--shadow-sm); }
.cert-badge:hover { border-color: var(--gold); color: var(--gold); }

/* Contact */
.contact-layout { display: grid; grid-template-columns: 1fr 380px; gap: 48px; align-items: start; }
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); padding: 24px; display: flex; gap: 16px; align-items: flex-start; transition: var(--transition); box-shadow: var(--shadow-sm); }
.info-card:hover { border-color: var(--gold); }
.info-icon { width: 48px; height: 48px; border-radius: 10px; overflow: hidden; flex-shrink: 0; background: var(--gray-100); display: flex; align-items: center; justify-content: center; }
.info-text h5 { font-size: 14px; font-weight: 700; margin-bottom: 4px; color: var(--navy); }
.info-text p { font-size: 13px; color: var(--gray-600); }
.info-text a { color: var(--gold); font-size: 13px; font-weight: 600; }

.faq-item { background: var(--white); border: 1px solid var(--gray-200); border-radius: var(--radius); margin-bottom: 10px; overflow: hidden; box-shadow: var(--shadow-sm); }
.faq-q { padding: 20px 24px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: 600; font-size: 15px; color: var(--navy); transition: var(--transition); }
.faq-q:hover { color: var(--gold); }
.faq-toggle { font-size: 22px; transition: transform var(--transition); color: var(--gold); font-weight: 300; line-height: 1; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-inner { padding: 0 24px 20px; color: var(--gray-600); font-size: 14px; line-height: 1.85; }
.faq-item.open .faq-a { max-height: 240px; }

/* Admin */
.admin-body { background: #F0F2F7; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%); padding: 24px; }
.login-card { background: var(--white); border-radius: var(--radius-xl); padding: 52px; width: 100%; max-width: 460px; box-shadow: var(--shadow-lg); }
.login-logo { text-align: center; margin-bottom: 36px; }
.login-logo .nav-logo { justify-content: center; color: var(--navy); }
.admin-badge { display: inline-block; background: rgba(201,168,76,0.1); border: 1px solid rgba(201,168,76,0.4); color: var(--gold); font-size: 11px; letter-spacing: 3px; text-transform: uppercase; padding: 6px 18px; border-radius: 20px; margin-top: 10px; font-weight: 700; }
.login-error { background: rgba(229,62,62,0.06); border: 1px solid var(--danger); border-radius: var(--radius); padding: 12px 16px; font-size: 14px; color: var(--danger); margin-bottom: 20px; display: none; }

.admin-sidebar { width: 268px; background: var(--navy); position: fixed; top: 0; left: 0; bottom: 0; z-index: 100; display: flex; flex-direction: column; box-shadow: 4px 0 20px rgba(0,0,0,0.2); transition: transform var(--transition); }
.sidebar-logo { padding: 0 22px; height: 68px; display: flex; align-items: center; border-bottom: 1px solid var(--border); }
.sidebar-logo .nav-logo { font-size: 18px; }
.sidebar-nav { flex: 1; padding: 16px 12px; overflow-y: auto; }
.sidebar-section-title { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.22); padding: 16px 16px 6px; font-weight: 700; }
.sidebar-nav a { display: flex; align-items: center; gap: 12px; padding: 11px 16px; border-radius: var(--radius); font-size: 14px; font-weight: 500; color: rgba(255,255,255,0.55); margin-bottom: 3px; transition: var(--transition); position: relative; }
.sidebar-nav a:hover { background: rgba(201,168,76,0.1); color: rgba(255,255,255,0.9); }
.sidebar-nav a.active { background: rgba(201,168,76,0.14); color: var(--gold); border-left: 3px solid var(--gold); padding-left: 13px; }
.sidebar-nav a .nav-icon { width: 20px; text-align: center; flex-shrink: 0; font-size: 16px; }
.unread-badge { position: absolute; right: 12px; top: 50%; transform: translateY(-50%); background: var(--danger); color: #fff; font-size: 10px; font-weight: 700; width: 18px; height: 18px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.sidebar-footer { padding: 12px; border-top: 1px solid var(--border); }
.sidebar-footer a { display: flex; align-items: center; gap: 10px; padding: 10px 16px; font-size: 13px; color: rgba(255,255,255,0.35); border-radius: var(--radius); transition: var(--transition); }
.sidebar-footer a:hover { color: var(--danger); background: rgba(229,62,62,0.08); }

.admin-sidebar-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5); z-index: 99; }
.admin-sidebar-overlay.show { display: block; }

.admin-main { margin-left: 268px; min-height: 100vh; display: flex; flex-direction: column; }
.admin-topbar { height: 68px; background: var(--white); border-bottom: 1px solid var(--border-light); display: flex; align-items: center; justify-content: space-between; padding: 0 28px; position: sticky; top: 0; z-index: 50; box-shadow: 0 1px 6px rgba(0,0,0,0.06); }
.admin-topbar-left { display: flex; align-items: center; gap: 16px; }
.sidebar-toggle { display: none; background: none; border: none; cursor: pointer; padding: 6px; font-size: 22px; color: var(--navy); }
.admin-topbar h1 { font-size: 1.4rem; color: var(--navy); }
.admin-user { display: flex; align-items: center; gap: 10px; font-size: 14px; }
.admin-user-avatar { width: 38px; height: 38px; border-radius: 50%; background: var(--navy); border: 2px solid var(--gold); display: flex; align-items: center; justify-content: center; font-family: var(--font-display); color: var(--gold); font-size: 1.2rem; overflow: hidden; }
.admin-content { padding: 32px 28px; flex: 1; }

.stats-cards { display: grid; grid-template-columns: repeat(4,1fr); gap: 20px; margin-bottom: 28px; }
.stat-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); padding: 28px; display: flex; justify-content: space-between; align-items: flex-start; box-shadow: var(--shadow-sm); transition: var(--transition); }
.stat-card:hover { box-shadow: var(--shadow); transform: translateY(-2px); }
.sc-info .sc-label { font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-400); margin-bottom: 8px; font-weight: 700; }
.sc-info .sc-value { font-family: var(--font-display); font-size: 3.2rem; line-height: 1; color: var(--navy); }
.sc-icon { width: 56px; height: 56px; border-radius: 14px; display: flex; align-items: center; justify-content: center; font-size: 26px; }
.sc-green  { background: rgba(56,161,105,0.1); }
.sc-blue   { background: rgba(49,130,206,0.1); }
.sc-yellow { background: rgba(201,168,76,0.1); }
.sc-red    { background: rgba(229,62,62,0.1); }

.admin-table-wrap { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); margin-bottom: 24px; }
.admin-table-header { padding: 18px 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; border-bottom: 1px solid var(--border-light); background: var(--gray-100); }
.admin-table-title { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); }
.admin-table-controls { display: flex; gap: 10px; flex-wrap: wrap; }
.search-input { background: var(--white); border: 2px solid var(--border-light); border-radius: var(--radius); padding: 8px 14px; color: var(--navy); font-size: 13px; width: 220px; transition: var(--transition); }
.search-input:focus { outline: none; border-color: var(--gold); }
.search-input::placeholder { color: var(--gray-400); }
.filter-select { background: var(--white); border: 2px solid var(--border-light); border-radius: var(--radius); padding: 8px 12px; color: var(--navy); font-size: 13px; cursor: pointer; }
.filter-select:focus { outline: none; border-color: var(--gold); }
.data-table { width: 100%; border-collapse: collapse; }
.data-table th { padding: 12px 18px; text-align: left; font-size: 11px; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-400); background: var(--gray-100); border-bottom: 1px solid var(--border-light); font-weight: 700; }
.data-table td { padding: 14px 18px; font-size: 14px; border-bottom: 1px solid var(--gray-100); vertical-align: middle; color: var(--navy); }
.data-table tr:last-child td { border-bottom: none; }
.data-table tr:hover td { background: #FAFBFF; }
.data-table tr.unread td { font-weight: 600; }
.data-table .mono { font-family: var(--font-mono); font-size: 13px; color: var(--gold); font-weight: 600; }

.table-actions { display: flex; gap: 5px; }
.action-btn { background: var(--gray-100); border: 1px solid var(--border-light); border-radius: 6px; padding: 6px 10px; font-size: 12px; cursor: pointer; color: var(--gray-600); transition: var(--transition); display: inline-flex; align-items: center; gap: 4px; font-weight: 600; }
.action-btn:hover { background: rgba(201,168,76,0.1); color: var(--gold); border-color: var(--gold); }
.action-btn.delete:hover { background: rgba(229,62,62,0.08); color: var(--danger); border-color: var(--danger); }

.pagination { display: flex; align-items: center; justify-content: space-between; padding: 14px 24px; border-top: 1px solid var(--border-light); flex-wrap: wrap; gap: 12px; background: var(--gray-100); }
.page-info { font-size: 13px; color: var(--gray-400); }
.page-btns { display: flex; gap: 6px; }
.page-btn { min-width: 36px; height: 36px; border-radius: 6px; background: var(--white); border: 1px solid var(--border-light); color: var(--gray-600); font-size: 13px; cursor: pointer; display: flex; align-items: center; justify-content: center; padding: 0 10px; transition: var(--transition); font-weight: 600; }
.page-btn:hover, .page-btn.active { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.page-btn:disabled { opacity: 0.4; cursor: not-allowed; }

.modal-overlay { position: fixed; inset: 0; z-index: 2000; background: rgba(10,22,40,0.65); backdrop-filter: blur(4px); display: flex; align-items: center; justify-content: center; padding: 20px; opacity: 0; visibility: hidden; transition: var(--transition); }
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal { background: var(--white); border-radius: var(--radius-xl); padding: 40px; width: 100%; max-width: 780px; max-height: 92vh; overflow-y: auto; transform: scale(0.96) translateY(16px); transition: var(--transition); box-shadow: var(--shadow-lg); }
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 24px; padding-bottom: 18px; border-bottom: 2px solid var(--gray-100); }
.modal-title { font-family: var(--font-display); font-size: 1.8rem; color: var(--navy); }
.modal-close { width: 38px; height: 38px; border-radius: 8px; background: var(--gray-100); border: none; cursor: pointer; color: var(--gray-600); font-size: 18px; display: flex; align-items: center; justify-content: center; transition: var(--transition); }
.modal-close:hover { background: rgba(229,62,62,0.1); color: var(--danger); }

.alert { padding: 13px 16px; border-radius: var(--radius); font-size: 14px; margin-bottom: 14px; display: none; }
.alert.show { display: block; }
.alert-success { background: rgba(56,161,105,0.08);  border: 1px solid var(--success); color: var(--success); }
.alert-error   { background: rgba(229,62,62,0.06);   border: 1px solid var(--danger);  color: var(--danger); }
.alert-info    { background: rgba(49,130,206,0.08);  border: 1px solid var(--info);    color: var(--info); }

/* Terms */
.terms-content { max-width: 860px; margin: 0 auto; }
.terms-content h3 { color: var(--navy); margin: 40px 0 14px; font-size: 1.25rem; font-family: var(--font-body); font-weight: 700; }
.terms-content h3:first-child { margin-top: 0; }
.terms-content p { color: var(--gray-600); font-size: 15px; line-height: 1.85; margin-bottom: 14px; }
.terms-content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.terms-content ul li { font-size: 15px; color: var(--gray-600); line-height: 1.8; margin-bottom: 8px; }
.terms-toc { background: var(--gray-100); border-radius: var(--radius); padding: 28px 32px; margin-bottom: 48px; border-left: 4px solid var(--gold); }
.terms-toc h5 { font-size: 12px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 700; }
.terms-toc ol { list-style: decimal; padding-left: 18px; }
.terms-toc ol li { font-size: 14px; color: var(--navy); line-height: 1.9; }
.terms-toc ol li a { color: var(--navy-light); }
.terms-toc ol li a:hover { color: var(--gold); }

/* Live counter */
.live-counter { position: fixed; bottom: 24px; right: 24px; z-index: 900; background: var(--white); border: 1px solid var(--border-light); padding: 12px 20px; border-radius: 30px; font-size: 13px; color: var(--navy); display: flex; align-items: center; gap: 10px; box-shadow: var(--shadow); }
.pulse-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--success); flex-shrink: 0; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(56,161,105,0.6); } 50% { box-shadow: 0 0 0 6px rgba(56,161,105,0); } }

.fade-up { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up-delay-1 { transition-delay: 0.12s; }
.fade-up-delay-2 { transition-delay: 0.24s; }
.fade-up-delay-3 { transition-delay: 0.36s; }
.fade-up-delay-4 { transition-delay: 0.48s; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: translateY(0); } }
.spinner { width: 18px; height: 18px; border-radius: 50%; border: 2px solid transparent; border-top-color: currentColor; animation: spin 0.7s linear infinite; display: inline-block; }
@keyframes spin { to { transform: rotate(360deg); } }

@media (max-width: 1100px) {
  .industries-grid { grid-template-columns: repeat(3,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .stats-cards { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: block; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .how-steps { grid-template-columns: 1fr; }
  .how-steps::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: repeat(2,1fr); }
  .mission-vision { grid-template-columns: 1fr; }
  .quote-layout { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .service-layout { grid-template-columns: 1fr; }
  .service-layout.reverse .service-img-wrap, .service-layout.reverse .service-text { order: unset; }
  .track-info-grid { grid-template-columns: repeat(2,1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2,1fr); }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { transform: translateX(-100%); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .sidebar-toggle { display: flex !important; }
  .stats-cards { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .section { padding: 70px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: repeat(2,1fr); }
  .track-info-grid { grid-column: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stats-cards { grid-template-columns: 1fr 1fr; }
  .hero-ctas { flex-direction: column; align-items: stretch; }
  .hero-ctas .btn { min-width: unset; width: 100%; text-align: center; justify-content: center; padding: 16px 24px; font-size: 13px; }
  .hero-content { padding: 90px 20px 160px; }
  .values-grid { grid-template-columns: 1fr; }
  .live-counter { display: none; }
  .form-card { padding: 24px 18px; }
  .modal { padding: 24px 16px; }
  .services-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
  .hero-stats-inner .hero-stat-divider { display: none; }
  .admin-content { padding: 20px 16px; }
}

/* ── Carrier Marquee & Association Styles ──────────────────────────────────── */
@keyframes marqueeScroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

.carriers-marquee-wrap {
  overflow: hidden;
  position: relative;
}

.carriers-marquee-wrap::before,
.carriers-marquee-wrap::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  width: 80px;
  z-index: 2;
  pointer-events: none;
}
.carriers-marquee-wrap::before { left: 0; background: linear-gradient(to right, #fff, transparent); }
.carriers-marquee-wrap::after  { right: 0; background: linear-gradient(to left, #fff, transparent); }
.carriers-marquee-wrap.dark::before { background: linear-gradient(to right, #0e1f13, transparent); }
.carriers-marquee-wrap.dark::after  { background: linear-gradient(to left, #0e1f13, transparent); }

.carriers-marquee {
  display: flex;
  gap: 40px;
  width: max-content;
  animation: marqueeScroll 20s linear infinite;
  align-items: center;
}

.carriers-marquee:hover { animation-play-state: paused; }

.carrier-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e5e7eb;
  white-space: nowrap;
  cursor: default;
  transition: transform 0.2s;
}
.carrier-item:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,0.08); }
.carrier-item.dark {
  background: rgba(255,255,255,0.07);
  border-color: rgba(255,255,255,0.1);
}

.carrier-name {
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 1px;
}

/* Carrier logo grid (section) */
.carrier-logos-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
@media(max-width:768px) { .carrier-logos-grid { grid-template-columns: repeat(2,1fr); } }

.carrier-logo-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 28px 20px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--gray-200);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s;
}
.carrier-logo-card:hover { box-shadow: 0 6px 24px rgba(0,0,0,0.1); transform: translateY(-3px); }
.carrier-logo-label { font-weight: 700; font-size: 13px; color: var(--navy); margin-top: 12px; }
.carrier-logo-sub { font-size: 11px; color: var(--gray-400); margin-top: 4px; }

/* Footer carriers strip */
.footer-carriers {
  background: #0e1f13;
  padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
  overflow: hidden;
}
.footer-carriers-label {
  text-align: center;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 12px;
}

/* ── Tracking info grid (expanded on track page) ──────────────────────────── */
.track-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  margin: 24px 0;
}

/* ── Tracking Info Grid — Ordered Sections ─────────────────────────────────── */
.ti-section-label {
  grid-column: 1 / -1;
  font-size: 10px;
  letter-spacing: 2px;
  text-transform: uppercase;
  font-weight: 800;
  color: var(--navy);
  background: var(--gray-50);
  border-left: 3px solid var(--gold);
  padding: 8px 14px;
  border-radius: 4px;
  margin-top: 8px;
}
.ti-section-label:first-child { margin-top: 0; }

.track-info-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 12px 16px;
  margin: 24px 0;
}

@media(max-width: 600px) {
  .track-info-grid { grid-template-columns: 1fr 1fr; }
}