/* ==========================================================================
   Gulf Global Logistics - Under Construction Design System (2026 Edition)
   Brand Palette:
   - Gulf Navy: #1c3968 / #0f2444 / #0a1728
   - Gulf Yellow / Gold: #fdda00 / #ffcf00 / #e5c300
   - Accent Cyan: #00d2ff
   - Neutral Light: #ffffff / #f8fafc / #e2e8f0
   - Neutral Dark: #060e1a / #0d1b2e / #1e293b
   ========================================================================== */

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

:root {
  --primary-navy: #1c3968;
  --primary-navy-dark: #0f2444;
  --primary-navy-deep: #071224;
  --navy-surface: #132a4e;
  --navy-border: rgba(255, 255, 255, 0.12);
  --navy-border-glow: rgba(253, 218, 0, 0.4);

  --accent-yellow: #fdda00;
  --accent-yellow-hover: #ffe433;
  --accent-yellow-dark: #d8b800;
  --accent-yellow-glow: rgba(253, 218, 0, 0.35);

  --accent-blue: #0ea5e9;
  --accent-emerald: #10b981;

  --text-main: #ffffff;
  --text-muted: #cbd5e1;
  --text-dim: #94a3b8;
  --text-dark: #0f2444;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.15);
  --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.25);
  --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.4);
  --shadow-glow: 0 0 35px rgba(253, 218, 0, 0.25);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-full: 9999px;

  --transition-fast: 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-smooth: 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  background-color: var(--primary-navy-deep);
  color: var(--text-main);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  background-image: 
    radial-gradient(circle at 15% 15%, rgba(28, 57, 104, 0.8) 0%, transparent 50%),
    radial-gradient(circle at 85% 60%, rgba(15, 36, 68, 0.85) 0%, transparent 55%),
    radial-gradient(circle at 50% 95%, rgba(253, 218, 0, 0.08) 0%, transparent 45%);
  background-attachment: fixed;
}

/* Background Logistics Grid & Ambient Effect */
.bg-mesh-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  pointer-events: none;
  z-index: 0;
  background-size: 50px 50px;
  background-image: 
    linear-gradient(to right, rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
}

.container {
  width: 100%;
  max-width: 1260px;
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2;
  color: #ffffff;
}

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

/* ==========================================================================
   Header & Navbar
   ========================================================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(7, 18, 36, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--navy-border);
  padding: 18px 0;
  transition: var(--transition-smooth);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand-logo-wrap {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.brand-full-logo {
  height: 70px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
  transition: transform var(--transition-fast);
}

.brand-logo-wrap:hover .brand-full-logo {
  transform: scale(1.03);
}

.footer-brand-logo {
  height: 58px;
  width: auto;
  max-width: 260px;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.4));
}

.nav-hubs-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--navy-border);
  padding: 8px 20px;
  border-radius: var(--radius-full);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--text-muted);
}

.hub-node-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #ffffff;
  transition: color 0.3s ease;
}

.hub-dot-sep {
  color: rgba(255, 255, 255, 0.2);
  font-size: 0.85rem;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent-yellow);
  border-radius: 50%;
  display: inline-block;
  opacity: 0.35;
  transform: scale(0.9);
  transition: all 0.3s ease;
}

/* Sequential Take-Turns Beacon Animation (3s cycle) */
.hub-node-item:nth-child(1) .pulse-dot,
.footer-regions span:nth-child(1) .pulse-dot {
  animation: pulse-seq-1 3s infinite ease-in-out;
}

.hub-node-item:nth-child(3) .pulse-dot,
.footer-regions span:nth-child(3) .pulse-dot {
  animation: pulse-seq-2 3s infinite ease-in-out;
}

.hub-node-item:nth-child(5) .pulse-dot,
.footer-regions span:nth-child(5) .pulse-dot {
  animation: pulse-seq-3 3s infinite ease-in-out;
}

@keyframes pulse-seq-1 {
  0% { opacity: 0.35; transform: scale(0.9); box-shadow: none; }
  10% { opacity: 1; transform: scale(1.4); box-shadow: 0 0 14px var(--accent-yellow), 0 0 4px #ffffff; background-color: #ffffff; }
  25% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 10px var(--accent-yellow); background-color: var(--accent-yellow); }
  35%, 100% { opacity: 0.35; transform: scale(0.9); box-shadow: none; background-color: var(--accent-yellow); }
}

@keyframes pulse-seq-2 {
  0%, 33.3% { opacity: 0.35; transform: scale(0.9); box-shadow: none; background-color: var(--accent-yellow); }
  43.3% { opacity: 1; transform: scale(1.4); box-shadow: 0 0 14px var(--accent-yellow), 0 0 4px #ffffff; background-color: #ffffff; }
  58.3% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 10px var(--accent-yellow); background-color: var(--accent-yellow); }
  68.3%, 100% { opacity: 0.35; transform: scale(0.9); box-shadow: none; background-color: var(--accent-yellow); }
}

@keyframes pulse-seq-3 {
  0%, 66.6% { opacity: 0.35; transform: scale(0.9); box-shadow: none; background-color: var(--accent-yellow); }
  76.6% { opacity: 1; transform: scale(1.4); box-shadow: 0 0 14px var(--accent-yellow), 0 0 4px #ffffff; background-color: #ffffff; }
  91.6% { opacity: 1; transform: scale(1.2); box-shadow: 0 0 10px var(--accent-yellow); background-color: var(--accent-yellow); }
  100% { opacity: 0.35; transform: scale(0.9); box-shadow: none; background-color: var(--accent-yellow); }
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.btn-quote-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-yellow);
  color: var(--primary-navy-deep);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 11px 24px;
  border-radius: var(--radius-full);
  border: 2px solid var(--accent-yellow);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
}

.btn-quote-nav:hover {
  background: #ffffff;
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero-section {
  padding: 60px 0 55px;
  position: relative;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 40px;
  align-items: center;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* Highly Prominent Under Construction Status Badge */
.status-badge-prominent {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: linear-gradient(135deg, rgba(0, 255, 128, 0.18) 0%, rgba(4, 28, 20, 0.9) 100%);
  border: 2px solid #00ff7f;
  color: #00ff88;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.96rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  width: fit-content;
  box-shadow: 0 0 35px rgba(0, 255, 128, 0.4), inset 0 0 18px rgba(0, 255, 128, 0.2);
  animation: badge-glow-pulse 3s infinite ease-in-out;
  text-shadow: 0 0 12px rgba(0, 255, 136, 0.4);
}

.status-beacon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 14px;
  height: 14px;
}

.status-beacon-core {
  width: 8px;
  height: 8px;
  background-color: #00ff7f;
  border-radius: 50%;
  box-shadow: 0 0 12px #00ff7f;
}

.status-beacon-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #00ff7f;
  border-radius: 50%;
  animation: beacon-ripple 2s infinite cubic-bezier(0, 0.2, 0.8, 1);
}

@keyframes badge-glow-pulse {
  0%, 100% {
    box-shadow: 0 0 25px rgba(0, 255, 128, 0.35), inset 0 0 15px rgba(0, 255, 128, 0.18);
    border-color: #00e676;
  }
  50% {
    box-shadow: 0 0 50px rgba(0, 255, 128, 0.65), inset 0 0 25px rgba(0, 255, 128, 0.35);
    border-color: #55ff99;
  }
}

@keyframes beacon-ripple {
  0% { transform: scale(0.6); opacity: 1; }
  100% { transform: scale(2.2); opacity: 0; }
}

.hero-title {
  font-size: clamp(2.3rem, 3.8vw, 3.6rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.5px;
}

.hero-title .highlight-yellow {
  color: var(--accent-yellow);
  position: relative;
  display: inline-block;
}

.hero-subtitle {
  font-size: 1.08rem;
  color: var(--text-muted);
  font-weight: 400;
  max-width: 560px;
  line-height: 1.7;
}

.hero-stats-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 4px;
}

.stat-item {
  background: rgba(19, 42, 78, 0.5);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  min-width: 130px;
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--accent-yellow);
  line-height: 1;
}

.stat-label {
  font-size: 0.76rem;
  color: var(--text-dim);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

.hero-cta-group {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 16px;
  padding-top: 6px;
}

.btn-primary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent-yellow);
  color: var(--primary-navy-deep);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 15px 34px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 10px 25px rgba(253, 218, 0, 0.3);
  transition: var(--transition-smooth);
}

.btn-primary-lg:hover {
  background: #ffffff;
  color: var(--primary-navy-deep);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(253, 218, 0, 0.45);
}

.btn-secondary-lg {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 600;
  padding: 15px 28px;
  border-radius: var(--radius-full);
  border: 1px solid var(--navy-border);
  cursor: pointer;
  transition: var(--transition-fast);
}

.btn-secondary-lg:hover {
  background: rgba(255, 255, 255, 0.16);
  border-color: rgba(255, 255, 255, 0.35);
  transform: translateY(-2px);
}

/* ==========================================================================
   Hero Right: End-to-End Transport Capabilities Panel
   ========================================================================== */
.hero-capabilities-panel {
  background: linear-gradient(145deg, rgba(19, 42, 78, 0.8) 0%, rgba(10, 23, 40, 0.95) 100%);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(20px);
}

.hero-capabilities-panel::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at center, rgba(253, 218, 0, 0.07) 0%, transparent 60%);
  pointer-events: none;
}

.panel-header {
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--navy-border);
  position: relative;
}

.panel-header::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 60px;
  height: 2px;
  background: var(--accent-yellow);
  box-shadow: 0 0 10px var(--accent-yellow);
}

.panel-tag {
  display: inline-block;
  color: var(--accent-yellow);
  font-family: var(--font-heading);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  margin-bottom: 4px;
}

.panel-main-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  letter-spacing: -0.2px;
  line-height: 1.2;
}

.panel-sub-title {
  font-size: 0.84rem;
  color: var(--text-dim);
  font-weight: 500;
  margin-top: 4px;
}

/* Capabilities 2-Column Mini Cards inside Hero */
.capabilities-hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-bottom: 20px;
}

.cap-mini-card {
  background: rgba(7, 18, 36, 0.65);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 14px;
  transition: var(--transition-fast);
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.cap-mini-card:hover {
  background: rgba(19, 42, 78, 0.85);
  border-color: rgba(253, 218, 0, 0.4);
  transform: translateY(-2px);
}

.cap-mini-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--radius-sm);
  background: rgba(253, 218, 0, 0.12);
  border: 1px solid rgba(253, 218, 0, 0.25);
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.cap-mini-icon svg {
  width: 18px;
  height: 18px;
}

.cap-mini-info h4 {
  font-size: 0.92rem;
  font-weight: 700;
  margin-bottom: 2px;
  color: #ffffff;
}

.cap-mini-info p {
  font-size: 0.76rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* Cold Chain Quick Bar inside Hero Capabilities */
.cap-hero-cold-bar {
  background: linear-gradient(135deg, rgba(28, 57, 104, 0.75) 0%, rgba(15, 36, 68, 0.9) 100%);
  border: 1.5px solid var(--accent-yellow);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cap-hero-cold-bar:hover {
  background: linear-gradient(135deg, rgba(28, 57, 104, 0.95) 0%, rgba(19, 42, 78, 1) 100%);
  border-color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(253, 218, 0, 0.25);
}

.cap-cold-left {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cap-cold-badge {
  background: var(--accent-yellow);
  color: var(--primary-navy-deep);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.74rem;
  letter-spacing: 0.6px;
  padding: 4px 10px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(253, 218, 0, 0.35);
  flex-shrink: 0;
}

.cap-cold-text h5 {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.cap-cold-text span {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.cap-cold-temp {
  font-family: var(--font-heading);
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-yellow);
  white-space: nowrap;
  background: rgba(7, 18, 36, 0.7);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid rgba(253, 218, 0, 0.35);
  flex-shrink: 0;
}

/* ==========================================================================
   Ticker Bar (from Figma design)
   ========================================================================== */
.ticker-container {
  background: var(--accent-yellow);
  color: var(--primary-navy-deep);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-slide 28s linear infinite;
}

.ticker-item {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 0 24px;
  white-space: nowrap;
}

.ticker-separator {
  color: var(--primary-navy-deep);
  opacity: 0.6;
  font-size: 1.1rem;
}

@keyframes ticker-slide {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ==========================================================================
   Regional Hubs Spotlight Section
   ========================================================================== */
.section-hubs {
  padding: 75px 0 60px;
}

.section-header-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 45px;
}

.section-tag {
  display: inline-block;
  color: var(--accent-yellow);
  font-family: var(--font-heading);
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 10px;
}

.section-title {
  font-size: clamp(2rem, 3.2vw, 2.8rem);
  font-weight: 800;
  line-height: 1.2;
  margin-bottom: 14px;
}

.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
}

.hubs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.hub-card {
  background: linear-gradient(160deg, rgba(19, 42, 78, 0.6) 0%, rgba(8, 20, 36, 0.85) 100%);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.hub-card:hover {
  transform: translateY(-8px);
  border-color: var(--navy-border-glow);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.35), 0 0 25px rgba(253, 218, 0, 0.15);
}

.hub-flag-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--navy-border);
  padding: 6px 14px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  width: fit-content;
  margin-bottom: 20px;
}

.hub-city {
  font-size: 1.6rem;
  font-weight: 800;
  margin-bottom: 8px;
  color: #ffffff;
}

.hub-role {
  color: var(--accent-yellow);
  font-family: var(--font-heading);
  font-size: 0.92rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 16px;
}

.hub-description {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  margin-bottom: 24px;
  flex-grow: 1;
}

.hub-capabilities {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border-top: 1px solid var(--navy-border);
  padding-top: 20px;
}

.hub-capabilities li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-muted);
}

.hub-capabilities li svg {
  width: 16px;
  height: 16px;
  color: var(--accent-yellow);
  flex-shrink: 0;
}

/* ==========================================================================
   Cold Chain / Meat Logistics Spotlight Section (from Figma design)
   ========================================================================== */
.section-cold-spotlight {
  padding: 20px 0 75px;
}

.cold-chain-highlight-box {
  background: linear-gradient(140deg, rgba(19, 42, 78, 0.85) 0%, rgba(7, 18, 36, 0.95) 100%);
  border: 2px solid var(--accent-yellow);
  border-radius: var(--radius-lg);
  padding: 42px 40px;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: center;
  box-shadow: var(--shadow-lg), 0 0 35px rgba(253, 218, 0, 0.12);
  position: relative;
  overflow: hidden;
}

.cold-chain-highlight-box::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(14, 165, 233, 0.1) 0%, transparent 70%);
  pointer-events: none;
}

.cold-header-badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.cold-tag {
  background: var(--accent-yellow);
  color: var(--primary-navy-deep);
  font-weight: 800;
  font-size: 0.78rem;
  padding: 5px 14px;
  border-radius: var(--radius-full);
  text-transform: uppercase;
  letter-spacing: 1px;
  display: inline-block;
}

.cold-motto {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent-blue);
  background: rgba(14, 165, 233, 0.12);
  border: 1px solid rgba(14, 165, 233, 0.3);
  padding: 4px 12px;
  border-radius: var(--radius-full);
}

.cold-title {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 14px;
  line-height: 1.2;
}

.cold-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.7;
  margin-bottom: 24px;
}

.temp-badge-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 26px;
}

.temp-pill {
  background: rgba(7, 18, 36, 0.75);
  border: 1px solid var(--navy-border);
  padding: 10px 18px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-fast);
}

.temp-pill:hover {
  border-color: var(--accent-yellow);
  transform: translateY(-2px);
}

.temp-pill .temp-icon {
  font-size: 1.3rem;
}

.temp-pill div {
  display: flex;
  flex-direction: column;
}

.temp-pill strong {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--accent-yellow);
}

.temp-pill small {
  font-size: 0.74rem;
  color: var(--text-dim);
  font-weight: 500;
}

.cold-cta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.btn-cold-inquiry {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent-yellow);
  color: var(--primary-navy-deep);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.95rem;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 15px rgba(253, 218, 0, 0.25);
  transition: var(--transition-fast);
}

.btn-cold-inquiry:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.cold-route-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Specs Card on the right */
.cold-specs-card {
  background: rgba(7, 18, 36, 0.75);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 26px 24px;
}

.specs-card-header {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--navy-border);
}

.specs-card-header h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: #ffffff;
}

.cold-features-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cold-features-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.spec-check-icon {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: rgba(253, 218, 0, 0.15);
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}

.spec-check-icon svg {
  width: 14px;
  height: 14px;
}

.cold-features-list li div {
  display: flex;
  flex-direction: column;
}

.cold-features-list li strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: #ffffff;
}

.cold-features-list li span {
  font-size: 0.78rem;
  color: var(--text-dim);
  line-height: 1.4;
}

/* ==========================================================================
   Interactive Quote / Priority Inquiry Section (PHP Backend Powered)
   ========================================================================== */
.section-inquiry {
  padding: 70px 0 85px;
  position: relative;
  background: linear-gradient(180deg, transparent 0%, rgba(10, 23, 42, 0.9) 100%);
}

.inquiry-wrapper {
  background: linear-gradient(145deg, rgba(19, 42, 78, 0.7) 0%, rgba(7, 18, 36, 0.9) 100%);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-lg);
  backdrop-filter: blur(20px);
  position: relative;
}

.inquiry-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

.inquiry-info-pane h3 {
  font-size: 2.1rem;
  font-weight: 800;
  margin-bottom: 16px;
  line-height: 1.2;
}

.inquiry-info-pane p {
  color: var(--text-muted);
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 30px;
}

.inquiry-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.highlight-box {
  display: flex;
  gap: 16px;
}

.highlight-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(253, 218, 0, 0.12);
  border: 1px solid rgba(253, 218, 0, 0.3);
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.highlight-text h5 {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 4px;
}

.highlight-text p {
  font-size: 0.88rem;
  color: var(--text-dim);
  margin-bottom: 0;
}

/* The Form */
.inquiry-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.form-label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.3px;
}

.form-input, .form-select, .form-textarea {
  width: 100%;
  background: rgba(7, 18, 36, 0.7);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-sm);
  padding: 13px 16px;
  color: #ffffff;
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: var(--transition-fast);
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
  outline: none;
  border-color: var(--accent-yellow);
  box-shadow: 0 0 0 3px rgba(253, 218, 0, 0.15);
  background: rgba(7, 18, 36, 0.95);
}

.form-input::placeholder, .form-textarea::placeholder {
  color: rgba(255, 255, 255, 0.3);
}

.form-select {
  cursor: pointer;
}

.form-select option {
  background: #0f2444;
  color: #ffffff;
}

.form-textarea {
  resize: vertical;
  min-height: 100px;
}

.btn-submit-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--accent-yellow);
  color: var(--primary-navy-deep);
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 800;
  padding: 16px 28px;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-fast);
  margin-top: 8px;
}

.btn-submit-inquiry:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: var(--shadow-glow);
}

.btn-submit-inquiry:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

.form-alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  font-weight: 500;
  display: none;
}

.form-alert.alert-success {
  background: rgba(16, 185, 129, 0.15);
  border: 1px solid var(--accent-emerald);
  color: #a7f3d0;
  display: block;
}

.form-alert.alert-error {
  background: rgba(239, 68, 68, 0.15);
  border: 1px solid #ef4444;
  color: #fca5a5;
  display: block;
}

/* ==========================================================================
   Footer Bar
   ========================================================================== */
.site-footer {
  background: var(--primary-navy-deep);
  border-top: 1px solid var(--navy-border);
  padding: 40px 0 30px;
  font-size: 0.9rem;
  color: var(--text-dim);
}

.footer-top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 30px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--navy-border);
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-brand-img {
  width: 40px;
  height: 40px;
}

.footer-domain {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 700;
  color: #ffffff;
  letter-spacing: 0.5px;
}

.footer-regions {
  display: flex;
  gap: 16px;
  font-weight: 600;
  color: var(--text-muted);
}

.footer-regions span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.84rem;
}

.footer-powered-by {
  color: var(--text-dim);
  font-size: 0.84rem;
}

.powered-by-link {
  color: var(--accent-yellow);
  font-weight: 700;
  text-decoration: none;
  transition: var(--transition-fast);
}

.powered-by-link:hover {
  color: #ffffff;
  text-decoration: underline;
  text-shadow: 0 0 8px rgba(253, 218, 0, 0.5);
}

/* Animations */
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.7; }
}

/* ==========================================================================
   Responsive Breakpoints
   ========================================================================== */
@media (max-width: 1024px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .hubs-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .cold-chain-highlight-box {
    grid-template-columns: 1fr;
    padding: 30px;
  }

  .inquiry-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 14px 0;
  }

  .nav-hubs-badge {
    display: none;
  }

  .hero-section {
    padding: 30px 0 40px;
  }

  .status-badge-prominent {
    font-size: 0.78rem;
    padding: 10px 16px;
    letter-spacing: 0.6px;
    width: 100%;
    justify-content: center;
    text-align: center;
  }

  .hero-title {
    font-size: 2.1rem;
    line-height: 1.16;
  }

  .hero-cta-group {
    flex-direction: column;
    width: 100%;
    gap: 12px;
  }

  .hero-cta-group .btn-primary-lg,
  .hero-cta-group .btn-secondary-lg {
    width: 100%;
    justify-content: center;
  }

  .hero-capabilities-panel {
    padding: 22px 16px;
  }

  .panel-main-title {
    font-size: 1.25rem;
  }

  .capabilities-hero-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  /* cap-hero-cold-bar on mobile */
  .cap-hero-cold-bar {
    flex-direction: column;
    align-items: flex-start;
    padding: 16px;
    gap: 12px;
  }

  .cap-cold-left {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    width: 100%;
  }

  .cap-cold-badge {
    align-self: flex-start;
  }

  .cap-cold-text h5 {
    font-size: 0.95rem;
    line-height: 1.3;
  }

  .cap-cold-text span {
    font-size: 0.8rem;
    line-height: 1.4;
    display: block;
    margin-top: 2px;
  }

  .cap-cold-temp {
    align-self: flex-start;
    font-size: 0.88rem;
    padding: 5px 12px;
  }

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

  .inquiry-wrapper {
    padding: 26px 16px;
  }

  /* site-footer on mobile */
  .site-footer {
    padding: 35px 0 25px;
  }

  .footer-top-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
  }

  .footer-brand {
    justify-content: center;
    width: 100%;
  }

  .footer-brand-logo {
    height: 48px;
    max-width: 220px;
  }

  .footer-regions {
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 14px;
    font-size: 0.86rem;
    width: 100%;
  }

  .footer-regions span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }

  .footer-regions .hub-dot-sep {
    display: none;
  }

  .footer-bottom-row {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 12px;
    font-size: 0.82rem;
  }

  .footer-powered-by {
    font-size: 0.82rem;
  }
}

/* ==========================================================================
   V2 Minimalist Layout & Sliding Overlay Drawer
   ========================================================================== */
.v2-body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  position: relative;
  background-color: var(--primary-navy-deep);
  overflow-x: hidden;
}

.v2-page-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
  z-index: 10;
}

.v2-header {
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.btn-nav-quote {
  background: var(--accent-yellow);
  color: var(--primary-navy-deep);
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 0.88rem;
  letter-spacing: 0.4px;
  padding: 10px 20px;
  border-radius: var(--radius-full);
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  box-shadow: 0 4px 15px rgba(253, 218, 0, 0.3);
  transition: var(--transition-fast);
}

.btn-nav-quote:hover {
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 255, 255, 0.4);
}

.v2-main-content {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 60px 0 70px;
}

.v2-hero-container {
  max-width: 980px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.v2-status-pill {
  margin-bottom: 28px;
}

.v2-hero-headline {
  font-family: var(--font-heading);
  font-size: clamp(2.6rem, 5.2vw, 4.4rem);
  font-weight: 900;
  line-height: 1.12;
  letter-spacing: -0.8px;
  color: #ffffff;
  margin-bottom: 24px;
}

.v2-highlight-text {
  color: var(--accent-yellow);
  display: inline-block;
  text-shadow: 0 0 35px rgba(253, 218, 0, 0.35);
}

.v2-hero-subtext {
  font-size: clamp(1.05rem, 1.8vw, 1.25rem);
  line-height: 1.7;
  color: var(--text-muted);
  max-width: 820px;
  margin: 0 auto 36px;
}

.v2-hero-subtext strong {
  color: #ffffff;
  font-weight: 700;
}

.v2-cta-row {
  display: flex;
  justify-content: center;
  margin-bottom: 55px;
}

.v2-main-btn {
  font-size: 1.15rem;
  padding: 16px 36px;
  border-radius: var(--radius-full);
  box-shadow: 0 6px 25px rgba(253, 218, 0, 0.45);
  cursor: pointer;
}

.v2-main-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 10px 35px rgba(253, 218, 0, 0.6);
}

.v2-info-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  width: 100%;
  text-align: left;
}

.v2-info-card {
  background: linear-gradient(145deg, rgba(19, 42, 78, 0.65) 0%, rgba(10, 23, 40, 0.85) 100%);
  border: 1px solid var(--navy-border);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  backdrop-filter: blur(16px);
  transition: var(--transition-fast);
}

.v2-info-card:hover {
  border-color: rgba(253, 218, 0, 0.4);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.v2-info-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: rgba(253, 218, 0, 0.12);
  border: 1px solid rgba(253, 218, 0, 0.25);
  color: var(--accent-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.v2-info-icon.cold-icon {
  background: rgba(0, 255, 128, 0.12);
  border-color: rgba(0, 255, 128, 0.3);
  color: #00ff88;
}

.v2-info-icon svg {
  width: 22px;
  height: 22px;
}

.v2-info-body h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 4px;
}

.v2-info-body p {
  font-size: 0.84rem;
  color: var(--text-dim);
  line-height: 1.45;
}

.v2-footer {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

/* ==========================================================================
   Sliding Overlay Drawer Styles
   ========================================================================== */
.inquiry-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(4, 12, 24, 0.78);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  z-index: 9998;
}

.drawer-open .inquiry-overlay-backdrop {
  opacity: 1;
  visibility: visible;
}

.inquiry-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 620px;
  background: linear-gradient(180deg, #132a4e 0%, #0a182d 100%);
  border-left: 1px solid var(--navy-border);
  box-shadow: -20px 0 60px rgba(0, 0, 0, 0.7);
  transform: translateX(100%);
  transition: transform 0.38s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 9999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.drawer-open .inquiry-drawer {
  transform: translateX(0);
}

.drawer-open body {
  overflow: hidden;
}

.drawer-header {
  padding: 30px 32px 22px;
  border-bottom: 1px solid var(--navy-border);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  position: sticky;
  top: 0;
  background: rgba(19, 42, 78, 0.95);
  backdrop-filter: blur(12px);
  z-index: 10;
}

.drawer-tag {
  color: var(--accent-yellow);
  font-family: var(--font-heading);
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: inline-block;
  margin-bottom: 4px;
}

.drawer-title {
  font-size: 1.45rem;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.2;
}

.drawer-subtitle {
  font-size: 0.84rem;
  color: var(--text-dim);
  margin-top: 4px;
  line-height: 1.4;
}

.drawer-close-btn {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--navy-border);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition-fast);
  flex-shrink: 0;
}

.drawer-close-btn:hover {
  background: var(--accent-yellow);
  color: var(--primary-navy-deep);
  transform: rotate(90deg);
}

.drawer-body {
  padding: 28px 32px 40px;
  flex: 1;
}

.drawer-form .form-group {
  margin-bottom: 18px;
}

.drawer-form .form-input,
.drawer-form .form-select,
.drawer-form .form-textarea {
  background: rgba(7, 18, 36, 0.8);
  border-color: rgba(255, 255, 255, 0.12);
}

.drawer-form .form-input:focus,
.drawer-form .form-select:focus,
.drawer-form .form-textarea:focus {
  border-color: var(--accent-yellow);
  background: rgba(7, 18, 36, 0.95);
}

/* Mobile Responsiveness for v2 */
@media (max-width: 900px) {
  .v2-info-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }
}

@media (max-width: 640px) {
  .brand-full-logo {
    height: 54px;
    max-width: 200px;
  }

  .btn-nav-quote span {
    display: none;
  }

  .btn-nav-quote {
    padding: 10px 12px;
  }

  .v2-main-content {
    padding: 40px 0 50px;
  }

  .v2-hero-headline {
    font-size: 2.3rem;
  }

  .v2-hero-subtext {
    font-size: 0.98rem;
  }

  .v2-main-btn {
    width: 100%;
    justify-content: center;
    font-size: 1.05rem;
    padding: 15px 24px;
  }

  .drawer-header {
    padding: 22px 20px 18px;
  }

  .drawer-body {
    padding: 20px 20px 30px;
  }

  .inquiry-drawer {
    max-width: 100%;
  }
}

/* ==========================================================================
   Form Submission Center Overlay (Desktop, Tablet & Mobile)
   ========================================================================== */
.form-status-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 620px;
  background: rgba(7, 18, 36, 0.92);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  z-index: 10005;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.form-status-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.status-overlay-card {
  background: linear-gradient(155deg, #15315b 0%, #0b192e 100%);
  border: 1px solid rgba(253, 218, 0, 0.45);
  border-radius: 20px;
  padding: 40px 32px 36px;
  text-align: center;
  max-width: 480px;
  width: 100%;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.7), 0 0 35px rgba(253, 218, 0, 0.18);
  transform: scale(0.9) translateY(12px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.form-status-overlay.active .status-overlay-card {
  transform: scale(1) translateY(0);
}

.status-icon-circle {
  width: 68px;
  height: 68px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  flex-shrink: 0;
}

.status-icon-circle.success {
  background: rgba(16, 185, 129, 0.16);
  border: 2px solid #10b981;
  color: #10b981;
  box-shadow: 0 0 28px rgba(16, 185, 129, 0.35);
}

.status-icon-circle.error {
  background: rgba(239, 68, 68, 0.16);
  border: 2px solid #ef4444;
  color: #ef4444;
  box-shadow: 0 0 28px rgba(239, 68, 68, 0.35);
}

.status-overlay-title {
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-size: 1.6rem;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 14px;
  line-height: 1.25;
}

.status-overlay-msg {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.98rem;
  line-height: 1.65;
  color: #e2e8f0;
  margin-bottom: 20px;
}

.status-overlay-sub {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--accent-yellow, #fdda00);
  background: rgba(253, 218, 0, 0.08);
  border: 1px solid rgba(253, 218, 0, 0.25);
  padding: 12px 18px;
  border-radius: 10px;
  margin-bottom: 26px;
  text-align: left;
  line-height: 1.45;
  width: 100%;
}

.status-overlay-sub svg {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}

.status-overlay-btn {
  background: var(--accent-yellow, #fdda00);
  color: var(--primary-navy-deep, #071224);
  font-family: var(--font-heading, 'Outfit', sans-serif);
  font-weight: 800;
  font-size: 0.98rem;
  letter-spacing: 0.3px;
  padding: 13px 36px;
  border-radius: 9999px;
  border: none;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(253, 218, 0, 0.4);
  transition: var(--transition-fast, 0.2s ease);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.status-overlay-btn:hover {
  background: #ffffff;
  color: #071224;
  transform: translateY(-2px);
  box-shadow: 0 6px 25px rgba(255, 255, 255, 0.5);
}

@media (max-width: 640px) {
  .form-status-overlay {
    max-width: 100%;
    padding: 20px 16px;
  }
  .status-overlay-card {
    padding: 28px 20px 24px;
  }
  .status-overlay-title {
    font-size: 1.35rem;
  }
  .status-overlay-msg {
    font-size: 0.92rem;
  }
  .status-overlay-sub {
    font-size: 0.8rem;
    padding: 10px 14px;
  }
}


