/* ══════════════════════════════════════════
   PLATINUM SECURITY & SHIPPING — styles.css
   ══════════════════════════════════════════ */

/* ── RESET & VARIABLES ── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --navy:       #0d1f3c;
  --navy-light: #1a3260;
  --gold:       #b8942a;
  --gold-light: #d4ab3f;
  --white:      #ffffff;
  --gray-light: #f5f7fa;
  --gray:       #6b7280;
  --text:       #1e293b;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  overflow-x: hidden;
}

/* ── KEYFRAME ANIMATIONS ── */
@keyframes slideDown {
  from { transform: translateY(-100%); opacity: 0; }
  to   { transform: translateY(0);     opacity: 1; }
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0);    }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* ══════════════════
   NAVBAR
══════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0, 0, 0, .08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 72px;
  animation: slideDown .6s ease both;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.logo-icon {
  width: 52px;
  height: 52px;
  background: var(--navy);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 13px;
  text-align: center;
  letter-spacing: .5px;
  line-height: 1.2;
  padding: 8px;
}

.logo-text h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: .5px;
}

.logo-text p {
  font-size: .7rem;
  color: var(--gray);
  letter-spacing: .3px;
}

/* Nav Links */
.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text);
  font-size: .9rem;
  font-weight: 500;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
  transition: all .3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
}

/* Buttons */
.btn-login {
  background: var(--gold);
  color: var(--white);
  padding: 10px 24px;
  border: none;
  border-radius: 4px;
  font-family: 'Outfit', sans-serif;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: .8px;
  cursor: pointer;
  text-decoration: none;
  transition: background .3s, transform .2s;
}

.btn-login:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
}

.hamburger span {
  width: 24px;
  height: 2px;
  background: var(--navy);
  transition: .3s;
  display: block;
}

/* ══════════════════
   HERO
══════════════════ */
.hero {
  min-height: 100vh;
  background:
    linear-gradient(rgba(10, 20, 50, .65), rgba(10, 20, 50, .65)),
    url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600&auto=format&fit=crop')
    center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 5%;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 50%, rgba(184, 148, 42, .15) 0%, transparent 60%);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 700px;
}

.hero-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white);
  line-height: 1.2;
  animation: fadeUp .9s .3s ease both;
}

.hero-content p {
  color: rgba(255, 255, 255, .85);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  margin: 24px 0 40px;
  line-height: 1.7;
  animation: fadeUp .9s .5s ease both;
}

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  animation: fadeUp .9s .7s ease both;
}

.btn-primary {
  background: var(--navy);
  color: var(--white);
  padding: 14px 32px;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 3px;
  transition: all .3s;
}

.btn-primary:hover {
  background: var(--navy-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, .3);
}

.btn-outline {
  border: 2px solid rgba(255, 255, 255, .6);
  color: var(--white);
  padding: 14px 32px;
  text-decoration: none;
  font-size: .85rem;
  font-weight: 600;
  letter-spacing: 1px;
  border-radius: 3px;
  transition: all .3s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ══════════════════
   SHARED SECTION STYLES
══════════════════ */
section {
  padding: 90px 5%;
}

.section-title {
  text-align: center;
  margin-bottom: 60px;
}

.section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--navy);
}

.section-title .underline {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
}

.section-title p {
  color: var(--gray);
  margin-top: 16px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* ══════════════════
   SERVICES
══════════════════ */
#services {
  background: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.service-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, .06);
  transition: transform .3s, box-shadow .3s;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, .12);
}

.service-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.service-card-body {
  padding: 28px;
}

.service-card-body h3 {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.service-card-body p {
  color: var(--gray);
  font-size: .9rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.service-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 24px;
}

.service-card-body ul li {
  font-size: .88rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.service-card-body ul li i {
  color: var(--navy);
  font-size: .8rem;
  flex-shrink: 0;
}

.btn-dark {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 10px 24px;
  border-radius: 3px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-decoration: none;
  transition: background .3s;
}

.btn-dark:hover {
  background: var(--navy-light);
}

/* ══════════════════
   LOCATIONS
══════════════════ */
#locations {
  background: var(--white);
}

.locations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.location-card {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 32px 24px;
  text-align: center;
  transition: box-shadow .3s, transform .3s;
}

.location-card:hover {
  box-shadow: 0 8px 28px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

.location-card .flag {
  font-size: 3rem;
  margin-bottom: 16px;
  display: block;
}

.location-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}

.location-card .role {
  font-size: .82rem;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.4;
}

.location-card .info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-align: left;
}

.location-card .info span {
  font-size: .82rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.4;
}

.location-card .info span i {
  color: var(--gold);
  margin-top: 2px;
  flex-shrink: 0;
}

/* ══════════════════
   VAULT
══════════════════ */
#vault {
  background:
    linear-gradient(rgba(0, 0, 0, .82), rgba(0, 0, 0, .82)),
    url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&auto=format&fit=crop')
    center / cover fixed;
  color: var(--white);
}

#vault .section-title h2 {
  color: var(--white);
}

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

.vault-card {
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 8px;
  padding: 36px 24px;
  text-align: center;
  transition: background .3s, transform .3s;
}

.vault-card:hover {
  background: rgba(255, 255, 255, .12);
  transform: translateY(-4px);
}

.vault-card .vault-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.vault-card h3 {
  font-weight: 600;
  font-size: 1rem;
  margin-bottom: 10px;
}

.vault-card p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .7);
  line-height: 1.6;
}

/* ══════════════════
   ABOUT
══════════════════ */
#about {
  background: var(--gray-light);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-img img {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 16px 48px rgba(0, 0, 0, .15);
}

.about-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  color: var(--navy);
  margin-bottom: 20px;
}

.about-content p {
  color: var(--gray);
  line-height: 1.8;
  margin-bottom: 16px;
  font-size: .95rem;
}

.stats {
  display: flex;
  gap: 40px;
  margin-top: 36px;
}

.stat {
  text-align: center;
}

.stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  color: var(--navy);
  font-weight: 700;
}

.stat .label {
  font-size: .8rem;
  color: var(--gray);
  margin-top: 4px;
}

/* ══════════════════
   TESTIMONIALS
══════════════════ */
#testimonials {
  background: var(--white);
}

.testimonial-wrapper {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.testimonial {
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 48px 48px 36px;
  display: none;
  animation: fadeIn .5s ease;
}

.testimonial.active {
  display: block;
}

.testimonial blockquote {
  font-style: italic;
  color: var(--text);
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1rem;
  font-weight: 700;
  flex-shrink: 0;
}

.author-name {
  font-weight: 600;
  color: var(--gold);
  font-size: .95rem;
}

.author-role {
  font-size: .8rem;
  color: var(--gray);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  border: none;
  transition: background .3s;
}

.dot.active {
  background: var(--gold);
}

/* ══════════════════
   CTA
══════════════════ */
#cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
  text-align: center;
  padding: 100px 5%;
}

#cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 20px;
}

#cta p {
  color: rgba(255, 255, 255, .75);
  font-size: 1rem;
  margin-bottom: 40px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-cta {
  display: inline-block;
  background: var(--gold);
  color: var(--white);
  padding: 16px 40px;
  border-radius: 4px;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all .3s;
}

.btn-cta:hover {
  background: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, .3);
}

/* ══════════════════
   FOOTER
══════════════════ */
footer {
  background: #0a1628;
  color: rgba(255, 255, 255, .75);
  padding: 70px 5% 30px;
}

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

.footer-col h4 {
  color: var(--white);
  font-size: .9rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
  display: inline-block;
}

.footer-col > p {
  font-size: .85rem;
  line-height: 1.8;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-col ul li a {
  color: rgba(255, 255, 255, .7);
  text-decoration: none;
  font-size: .85rem;
  transition: color .3s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-col ul li a i {
  color: var(--gold);
  font-size: .5rem;
}

.footer-col ul li a:hover {
  color: var(--gold);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-contact span {
  font-size: .85rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}

.footer-contact span i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
  width: 14px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: .9rem;
  transition: background .3s, color .3s;
}

.social-links a:hover {
  background: var(--gold);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .08);
  padding-top: 24px;
  text-align: center;
  font-size: .8rem;
  color: rgba(255, 255, 255, .4);
}

/* ══════════════════
   CHAT WIDGET
══════════════════ */
.chat-bubble {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 999;
}

.chat-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gold);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .2);
  transition: transform .3s;
  color: var(--white);
}

.chat-btn:hover {
  transform: scale(1.1);
}

.chat-popup {
  position: absolute;
  bottom: 64px;
  right: 0;
  background: var(--white);
  border-radius: 12px;
  padding: 16px 20px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .15);
  min-width: 220px;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.chat-popup.open {
  display: flex;
}

.chat-popup .greeting {
  font-size: .9rem;
  font-weight: 500;
  margin-bottom: 4px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.chat-popup .greeting i {
  color: var(--gold);
}

.chat-quick {
  background: none;
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 7px 14px;
  border-radius: 20px;
  font-size: .8rem;
  cursor: pointer;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  transition: all .3s;
}

.chat-quick:hover {
  background: var(--gold);
  color: var(--white);
}

/* ══════════════════
   SCROLL REVEAL
══════════════════ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity .7s ease, transform .7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════
   RESPONSIVE
══════════════════ */
@media (max-width: 900px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .stats {
    justify-content: center;
  }
}

@media (max-width: 700px) {
  .nav-links,
  .btn-login {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  nav.open .nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 24px 5%;
    box-shadow: 0 8px 20px rgba(0, 0, 0, .08);
    gap: 20px;
  }

  nav.open .btn-login {
    display: block;
    margin: 0 5% 16px;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .testimonial {
    padding: 32px 24px 24px;
  }

  .stats {
    flex-wrap: wrap;
    gap: 24px;
  }
}

/* ══════════════════════════════════════════
   PLATINUM — services.css  (page-specific)
   ══════════════════════════════════════════ */

/* ── PAGE HERO (shorter than homepage) ── */
.page-hero {
  min-height: 42vh;
  background:
    linear-gradient(rgba(30, 35, 40, .78), rgba(30, 35, 40, .78)),
    url('https://images.unsplash.com/photo-1565514020179-026b92b84bb6?w=1600&auto=format&fit=crop')
    center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 5% 60px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  animation: fadeUp .9s .3s ease both;
}

.page-hero p {
  color: rgba(255, 255, 255, .8);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  max-width: 620px;
  margin: 18px auto 0;
  line-height: 1.7;
  animation: fadeUp .9s .5s ease both;
}

/* ── TAB BAR ── */
.tab-bar {
  background: var(--white);
  padding: 28px 5%;
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  position: sticky;
  top: 72px;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .06);
}

.tab-btn {
  padding: 10px 26px;
  border-radius: 30px;
  border: 2px solid #e5e7eb;
  background: var(--white);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s;
}

.tab-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.tab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

/* ── TAB PANELS ── */
.tab-panel {
  display: none;
  padding: 70px 5%;
  animation: fadeIn .4s ease;
}

.tab-panel.active {
  display: block;
}

/* ── PANEL TITLE ── */
.panel-title {
  text-align: center;
  margin-bottom: 54px;
}

.panel-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold);
}

.panel-title .underline {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
}

/* ── SERVICE FEATURE CARDS (3 cols) ── */
.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
  margin-bottom: 64px;
}

.feature-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 36px 28px;
  transition: box-shadow .3s, transform .3s;
}

.feature-card:hover {
  box-shadow: 0 10px 32px rgba(0, 0, 0, .1);
  transform: translateY(-4px);
}

.feature-card .fc-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.feature-card h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card > p {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.feature-card ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.feature-card ul li {
  font-size: .85rem;
  color: var(--text);
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.feature-card ul li i {
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

/* ── PRICING TABLE ── */
.pricing-section {
  margin-top: 12px;
}

.pricing-section h3 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 20px;
}

.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
}

.pricing-table thead tr {
  background: var(--navy);
  color: var(--white);
}

.pricing-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .4px;
}

.pricing-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background .2s;
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody tr:nth-child(even) {
  background: var(--gray-light);
}

.pricing-table tbody tr:hover {
  background: #eef2ff;
}

.pricing-table tbody td {
  padding: 15px 20px;
  font-size: .88rem;
  color: var(--text);
}

.pricing-table tbody td:last-child {
  font-weight: 600;
  color: var(--navy);
}

/* ── CTA BANNER ── */
.services-cta {
  background:
    linear-gradient(rgba(10, 20, 60, .82), rgba(10, 20, 60, .82)),
    url('https://images.unsplash.com/photo-1494412574643-ff11b0a5c1c3?w=1600&auto=format&fit=crop')
    center / cover no-repeat;
  padding: 90px 5%;
  text-align: center;
  color: var(--white);
}

.services-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  margin-bottom: 16px;
}

.services-cta p {
  color: rgba(255, 255, 255, .8);
  font-size: 1rem;
  margin-bottom: 32px;
  max-width: 540px;
  margin-left: auto;
  margin-right: auto;
}

.btn-consult {
  display: inline-block;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 13px 36px;
  border-radius: 3px;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: all .3s;
}

.btn-consult:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .tab-bar {
    gap: 8px;
  }

  .tab-btn {
    padding: 8px 16px;
    font-size: .82rem;
  }

  .pricing-table thead th,
  .pricing-table tbody td {
    padding: 12px 12px;
    font-size: .8rem;
  }
}

/* ══════════════════════════════════════════
   PLATINUM — shipping.css  (page-specific)
   ══════════════════════════════════════════ */

/* ── PAGE HERO ── */
.page-hero {
  min-height: 42vh;
  background:
    linear-gradient(rgba(20, 25, 30, .72), rgba(20, 25, 30, .72)),
    url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1600&auto=format&fit=crop')
    center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 5% 60px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  animation: fadeUp .9s .3s ease both;
}

.page-hero p {
  color: rgba(255, 255, 255, .8);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  max-width: 620px;
  margin: 18px auto 0;
  line-height: 1.7;
  animation: fadeUp .9s .5s ease both;
}

/* ── PANEL TITLE (shared within page) ── */
.panel-title {
  text-align: center;
  margin-bottom: 54px;
}

.panel-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold);
}

.panel-title .underline {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
}

.panel-title p {
  color: var(--gray);
  margin-top: 16px;
  font-size: .95rem;
  line-height: 1.7;
}

/* ── SHIPPING METHODS ── */
#methods {
  padding: 80px 5%;
  background: var(--white);
}

.methods-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.method-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}

.method-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 38px rgba(0,0,0,.12);
}

.method-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.method-card-body {
  padding: 28px;
}

.method-card-body h3 {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.method-card-body > p {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 16px;
}

.method-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
}

.method-card-body ul li {
  font-size: .86rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.method-card-body ul li i {
  color: var(--navy);
  font-size: .8rem;
  flex-shrink: 0;
}

.btn-dark {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 3px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-decoration: none;
  transition: background .3s;
}

.btn-dark:hover {
  background: var(--navy-light);
}

/* ── PROCESS STEPS ── */
#process {
  padding: 80px 5%;
  background: var(--gray-light);
}

.steps-wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 0;
  position: relative;
  margin-top: 20px;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  max-width: 220px;
  position: relative;
  z-index: 1;
}

/* connecting line */
.step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(50% + 32px);
  width: calc(100% - 32px);
  height: 2px;
  background: var(--gold);
  z-index: 0;
}

.step-num {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 20px;
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(13,31,60,.3);
}

.step h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 8px;
}

.step p {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.6;
  padding: 0 10px;
}

/* ── GLOBAL COVERAGE ── */
#coverage {
  padding: 80px 5%;
  background: var(--white);
}

.coverage-map {
  position: relative;
  max-width: 760px;
  margin: 40px auto 0;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.12);
}

.coverage-map img {
  width: 100%;
  display: block;
}

/* SVG pins overlay */
.map-pins {
  position: absolute;
  inset: 0;
}

.map-pin {
  position: absolute;
  transform: translate(-50%, -100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  cursor: default;
}

.map-pin i {
  color: #e53e3e;
  font-size: 1.3rem;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,.4));
}

.map-pin span {
  background: rgba(255,255,255,.92);
  color: var(--navy);
  font-size: .68rem;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 4px;
  white-space: nowrap;
  margin-top: 2px;
  box-shadow: 0 2px 6px rgba(0,0,0,.15);
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 80px 5%;
  background: var(--gray-light);
}

.testimonial-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.testimonial {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 48px 48px 36px;
  display: none;
  animation: fadeIn .5s ease;
}

.testimonial.active {
  display: block;
}

.testimonial blockquote {
  font-style: italic;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--gold);
  font-size: .95rem;
}

.author-role {
  font-size: .8rem;
  color: var(--gray);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  border: none;
  transition: background .3s;
}

.dot.active {
  background: var(--gold);
}

/* ── SHIPPING CTA ── */
.shipping-cta {
  background:
    linear-gradient(rgba(10, 20, 60, .80), rgba(10, 20, 60, .80)),
    url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600&auto=format&fit=crop')
    center / cover no-repeat;
  padding: 90px 5%;
  text-align: center;
  color: var(--white);
}

.shipping-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.shipping-cta p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-quote {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 14px 38px;
  border-radius: 3px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: all .3s;
}

.btn-quote:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 700px) {
  .steps-wrapper {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .step:not(:last-child)::after {
    display: none;
  }

  .testimonial {
    padding: 32px 20px 24px;
  }
}

/* ══════════════════════════════════════════
   BLUEROUTE — storage.css  (page-specific)
   ══════════════════════════════════════════ */

/* ── PAGE HERO ── */
.page-hero {
  min-height: 42vh;
  background:
    linear-gradient(rgba(8, 10, 12, .78), rgba(8, 10, 12, .78)),
    url('https://images.unsplash.com/photo-1611169033806-76e15fa4bbca?w=1600&auto=format&fit=crop')
    center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 5% 60px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  animation: fadeUp .9s .3s ease both;
}

.page-hero p {
  color: rgba(255, 255, 255, .8);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  max-width: 620px;
  margin: 18px auto 0;
  line-height: 1.7;
  animation: fadeUp .9s .5s ease both;
}

/* ── PANEL TITLE ── */
.panel-title {
  text-align: center;
  margin-bottom: 52px;
}

.panel-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold);
}

.panel-title .underline {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
}

.panel-title p {
  color: var(--gray);
  margin-top: 16px;
  font-size: .95rem;
  line-height: 1.7;
}

/* ── STORAGE OPTIONS ── */
#options {
  padding: 80px 5%;
  background: var(--white);
}

.options-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
}

.option-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0,0,0,.06);
  transition: transform .3s, box-shadow .3s;
}

.option-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 14px 38px rgba(0,0,0,.12);
}

.option-card img {
  width: 100%;
  height: 210px;
  object-fit: cover;
}

.option-card-body {
  padding: 28px;
}

.option-card-body h3 {
  color: var(--gold);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.option-card-body > p {
  color: var(--gray);
  font-size: .88rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

.option-card-body ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 24px;
}

.option-card-body ul li {
  font-size: .86rem;
  color: var(--text);
  display: flex;
  align-items: center;
  gap: 8px;
}

.option-card-body ul li i {
  color: var(--navy);
  font-size: .8rem;
  flex-shrink: 0;
}

.btn-dark {
  display: inline-block;
  background: var(--navy);
  color: var(--white);
  padding: 11px 26px;
  border-radius: 3px;
  font-size: .82rem;
  font-weight: 600;
  letter-spacing: .8px;
  text-decoration: none;
  transition: background .3s;
}

.btn-dark:hover {
  background: var(--navy-light);
}

/* ── STORAGE PRICING ── */
#pricing {
  padding: 80px 5%;
  background: var(--gray-light);
}

.pricing-section-title {
  text-align: center;
  margin-bottom: 40px;
}

.pricing-section-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  color: var(--navy);
}

.pricing-section-title .underline {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
}

/* pricing sub-tabs */
.pricing-tabs {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.ptab-btn {
  padding: 10px 28px;
  border-radius: 30px;
  border: 2px solid #e5e7eb;
  background: var(--white);
  color: var(--text);
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 500;
  cursor: pointer;
  transition: all .25s;
}

.ptab-btn:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.ptab-btn.active {
  background: var(--navy);
  border-color: var(--navy);
  color: var(--white);
}

.ptab-panel {
  display: none;
  animation: fadeIn .35s ease;
}

.ptab-panel.active {
  display: block;
}

/* pricing table */
.pricing-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0,0,0,.07);
  margin-bottom: 32px;
}

.pricing-table thead tr {
  background: var(--navy);
  color: var(--white);
}

.pricing-table thead th {
  padding: 16px 20px;
  text-align: left;
  font-size: .88rem;
  font-weight: 600;
  letter-spacing: .4px;
}

.pricing-table tbody tr {
  border-bottom: 1px solid #f0f0f0;
  transition: background .2s;
}

.pricing-table tbody tr:last-child {
  border-bottom: none;
}

.pricing-table tbody tr:nth-child(even) {
  background: rgba(245,247,250,.8);
}

.pricing-table tbody tr:hover {
  background: #eef2ff;
}

.pricing-table tbody td {
  padding: 15px 20px;
  font-size: .88rem;
  color: var(--text);
}

.pricing-table tbody td:last-child {
  font-weight: 600;
  color: var(--navy);
}

.pricing-table + .pricing-table {
  margin-top: 16px;
}

.btn-custom-quote {
  display: block;
  width: fit-content;
  margin: 32px auto 0;
  border: 2px solid var(--navy);
  color: var(--navy);
  padding: 13px 36px;
  border-radius: 4px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  transition: all .3s;
}

.btn-custom-quote:hover {
  background: var(--navy);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── TESTIMONIALS ── */
#testimonials {
  padding: 80px 5%;
  background: var(--white);
}

.testimonial-wrapper {
  max-width: 720px;
  margin: 0 auto;
}

.testimonial {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 48px 48px 36px;
  display: none;
  animation: fadeIn .5s ease;
}

.testimonial.active {
  display: block;
}

.testimonial blockquote {
  font-style: italic;
  color: var(--text);
  font-size: 1.02rem;
  line-height: 1.75;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}

.author-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.author-name {
  font-weight: 600;
  color: var(--gold);
  font-size: .95rem;
}

.author-role {
  font-size: .8rem;
  color: var(--gray);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 28px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  border: none;
  transition: background .3s;
}

.dot.active {
  background: var(--gold);
}

/* ── STORAGE CTA ── */
.storage-cta {
  background:
    linear-gradient(rgba(10, 20, 60, .80), rgba(10, 20, 60, .80)),
    url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600&auto=format&fit=crop')
    center / cover no-repeat;
  padding: 90px 5%;
  text-align: center;
  color: var(--white);
}

.storage-cta h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  margin-bottom: 16px;
}

.storage-cta p {
  color: rgba(255,255,255,.8);
  font-size: 1rem;
  margin-bottom: 36px;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-arrange {
  display: inline-block;
  background: transparent;
  border: 2px solid var(--white);
  color: var(--white);
  padding: 14px 38px;
  border-radius: 3px;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 1.2px;
  text-decoration: none;
  transition: all .3s;
}

.btn-arrange:hover {
  background: var(--gold);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0,0,0,.3);
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .pricing-tabs { gap: 8px; }
  .ptab-btn { padding: 8px 16px; font-size: .82rem; }
  .pricing-table thead th,
  .pricing-table tbody td { padding: 12px 12px; font-size: .8rem; }
  .testimonial { padding: 32px 20px 24px; }
}


/* ══════════════════════════════════════════
   BLUEROUTE — tracking.css  (page-specific)
   ══════════════════════════════════════════ */

/* ── PAGE HERO ── */
.page-hero {
  min-height: 42vh;
  background:
    linear-gradient(rgba(15, 20, 25, .75), rgba(15, 20, 25, .75)),
    url('https://images.unsplash.com/photo-1554224155-6726b3ff858f?w=1600&auto=format&fit=crop')
    center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 5% 60px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  animation: fadeUp .9s .3s ease both;
}

.page-hero p {
  color: rgba(255, 255, 255, .8);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  max-width: 620px;
  margin: 18px auto 0;
  line-height: 1.7;
  animation: fadeUp .9s .5s ease both;
}

/* ── TRACKER CARD ── */
#tracker {
  padding: 60px 5% 80px;
  background: var(--gray-light);
}

.tracker-card {
  max-width: 760px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 32px rgba(0,0,0,.08);
  overflow: hidden;
}

/* inline tabs inside card */
.tracker-tabs {
  display: flex;
  border-bottom: 2px solid #e5e7eb;
}

.tracker-tab {
  flex: 1;
  padding: 18px 24px;
  background: none;
  border: none;
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: color .25s, border-bottom .25s;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.tracker-tab.active {
  color: var(--navy);
  border-bottom-color: var(--gold);
  font-weight: 600;
}

.tracker-tab:hover:not(.active) {
  color: var(--navy);
}

/* tracker panels */
.tracker-panel {
  display: none;
  padding: 40px;
  animation: fadeIn .35s ease;
}

.tracker-panel.active {
  display: block;
}

.tracker-panel h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--navy);
  margin-bottom: 20px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
}

.form-group input:focus,
.form-group select:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,31,60,.08);
}

.btn-track {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .3s, transform .2s;
  margin-top: 8px;
}

.btn-track:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* result box */
.track-result {
  display: none;
  margin-top: 28px;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  overflow: hidden;
}

.track-result.visible {
  display: block;
  animation: fadeIn .4s ease;
}

.result-header {
  background: var(--navy);
  color: var(--white);
  padding: 16px 22px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.result-header .ref {
  font-weight: 700;
  font-size: .95rem;
}

.status-badge {
  padding: 4px 14px;
  border-radius: 20px;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .5px;
}

.status-badge.in-transit  { background: #fef3c7; color: #92400e; }
.status-badge.delivered   { background: #d1fae5; color: #065f46; }
.status-badge.processing  { background: #dbeafe; color: #1e40af; }

.result-body {
  padding: 24px 22px;
}

.result-meta {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 16px;
  margin-bottom: 28px;
}

.meta-item .meta-label {
  font-size: .75rem;
  color: var(--gray);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .6px;
  margin-bottom: 4px;
}

.meta-item .meta-value {
  font-size: .9rem;
  color: var(--text);
  font-weight: 500;
}

/* timeline */
.timeline {
  position: relative;
  padding-left: 28px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: #e5e7eb;
}

.tl-item {
  position: relative;
  margin-bottom: 20px;
}

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

.tl-dot {
  position: absolute;
  left: -28px;
  top: 4px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #d1d5db;
  border: 2px solid var(--white);
  box-shadow: 0 0 0 2px #d1d5db;
}

.tl-item.done .tl-dot {
  background: var(--gold);
  box-shadow: 0 0 0 2px var(--gold);
}

.tl-item.active .tl-dot {
  background: var(--navy);
  box-shadow: 0 0 0 2px var(--navy);
}

.tl-event {
  font-size: .88rem;
  font-weight: 600;
  color: var(--text);
}

.tl-item.done .tl-event,
.tl-item.active .tl-event { color: var(--navy); }

.tl-time {
  font-size: .78rem;
  color: var(--gray);
  margin-top: 2px;
}

.tl-loc {
  font-size: .78rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

/* ── TRACKING FEATURES ── */
#features {
  padding: 80px 5%;
  background: var(--white);
}

.features-title {
  text-align: center;
  margin-bottom: 52px;
}

.features-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold);
}

.features-title .underline {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
  gap: 24px;
}

.feature-card {
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 36px 24px;
  text-align: center;
  transition: box-shadow .3s, transform .3s;
}

.feature-card:hover {
  box-shadow: 0 8px 28px rgba(0,0,0,.09);
  transform: translateY(-4px);
}

.feature-card .fc-icon {
  font-size: 2.2rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.feature-card h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 10px;
}

.feature-card p {
  font-size: .83rem;
  color: var(--gray);
  line-height: 1.6;
}

/* ── RESPONSIVE ── */
@media (max-width: 600px) {
  .tracker-panel { padding: 24px 20px; }
  .tracker-tab   { padding: 14px 12px; font-size: .82rem; }
  .result-meta   { grid-template-columns: 1fr 1fr; }
}


/* ══════════════════════════════════════════
   BLUEROUTE — contact.css  (page-specific)
   ══════════════════════════════════════════ */

/* ── PAGE HERO ── */
.page-hero {
  min-height: 42vh;
  background:
    linear-gradient(rgba(10, 14, 20, .76), rgba(10, 14, 20, .76)),
    url('https://images.unsplash.com/photo-1486325212027-8081e485255e?w=1600&auto=format&fit=crop')
    center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 5% 60px;
}

.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  color: var(--white);
  line-height: 1.2;
  animation: fadeUp .9s .3s ease both;
}

.page-hero p {
  color: rgba(255, 255, 255, .8);
  font-size: clamp(.95rem, 2vw, 1.1rem);
  max-width: 600px;
  margin: 18px auto 0;
  line-height: 1.7;
  animation: fadeUp .9s .5s ease both;
}

/* ── CONTACT CHANNELS ── */
#channels {
  padding: 70px 5%;
  background: var(--gray-light);
}

.channels-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.channel-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 36px 28px;
  transition: box-shadow .3s, transform .3s;
}

.channel-card:hover {
  box-shadow: 0 10px 32px rgba(0,0,0,.09);
  transform: translateY(-4px);
}

.channel-card .ch-icon {
  font-size: 2rem;
  color: var(--gold);
  margin-bottom: 18px;
  display: block;
}

.channel-card h3 {
  color: var(--gold);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 14px;
}

.channel-card .ch-row {
  font-size: .88rem;
  color: var(--text);
  margin-bottom: 8px;
  display: flex;
  align-items: flex-start;
  gap: 6px;
  line-height: 1.5;
}

.channel-card .ch-row strong {
  color: var(--navy);
  flex-shrink: 0;
}

/* ── CONTACT FORM + MAP ── */
#contact-main {
  padding: 70px 5%;
  background: var(--white);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

/* Form */
.contact-form-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 28px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  transition: border-color .25s, box-shadow .25s;
  outline: none;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,31,60,.07);
}

.form-group textarea {
  min-height: 130px;
}

.btn-send {
  display: block;
  width: 100%;
  padding: 15px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .3s, transform .2s;
  margin-top: 4px;
}

.btn-send:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* Success banner */
.form-success {
  display: none;
  background: #d1fae5;
  border: 1px solid #6ee7b7;
  color: #065f46;
  padding: 14px 18px;
  border-radius: 6px;
  font-size: .9rem;
  margin-top: 16px;
  align-items: center;
  gap: 10px;
}

.form-success.visible {
  display: flex;
}

/* Map */
.map-wrap h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--navy);
  margin-bottom: 28px;
}

#leaflet-map {
  width: 100%;
  height: 420px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 18px rgba(0,0,0,.08);
  z-index: 0;
}

/* ── FAQ ── */
#faq {
  padding: 80px 5%;
  background: var(--gray-light);
}

.faq-title {
  text-align: center;
  margin-bottom: 48px;
}

.faq-title h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--gold);
}

.faq-title .underline {
  width: 60px;
  height: 3px;
  background: var(--gold);
  margin: 12px auto 0;
}

.faq-list {
  max-width: 760px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border-radius: 8px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 18px 22px;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: .92rem;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  transition: background .25s;
}

.faq-question:hover {
  background: var(--navy-light);
}

.faq-question i {
  font-size: .85rem;
  transition: transform .3s;
  flex-shrink: 0;
}

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

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .4s ease, padding .3s ease;
  background: var(--white);
  font-size: .88rem;
  color: var(--gray);
  line-height: 1.7;
  padding: 0 22px;
}

.faq-item.open .faq-answer {
  max-height: 300px;
  padding: 18px 22px;
}

/* ── RESPONSIVE ── */
@media (max-width: 860px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  #leaflet-map {
    height: 320px;
  }
}


/* ══════════════════════════════════════════
   BLUEROUTE — login.css  (page-specific)
   ══════════════════════════════════════════ */

/* ── PAGE HERO ── */
.login-hero {
  min-height: 42vh;
  background:
    linear-gradient(rgba(8, 10, 16, .80), rgba(8, 10, 16, .80)),
    url('https://images.unsplash.com/photo-1521737711867-e3b97375f902?w=1600&auto=format&fit=crop')
    center / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 100px 5% 60px;
}

.login-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--white);
  line-height: 1.2;
  animation: fadeUp .9s .3s ease both;
}

.login-hero p {
  color: rgba(255, 255, 255, .78);
  font-size: clamp(.9rem, 2vw, 1.05rem);
  max-width: 580px;
  margin: 16px auto 0;
  line-height: 1.7;
  animation: fadeUp .9s .5s ease both;
}

/* ── LOGIN SECTION ── */
#login-section {
  padding: 60px 5% 80px;
  background: var(--gray-light);
}

.login-card {
  max-width: 480px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, .10);
  padding: 48px 44px 40px;
}

.login-card h2 {
  font-family: 'Playfair Display', serif;
  font-size: 1.55rem;
  color: var(--gold);
  text-align: center;
  margin-bottom: 32px;
}

/* ── FORM GROUPS ── */
.lg-group {
  margin-bottom: 20px;
}

.lg-group label {
  display: block;
  font-size: .84rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 7px;
}

.lg-group .input-wrap {
  position: relative;
}

.lg-group input {
  width: 100%;
  padding: 12px 40px 12px 14px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  color: var(--text);
  background: var(--white);
  outline: none;
  transition: border-color .25s, box-shadow .25s;
}

.lg-group input:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13, 31, 60, .07);
}

.lg-group input.error {
  border-color: #ef4444;
}

.toggle-pw {
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  color: var(--gray);
  font-size: .9rem;
  padding: 0;
  line-height: 1;
  transition: color .2s;
}

.toggle-pw:hover { color: var(--navy); }

/* ── REMEMBER + FORGOT ── */
.lg-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
  gap: 8px;
}

.lg-meta label {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: .84rem;
  color: var(--text);
  cursor: pointer;
}

.lg-meta a {
  font-size: .84rem;
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: color .2s;
}

.lg-meta a:hover { color: #a07b22; }

/* ── LOGIN BUTTON ── */
.btn-login-submit {
  display: block;
  width: 100%;
  padding: 14px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background .3s, transform .2s;
  margin-bottom: 22px;
}

.btn-login-submit:hover {
  background: var(--navy-light);
  transform: translateY(-1px);
}

/* ── DIVIDER ── */
.divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  color: #9ca3af;
  font-size: .82rem;
}

.divider::before,
.divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: #e5e7eb;
}

/* ── SOCIAL BUTTONS ── */
.btn-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 14px;
  border-radius: 6px;
  font-family: 'Outfit', sans-serif;
  font-size: .88rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  margin-bottom: 12px;
  transition: opacity .25s, transform .2s;
  text-decoration: none;
}

.btn-social:hover {
  opacity: .88;
  transform: translateY(-1px);
}

.btn-google {
  background: var(--white);
  color: #3c4043;
  border: 1px solid #dadce0;
}

.btn-linkedin {
  background: #0a66c2;
  color: var(--white);
}

/* ── REGISTER LINK ── */
.register-link {
  text-align: center;
  font-size: .84rem;
  color: var(--gray);
  margin-top: 18px;
}

.register-link a {
  color: var(--navy);
  font-weight: 600;
  text-decoration: none;
  transition: color .2s;
}

.register-link a:hover { color: var(--gold); }

/* ── ERROR BANNER ── */
.login-error {
  display: none;
  background: #fef2f2;
  border: 1px solid #fca5a5;
  color: #b91c1c;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: .84rem;
  margin-bottom: 16px;
  align-items: center;
  gap: 8px;
}

.login-error.visible { display: flex; }

/* ── SECURITY BADGES ── */
#security-badges {
  padding: 52px 5% 64px;
  background: var(--white);
}

.badges-title {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 36px;
}

.badges-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
  max-width: 1000px;
  margin: 0 auto;
}

.badge-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.badge-item i {
  font-size: 1.5rem;
  color: var(--gold);
  margin-top: 3px;
  flex-shrink: 0;
}

.badge-item h4 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 5px;
}

.badge-item p {
  font-size: .82rem;
  color: var(--gray);
  line-height: 1.55;
}

/* ── RESPONSIVE ── */
@media (max-width: 520px) {
  .login-card {
    padding: 32px 22px 28px;
  }

  .lg-meta {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ══════════════════════════════════════════
   BLUEROUTE — admin.css
   ══════════════════════════════════════════ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

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

:root {
  --navy:        #0d1f3c;
  --navy-light:  #1a3260;
  --navy-dark:   #091629;
  --gold:        #b8942a;
  --gold-light:  #d4ab3f;
  --white:       #ffffff;
  --gray-light:  #f5f7fa;
  --gray-mid:    #e5e7eb;
  --gray:        #6b7280;
  --text:        #1e293b;
  --sidebar-w:   260px;
  --topbar-h:    64px;
  --green:       #10b981;
  --amber:       #f59e0b;
  --red:         #ef4444;
  --blue:        #3b82f6;
}

html, body {
  font-family: 'Outfit', sans-serif;
  color: var(--text);
  background: var(--gray-light);
  height: 100%;
}

/* ══════════════════
   LAYOUT SHELL
══════════════════ */
.admin-wrap {
  display: flex;
  min-height: 100vh;
}

/* ══════════════════
   SIDEBAR
══════════════════ */
.sidebar {
  width: var(--sidebar-w);
  background: var(--navy-dark);
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 0; left: 0; bottom: 0;
  z-index: 200;
  transition: transform .3s;
  overflow-y: auto;
}

.sidebar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 22px 20px 18px;
  border-bottom: 1px solid rgba(255,255,255,.07);
  text-decoration: none;
}

.s-logo-icon {
  width: 42px;
  height: 42px;
  background: var(--navy-light);
  clip-path: polygon(50% 0%,100% 25%,100% 75%,50% 100%,0% 75%,0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: 9px;
  text-align: center;
  letter-spacing: .4px;
  line-height: 1.2;
  flex-shrink: 0;
}

.s-logo-text h2 {
  font-family: 'Outfit', sans-serif;
  font-size: .78rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .5px;
  line-height: 1.2;
}

.s-logo-text p {
  font-size: .65rem;
  color: var(--gold);
  letter-spacing: .3px;
}

/* Sidebar nav */
.sidebar-nav {
  padding: 20px 0;
  flex: 1;
}

.nav-section-label {
  font-size: .65rem;
  font-weight: 700;
  color: rgba(255,255,255,.3);
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 16px 20px 8px;
}

.s-nav-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 20px;
  color: rgba(255,255,255,.65);
  text-decoration: none;
  font-size: .88rem;
  font-weight: 500;
  transition: all .25s;
  cursor: pointer;
  border: none;
  background: none;
  width: 100%;
  text-align: left;
  position: relative;
  border-left: 3px solid transparent;
}

.s-nav-item i {
  width: 18px;
  font-size: .9rem;
  flex-shrink: 0;
}

.s-nav-item:hover {
  color: var(--white);
  background: rgba(255,255,255,.06);
}

.s-nav-item.active {
  color: var(--gold);
  background: rgba(184,148,42,.12);
  border-left-color: var(--gold);
}

.s-badge {
  margin-left: auto;
  background: var(--gold);
  color: var(--white);
  font-size: .65rem;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 20px;
}

/* Sidebar footer */
.sidebar-footer {
  padding: 16px 20px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.admin-profile {
  display: flex;
  align-items: center;
  gap: 10px;
}

.admin-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--navy-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: .85rem;
  flex-shrink: 0;
}

.admin-info h4 {
  font-size: .8rem;
  font-weight: 600;
  color: var(--white);
}

.admin-info p {
  font-size: .7rem;
  color: var(--gray);
}

/* ══════════════════
   MAIN CONTENT
══════════════════ */
.main-content {
  margin-left: var(--sidebar-w);
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

/* Top bar */
.topbar {
  height: var(--topbar-h);
  background: var(--white);
  border-bottom: 1px solid var(--gray-mid);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 28px;
  position: sticky;
  top: 0;
  z-index: 100;
}

.topbar-left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.topbar-left h3 {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
}

.breadcrumb {
  font-size: .78rem;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 6px;
}

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

.topbar-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.topbar-btn {
  background: none;
  border: none;
  color: var(--gray);
  font-size: 1rem;
  cursor: pointer;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s, color .2s;
  position: relative;
}

.topbar-btn:hover { background: var(--gray-light); color: var(--navy); }

.notif-dot {
  position: absolute;
  top: 6px; right: 6px;
  width: 8px; height: 8px;
  background: var(--red);
  border-radius: 50%;
  border: 2px solid var(--white);
}

.topbar-user {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.topbar-avatar {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-weight: 700;
  font-size: .78rem;
}

/* Page body */
.page-body {
  padding: 28px;
  flex: 1;
}

/* ── Panels ── */
.panel {
  display: none;
  animation: fadeIn .3s ease;
}

.panel.active { display: block; }

@keyframes fadeIn { from { opacity:0; transform: translateY(8px); } to { opacity:1; transform: translateY(0); } }

/* ══════════════════
   STAT CARDS
══════════════════ */
.stats-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}

.stat-card {
  background: var(--white);
  border-radius: 12px;
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  border: 1px solid var(--gray-mid);
}

.stat-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.stat-icon.navy  { background: rgba(13,31,60,.1);  color: var(--navy); }
.stat-icon.gold  { background: rgba(184,148,42,.12); color: var(--gold); }
.stat-icon.green { background: rgba(16,185,129,.1); color: var(--green); }
.stat-icon.red   { background: rgba(239,68,68,.1);  color: var(--red); }
.stat-icon.blue  { background: rgba(59,130,246,.1); color: var(--blue); }

.stat-info .stat-val {
  font-size: 1.7rem;
  font-weight: 700;
  color: var(--navy);
  line-height: 1;
}

.stat-info .stat-label {
  font-size: .78rem;
  color: var(--gray);
  margin-top: 4px;
}

.stat-info .stat-delta {
  font-size: .72rem;
  margin-top: 4px;
  font-weight: 600;
}

.stat-delta.up   { color: var(--green); }
.stat-delta.down { color: var(--red);   }

/* ══════════════════
   CARDS / TABLES
══════════════════ */
.card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid var(--gray-mid);
  box-shadow: 0 2px 12px rgba(0,0,0,.05);
  margin-bottom: 24px;
  overflow: hidden;
}

.card-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--gray-mid);
  flex-wrap: wrap;
  gap: 12px;
}

.card-header h3 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.card-header h3 i { color: var(--gold); }

.card-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.search-box {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--gray-light);
  border: 1px solid var(--gray-mid);
  border-radius: 7px;
  padding: 7px 12px;
  font-size: .84rem;
  color: var(--gray);
}

.search-box input {
  border: none;
  background: none;
  outline: none;
  font-family: 'Outfit', sans-serif;
  font-size: .84rem;
  color: var(--text);
  width: 180px;
}

.btn-add {
  display: flex;
  align-items: center;
  gap: 7px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 7px;
  padding: 8px 16px;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s;
}

.btn-add:hover { background: var(--navy-light); }

.btn-export {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 1px solid var(--gray-mid);
  border-radius: 7px;
  padding: 8px 14px;
  font-family: 'Outfit', sans-serif;
  font-size: .82rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all .25s;
}

.btn-export:hover {
  border-color: var(--navy);
  color: var(--navy);
}

/* Table */
.table-wrap {
  overflow-x: auto;
}

table.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .84rem;
}

table.data-table thead tr {
  background: var(--gray-light);
  border-bottom: 1px solid var(--gray-mid);
}

table.data-table thead th {
  padding: 12px 16px;
  text-align: left;
  font-size: .75rem;
  font-weight: 700;
  color: var(--gray);
  text-transform: uppercase;
  letter-spacing: .5px;
  white-space: nowrap;
}

table.data-table tbody tr {
  border-bottom: 1px solid #f3f4f6;
  transition: background .15s;
}

table.data-table tbody tr:last-child { border-bottom: none; }
table.data-table tbody tr:hover { background: #fafbfc; }

table.data-table tbody td {
  padding: 13px 16px;
  color: var(--text);
  vertical-align: middle;
}

.td-ref {
  font-weight: 600;
  color: var(--navy);
  font-family: 'Outfit', monospace;
  font-size: .8rem;
}

/* Status badges */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 20px;
  font-size: .72rem;
  font-weight: 600;
  letter-spacing: .3px;
  white-space: nowrap;
}

.badge i { font-size: .6rem; }

.badge-transit    { background: #fef3c7; color: #92400e; }
.badge-delivered  { background: #d1fae5; color: #065f46; }
.badge-processing { background: #dbeafe; color: #1e40af; }
.badge-pending    { background: #f3f4f6; color: #374151; }
.badge-cancelled  { background: #fee2e2; color: #991b1b; }
.badge-verified   { background: #d1fae5; color: #065f46; }
.badge-review     { background: #fef3c7; color: #92400e; }

/* Row actions */
.row-actions {
  display: flex;
  gap: 6px;
}

.act-btn {
  width: 30px;
  height: 30px;
  border-radius: 6px;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  transition: all .2s;
}

.act-btn.edit  { background: rgba(59,130,246,.1);  color: var(--blue);  }
.act-btn.view  { background: rgba(13,31,60,.08);   color: var(--navy);  }
.act-btn.del   { background: rgba(239,68,68,.1);   color: var(--red);   }

.act-btn:hover { opacity: .75; transform: translateY(-1px); }

/* ══════════════════
   MODAL
══════════════════ */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.45);
  z-index: 500;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn .2s ease;
}

.modal-overlay.open { display: flex; }

.modal {
  background: var(--white);
  border-radius: 14px;
  width: 100%;
  max-width: 600px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.2);
  animation: slideUp .3s ease;
}

@keyframes slideUp {
  from { transform: translateY(30px); opacity: 0; }
  to   { transform: translateY(0);    opacity: 1; }
}

.modal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  border-bottom: 1px solid var(--gray-mid);
}

.modal-header h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  display: flex;
  align-items: center;
  gap: 8px;
}

.modal-header h3 i { color: var(--gold); }

.modal-close {
  background: none;
  border: none;
  font-size: 1rem;
  color: var(--gray);
  cursor: pointer;
  width: 32px;
  height: 32px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background .2s;
}

.modal-close:hover { background: var(--gray-light); color: var(--text); }

.modal-body {
  padding: 24px;
}

.modal-footer {
  padding: 16px 24px;
  border-top: 1px solid var(--gray-mid);
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

/* Form inside modal */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.form-row.full { grid-template-columns: 1fr; }

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group label {
  font-size: .78rem;
  font-weight: 600;
  color: var(--text);
  text-transform: uppercase;
  letter-spacing: .4px;
}

.form-group input,
.form-group select,
.form-group textarea {
  padding: 9px 12px;
  border: 1px solid var(--gray-mid);
  border-radius: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: .86rem;
  color: var(--text);
  outline: none;
  transition: border-color .2s, box-shadow .2s;
  resize: vertical;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  box-shadow: 0 0 0 3px rgba(13,31,60,.07);
}

/* Timeline editor */
.timeline-editor {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 8px;
}

.tl-row {
  display: grid;
  grid-template-columns: 1fr 1fr 36px;
  gap: 8px;
  align-items: center;
  background: var(--gray-light);
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid var(--gray-mid);
}

.tl-row input, .tl-row select {
  border: 1px solid var(--gray-mid);
  border-radius: 5px;
  padding: 7px 10px;
  font-size: .8rem;
  font-family: 'Outfit', sans-serif;
  outline: none;
}

.tl-row input:focus, .tl-row select:focus {
  border-color: var(--navy);
}

.tl-remove {
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 6px;
  background: rgba(239,68,68,.1);
  color: var(--red);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .8rem;
  flex-shrink: 0;
}

.btn-add-step {
  display: flex;
  align-items: center;
  gap: 6px;
  background: none;
  border: 1px dashed var(--gray-mid);
  border-radius: 7px;
  padding: 8px 14px;
  font-size: .82rem;
  font-family: 'Outfit', sans-serif;
  color: var(--gray);
  cursor: pointer;
  transition: all .2s;
  width: 100%;
  justify-content: center;
}

.btn-add-step:hover {
  border-color: var(--navy);
  color: var(--navy);
  background: rgba(13,31,60,.03);
}

/* Modal buttons */
.btn-cancel {
  padding: 9px 20px;
  border: 1px solid var(--gray-mid);
  background: none;
  border-radius: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: .84rem;
  font-weight: 500;
  color: var(--gray);
  cursor: pointer;
  transition: all .2s;
}

.btn-cancel:hover { border-color: var(--text); color: var(--text); }

.btn-save {
  padding: 9px 24px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  transition: background .25s;
}

.btn-save:hover { background: var(--navy-light); }

.btn-danger {
  padding: 9px 20px;
  background: var(--red);
  color: var(--white);
  border: none;
  border-radius: 7px;
  font-family: 'Outfit', sans-serif;
  font-size: .84rem;
  font-weight: 600;
  cursor: pointer;
  transition: opacity .2s;
}

.btn-danger:hover { opacity: .85; }

/* ══════════════════
   TOAST
══════════════════ */
.toast-container {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: var(--navy-dark);
  color: var(--white);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: .84rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,.2);
  animation: slideUp .3s ease;
  min-width: 260px;
}

.toast i { color: var(--gold); font-size: .9rem; }
.toast.success i { color: var(--green); }
.toast.error i   { color: var(--red);   }

/* ══════════════════
   ACTIVITY FEED
══════════════════ */
.activity-list {
  display: flex;
  flex-direction: column;
}

.activity-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 24px;
  border-bottom: 1px solid #f3f4f6;
  transition: background .15s;
}

.activity-item:last-child { border-bottom: none; }
.activity-item:hover { background: var(--gray-light); }

.activity-icon {
  width: 34px;
  height: 34px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}

.activity-icon.ship  { background: rgba(59,130,246,.1);  color: var(--blue); }
.activity-icon.vault { background: rgba(184,148,42,.12); color: var(--gold); }
.activity-icon.user  { background: rgba(13,31,60,.1);    color: var(--navy); }
.activity-icon.del   { background: rgba(239,68,68,.1);   color: var(--red);  }

.activity-text {
  flex: 1;
}

.activity-text p {
  font-size: .84rem;
  color: var(--text);
  line-height: 1.5;
}

.activity-text p strong { color: var(--navy); }

.activity-time {
  font-size: .72rem;
  color: var(--gray);
  margin-top: 3px;
}

/* ══════════════════
   DELETE CONFIRM
══════════════════ */
.delete-confirm p {
  font-size: .9rem;
  color: var(--gray);
  line-height: 1.6;
  margin-bottom: 8px;
}

.delete-confirm strong {
  color: var(--red);
}

/* ══════════════════
   RESPONSIVE
══════════════════ */
.sidebar-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.2rem;
  color: var(--navy);
  cursor: pointer;
}

@media (max-width: 860px) {
  .sidebar {
    transform: translateX(-100%);
  }

  .sidebar.open {
    transform: translateX(0);
  }

  .main-content {
    margin-left: 0;
  }

  .sidebar-toggle {
    display: block;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }

  .page-body {
    padding: 16px;
  }
}

@media (max-width: 480px) {
  .stats-row {
    grid-template-columns: 1fr;
  }
}