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

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

:root {
  --deep: #0B1628;
  --dark: #0F2040;
  --mid: #16305A;
  --surface: #1C3D70;
  --accent: #00AEEF;
  --accent-light: #29D9FF;
  --accent-gold: #F59E0B;
  --white: #FFFFFF;
  --text-muted: #90AECE;
  --card-bg: rgba(22, 48, 90, 0.6);
  --card-bg2: rgba(28, 61, 112, 0.4);
  --border: rgba(0, 174, 239, 0.15);
  --border2: rgba(255,255,255,0.08);
  --success: #10B981;
  --error: #EF4444;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--deep);
  color: var(--white);
  line-height: 1.6;
  min-height: 100vh;
}

/* ===== NAVBAR ===== */
.navbar {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(11, 22, 40, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand img { height: 36px; width: auto; }

.navbar-nav {
  display: flex;
  list-style: none;
  gap: 4px;
  align-items: center;
}

.navbar-nav a {
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: 6px;
  transition: all 0.2s ease;
}

.navbar-nav a:hover,
.navbar-nav a.active {
  background: rgba(0,174,239,0.15);
  color: var(--accent);
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
}

.navbar-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: 0.3s;
}

/* ===== PAGE WRAPPER ===== */
.page-content { padding-top: 70px; }

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--deep) 0%, var(--dark) 40%, var(--mid) 100%);
}

.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 20% 50%, rgba(0,174,239,0.12) 0%, transparent 60%);
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 80% 30%, rgba(245,158,11,0.06) 0%, transparent 50%);
}

.hero-img {
  position: absolute;
  right: 0; top: 0;
  height: 100%;
  width: 55%;
  object-fit: cover;
  object-position: center;
  opacity: 0.55;
}

.hero-gradient-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, var(--deep) 30%, rgba(11,22,40,0.5) 60%, transparent 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 80px 80px;
  max-width: 680px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, rgba(0,174,239,0.2), rgba(41,217,255,0.1));
  border: 1px solid rgba(0,174,239,0.4);
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-title {
  font-size: clamp(36px, 5vw, 62px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}

.hero-title .accent { color: var(--accent); }
.hero-title .accent-gold { color: var(--accent-gold); }

.hero-subtitle {
  font-size: 17px;
  color: var(--text-muted);
  margin-bottom: 44px;
  max-width: 460px;
  line-height: 1.75;
}

.hero-cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), #0090CC);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 32px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  letter-spacing: 0.02em;
  box-shadow: 0 4px 20px rgba(0,174,239,0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0,174,239,0.45);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  padding: 13px 28px;
  border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,0.2);
  cursor: pointer;
  transition: all 0.25s ease;
}

.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(0,174,239,0.08);
}

.btn-primary svg, .btn-secondary svg { transition: transform 0.2s; }
.btn-primary:hover svg, .btn-secondary:hover svg { transform: translateX(3px); }

/* ===== STATS STRIP ===== */
.stats-strip {
  background: linear-gradient(135deg, var(--dark), var(--mid));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 56px 80px;
  position: relative;
  overflow: hidden;
}

.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 100%, rgba(0,174,239,0.08) 0%, transparent 70%);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}

.stat-item {
  padding: 24px;
  border-radius: 12px;
  background: rgba(0,174,239,0.05);
  border: 1px solid var(--border);
  transition: transform 0.2s, border-color 0.2s;
}

.stat-item:hover {
  transform: translateY(-4px);
  border-color: rgba(0,174,239,0.4);
}

.stat-number {
  font-size: 40px;
  font-weight: 900;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* ===== SECTION SHARED ===== */
.section { padding: 96px 80px; }

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-tag {
  display: inline-block;
  color: var(--accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
  position: relative;
}

.section-tag::before {
  content: '';
  display: inline-block;
  width: 20px;
  height: 2px;
  background: var(--accent);
  margin-right: 10px;
  vertical-align: middle;
}

.section-title {
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
  margin-bottom: 20px;
}

.section-desc {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.75;
  max-width: 540px;
}

/* ===== FEATURE BLOCKS ===== */
.feature-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 80px 80px;
  max-width: 1300px;
  margin: 0 auto;
}

.feature-block.reverse { direction: rtl; }
.feature-block.reverse > * { direction: ltr; }

.feature-img-wrap {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}

.feature-img-wrap::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 20px;
  border: 1px solid var(--border);
  pointer-events: none;
}

.feature-img-wrap img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  display: block;
  border-radius: 20px;
  transition: transform 0.5s ease;
}

.feature-img-wrap:hover img { transform: scale(1.03); }

.feature-list {
  list-style: none;
  margin: 28px 0 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.65;
}

.feature-list li::before {
  content: '';
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(0,174,239,0.15);
  border: 1.5px solid rgba(0,174,239,0.4);
  margin-top: 2px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='10' viewBox='0 0 24 24' fill='none' stroke='%2300AEEF' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px;
}

/* ===== FRANCHISE FORM ===== */
.franchise-section {
  background: linear-gradient(135deg, var(--dark), var(--mid));
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px;
}

.franchise-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}

.franchise-form {
  background: rgba(0,0,0,0.2);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
  backdrop-filter: blur(10px);
}

.franchise-form h3 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 28px;
}

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

.form-group label {
  display: block;
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 600;
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 11px;
}

.form-group select,
.form-group input {
  width: 100%;
  background: rgba(11,22,40,0.8);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  padding: 13px 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: auto;
}

.form-group select:focus,
.form-group input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.1);
}

.form-group select option {
  background: var(--dark);
  color: var(--white);
}

/* ===== CHECK STATUS PAGE ===== */
.status-page {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.status-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--deep) 0%, var(--dark) 50%, var(--mid) 100%);
}

.status-truck {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 55%;
  max-width: 750px;
  opacity: 0.65;
}

.status-bg-glow {
  position: absolute;
  right: 10%;
  top: 50%;
  transform: translateY(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,174,239,0.08) 0%, transparent 70%);
}

.status-content {
  position: relative;
  z-index: 2;
  padding: 80px;
  width: 100%;
}

.status-card {
  background: var(--white);
  color: var(--deep);
  border-radius: 20px;
  padding: 48px;
  max-width: 500px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4), 0 0 0 1px rgba(0,174,239,0.1);
}

.status-card h2 {
  font-size: 26px;
  font-weight: 800;
  color: var(--deep);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
}

.status-card > p {
  font-size: 14px;
  color: #5A7080;
  margin-bottom: 28px;
}

.status-input {
  width: 100%;
  background: #F0F4F8;
  border: 1.5px solid #E2EAF0;
  border-radius: 8px;
  font-size: 14px;
  padding: 14px 16px;
  font-family: inherit;
  outline: none;
  color: var(--deep);
  transition: border-color 0.2s;
  margin-bottom: 14px;
}

.status-input:focus { border-color: var(--accent); box-shadow: 0 0 0 3px rgba(0,174,239,0.1); }
.status-input::placeholder { color: #9BAFC0; }

.btn-status {
  width: 100%;
  background: linear-gradient(135deg, var(--dark), var(--mid));
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 15px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s ease;
  margin-top: 4px;
}

.btn-status:hover {
  background: linear-gradient(135deg, var(--accent), #0090CC);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(0,174,239,0.3);
}

.status-help {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid #E2EAF0;
}

.status-help p { font-size: 14px; color: #5A7080; margin-bottom: 4px; }
.status-help span { font-size: 13px; color: #9BAFC0; }

.status-result {
  display: none;
  margin-top: 20px;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.status-result.success { background: #e8f9f0; color: #1a7a46; border: 1px solid #a8e6c2; }
.status-result.error { background: #fff0f0; color: #c0392b; border: 1px solid #f5c6c6; }

/* ===== TRACK ORDER PAGE ===== */
.track-page {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.track-bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--deep) 0%, var(--dark) 50%, #102850 100%);
}

.track-truck {
  position: absolute;
  right: 0; bottom: 0;
  width: 55%;
  max-width: 750px;
  opacity: 0.6;
}

.track-content {
  position: relative;
  z-index: 2;
  padding: 80px;
  width: 100%;
}

.track-card {
  background: var(--white);
  color: var(--deep);
  border-radius: 20px;
  padding: 48px;
  max-width: 520px;
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.track-card h2 { font-size: 26px; font-weight: 800; color: var(--deep); margin-bottom: 8px; }
.track-card > p { color: #5A7080; font-size: 14px; margin-bottom: 28px; }

.track-input {
  width: 100%;
  background: #F0F4F8;
  border: 1.5px solid #E2EAF0;
  border-radius: 8px;
  font-size: 14px;
  padding: 14px 16px;
  font-family: inherit;
  outline: none;
  color: var(--deep);
  transition: border-color 0.2s;
  margin-bottom: 14px;
}

.track-input:focus { border-color: var(--accent); }
.track-input::placeholder { color: #9BAFC0; }

.btn-track {
  width: 100%;
  background: linear-gradient(135deg, var(--accent), #0090CC);
  color: var(--white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  padding: 15px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s ease;
  box-shadow: 0 4px 16px rgba(0,174,239,0.3);
}

.btn-track:hover {
  background: linear-gradient(135deg, var(--accent-light), var(--accent));
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(0,174,239,0.4);
}

.track-result { display: none; margin-top: 24px; }

.track-timeline { display: flex; flex-direction: column; gap: 0; }

.track-step {
  display: flex;
  gap: 16px;
  position: relative;
}

.track-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 11px; top: 28px; bottom: -10px;
  width: 2px;
  background: #E2EAF0;
}

.track-step.completed::after { background: var(--accent); }

.step-dot {
  flex-shrink: 0;
  width: 24px; height: 24px;
  border-radius: 50%;
  background: #E2EAF0;
  border: 3px solid #E2EAF0;
  margin-top: 12px;
}

.track-step.completed .step-dot { background: var(--accent); border-color: var(--accent); }
.track-step.active .step-dot { background: var(--white); border-color: var(--accent); }

.step-info { padding: 10px 0 20px; }
.step-title { font-size: 14px; font-weight: 600; color: var(--deep); }
.step-time { font-size: 12px; color: #9BAFC0; margin-top: 2px; }

/* ===== ABOUT PAGE ===== */
.about-hero {
  background: linear-gradient(135deg, var(--deep) 0%, var(--dark) 50%, var(--mid) 100%);
  padding: 100px 80px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.about-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,174,239,0.1) 0%, transparent 60%);
}

.about-hero-inner { max-width: 700px; margin: 0 auto; position: relative; }

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 80px;
  max-width: 1200px;
  margin: 0 auto;
}

.about-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 36px 32px;
  transition: border-color 0.2s, transform 0.2s, box-shadow 0.2s;
}

.about-card:hover {
  border-color: rgba(0,174,239,0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3), 0 0 0 1px rgba(0,174,239,0.2);
}

.about-card-icon {
  width: 52px; height: 52px;
  background: linear-gradient(135deg, rgba(0,174,239,0.2), rgba(41,217,255,0.1));
  border: 1px solid rgba(0,174,239,0.3);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.about-card-icon svg { width: 24px; height: 24px; color: var(--accent); }

.about-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.about-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

.about-mission {
  padding: 80px;
  background: linear-gradient(135deg, var(--dark), var(--mid));
  border-top: 1px solid var(--border);
}

.about-mission-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-mission img { width: 100%; border-radius: 20px; height: 420px; object-fit: cover; }

/* ===== CONTACT PAGE ===== */
.contact-hero {
  background: linear-gradient(135deg, var(--deep) 0%, var(--dark) 50%, var(--mid) 100%);
  padding: 100px 80px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(0,174,239,0.1) 0%, transparent 60%);
}

.contact-hero-inner { position: relative; }

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  padding: 80px;
  align-items: start;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 32px;
}

.contact-info-icon {
  width: 48px; height: 48px;
  background: linear-gradient(135deg, rgba(0,174,239,0.2), rgba(41,217,255,0.1));
  border: 1px solid rgba(0,174,239,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-icon svg { width: 20px; height: 20px; color: var(--accent); }
.contact-info-text h4 { font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.contact-info-text p { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.contact-form-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 44px;
}

.contact-form-card h3 { font-size: 22px; font-weight: 700; margin-bottom: 28px; }

.contact-input,
.contact-textarea {
  width: 100%;
  background: rgba(0,0,0,0.25);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 8px;
  color: var(--white);
  font-size: 14px;
  padding: 14px 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 16px;
}

.contact-textarea { height: 130px; resize: vertical; }

.contact-input:focus,
.contact-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.1);
}

.contact-input::placeholder,
.contact-textarea::placeholder { color: var(--text-muted); }

/* ===== FOOTER ===== */
footer {
  background: linear-gradient(135deg, var(--dark), var(--mid));
  border-top: 1px solid var(--border);
  padding: 60px 80px 30px;
}

.footer-top {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border2);
}

.footer-brand img { height: 32px; margin-bottom: 16px; }
.footer-brand p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin-bottom: 8px; }
.footer-company-name { font-size: 14px; font-weight: 600; color: var(--white); margin-bottom: 8px; }

.footer-address { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 12px; }
.footer-address svg { flex-shrink: 0; width: 16px; height: 16px; color: var(--accent); margin-top: 2px; }
.footer-address span { font-size: 12px; color: var(--text-muted); line-height: 1.6; }
.footer-email { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--text-muted); }
.footer-email svg { width: 16px; height: 16px; color: var(--accent); }

.footer-col h4 {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}

.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { color: var(--text-muted); text-decoration: none; font-size: 14px; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--accent); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 24px;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}

.footer-disclaimer { font-size: 12px; color: #5a7080; line-height: 1.65; flex: 1; }
.footer-copyright { font-size: 12px; color: #5a7080; white-space: nowrap; padding-top: 2px; }

/* ===== ADMIN LOGIN PAGE ===== */
.admin-page {
  min-height: calc(100vh - 70px);
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--deep) 0%, var(--dark) 50%, var(--mid) 100%);
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.admin-page::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(0,174,239,0.08) 0%, transparent 60%);
}

.admin-card {
  background: rgba(22,48,90,0.6);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 56px;
  width: 100%;
  max-width: 440px;
  position: relative;
  backdrop-filter: blur(20px);
  box-shadow: 0 32px 80px rgba(0,0,0,0.4);
}

.admin-card h2 {
  font-size: 26px;
  font-weight: 800;
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}

.admin-card > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 36px;
}

.admin-input {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--white);
  font-size: 14px;
  padding: 14px 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  margin-bottom: 16px;
}

.admin-input:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.12);
}

.admin-input::placeholder { color: var(--text-muted); }

/* ===== ADMIN DASHBOARD ===== */
.admin-layout {
  display: flex;
  min-height: calc(100vh - 70px);
}

.admin-sidebar {
  width: 260px;
  flex-shrink: 0;
  background: linear-gradient(180deg, var(--dark) 0%, var(--mid) 100%);
  border-right: 1px solid var(--border);
  padding: 32px 20px;
  position: sticky;
  top: 70px;
  height: calc(100vh - 70px);
  overflow-y: auto;
}

.admin-sidebar-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 36px;
  padding: 0 8px;
}

.admin-sidebar-header img { height: 28px; }

.admin-sidebar-user {
  font-size: 12px;
  color: var(--text-muted);
  padding: 0 8px;
  margin-bottom: 24px;
}

.admin-sidebar-user strong { display: block; color: var(--white); font-size: 14px; margin-bottom: 2px; }

.admin-nav { list-style: none; display: flex; flex-direction: column; gap: 4px; }

.admin-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  padding: 11px 14px;
  border-radius: 10px;
  transition: all 0.2s;
}

.admin-nav a:hover { background: rgba(0,174,239,0.1); color: var(--white); }
.admin-nav a.active { background: rgba(0,174,239,0.15); color: var(--accent); border: 1px solid rgba(0,174,239,0.2); }

.admin-nav a svg { width: 18px; height: 18px; flex-shrink: 0; }

.admin-nav-divider {
  height: 1px;
  background: var(--border);
  margin: 12px 8px;
}

.admin-main {
  flex: 1;
  background: var(--deep);
  padding: 40px;
  overflow-y: auto;
}

.admin-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.admin-topbar h1 { font-size: 26px; font-weight: 800; letter-spacing: -0.01em; }
.admin-topbar p { font-size: 14px; color: var(--text-muted); margin-top: 4px; }

.admin-panel-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px;
  margin-bottom: 28px;
}

.admin-panel-card h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
}

.admin-panel-card .card-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 28px;
}

.admin-form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.admin-form-group { margin-bottom: 0; }

.admin-form-group.full { grid-column: 1 / -1; }

.admin-form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.admin-form-group input,
.admin-form-group select {
  width: 100%;
  background: rgba(0,0,0,0.3);
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 10px;
  color: var(--white);
  font-size: 14px;
  padding: 13px 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.admin-form-group input:focus,
.admin-form-group select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,174,239,0.1);
}

.admin-form-group input::placeholder { color: var(--text-muted); }

.btn-admin-save {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--accent), #0090CC);
  color: var(--white);
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  padding: 13px 28px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s ease;
  margin-top: 24px;
  box-shadow: 0 4px 16px rgba(0,174,239,0.3);
}

.btn-admin-save:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,174,239,0.4);
}

.btn-admin-danger {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(239,68,68,0.15);
  color: #EF4444;
  border: 1.5px solid rgba(239,68,68,0.3);
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 24px;
  cursor: pointer;
  font-family: inherit;
  transition: all 0.25s ease;
  margin-top: 24px;
  margin-left: 12px;
}

.btn-admin-danger:hover { background: rgba(239,68,68,0.25); }

.admin-alert {
  padding: 14px 18px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 500;
  margin-top: 16px;
  display: none;
}

.admin-alert.success {
  background: rgba(16,185,129,0.15);
  border: 1px solid rgba(16,185,129,0.3);
  color: #10B981;
}

.admin-alert.error {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.3);
  color: #EF4444;
}

.password-strength {
  display: flex;
  gap: 4px;
  margin-top: 8px;
}

.strength-bar {
  height: 3px;
  flex: 1;
  border-radius: 100px;
  background: rgba(255,255,255,0.1);
  transition: background 0.3s;
}

.strength-bar.weak { background: #EF4444; }
.strength-bar.medium { background: var(--accent-gold); }
.strength-bar.strong { background: var(--success); }

.strength-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 6px;
}

.bank-details-display {
  background: rgba(0,174,239,0.05);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 24px;
  margin-top: 24px;
}

.bank-details-display h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.bank-detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid var(--border2);
}

.bank-detail-row:last-child { border-bottom: none; }

.bank-detail-label { font-size: 13px; color: var(--text-muted); }
.bank-detail-value { font-size: 14px; font-weight: 600; color: var(--white); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .section, .franchise-section, .about-mission,
  .about-grid, .contact-inner, .feature-block { padding-left: 40px; padding-right: 40px; }
  .stats-strip { padding-left: 40px; padding-right: 40px; }
  .hero-content { padding: 60px 40px; }
  .footer-top { gap: 40px; }
  footer { padding-left: 40px; padding-right: 40px; }
  .admin-main { padding: 28px; }
}

@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .navbar-nav {
    display: none;
    position: absolute; top: 70px; left: 0; width: 100%;
    background: var(--dark);
    border-bottom: 1px solid var(--border);
    flex-direction: column;
    padding: 16px 20px;
    gap: 4px;
  }
  .navbar-nav.open { display: flex; }
  .navbar-toggle { display: flex; }

  .hero-content { padding: 60px 24px 40px; max-width: 100%; }
  .hero-img { display: none; }
  .hero-gradient-overlay { display: none; }
  .hero-bg::after { display: none; }

  .stats-strip { padding: 40px 24px; }
  .stats-grid { grid-template-columns: repeat(2,1fr); gap: 16px; }
  .stat-number { font-size: 30px; }

  .section { padding: 60px 24px; }
  .feature-block { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }
  .feature-block.reverse { direction: ltr; }
  .feature-img-wrap img { height: 260px; }

  .franchise-section { padding: 60px 24px; }
  .franchise-inner { grid-template-columns: 1fr; gap: 40px; }

  .status-content, .track-content { padding: 40px 24px; }
  .status-truck, .track-truck { display: none; }

  .about-hero { padding: 80px 24px 60px; }
  .about-grid { grid-template-columns: 1fr; padding: 60px 24px; gap: 20px; }
  .about-mission { padding: 60px 24px; }
  .about-mission-inner { grid-template-columns: 1fr; gap: 40px; }

  .contact-hero { padding: 80px 24px 60px; }
  .contact-inner { grid-template-columns: 1fr; padding: 60px 24px; gap: 40px; }

  footer { padding: 48px 24px 24px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; }

  .admin-card { padding: 36px 24px; }
  .admin-layout { flex-direction: column; }
  .admin-sidebar { width: 100%; height: auto; position: relative; top: 0; }
  .admin-main { padding: 24px; }
  .admin-form-grid { grid-template-columns: 1fr; }
}
