/* =============================================
   JORDAN TRANSPORT - Design System
   ============================================= */

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

:root {
  --navy:       #1A2744;
  --navy-dark:  #0F1829;
  --gold:       #C9A84C;
  --gold-light: #E8C96A;
  --gold-pale:  #FBF5E6;
  --white:      #FFFFFF;
  --gray-50:    #F8F9FA;
  --gray-100:   #F0F2F5;
  --gray-300:   #CBD5E0;
  --gray-500:   #718096;
  --gray-700:   #2D3748;
  --red:        #E53E3E;
  --green:      #2F855A;
  --green-light:#F0FFF4;

  --shadow-sm:  0 1px 3px rgba(0,0,0,0.08);
  --shadow-md:  0 4px 16px rgba(26,39,68,0.12);
  --shadow-lg:  0 8px 32px rgba(26,39,68,0.18);
  --shadow-xl:  0 20px 60px rgba(26,39,68,0.22);

  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --radius-xl:  32px;

  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Cairo', 'Tajawal', sans-serif;
  background: var(--white);
  color: var(--gray-700);
  direction: rtl;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ============ UTILITY ============ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.text-center { text-align: center; }
.hidden { display: none !important; }

/* ============ NAVBAR ============ */
.navbar {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 1000;
  background: rgba(15, 24, 41, 0.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(201, 168, 76, 0.2);
  transition: var(--transition);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  padding: 0 24px;
  max-width: 1300px;
  margin: 0 auto;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.logo-icon {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}

.logo-text {
  display: flex; flex-direction: column; line-height: 1.2;
}

.logo-text .main { color: var(--white); font-weight: 700; font-size: 16px; }
.logo-text .sub  { color: var(--gold); font-weight: 400; font-size: 11px; letter-spacing: 1px; }

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

.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold);
  background: rgba(201, 168, 76, 0.1);
}

.nav-cta {
  background: linear-gradient(135deg, var(--gold), var(--gold-light)) !important;
  color: var(--navy-dark) !important;
  font-weight: 700 !important;
  padding: 9px 20px !important;
}

.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 4px 15px rgba(201,168,76,0.4) !important; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  padding: 5px;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: var(--transition);
}

/* ============ HERO ============ */
.hero {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 80% 20%, rgba(26,39,68,0.6) 0%, transparent 70%),
    url('https://images.unsplash.com/photo-1548013146-72479768bada?w=1600&q=80') center/cover no-repeat;
  opacity: 0.4;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 120px 20px 80px;
  max-width: 900px;
  margin: 0 auto;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(201,168,76,0.15);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold-light);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 28px;
  letter-spacing: 0.5px;
}

.hero h1 {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 900;
  color: var(--white);
  line-height: 1.25;
  margin-bottom: 20px;
}

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

.hero-sub {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.7);
  max-width: 620px;
  margin: 0 auto 40px;
  font-weight: 400;
}

.hero-stats {
  display: flex;
  justify-content: center;
  gap: 48px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.hero-stat { text-align: center; }
.hero-stat .num { font-size: 2rem; font-weight: 800; color: var(--gold); font-family: 'Tajawal', sans-serif; }
.hero-stat .lbl { font-size: 12px; color: rgba(255,255,255,0.55); margin-top: 2px; }

.btn-group { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: var(--radius-md);
  font-size: 15px;
  font-weight: 700;
  font-family: 'Cairo', sans-serif;
  cursor: pointer;
  text-decoration: none;
  border: none;
  transition: var(--transition);
  white-space: nowrap;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy-dark);
  box-shadow: 0 4px 20px rgba(201,168,76,0.35);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px rgba(201,168,76,0.45); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,168,76,0.08); }

.btn-lg { padding: 17px 40px; font-size: 16px; }

/* ============ SECTION LAYOUT ============ */
.section { padding: 88px 0; }
.section-alt { background: var(--gray-50); }

.section-header { text-align: center; margin-bottom: 56px; }

.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold);
  background: var(--gold-pale);
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  font-family: 'Tajawal', sans-serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.3;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--gray-500);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.8;
}

/* ============ CARDS ============ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.04);
  transition: var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }

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

/* ============ SERVICE CARDS ============ */
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
  text-decoration: none;
  display: block;
  color: inherit;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-xl); }

.service-card-top {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}

.service-card-body { padding: 28px; }
.service-card-title { font-size: 1.2rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.service-card-desc { font-size: 0.9rem; color: var(--gray-500); line-height: 1.7; margin-bottom: 20px; }

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 28px;
  background: var(--gray-50);
  border-top: 1px solid var(--gray-100);
}

.price-tag { font-weight: 800; color: var(--navy); font-size: 1rem; }
.price-tag span { font-size: 0.75rem; font-weight: 400; color: var(--gray-500); }

.arrow-link {
  width: 36px; height: 36px;
  background: var(--navy);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: var(--transition);
}
.service-card:hover .arrow-link { background: var(--gold); transform: rotate(-45deg); }

/* ============ PRICE TABLE ============ */
.price-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

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

.price-table th {
  padding: 18px 24px;
  text-align: right;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

.price-table td {
  padding: 16px 24px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}

.price-table tbody tr:hover { background: var(--gold-pale); }
.price-table tbody tr:last-child td { border-bottom: none; }

.price-value {
  font-weight: 700;
  color: var(--navy);
  font-size: 1rem;
}

.badge {
  display: inline-block;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}
.badge-green  { background: var(--green-light); color: var(--green); }
.badge-gold   { background: var(--gold-pale); color: #8a6a1a; }
.badge-navy   { background: #EEF2FF; color: var(--navy); }

/* ============ FEATURES ============ */
.feature-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-md);
  transition: var(--transition);
}
.feature-item:hover { background: var(--gold-pale); }

.feature-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
  background: var(--navy);
}

.feature-text h4 { font-size: 1rem; font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature-text p  { font-size: 0.88rem; color: var(--gray-500); line-height: 1.7; }

/* ============ TESTIMONIALS ============ */
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-md);
  border-right: 4px solid var(--gold);
  position: relative;
}

.testimonial-card::before {
  content: '"';
  font-size: 80px;
  color: var(--gold-pale);
  position: absolute;
  top: 10px; right: 20px;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-text { font-size: 0.95rem; color: var(--gray-700); line-height: 1.8; margin-bottom: 20px; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--navy));
  display: flex; align-items: center; justify-content: center;
  color: white; font-weight: 700; font-size: 16px;
}
.author-name { font-weight: 700; font-size: 14px; color: var(--navy); }
.author-location { font-size: 12px; color: var(--gray-500); }
.stars { color: var(--gold); font-size: 13px; margin-bottom: 4px; }

/* ============ CTA BANNER ============ */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, #1e3a5f 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 70% at 50% 0%, rgba(201,168,76,0.12) 0%, transparent 60%);
}
.cta-content { position: relative; z-index: 2; text-align: center; }
.cta-content h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 800; color: var(--white); margin-bottom: 16px; font-family: 'Tajawal', sans-serif; }
.cta-content p  { color: rgba(255,255,255,0.65); font-size: 1.05rem; margin-bottom: 36px; }

/* ============ CONTACT FORM ============ */
.contact-form { background: var(--white); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-lg); }
.form-group { margin-bottom: 22px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--navy); margin-bottom: 8px; }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-md);
  font-size: 14px;
  font-family: 'Cairo', sans-serif;
  color: var(--gray-700);
  transition: var(--transition);
  background: var(--white);
  direction: rtl;
}
.form-control:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.12); }
select.form-control { cursor: pointer; }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ============ WHATSAPP FLOAT ============ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  left: 28px;
  z-index: 999;
  background: #25D366;
  width: 58px; height: 58px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  text-decoration: none;
  font-size: 28px;
  animation: pulse 2s infinite;
  transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.4); }
  50%      { box-shadow: 0 4px 30px rgba(37,211,102,0.65); }
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
  padding: 130px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.page-hero.alt::after { background: var(--gray-50); }
.page-hero h1 { font-size: clamp(1.9rem, 4vw, 3rem); font-weight: 900; color: var(--white); font-family: 'Tajawal', sans-serif; margin-bottom: 14px; }
.page-hero p  { color: rgba(255,255,255,0.65); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; font-size: 13px; color: rgba(255,255,255,0.45); margin-bottom: 20px; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb span { color: rgba(255,255,255,0.3); }

/* ============ ROUTE CARD ============ */
.route-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(0,0,0,0.05);
  transition: var(--transition);
}
.route-card:hover { box-shadow: var(--shadow-xl); transform: translateY(-3px); }

.route-card-header {
  background: var(--navy);
  padding: 20px 24px;
  display: flex; align-items: center; gap: 12px;
}
.route-card-header h3 { color: var(--white); font-size: 1rem; font-weight: 700; flex: 1; }
.route-badge { background: rgba(201,168,76,0.2); color: var(--gold-light); padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 600; }

.route-card-body { padding: 24px; }

.route-detail {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px dashed var(--gray-100);
}
.route-detail:last-child { border-bottom: none; }
.route-detail-icon { font-size: 18px; width: 32px; text-align: center; }
.route-detail-label { font-size: 12px; color: var(--gray-500); margin-bottom: 2px; }
.route-detail-value { font-size: 14px; font-weight: 600; color: var(--navy); }

.route-price-row {
  background: var(--gold-pale);
  border-top: 2px solid var(--gold);
  padding: 16px 24px;
  display: flex; align-items: center; justify-content: space-between;
}
.route-price-label { font-size: 13px; color: var(--gray-500); }
.route-price-val { font-size: 1.4rem; font-weight: 800; color: var(--navy); font-family: 'Tajawal', sans-serif; }

/* ============ ADMIN PANEL ============ */
.admin-login {
  min-height: 100vh;
  background: var(--navy-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.admin-login-box {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-xl);
  text-align: center;
}

.admin-login-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--navy), var(--navy-dark));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  font-size: 32px;
}

.admin-login-box h2 { font-size: 1.6rem; font-weight: 800; color: var(--navy); margin-bottom: 8px; }
.admin-login-box p  { color: var(--gray-500); font-size: 0.9rem; margin-bottom: 32px; }

.admin-wrapper { min-height: 100vh; background: var(--gray-50); }

.admin-sidebar {
  position: fixed;
  top: 0; right: 0;
  width: 260px;
  height: 100vh;
  background: var(--navy-dark);
  padding: 24px 0;
  z-index: 100;
  overflow-y: auto;
}

.admin-logo {
  padding: 0 24px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 16px;
}
.admin-logo .brand { color: var(--white); font-weight: 700; font-size: 16px; }
.admin-logo .sub   { color: var(--gold); font-size: 12px; }

.sidebar-nav { list-style: none; }
.sidebar-nav li a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 24px;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: var(--transition);
  border-right: 3px solid transparent;
}
.sidebar-nav li a:hover,
.sidebar-nav li a.active {
  color: var(--white);
  background: rgba(255,255,255,0.06);
  border-right-color: var(--gold);
}

.admin-main {
  margin-right: 260px;
  padding: 32px;
  min-height: 100vh;
}

.admin-topbar {
  background: var(--white);
  padding: 18px 28px;
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 32px;
  box-shadow: var(--shadow-sm);
}

.admin-topbar h2 { font-size: 1.2rem; font-weight: 700; color: var(--navy); }
.admin-topbar .welcome { font-size: 13px; color: var(--gray-500); }

.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 32px; }

.stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(0,0,0,0.04);
}
.stat-card-icon { font-size: 28px; margin-bottom: 12px; }
.stat-card-val  { font-size: 1.8rem; font-weight: 800; color: var(--navy); font-family: 'Tajawal', sans-serif; }
.stat-card-lbl  { font-size: 12px; color: var(--gray-500); margin-top: 4px; }

.admin-table-card {
  background: var(--white);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.table-header {
  padding: 20px 28px;
  border-bottom: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
}
.table-header h3 { font-size: 1rem; font-weight: 700; color: var(--navy); }

.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th {
  padding: 14px 20px;
  text-align: right;
  font-size: 12px;
  font-weight: 700;
  color: var(--gray-500);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  background: var(--gray-50);
  border-bottom: 1px solid var(--gray-100);
}
.admin-table td {
  padding: 14px 20px;
  border-bottom: 1px solid var(--gray-100);
  font-size: 14px;
}
.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: var(--gray-50); }

.price-edit-input {
  width: 100px;
  padding: 6px 10px;
  border: 1.5px solid var(--gray-300);
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: 'Cairo', sans-serif;
  text-align: center;
  transition: var(--transition);
}
.price-edit-input:focus { outline: none; border-color: var(--gold); }

.btn-save {
  padding: 7px 16px;
  background: var(--green);
  color: white;
  border: none;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'Cairo', sans-serif;
}
.btn-save:hover { background: #276749; }

.btn-admin {
  padding: 10px 24px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  font-family: 'Cairo', sans-serif;
  transition: var(--transition);
}
.btn-admin-primary { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--navy-dark); }
.btn-admin-primary:hover { transform: translateY(-1px); box-shadow: 0 4px 14px rgba(201,168,76,0.35); }
.btn-admin-danger  { background: #FFF5F5; color: var(--red); border: 1.5px solid #FED7D7; }
.btn-admin-danger:hover { background: var(--red); color: white; }

.alert {
  padding: 14px 20px;
  border-radius: var(--radius-md);
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 20px;
  display: none;
}
.alert-success { background: var(--green-light); color: var(--green); border: 1px solid #C6F6D5; }
.alert-error   { background: #FFF5F5; color: var(--red); border: 1px solid #FED7D7; }
.alert.show { display: block; }

/* ============ FOOTER ============ */
.footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-brand p { font-size: 13px; line-height: 1.8; margin-top: 14px; max-width: 280px; }
.footer-col h4 { color: var(--white); font-size: 14px; font-weight: 700; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: rgba(255,255,255,0.55); text-decoration: none; font-size: 13px; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  padding: 20px 0;
  display: flex; align-items: center; justify-content: space-between;
  font-size: 13px;
}
.footer-bottom a { color: var(--gold); text-decoration: none; }

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .admin-sidebar { width: 220px; }
  .admin-main { margin-right: 220px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 70px; right: 0; left: 0; background: var(--navy-dark); padding: 16px; border-top: 1px solid rgba(255,255,255,0.08); }
  .nav-links.open { display: flex; }
  .menu-toggle { display: flex; }
  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .admin-sidebar { transform: translateX(100%); transition: var(--transition); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-right: 0; padding: 20px; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 480px) {
  .section { padding: 60px 0; }
  .btn-group { flex-direction: column; align-items: center; }
  .stat-cards { grid-template-columns: 1fr; }
  .contact-form { padding: 28px 20px; }
  .admin-login-box { padding: 36px 24px; }
}
