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

html {
  overflow-y: scroll;
}

body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  color: #1e293b;
  line-height: 1.6;
  background: #fff;
  scroll-behavior: smooth;
  overflow-x: hidden;
  overflow-y: scroll;
  min-height: 100vh;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

::selection { background: #0891b2; color: #fff; }

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  min-width: 320px;
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(40px); } to { opacity: 1; transform: translateY(0); } }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes slideInLeft { from { opacity: 0; transform: translateX(-60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes slideInRight { from { opacity: 0; transform: translateX(60px); } to { opacity: 1; transform: translateX(0); } }
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-16px); } }
@keyframes pulseGlow { 0%, 100% { opacity: 0.3; transform: scale(1); } 50% { opacity: 0.8; transform: scale(1.05); } }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes shimmer { 0% { background-position: -200% 0; } 100% { background-position: 200% 0; } }
@keyframes typewriter { from { width: 0; } to { width: 100%; } }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: 0; } }
@keyframes wave { 0%, 100% { transform: translateX(0); } 50% { transform: translateX(-25%); } }
@keyframes pulse-ring { 0% { transform: scale(0.5); opacity: 0; } 50% { opacity: 0.3; } 100% { transform: scale(2.5); opacity: 0; } }
@keyframes gradient-shift { 0% { background-position: 0% 50%; } 50% { background-position: 100% 50%; } 100% { background-position: 0% 50%; } }

.anim-fade-up { /* animation: fadeInUp 0.8s ease forwards; */ opacity: 1; transform: translateY(0); }
.anim-fade-in { /* animation: fadeIn 1s ease forwards; */ opacity: 1; }
.anim-slide-left { /* animation: slideInLeft 0.8s ease forwards; */ opacity: 1; transform: translateX(0); }
.anim-slide-right { /* animation: slideInRight 0.8s ease forwards; */ opacity: 1; transform: translateX(0); }
.anim-float { animation: float 4s ease-in-out infinite; }
.anim-delay-1 { /* animation-delay: 0.2s; */ opacity: 1; }
.anim-delay-2 { /* animation-delay: 0.4s; */ opacity: 1; }
.anim-delay-3 { /* animation-delay: 0.6s; */ opacity: 1; }
.anim-delay-4 { /* animation-delay: 0.8s; */ opacity: 1; }
.anim-delay-5 { /* animation-delay: 1.0s; */ opacity: 1; }
.anim-delay-6 { /* animation-delay: 1.2s; */ opacity: 1; }
.anim-delay-7 { /* animation-delay: 1.4s; */ opacity: 1; }

/* ===== GRADIENT MESH / AMBIENT BG ===== */
.gradient-mesh {
  background:
    radial-gradient(ellipse 80% 60% at 0% 20%, rgba(8,145,178,0.06) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 100% 40%, rgba(6,182,212,0.04) 0%, transparent 50%),
    radial-gradient(ellipse 70% 40% at 50% 80%, rgba(14,116,144,0.03) 0%, transparent 50%);
}
.gradient-mesh-dark {
  background:
    radial-gradient(ellipse 80% 60% at 0% 20%, rgba(8,145,178,0.12) 0%, transparent 50%),
    radial-gradient(ellipse 60% 50% at 100% 40%, rgba(6,182,212,0.08) 0%, transparent 50%),
    radial-gradient(ellipse 70% 40% at 50% 80%, rgba(14,116,144,0.06) 0%, transparent 50%);
}
.gradient-mesh-intense {
  background:
    radial-gradient(ellipse 70% 55% at 15% 30%, rgba(8,145,178,0.15) 0%, transparent 55%),
    radial-gradient(ellipse 60% 45% at 85% 60%, rgba(6,182,212,0.1) 0%, transparent 50%),
    radial-gradient(ellipse 50% 50% at 50% 10%, rgba(34,211,238,0.06) 0%, transparent 50%);
}

/* ===== PREMIUM GLASS VARIANTS ===== */
.glass-premium {
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(20px) saturate(1.4);
  -webkit-backdrop-filter: blur(20px) saturate(1.4);
  border: 1px solid rgba(255,255,255,0.3);
  box-shadow: 0 8px 32px rgba(0,0,0,0.04);
}
.glass-dark-premium {
  background: rgba(15,23,42,0.5);
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
}
.glass-card {
  background: rgba(255,255,255,0.75);
  backdrop-filter: blur(16px) saturate(1.3);
  -webkit-backdrop-filter: blur(16px) saturate(1.3);
  border: 1px solid rgba(255,255,255,0.2);
  box-shadow: 0 4px 24px rgba(0,0,0,0.04);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
}
.glass-card:hover {
  background: rgba(255,255,255,0.85);
  box-shadow: 0 12px 48px rgba(8,145,178,0.1);
  transform: translateY(-2px);
}

/* ===== 3D TILT CONTAINER ===== */
.tilt-card {
  transform-style: preserve-3d;
  perspective: 1000px;
}
.tilt-card-inner {
  transition: transform 0.2s ease;
  transform-style: preserve-3d;
}
.tilt-card:hover .tilt-card-inner {
  transform: rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}
.tilt-content {
  transform: translateZ(30px);
}
.tilt-content-deep {
  transform: translateZ(50px);
}

/* ===== WAVE DIVIDER ===== */
.wave-divider {
  position: relative;
  width: 100%;
  height: 80px;
  overflow: hidden;
  line-height: 0;
}
.wave-divider svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 80px;
}
.wave-divider.flip svg { transform: rotate(180deg); }
.wave-divider-top {
  margin-bottom: -2px;
}
.wave-divider-bottom {
  margin-top: -2px;
}

/* ===== SMOOTH SCROLL PROGRESS ===== */
#scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #0891b2, #06b6d4, #22d3ee);
  z-index: 9999;
  width: 0%;
  transition: width 0.1s linear;
  border-radius: 0 2px 2px 0;
}

/* ===== CURSOR GLOW FOLLOWER ===== */
#cursor-glow {
  position: fixed;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.04), transparent 70%);
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s;
  opacity: 0;
}

/* ===== PREMIUM SHADOWS ===== */
.shadow-premium-sm { box-shadow: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.02); }
.shadow-premium-md { box-shadow: 0 4px 16px rgba(0,0,0,0.04), 0 2px 4px rgba(0,0,0,0.02); }
.shadow-premium-lg { box-shadow: 0 8px 32px rgba(0,0,0,0.04), 0 4px 8px rgba(0,0,0,0.02); }
.shadow-premium-xl { box-shadow: 0 16px 48px rgba(0,0,0,0.06), 0 8px 16px rgba(0,0,0,0.03); }
.shadow-glow { box-shadow: 0 8px 32px rgba(8,145,178,0.15); }
.shadow-glow-lg { box-shadow: 0 16px 48px rgba(8,145,178,0.2); }

/* ===== GRADIENT TEXT GLOW ===== */
.text-gradient-glow {
  background: linear-gradient(135deg, #0891b2, #22d3ee, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 0 12px rgba(8,145,178,0.3));
}

/* ===== REVEAL VARIANTS ===== */
.reveal-left { opacity: 1; transform: translateX(0); }
.reveal-right { opacity: 1; transform: translateX(0); }
.reveal-scale { opacity: 1; transform: scale(1); }
.reveal-left.visible, .reveal-right.visible, .reveal-scale.visible { opacity: 1; transform: translateX(0) scale(1); }

/* ===== PARALLAX LAYER ===== */
.parallax-layer {
  will-change: transform;
  transition: transform 0.1s linear;
}

/* ===== DECORATIVE PATTERNS ===== */
.bg-dots {
  background-image: radial-gradient(circle, #0891b2 1px, transparent 1px);
  background-size: 24px 24px;
  opacity: 0.08;
}
.bg-dots-light {
  background-image: radial-gradient(circle, #fff 1px, transparent 1px);
  background-size: 20px 20px;
  opacity: 0.06;
}
.bg-grid {
  background-image: linear-gradient(rgba(8,145,178,0.06) 1px, transparent 1px),
                    linear-gradient(90deg, rgba(8,145,178,0.06) 1px, transparent 1px);
  background-size: 40px 40px;
}

/* ===== GRADIENT UTILITIES ===== */
.gradient-brand { background: linear-gradient(135deg, #0891b2, #0e7490); }
.gradient-dark { background: linear-gradient(135deg, #0f172a, #1e293b); }
.gradient-accent { background: linear-gradient(135deg, #0891b2, #06b6d4); }
.gradient-warm { background: linear-gradient(135deg, #0f766e, #0891b2); }
.text-gradient { background: linear-gradient(135deg, #0891b2, #06b6d4); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }

/* ===== GLASS / FROST EFFECTS ===== */
.glass {
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.2);
}
.glass-dark {
  background: rgba(15,23,42,0.75);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.06);
}

/* ===== DECORATIVE SHAPES ===== */
.shape-blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(60px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}
.shape-circle {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(8,145,178,0.15);
  pointer-events: none;
  z-index: 0;
}
.shape-diamond {
  position: absolute;
  transform: rotate(45deg);
  border: 1px solid rgba(8,145,178,0.1);
  pointer-events: none;
  z-index: 0;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8,145,178,0.2), transparent);
  margin: 0;
  border: none;
}
.section-divider-wave {
  position: relative;
  height: 60px;
  overflow: hidden;
}
.section-divider-wave svg {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 60px;
}

/* ===== BRAND GLOW ===== */
.glow-card {
  position: relative;
  overflow: hidden;
}
.glow-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at 50% 0%, rgba(8,145,178,0.06), transparent 60%);
  opacity: 0;
  transition: opacity 0.5s;
  pointer-events: none;
}
.glow-card:hover::before { opacity: 1; }

/* ===== SHIMMER LOADING ===== */
.shimmer {
  background: linear-gradient(90deg, #f1f5f9 25%, #e2e8f0 50%, #f1f5f9 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: 4px;
}

/* ===== SCROLL ANIMATIONS ===== */
.reveal {
  opacity: 1;
  transform: translateY(0);
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== COUNTER / STATS ===== */
.stat-counter .num {
  font-size: 2.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

/* Buttons */
.btn {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 6px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  border: none;
  transition: all 0.25s ease;
}

.btn-sm { padding: 7px 16px; font-size: 13px; }
.btn-lg { padding: 14px 32px; font-size: 16px; }

.btn-outline {
  border: 1.5px solid #cbd5e1;
  color: #1e293b;
  background: transparent;
}
.btn-outline:hover { border-color: #0891b2; color: #0891b2; }

.btn-accent {
  background: linear-gradient(135deg, #0891b2, #0e7490);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.btn-accent:hover {
  background: linear-gradient(135deg, #0e7490, #0891b2);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(8,145,178,0.3);
}
.btn-accent::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(135deg, transparent 30%, rgba(255,255,255,0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.btn-accent:hover::after { transform: translateX(100%); }
.btn-outline:hover { border-color: #0891b2; color: #0891b2; box-shadow: 0 4px 16px rgba(8,145,178,0.12); }

/* Header */
.site-header {
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
  padding: 14px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  min-width: 100vw;
}

.header-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-main { display: flex; gap: 28px; flex-shrink: 0; }
.nav-main a {
  font-size: 14px;
  font-weight: 500;
  color: #475569;
  padding: 4px 0;
  border-bottom: 2px solid transparent;
  flex-shrink: 0;
  white-space: nowrap;
}
.nav-main a:hover { color: #0891b2; }
.nav-main a.active { color: #0891b2; border-bottom-color: #0891b2; }

.header-utils { display: flex; gap: 10px; }

/* Page Banner */
.page-banner {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 56px 0;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.page-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.1), transparent 70%);
  pointer-events: none;
}
.page-banner::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.08), transparent 70%);
  pointer-events: none;
}
.page-banner h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 8px;
  position: relative;
  z-index: 1;
}
.page-banner p {
  font-size: 17px;
  color: #94a3b8;
  max-width: 520px;
  position: relative;
  z-index: 1;
}

.breadcrumb {
  font-size: 13px;
  color: #64748b;
  margin-bottom: 16px;
  position: relative;
  z-index: 1;
}
.breadcrumb a { color: #22d3ee; }
.breadcrumb a:hover { text-decoration: underline; }

/* Sections */
.section {
  padding: 80px 0;
}

.section-light { background: #f8fafc; }
.section-white { background: #fff; }
.section-dark { background: #0f172a; }
.section-gray { background: #f1f5f9; }

.sec-title {
  font-size: 34px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}
.sec-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0891b2, #22d3ee);
  margin-top: 8px;
  border-radius: 2px;
}
.sec-title.text-center::after { margin-left: auto; margin-right: auto; }

.sec-desc {
  font-size: 17px;
  color: #64748b;
  max-width: 600px;
  margin-bottom: 48px;
}

/* ===== HOME PAGE ===== */

/* Hero Split */
.hero-split {
  display: flex;
  min-height: 560px;
  position: relative;
}

.hero-left {
  flex: 1;
  background: linear-gradient(135deg, #0f172a 0%, #162033 40%, #0f172a 100%);
  display: flex;
  align-items: center;
  padding: 60px 48px 60px 80px;
  position: relative;
  overflow: hidden;
}
.hero-left::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.08), transparent 60%);
  pointer-events: none;
}
.hero-left::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -5%;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.06), transparent 60%);
  pointer-events: none;
}

.hero-text { 
  max-width: 580px; 
  position: relative;
  z-index: 1;
}

.badge {
  display: inline-block;
  background: linear-gradient(135deg, rgba(8,145,178,0.2), rgba(6,182,212,0.1));
  color: #22d3ee;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 16px;
  border-radius: 20px;
  margin-bottom: 24px;
  border: 1px solid rgba(34,211,238,0.15);
  box-shadow: 0 0 20px rgba(8,145,178,0.1);
  letter-spacing: 0.5px;
}

.hero-text h1,
.hero-title {
  font-size: 52px;
  font-weight: 800;
  line-height: 1.1;
  color: #fff;
  margin-bottom: 20px;
  animation: fadeInUp 1s ease forwards;
  background: linear-gradient(135deg, #fff 30%, #22d3ee 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  filter: drop-shadow(0 2px 20px rgba(8,145,178,0.2));
}

.hero-text p {
  font-size: 18px;
  color: #94a3b8;
  line-height: 1.6;
  margin-bottom: 36px;
  max-width: 460px;
}

.hero-stats {
  display: flex;
  gap: 40px;
}

.hero-stats div {
  font-size: 14px;
  color: #64748b;
}

.hero-stats strong {
  display: block;
  font-size: 28px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 2px;
  background: linear-gradient(135deg, #fff, #94a3b8);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* Portal Card */
.hero-right {
  flex: 0 0 420px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 60px 48px 60px 40px;
}

.hero-brand-visual {
  width: 100%;
  max-width: 340px;
  aspect-ratio: 1.91 / 1;
  object-fit: contain;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 28px rgba(15, 23, 42, 0.08);
}

.portal-card {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.08);
  width: 100%;
  overflow: hidden;
  transition: box-shadow 0.3s, transform 0.3s;
  position: relative;
}
.portal-card:hover {
  box-shadow: 0 12px 48px rgba(8,145,178,0.12);
  transform: translateY(-2px);
}
.portal-card::before {
  content: '';
  position: absolute;
  top: -2px; left: -2px; right: -2px; bottom: -2px;
  border-radius: 18px;
  background: linear-gradient(135deg, #0891b2, #22d3ee, #06b6d4, #0891b2);
  background-size: 300% 300%;
  animation: gradient-shift 4s ease infinite;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s;
}
.portal-card:hover::before { opacity: 1; }

.portal-tabs {
  display: flex;
  border-bottom: 1px solid #f1f5f9;
  background: #fafbfc;
}

.portal-tabs .tab {
  flex: 1;
  padding: 14px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  background: none;
  border: none;
  cursor: pointer;
  color: #94a3b8;
  transition: all 0.2s;
  text-decoration: none;
}

.portal-tabs .tab.active {
  color: #0891b2;
  box-shadow: inset 0 -2px 0 #0891b2;
  background: rgba(8,145,178,0.04);
}

.portal-body {
  padding: 24px;
}

.portal-body label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 10px;
}

.portal-input-row {
  display: flex;
  gap: 8px;
}

.portal-input-row input {
  flex: 1;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.portal-input-row input:focus { border-color: #0891b2; box-shadow: 0 0 0 3px rgba(8,145,178,0.1); }

.portal-quick {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
}

.portal-quick a {
  font-size: 13px;
  color: #0891b2;
  font-weight: 500;
}

.portal-quick a:hover { text-decoration: underline; }

.portal-footer {
  padding: 12px 24px;
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border-top: 1px solid #f1f5f9;
}

.portal-footer a {
  font-size: 13px;
  color: #64748b;
}

.portal-footer a:hover { color: #0891b2; }

/* Services Strip */
.services-bar {
  padding: 28px 0;
  background: #fff;
  border-bottom: 1px solid #f1f5f9;
}

.services-strip {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}

.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 12px;
  border-radius: 12px;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  min-width: 100px;
  position: relative;
}

.strip-item:hover { 
  background: linear-gradient(135deg, #f8fafc, #fff);
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(8,145,178,0.08);
}

.strip-icon { 
  font-size: 28px; 
  width: 48px;
  height: 48px;
  background: #f8fafc;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.strip-item:hover .strip-icon {
  background: linear-gradient(135deg, rgba(8,145,178,0.1), rgba(6,182,212,0.05));
  transform: scale(1.1);
}

.strip-item span:last-child {
  font-size: 12px;
  font-weight: 600;
  color: #475569;
  text-align: center;
}
.strip-item:hover span:last-child { color: #0891b2; }

/* Features */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feature {
  padding: 32px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid #f1f5f9;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  overflow: hidden;
}

.feature:hover {
  box-shadow: 0 12px 40px rgba(8,145,178,0.1);
  border-color: rgba(8,145,178,0.2);
  transform: translateY(-4px);
}
.feature::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0891b2, #06b6d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.feature:hover::before { transform: scaleX(1); }

.feature-num {
  font-size: 12px;
  font-weight: 700;
  color: #0891b2;
  letter-spacing: 2px;
  margin-bottom: 16px;
  display: inline-block;
  background: rgba(8,145,178,0.08);
  padding: 3px 12px;
  border-radius: 4px;
}

.feature h3 {
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 10px;
}

.feature p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.7;
}

/* Feature Icon Circle */
.feature-icon-circle {
  width: 56px;
  height: 56px;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(8,145,178,0.1), rgba(6,182,212,0.05));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: all 0.3s;
}
.feature:hover .feature-icon-circle {
  background: linear-gradient(135deg, rgba(8,145,178,0.2), rgba(6,182,212,0.1));
  transform: scale(1.05);
}

/* CTA strip */
.cta-strip {
  padding: 60px 0;
  position: relative;
  overflow: hidden;
}
.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.15), transparent 70%);
  pointer-events: none;
}

.cta-inline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 1;
}

.cta-inline h3 {
  font-size: 26px;
  font-weight: 700;
  color: #fff;
  margin-bottom: 8px;
}

.cta-inline p {
  font-size: 15px;
  color: #94a3b8;
}

/* News */
.news-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.news-card {
  padding: 28px;
  border: 1px solid #f1f5f9;
  border-radius: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  overflow: hidden;
}

.news-card:hover {
  border-color: rgba(8,145,178,0.3);
  box-shadow: 0 12px 36px rgba(8,145,178,0.1);
  transform: translateY(-3px);
}
.news-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, #0891b2, #06b6d4);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.news-card:hover::after { transform: scaleX(1); }

.news-card time {
  font-size: 12px;
  font-weight: 600;
  color: #94a3b8;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  display: inline-block;
  background: #f1f5f9;
  padding: 2px 10px;
  border-radius: 4px;
}
.news-card:hover time { background: rgba(8,145,178,0.08); color: #0891b2; }

.news-card h3 {
  font-size: 17px;
  font-weight: 700;
  color: #0f172a;
  margin: 14px 0 10px;
  line-height: 1.4;
}

.news-card p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}

.card-link {
  font-size: 14px;
  font-weight: 600;
  color: #0891b2;
  transition: gap 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.card-link:hover { gap: 8px; text-decoration: none; }

/* ===== TRACKING PAGE ===== */
.track-hero {
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #0f172a 100%);
  padding: 64px 0;
  text-align: center;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.track-hero::before {
  content: '';
  position: absolute;
  top: -40%;
  left: -10%;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.08), transparent 60%);
  pointer-events: none;
}
.track-hero::after {
  content: '';
  position: absolute;
  bottom: -30%;
  right: -5%;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6,182,212,0.06), transparent 60%);
  pointer-events: none;
}

.track-hero h1 { font-size: 38px; font-weight: 800; margin-bottom: 10px; position: relative; z-index: 1; }
.track-hero p { color: #94a3b8; margin-bottom: 32px; position: relative; z-index: 1; }

.track-box {
  max-width: 640px;
  margin: 0 auto;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2);
  position: relative;
  z-index: 1;
}

.track-input-row {
  display: flex;
  gap: 10px;
}

.track-input-row input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid #e2e8f0;
  border-radius: 8px;
  font-size: 15px;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.track-input-row input:focus { border-color: #0891b2; box-shadow: 0 0 0 3px rgba(8,145,178,0.1); }

.track-examples {
  margin-top: 14px;
  font-size: 13px;
  color: #94a3b8;
}
.track-examples code {
  background: #f1f5f9;
  padding: 2px 8px;
  border-radius: 4px;
  font-size: 12px;
  color: #0891b2;
  cursor: pointer;
  transition: all 0.2s;
}
.track-examples code:hover { background: rgba(8,145,178,0.12); color: #22d3ee; }

/* track result placeholder */
.track-result {
  display: none;
  margin-top: 32px;
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  box-shadow: 0 4px 24px rgba(0,0,0,0.06);
  border: 1px solid #f1f5f9;
  animation: fadeInUp 0.6s ease;
}

.track-result.visible { display: block; }

.track-status-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f1f5f9;
}

.track-status { font-size: 14px; color: #64748b; }
.track-status strong { color: #0f172a; }

.status-badge {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
  color: #1d4ed8;
  padding: 6px 16px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
}

/* ===== CEVA-INSPIRED TRACKING LAYOUT ===== */
.track-result { font-family: 'Inter', system-ui, sans-serif; }

/* ── Header: Refs + Status ── */
.ceva-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.ceva-refs { display: flex; flex-direction: column; gap: 3px; }
.ceva-ref-row { display: flex; align-items: center; gap: 6px; }
.ceva-ref-label { font-size: 11px; color: #64748b; min-width: 120px; }
.ceva-ref-val { font-size: 13px; font-weight: 600; color: #0f172a; }
.ceva-status { text-align: right; }
.ceva-status-label { font-size: 16px; font-weight: 700; color: #0891b2; }
.ceva-status-sub { font-size: 11px; color: #94a3b8; margin-top: 2px; }

/* ── Route Visualization ── */
.ceva-route-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 20px 24px;
  margin-bottom: 16px;
}
.ceva-route-viz {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 8px;
}
.ceva-route-end { text-align: center; min-width: 80px; }
.ceva-code-badge {
  display: inline-block;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
  letter-spacing: 1px;
  padding: 4px 12px;
  border-radius: 6px;
  background: #f1f5f9;
  margin-bottom: 4px;
}
.ceva-code-badge.origin { color: #0891b2; background: #e0f2fe; }
.ceva-code-badge.dest { color: #0e7490; background: #ccfbf1; }
.ceva-city { font-size: 12px; color: #64748b; font-weight: 500; }
.ceva-route-line {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  max-width: 180px;
}
.ceva-route-bar {
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, #0891b2, #22d3ee);
  position: relative;
}
.ceva-route-bar::after {
  content: '';
  position: absolute;
  right: 0;
  top: -3px;
  width: 0;
  height: 0;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  border-left: 6px solid #22d3ee;
}
.ceva-route-plane {
  position: absolute;
  font-size: 18px;
  color: #0891b2;
  animation: float 3s ease-in-out infinite;
}
.ceva-route-meta {
  text-align: center;
  font-size: 11px;
  color: #94a3b8;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.ceva-arrow { color: #0891b2; font-weight: 700; }

/* ── Milestone Cards ── */
.ceva-milestones {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.ceva-ms-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 14px 12px;
  text-align: center;
  transition: all 0.2s;
}
.ceva-ms-card.done { background: #f0fdfa; border-color: #a7f3d0; }
.ceva-ms-card.pending { background: #fafbfc; border-color: #f1f5f9; }
.ceva-ms-name { font-size: 11px; font-weight: 700; color: #334155; text-transform: uppercase; letter-spacing: 0.3px; margin-bottom: 6px; }
.ceva-ms-card.done .ceva-ms-name { color: #047857; }
.ceva-ms-act { font-size: 11px; color: #065f46; margin-bottom: 2px; display: flex; align-items: center; justify-content: center; gap: 4px; }
.ceva-ms-est { font-size: 11px; color: #64748b; display: flex; align-items: center; justify-content: center; gap: 4px; }
.ceva-ms-pending { font-size: 11px; color: #94a3b8; font-style: italic; }
.ceva-ms-tag {
  display: inline-block;
  font-size: 8px;
  font-weight: 800;
  padding: 1px 5px;
  border-radius: 3px;
  letter-spacing: 0.3px;
  background: #d1d5db;
  color: #fff;
}
.ceva-ms-act .ceva-ms-tag { background: #047857; }
.ceva-ms-est .ceva-ms-tag { background: #94a3b8; }
.ceva-card-label { font-size: 11px; color: #64748b; }

/* ── Section Card ── */
.ceva-section { margin-bottom: 16px; }
.ceva-section-title {
  font-size: 11px;
  font-weight: 700;
  color: #0e7490;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 10px 16px;
  background: #f0f9ff;
  border-bottom: 1px solid #e2e8f0;
}
.ceva-info-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
.ceva-info-grid { padding: 12px 16px; display: grid; grid-template-columns: 1fr 1fr; gap: 6px 24px; }
.ceva-info-row { display: flex; gap: 6px; font-size: 12px; align-items: baseline; }
.ceva-info-label { color: #64748b; min-width: 100px; flex-shrink: 0; }
.ceva-info-val { color: #1e293b; font-weight: 600; }

/* ── Routing Events Bottom ── */
.ceva-route-card-bottom {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
.ceva-route-event {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  gap: 16px;
}
.ceva-re-location { text-align: center; flex: 1; }
.ceva-re-code {
  font-size: 20px;
  font-weight: 800;
  color: #0891b2;
  background: #e0f2fe;
  display: inline-block;
  padding: 2px 10px;
  border-radius: 4px;
  margin-bottom: 2px;
}
.ceva-re-code.dest { color: #0e7490; background: #ccfbf1; }
.ceva-re-city { font-size: 13px; font-weight: 600; color: #0f172a; }
.ceva-re-label { font-size: 10px; color: #94a3b8; text-transform: uppercase; letter-spacing: 0.3px; display: block; }
.ceva-re-center { text-align: center; min-width: 120px; }
.ceva-re-flight { font-size: 14px; font-weight: 700; color: #334155; }
.ceva-re-carrier { font-size: 11px; color: #64748b; }
.ceva-re-dates {
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 8px 16px 14px;
  border-top: 1px solid #f1f5f9;
  flex-wrap: wrap;
}
.ceva-re-date { font-size: 11px; display: flex; align-items: center; gap: 4px; color: #475569; }

/* ── Shipment Steps ── */
.ceva-steps-card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  overflow: hidden;
}
.ceva-step-group { border-bottom: 1px solid #f1f5f9; }
.ceva-step-group:last-child { border-bottom: none; }
.ceva-step-table { width: 100%; border-collapse: collapse; font-size: 12px; }
.ceva-step-table tbody tr { border-bottom: 1px solid #f8fafc; transition: background 0.15s; }
.ceva-step-table tbody tr:last-child { border-bottom: none; }
.ceva-step-table tbody tr:hover { background: #fafbfc; }
.ceva-step-table tbody td { padding: 8px 16px; vertical-align: middle; }
.ceva-step-current td { background: #f0f9ff; }
.ceva-step-event { display: flex; align-items: center; gap: 8px; font-weight: 500; color: #1e293b; }
.ceva-step-current .ceva-step-event { color: #0891b2; font-weight: 600; }
.ceva-step-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #cbd5e1;
  flex-shrink: 0;
}
.ceva-step-current .ceva-step-dot { background: #0891b2; box-shadow: 0 0 0 3px rgba(8,145,178,0.2); }
.ceva-step-loc { color: #64748b; }
.ceva-step-act { color: #065f46; font-size: 11px; display: flex; align-items: center; gap: 4px; }
.ceva-step-est { color: #94a3b8; font-size: 11px; display: flex; align-items: center; gap: 4px; }

/* ===== TRACKING RESULTS (tr-*) ===== */
.tr-header { display: flex; justify-content: space-between; align-items: flex-start; background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px 24px; margin-bottom: 16px; }
.tr-refs { display: flex; flex-direction: column; gap: 4px; }
.tr-ref-row { display: flex; align-items: center; gap: 8px; }
.tr-ref-lbl { font-size: 12px; color: #64748b; min-width: 130px; }
.tr-ref-val { font-size: 14px; font-weight: 600; color: #0f172a; }
.tr-status { text-align: right; }
.tr-status-lbl { font-size: 18px; font-weight: 700; color: #0891b2; }
.tr-status-sub { font-size: 12px; color: #94a3b8; margin-top: 2px; }

.tr-route { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px 24px; margin-bottom: 16px; }
.tr-route-viz { display: flex; align-items: center; justify-content: center; gap: 24px; }
.tr-route-end { text-align: center; min-width: 100px; }
.tr-code { font-size: 26px; font-weight: 800; letter-spacing: 1px; padding: 4px 14px; border-radius: 8px; display: inline-block; }
.tr-code.origin { color: #0891b2; background: #e0f2fe; }
.tr-code.dest { color: #0e7490; background: #ccfbf1; }
.tr-city { font-size: 14px; color: #334155; font-weight: 600; margin-top: 4px; }
.tr-country { font-size: 12px; color: #94a3b8; }
.tr-route-line { flex: 1; display: flex; align-items: center; position: relative; padding: 0 8px; max-width: 200px; }
.tr-bar { flex: 1; height: 2px; background: linear-gradient(90deg, #0891b2, #06b6d4, #22d3ee); border-radius: 2px; position: relative; }
.tr-icon { font-size: 24px; margin-left: 8px; animation: tr-plane 2s ease-in-out infinite; }

@keyframes tr-plane { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-4px); } }

.tr-ms-bar-wrap { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 20px 24px; margin-bottom: 16px; }
.tr-ms-pct { height: 6px; background: #f1f5f9; border-radius: 3px; overflow: hidden; margin-bottom: 20px; }
.tr-ms-pct-fill { height: 100%; background: linear-gradient(90deg, #0891b2, #06b6d4); border-radius: 3px; transition: width 0.8s ease; }
.tr-ms-dots { display: flex; gap: 0; justify-content: space-between; position: relative; }
.tr-ms-item { display: flex; flex-direction: column; align-items: center; gap: 4px; flex: 1; text-align: center; position: relative; }
.tr-ms-dot { width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 12px; border: 2px solid #cbd5e1; background: #fff; color: #94a3b8; transition: all 0.3s; }
.tr-ms-dot.done { background: #059669; border-color: #059669; color: #fff; }
.tr-ms-dot.current { border-color: #0891b2; background: #e0f2fe; color: #0891b2; }
.tr-ms-lbl { font-size: 11px; font-weight: 700; color: #334155; text-transform: uppercase; letter-spacing: 0.3px; }
.tr-ms-act { font-size: 11px; color: #065f46; }
.tr-ms-est { font-size: 10px; color: #94a3b8; }

.tr-section { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; margin-bottom: 16px; overflow: hidden; }
.tr-sec-title { font-size: 13px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.5px; padding: 14px 20px; background: #f8fafc; border-bottom: 1px solid #f1f5f9; }
.tr-cargo { padding: 12px 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px; }
.tr-cargo-row { display: flex; gap: 6px; font-size: 13px; align-items: baseline; }
.tr-cargo-lbl { color: #64748b; flex-shrink: 0; }
.tr-cargo-val { color: #0f172a; font-weight: 600; }

.tr-od { display: flex; align-items: flex-start; justify-content: center; gap: 32px; padding: 20px; }
.tr-od-side { text-align: center; flex: 1; }
.tr-od-code { font-size: 24px; font-weight: 800; padding: 4px 14px; border-radius: 8px; display: inline-block; margin-bottom: 4px; }
.tr-od-code.dest { color: #0e7490; background: #ccfbf1; }
.tr-od-code:not(.dest) { color: #0891b2; background: #e0f2fe; }
.tr-od-city { font-size: 16px; font-weight: 700; color: #0f172a; }
.tr-od-country { font-size: 13px; color: #64748b; }
.tr-od-port { font-size: 12px; color: #475569; margin-top: 4px; font-style: italic; }
.tr-od-arrow { font-size: 28px; color: #0891b2; padding-top: 20px; }

.tr-routing { padding: 16px 20px; display: flex; flex-direction: column; gap: 0; }
.tr-r-line { display: flex; flex-direction: column; }
.tr-r-step { display: flex; align-items: flex-start; gap: 12px; position: relative; padding-bottom: 20px; }
.tr-r-step:last-child { padding-bottom: 0; }
.tr-r-conn { position: absolute; left: 13px; top: 28px; bottom: 0; width: 2px; background: #e2e8f0; }
.tr-r-conn.done { background: linear-gradient(180deg, #059669, #a7f3d0); }
.tr-r-dot { width: 28px; height: 28px; border-radius: 50%; border: 2px solid #cbd5e1; background: #fff; display: flex; align-items: center; justify-content: center; font-size: 12px; color: #94a3b8; flex-shrink: 0; z-index: 1; }
.tr-r-step.done .tr-r-dot { background: #059669; border-color: #059669; color: #fff; }
.tr-r-step.current .tr-r-dot { border-color: #0891b2; background: #e0f2fe; color: #0891b2; }
.tr-r-body { display: flex; flex-direction: column; gap: 2px; }
.tr-r-label { font-size: 14px; font-weight: 700; color: #0f172a; }
.tr-r-step.done .tr-r-label { color: #059669; }
.tr-r-city { font-size: 13px; color: #475569; }
.tr-r-port { font-size: 12px; color: #64748b; }
.tr-r-date-act { font-size: 12px; color: #065f46; font-weight: 600; }
.tr-r-date-est { font-size: 12px; color: #94a3b8; }
.tr-r-pending { font-size: 12px; color: #94a3b8; font-style: italic; }

.tr-steps { padding: 4px 0; }
.tr-step-grp { border-bottom: 1px solid #f1f5f9; }
.tr-step-grp:last-child { border-bottom: none; }
.tr-step-grp-title { font-size: 12px; font-weight: 700; color: #64748b; text-transform: uppercase; letter-spacing: 0.3px; padding: 10px 20px; background: #fafbfc; }
.tr-step-tbl { width: 100%; border-collapse: collapse; font-size: 13px; }
.tr-step-tbl tbody tr { border-bottom: 1px solid #f8fafc; transition: background 0.15s; }
.tr-step-tbl tbody tr:last-child { border-bottom: none; }
.tr-step-tbl tbody tr:hover { background: #fafbfc; }
.tr-step-tbl tbody td { padding: 10px 20px; vertical-align: middle; }
.tr-step-tbl tbody tr.current td { background: #f0f9ff; }
.tr-step-dot { width: 20px; padding-right: 0 !important; }
.tr-step-dot span { display: block; width: 8px; height: 8px; border-radius: 50%; background: #cbd5e1; }
.tr-step-tbl tbody tr.current .tr-step-dot span { background: #0891b2; box-shadow: 0 0 0 3px rgba(8,145,178,0.2); }
.tr-step-evt { font-weight: 500; color: #1e293b; }
.tr-step-tbl tbody tr.current .tr-step-evt { color: #0891b2; font-weight: 600; }
.tr-step-act { color: #065f46; font-size: 12px; display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.tr-step-est { color: #94a3b8; font-size: 12px; display: flex; align-items: center; gap: 4px; white-space: nowrap; }
.tr-tag-act { font-size: 10px; font-weight: 700; padding: 1px 6px; border-radius: 4px; background: #059669; color: #fff; text-transform: uppercase; }
.tr-tag-est { font-size: 10px; font-weight: 700; padding: 1px 6px; border-radius: 4px; background: #94a3b8; color: #fff; text-transform: uppercase; }

/* ===== QUOTE PAGE ===== */
.quote-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.quote-form {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 36px;
  transition: box-shadow 0.3s;
}
.quote-form:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.04); }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: #475569;
  margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid #e2e8f0;
  border-radius: 6px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #0891b2; }

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

.quote-sidebar {
  background: linear-gradient(135deg, #f8fafc, #f1f5f9);
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 36px;
  position: relative;
  overflow: hidden;
}
.quote-sidebar::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -20%;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(8,145,178,0.04), transparent 60%);
  pointer-events: none;
}

.quote-sidebar h3 { font-size: 18px; font-weight: 700; margin-bottom: 16px; color: #0f172a; }
.quote-sidebar ul { list-style: none; padding-left: 0; }
.quote-sidebar li {
  font-size: 14px;
  color: #475569;
  margin-bottom: 12px;
  padding-left: 28px;
  position: relative;
}
.quote-sidebar li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #0891b2;
  font-weight: 700;
}

/* ===== SERVICES PAGE ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.svc-card {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 36px 32px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  overflow: hidden;
}
.svc-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #0891b2, #06b6d4, #22d3ee);
  opacity: 0;
  transition: opacity 0.4s;
}
.svc-card:hover::before { opacity: 1; }

.svc-card:hover {
  border-color: rgba(8,145,178,0.2);
  box-shadow: 0 16px 48px rgba(8,145,178,0.1);
  transform: translateY(-6px);
}

.svc-icon {
  font-size: 36px;
  margin-bottom: 16px;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, rgba(8,145,178,0.1), rgba(6,182,212,0.05));
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
.svc-card:hover .svc-icon {
  background: linear-gradient(135deg, #0891b2, #0e7490);
  transform: scale(1.05) rotate(-3deg);
  box-shadow: 0 8px 24px rgba(8,145,178,0.25);
}

.svc-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.svc-card p { font-size: 14px; color: #64748b; line-height: 1.7; }
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 600;
  color: #0891b2;
  transition: gap 0.3s;
}
.svc-link:hover { gap: 8px; text-decoration: none; }

/* ===== ABOUT PAGE ===== */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.about-intro h2 { font-size: 32px; font-weight: 700; margin-bottom: 16px; position: relative; }
.about-intro h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #0891b2, #22d3ee);
  margin-top: 12px;
  border-radius: 2px;
}
.about-intro p { font-size: 15px; color: #475569; margin-bottom: 12px; line-height: 1.7; }
.about-intro .visual-wrap {
  background: linear-gradient(135deg, #f0f9ff, #f8fafc);
  border-radius: 16px;
  padding: 40px;
  min-height: 280px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(8,145,178,0.1);
}
.about-intro .visual-wrap .big-icon {
  font-size: 60px;
  filter: drop-shadow(0 4px 12px rgba(8,145,178,0.15));
}
.about-intro .visual-wrap .deco-dot {
  position: absolute;
  border-radius: 50%;
  background: rgba(8,145,178,0.05);
  pointer-events: none;
}

.stats-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.stat-box {
  text-align: center;
  padding: 32px 16px;
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  position: relative;
  overflow: hidden;
}
.stat-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0891b2, #22d3ee);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}
.stat-box:hover::before { transform: scaleX(1); }
.stat-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(8,145,178,0.1);
}

.stat-box strong {
  display: block;
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #0891b2, #06b6d4);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-box span {
  font-size: 14px;
  color: #64748b;
  font-weight: 500;
}

/* ===== CONTACT PAGE ===== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.contact-info h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; }

.contact-item h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.contact-item p { font-size: 14px; color: #64748b; }

.contact-form {
  background: #fff;
  border: 1px solid #f1f5f9;
  border-radius: 16px;
  padding: 36px;
  transition: box-shadow 0.3s;
}
.contact-form:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.04); }

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

.contact-item {
  display: flex;
  gap: 14px;
  margin-bottom: 24px;
  padding: 12px;
  border-radius: 12px;
  transition: all 0.3s;
}
.contact-item:hover {
  background: rgba(8,145,178,0.04);
  padding-left: 16px;
}

.contact-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #f1f5f9, #e2e8f0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
  transition: all 0.3s;
}
.contact-item:hover .contact-icon {
  background: linear-gradient(135deg, #0891b2, #0e7490);
  color: #fff;
  transform: scale(1.05);
}

/* Footer */
.site-footer {
  background: linear-gradient(180deg, #0f172a 0%, #0a0f20 100%);
  color: #94a3b8;
  padding: 60px 0 32px;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}
.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(8,145,178,0.3), transparent);
}

.footer-cols {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}

.brand-col .logo-sm {
  font-size: 20px;
  font-weight: 800;
  letter-spacing: 2px;
  color: #fff;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.brand-col .logo-sm svg { width: 32px; height: 32px; }

.brand-col p {
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 20px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a,
.social-links span {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid #334155;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  color: #94a3b8;
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.1);
  text-transform: uppercase;
  text-decoration: none;
}

.social-links a:hover {
  background: linear-gradient(135deg, #0891b2, #0e7490);
  border-color: #0891b2;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(8,145,178,0.3);
}

.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
}
.footer-col h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 24px;
  height: 2px;
  background: #0891b2;
  border-radius: 1px;
}

.footer-col a {
  display: block;
  font-size: 14px;
  color: #94a3b8;
  margin-bottom: 10px;
  transition: all 0.2s;
  position: relative;
  padding-left: 0;
}
.footer-col a:hover { 
  color: #22d3ee; 
  padding-left: 4px; 
}

.footer-bot {
  border-top: 1px solid rgba(51,65,85,0.5);
  padding-top: 24px;
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: #64748b;
  align-items: center;
  flex-wrap: wrap;
}

.footer-bot a { color: #64748b; transition: color 0.2s; }
.footer-bot a:hover { color: #22d3ee; }
.sep { color: #334155; }

/* ===== RESPONSIVE / MOBILE-FIRST ===== */

/* Mobile Navigation */
.mobile-nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
  color: #0891b2;
  cursor: pointer;
  padding: 4px 8px;
}

@media (max-width: 1024px) {
  .hero-split { flex-direction: column; min-height: auto; }
  .hero-left { padding: 48px 32px; }
  .hero-right { flex: 1; padding: 40px 32px; }
  .hero-text h1 { font-size: 40px; }
  .footer-cols { grid-template-columns: repeat(3, 1fr); }
  .nav-main { display: none; }
  .quote-grid { grid-template-columns: 1fr; }
  .about-intro { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .stats-row { grid-template-columns: repeat(2, 1fr); }
  
  /* Show mobile nav toggle */
  .mobile-nav-toggle { display: block; }
  .site-header .container { flex-wrap: wrap; }
  .nav-main.mobile-open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    padding: 16px 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    border-top: 1px solid #f1f5f9;
    gap: 12px;
  }
  .nav-main.mobile-open a {
    padding: 12px 0;
    border-bottom: 1px solid #f1f5f9;
  }
}

@media (max-width: 768px) {
  /* Header */
  .site-header { padding: 12px 0; }
  .header-utils { display: flex; gap: 8px; }
  .header-utils .btn { padding: 8px 12px; font-size: 12px; }
  .logo-area svg { width: 100px; height: 30px; }
  
  /* Hero */
  .hero-left { padding: 32px 20px; }
  .hero-right { padding: 24px 20px; }
  .hero-text h1, .hero-title { font-size: 28px; }
  .hero-text p { font-size: 15px; }
  .hero-stats { gap: 16px; flex-wrap: wrap; }
  .hero-stats strong { font-size: 20px; }
  .hero-stats div { font-size: 12px; }
  .badge { font-size: 11px; padding: 4px 12px; }
  
  /* Portal Card */
  .portal-card { border-radius: 12px; }
  .portal-tabs .tab { font-size: 13px; padding: 12px 8px; }
  .portal-body { padding: 16px; }
  .portal-input-row { flex-direction: column; }
  .portal-input-row input, .portal-input-row .btn { width: 100%; }
  
  /* Services Strip */
  .services-strip { flex-wrap: wrap; justify-content: center; gap: 12px; }
  .strip-item { min-width: 80px; padding: 12px 8px; }
  .strip-icon { width: 40px; height: 40px; font-size: 20px; }
  .strip-item span:last-child { font-size: 11px; }
  
  /* Sections */
  .section { padding: 48px 0; }
  .sec-title { font-size: 26px; }
  .sec-desc { font-size: 15px; }
  
  /* Features & News */
  .features-grid { grid-template-columns: 1fr; gap: 20px; }
  .news-grid { grid-template-columns: 1fr; gap: 16px; }
  .feature { padding: 24px; }
  .news-card { padding: 20px; }
  
  /* CTA */
  .cta-inline { flex-direction: column; text-align: center; gap: 20px; }
  .cta-inline h3 { font-size: 22px; }
  
  /* Footer */
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 24px; }
  .brand-col { grid-column: span 2; }
  .site-footer { padding: 40px 0 20px; }
  .social-links { justify-content: center; }
  .footer-bot { justify-content: center; text-align: center; }
  
  /* Page Banner */
  .page-banner { padding: 40px 0; }
  .page-banner h1 { font-size: 28px; }
  .page-banner p { font-size: 15px; }
  
  /* Tracking */
  .track-hero { padding: 40px 0; }
  .track-hero h1 { font-size: 24px; }
  .track-box { padding: 20px; }
  .track-input-row { flex-direction: column; }
  .track-input-row input, .track-input-row .btn { width: 100%; }
  
  /* CEVA Tracking - Mobile */
  .ceva-milestones { grid-template-columns: repeat(2, 1fr); }
  .ceva-info-grid { grid-template-columns: 1fr; }
  .ceva-route-event { flex-direction: column; gap: 12px; }
  .ceva-re-center { min-width: auto; }
  .ceva-header { flex-direction: column; gap: 12px; }
  .ceva-status { text-align: left; }
  .ceva-route-viz { flex-wrap: wrap; gap: 8px; }
  .ceva-route-line { display: none; }
  .ceva-step-table thead { display: none; }
  .ceva-step-table tbody td { display: block; padding: 6px 12px; }
  .ceva-step-table tbody tr { display: block; padding: 8px 0; border-bottom: 1px solid #f1f5f9; }
  .ceva-step-loc { display: none; }
  
  /* TR-* Tracking */
  .tr-header { flex-direction: column; gap: 12px; }
  .tr-status { text-align: left; margin-top: 8px; }
  .tr-cargo { grid-template-columns: 1fr; }
  .tr-route-viz { gap: 8px; flex-wrap: wrap; }
  .tr-route-end { min-width: 70px; }
  .tr-code { font-size: 18px; padding: 2px 8px; }
  .tr-city { font-size: 12px; }
  .tr-od { flex-direction: column; align-items: center; gap: 12px; }
  .tr-od-arrow { transform: rotate(90deg); padding-top: 0; }
  .tr-od-code { font-size: 18px; }
  .tr-od-city { font-size: 14px; }
  .tr-step-est { display: none; }
  .tr-step-tbl tbody td { display: block; padding: 6px 12px; }
  .tr-step-tbl tbody tr { display: block; padding: 8px 0; }
  .tr-step-dot { display: none; }
  .tr-ms-dots { flex-wrap: wrap; gap: 8px; }
  .tr-ms-item { min-width: 80px; }
  .tr-r-line { margin-left: 12px; }
  
  /* Quote & Contact Forms */
  .quote-form, .contact-form { padding: 24px; }
  .form-row { grid-template-columns: 1fr; gap: 12px; }
  .form-group { margin-bottom: 12px; }
  
  /* Services Page */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .svc-card { padding: 24px; }
  
  /* About Page */
  .stats-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-box { padding: 20px 12px; }
  .stat-box strong { font-size: 24px; }
  
  /* Contact Items */
  .contact-item { flex-direction: column; text-align: center; }
  .contact-icon { margin: 0 auto; }
  
  /* Tables - Horizontal Scroll */
  .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  table { min-width: 600px; }
  
  /* Buttons */
  .btn { padding: 10px 18px; font-size: 13px; }
  .btn-lg { padding: 12px 24px; font-size: 14px; width: 100%; }
  
  /* Inputs */
  input, select, textarea { font-size: 16px; } /* Prevents zoom on iOS */
}

@media (max-width: 480px) {
  /* Extra Small Devices */
  .container { padding: 0 16px; }
  .hero-left, .hero-right { padding: 24px 16px; }
  .hero-text h1, .hero-title { font-size: 24px; }
  .hero-stats { gap: 12px; }
  .hero-stats strong { font-size: 18px; }
  
  .sec-title { font-size: 22px; }
  .sec-desc { font-size: 14px; }
  
  .footer-cols { grid-template-columns: 1fr; }
  .brand-col { grid-column: 1; }
  
  .track-hero h1 { font-size: 20px; }
  .track-box { padding: 16px; }
  
  .ceva-milestones { grid-template-columns: 1fr; }
  .ceva-ms-card { padding: 10px 8px; }
  .ceva-ms-name { font-size: 9px; }
  
  .tr-ms-item { min-width: 60px; }
  .tr-ms-dot { width: 24px; height: 24px; font-size: 10px; }
  .tr-ms-lbl { font-size: 9px; }
  
  .svc-icon { width: 48px; height: 48px; font-size: 28px; }
  
  .stat-box strong { font-size: 20px; }
  .stat-box span { font-size: 12px; }
  
  /* Modal Adjustments */
  .modal-content { width: 95vw; padding: 16px; }
  .modal-content h3 { font-size: 14px; }
  
  /* Admin Panel Mobile */
  .admin-layout { grid-template-columns: 1fr; gap: 16px; }
  .admin-header h1 { font-size: 16px; }
  .admin-nav { overflow-x: auto; -webkit-overflow-scrolling: touch; }
  .nav-tab { padding: 8px 12px; font-size: 12px; white-space: nowrap; }
  .card { padding: 16px; }
  .card h2 { font-size: 14px; }
  .form-row-3, .form-row-4 { grid-template-columns: 1fr; }
  .dim-row { grid-template-columns: 1fr 1fr 1fr 1fr 1fr; gap: 4px; }
  .dim-row span:first-child { display: none; }
  table { font-size: 11px; }
  th, td { padding: 6px 8px; }
}

/* Touch-friendly enhancements */
@media (hover: none) and (pointer: coarse) {
  .btn, a, input, select, button { min-height: 44px; }
  .nav-main a { padding: 12px 0; }
  .strip-item { min-height: 80px; }
  .feature, .news-card, .svc-card { min-height: 120px; }
}

/* Landscape mode on phones */
@media (max-width: 768px) and (orientation: landscape) {
  .hero-split { min-height: auto; }
  .hero-left { padding: 24px 20px; }
  .hero-right { padding: 20px; }
  .section { padding: 32px 0; }
}
  .stats-row { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 480px) {
  .ceva-milestones { grid-template-columns: repeat(2, 1fr); }
  .ceva-step-est { display: none; }
  .ceva-route-viz { gap: 8px; }
  .ceva-code-badge { font-size: 18px; }
  .tr-ms-dots { flex-wrap: wrap; gap: 8px; }
  .tr-ms-item { min-width: 45%; }
  .tr-code { font-size: 20px; }
  .tr-route-viz { gap: 8px; }
  .tr-r-dot { width: 22px; height: 22px; font-size: 10px; }
  .tr-r-conn { left: 10px; }
  .hero-left { padding: 32px 20px; }
  .hero-right { padding: 24px 20px; }
  .portal-input-row { flex-direction: column; }
  .footer-cols { grid-template-columns: 1fr; }
  .brand-col { grid-column: span 1; }
  .header-utils .btn-outline { display: none; }
  .stats-row { grid-template-columns: 1fr; }
}
