/* ============================================================
   Alzaidi LLC – alzaidi.css
   Blue-forward, professional medical transport theme
   Font: Sora (display) + Plus Jakarta Sans (body)
   ============================================================ */

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --navy:      #0c2461;
  --blue:      #1e3799;
  --mid-blue:  #2563eb;
  --light-blue:#60a5fa;
  --sky:       #dbeafe;
  --sky-light: #eff6ff;
  --red:       #dc2626;
  --red-light: #fee2e2;
  --white:     #ffffff;
  --gray-50:   #f8faff;
  --gray-100:  #e8eeff;
  --gray-400:  #94a3b8;
  --gray-600:  #475569;
  --gray-800:  #1e293b;

  --shadow-sm: 0 1px 3px rgba(12,36,97,.08);
  --shadow-md: 0 4px 16px rgba(12,36,97,.12);
  --shadow-lg: 0 12px 36px rgba(12,36,97,.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --trans: .28s cubic-bezier(.4,0,.2,1);
}

/* ── Reset ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--gray-800);
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3,h4,h5 {
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--navy);
}
h1 { font-size: clamp(2rem,5vw,3.4rem); }
h2 { font-size: clamp(1.5rem,3.5vw,2.4rem); }
h3 { font-size: 1.25rem; }

/* ── Container ──────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }

/* ── Topbar ─────────────────────────────────────────────────── */
.topbar {
  background: var(--navy);
  color: rgba(255,255,255,.85);
  font-size: 13px;
  padding: 8px 0;
}
.topbar-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.topbar i { margin-right: 6px; color: var(--light-blue); }
.topbar-contacts { display: flex; gap: 20px; }
.topbar-contacts a {
  color: rgba(255,255,255,.85);
  transition: color var(--trans);
}
.topbar-contacts a:hover { color: var(--light-blue); }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans);
}
.navbar.scrolled { box-shadow: var(--shadow-md); }
.nav-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text { display: flex; flex-direction: column; }
.brand-name {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
}
.brand-sub {
  font-size: 11px;
  font-weight: 500;
  color: var(--mid-blue);
  text-transform: uppercase;
  letter-spacing: .7px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 600;
  color: var(--gray-600);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--trans), background var(--trans);
}
.nav-links a:hover, .nav-links a.active {
  color: var(--mid-blue);
  background: var(--sky-light);
}
.nav-links .nav-cta {
  background: var(--mid-blue);
  color: var(--white) !important;
  padding: 10px 20px;
  border-radius: 50px;
  font-weight: 700;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans) !important;
}
.nav-links .nav-cta:hover {
  background: var(--navy);
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(37,99,235,.4);
}
.nav-cta i { margin-right: 6px; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  border-radius: 6px;
  transition: background var(--trans);
}
.nav-hamburger:hover { background: var(--sky); }
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2.5px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform var(--trans), opacity var(--trans);
}

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3799 45%, #1e56b8 75%, #2563eb 100%);
}
.hero-bg-shapes {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.hero-shape {
  position: absolute;
  border-radius: 50%;
  opacity: .08;
  background: var(--white);
}
.hero-shape:nth-child(1) { width: 600px; height: 600px; top: -200px; right: -100px; opacity: .06; }
.hero-shape:nth-child(2) { width: 300px; height: 300px; bottom: -80px; left: 40%; opacity: .05; }
.hero-shape:nth-child(3) { width: 160px; height: 160px; top: 30%; left: 5%; opacity: .1; }

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 48px 48px;
}

.hero-inner {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 80px 24px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.22);
  color: var(--light-blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: 50px;
  margin-bottom: 20px;
  backdrop-filter: blur(8px);
}
.hero-badge i { font-size: 11px; }
.hero-title {
  font-family: 'Sora', sans-serif;
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 18px;
  line-height: 1.1;
}
.hero-title em {
  font-style: normal;
  color: var(--light-blue);
}
.hero-desc {
  color: rgba(255,255,255,.8);
  font-size: 17px;
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--red);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 4px 18px rgba(220,38,38,.4);
}
.btn-primary:hover {
  background: #b91c1c;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(220,38,38,.5);
}
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,.1);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 600;
  font-size: 15px;
  padding: 14px 28px;
  border-radius: 50px;
  border: 1.5px solid rgba(255,255,255,.35);
  backdrop-filter: blur(8px);
  transition: background var(--trans), border-color var(--trans), transform var(--trans);
}
.btn-outline:hover {
  background: rgba(255,255,255,.2);
  border-color: rgba(255,255,255,.6);
  transform: translateY(-2px);
}
.hero-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,.75);
  font-size: 13px;
  font-weight: 500;
}
.trust-item i { color: var(--light-blue); }
.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}
.hero-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 32px;
  backdrop-filter: blur(16px);
  width: 100%;
  max-width: 360px;
}
.hero-card h3 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 20px;
  font-weight: 600;
}
.quick-form-field {
  margin-bottom: 14px;
}
.quick-form-field label {
  display: block;
  color: rgba(255,255,255,.7);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.quick-form-field input,
.quick-form-field select {
  width: 100%;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.2);
  color: var(--white);
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color var(--trans), background var(--trans);
}
.quick-form-field input::placeholder { color: rgba(255,255,255,.45); }
.quick-form-field input:focus,
.quick-form-field select:focus {
  border-color: var(--light-blue);
  background: rgba(255,255,255,.15);
}
.quick-form-field select option { background: var(--navy); }
.quick-submit {
  width: 100%;
  margin-top: 6px;
  padding: 12px;
  background: var(--red);
  color: white;
  border-radius: var(--radius-sm);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 15px;
  transition: background var(--trans);
}
.quick-submit:hover { background: #b91c1c; }

/* ── Stats Bar ──────────────────────────────────────────────── */
.stats-bar {
  background: var(--white);
  box-shadow: var(--shadow-md);
  padding: 32px 0;
}
.stats-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.stat-item {
  text-align: center;
  padding: 20px;
  border-radius: var(--radius-md);
  transition: background var(--trans);
}
.stat-item:hover { background: var(--sky-light); }
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--mid-blue);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--gray-600);
  text-transform: uppercase;
  letter-spacing: .6px;
}

/* ── Section Shared ─────────────────────────────────────────── */
.section {
  padding: 84px 0;
}
.section-alt { background: var(--sky-light); }
.section-dark {
  background: var(--navy);
  color: var(--white);
}
.section-header { text-align: center; margin-bottom: 52px; }
.section-eyebrow {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--mid-blue);
  background: var(--sky);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 12px;
}
.section-dark .section-eyebrow {
  color: var(--light-blue);
  background: rgba(96,165,250,.15);
}
.section-header h2 { margin-bottom: 14px; }
.section-header p {
  color: var(--gray-600);
  max-width: 560px;
  margin: 0 auto;
  font-size: 16.5px;
}
.section-dark .section-header p { color: rgba(255,255,255,.75); }
.section-dark h2 { color: var(--white); }
.divider {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--mid-blue), var(--light-blue));
  border-radius: 4px;
  margin: 14px auto 0;
}
.section-dark .divider {
  background: linear-gradient(90deg, var(--light-blue), rgba(255,255,255,.4));
}

/* ── Services Cards ─────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: transform var(--trans), box-shadow var(--trans), border-color var(--trans);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--mid-blue), var(--light-blue));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--trans);
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--sky); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 60px;
  height: 60px;
  border-radius: var(--radius-md);
  background: var(--sky);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--mid-blue);
  transition: background var(--trans), color var(--trans);
}
.service-card:hover .service-icon {
  background: var(--mid-blue);
  color: var(--white);
}
.service-card h3 { margin-bottom: 10px; font-size: 17px; color: var(--navy); }
.service-card p { color: var(--gray-600); font-size: 14.5px; line-height: 1.65; }

/* ── About Section ──────────────────────────────────────────── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-bg {
  position: absolute;
  inset: -20px;
  background: linear-gradient(135deg, var(--sky) 0%, var(--sky-light) 100%);
  border-radius: var(--radius-xl);
  z-index: -1;
}
.about-img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
}
.about-badge {
  position: absolute;
  bottom: -16px;
  right: -16px;
  background: var(--mid-blue);
  color: var(--white);
  padding: 16px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge strong {
  display: block;
  font-size: 28px;
  font-family: 'Sora', sans-serif;
  font-weight: 800;
}
.about-badge span { font-size: 12px; opacity: .85; }
.about-content .section-eyebrow { margin-bottom: 12px; }
.about-content h2 { margin-bottom: 16px; }
.about-content p { color: var(--gray-600); margin-bottom: 14px; font-size: 15.5px; }
.about-features { display: flex; flex-direction: column; gap: 12px; margin: 24px 0; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.about-feature-icon {
  width: 36px;
  height: 36px;
  background: var(--sky);
  color: var(--mid-blue);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 15px;
}
.about-feature h4 { font-size: 14.5px; color: var(--navy); margin-bottom: 2px; }
.about-feature p  { font-size: 13.5px; color: var(--gray-600); margin: 0; }

/* ── Team Cards ─────────────────────────────────────────────── */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 28px;
}
.team-card {
  background: rgba(255,255,255,.07);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: var(--radius-lg);
  padding: 32px 24px;
  text-align: center;
  backdrop-filter: blur(10px);
  transition: background var(--trans), transform var(--trans);
}
.team-card:hover {
  background: rgba(255,255,255,.13);
  transform: translateY(-4px);
}
.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mid-blue), var(--light-blue));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 28px;
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  border: 3px solid rgba(255,255,255,.2);
}
.team-card h3 { color: var(--white); font-size: 18px; margin-bottom: 4px; }
.team-role { color: var(--light-blue); font-size: 13px; font-weight: 600; margin-bottom: 12px; }
.team-phone {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,.75);
  font-size: 14px;
  transition: color var(--trans);
}
.team-phone:hover { color: var(--white); }
.team-phone i { color: var(--light-blue); }

/* ── Why Choose ─────────────────────────────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
}
.why-item {
  text-align: center;
  padding: 28px 20px;
  border-radius: var(--radius-md);
  background: var(--white);
  border: 1px solid var(--gray-100);
  transition: transform var(--trans), box-shadow var(--trans);
}
.why-item:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.why-icon {
  font-size: 32px;
  color: var(--mid-blue);
  margin-bottom: 14px;
}
.why-item h4 { font-size: 15px; color: var(--navy); margin-bottom: 6px; }
.why-item p  { font-size: 13px; color: var(--gray-600); }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(135deg, var(--mid-blue), var(--navy));
  border-radius: var(--radius-xl);
  padding: 56px 48px;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin: 80px 0;
}
.cta-banner::before {
  content: '';
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  top: -150px; right: -100px;
}
.cta-banner h2 { color: var(--white); margin-bottom: 12px; }
.cta-banner p  { color: rgba(255,255,255,.8); margin-bottom: 28px; font-size: 16px; }
.cta-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ── Process Steps ──────────────────────────────────────────── */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step;
}
.step-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  position: relative;
  transition: box-shadow var(--trans), transform var(--trans);
}
.step-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); }
.step-num {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--mid-blue), var(--light-blue));
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 800;
  font-size: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
}
.step-card h3 { font-size: 16px; color: var(--navy); margin-bottom: 8px; }
.step-card p  { font-size: 14px; color: var(--gray-600); }

/* ── Form Styles ────────────────────────────────────────────── */
.form-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border: 1.5px solid #d1d9f0;
  border-radius: var(--radius-sm);
  padding: 12px 16px;
  font-size: 15px;
  font-family: inherit;
  color: var(--gray-800);
  background: var(--white);
  outline: none;
  transition: border-color var(--trans), box-shadow var(--trans);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--mid-blue);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-section-title {
  font-family: 'Sora', sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--sky);
  margin-bottom: 24px;
  margin-top: 32px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form-section-title i { color: var(--mid-blue); }
.form-section-title:first-child { margin-top: 0; }

.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--mid-blue);
  color: var(--white);
  font-family: 'Sora', sans-serif;
  font-weight: 700;
  font-size: 16px;
  padding: 14px 36px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: background var(--trans), transform var(--trans), box-shadow var(--trans);
  box-shadow: 0 4px 16px rgba(37,99,235,.35);
}
.btn-submit:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(37,99,235,.45);
}

/* ── Alert Messages ─────────────────────────────────────────── */
.alert {
  padding: 14px 20px;
  border-radius: var(--radius-sm);
  margin-bottom: 20px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.alert-success { background: #dcfce7; color: #166534; border-left: 4px solid #16a34a; }
.alert-error   { background: var(--red-light); color: #991b1b; border-left: 4px solid var(--red); }
.alert-info    { background: var(--sky); color: var(--navy); border-left: 4px solid var(--mid-blue); }

/* ── Page Hero (inner pages) ────────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  padding: 60px 0 50px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 40px;
  background: var(--white);
  clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero-alt::after { background: var(--sky-light); }
.page-hero h1 { color: var(--white); margin-bottom: 10px; }
.page-hero p  { color: rgba(255,255,255,.78); font-size: 16.5px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: rgba(255,255,255,.6);
  font-size: 13px;
  margin-bottom: 16px;
}
.breadcrumb a { color: var(--light-blue); }
.breadcrumb span { opacity: .5; }

/* ── Contact Page ───────────────────────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: start;
}
.contact-info-cards { display: flex; flex-direction: column; gap: 16px; }
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 20px 24px;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  transition: box-shadow var(--trans), transform var(--trans);
}
.contact-info-card:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.contact-icon {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-sm);
  background: var(--sky);
  color: var(--mid-blue);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-info-card h4 { font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .5px; color: var(--gray-400); margin-bottom: 4px; }
.contact-info-card p, .contact-info-card a { font-size: 15px; color: var(--navy); font-weight: 500; }

/* ── Admin Layout ───────────────────────────────────────────── */
.admin-body {
  background: #f0f4f8;
  min-height: 100vh;
}
.admin-sidebar {
  width: 260px;
  background: var(--navy);
  min-height: 100vh;
  position: fixed;
  top: 0; left: 0;
  z-index: 200;
  display: flex;
  flex-direction: column;
  transition: width var(--trans);
}
.sidebar-brand {
  padding: 24px 20px;
  border-bottom: 1px solid rgba(255,255,255,.1);
  display: flex;
  align-items: center;
  gap: 12px;
}
.sidebar-brand img { height: 44px; }
.sidebar-brand-text { color: var(--white); }
.sidebar-brand-text strong { display: block; font-size: 14px; }
.sidebar-brand-text small { opacity: .6; font-size: 11px; }
.sidebar-nav { flex: 1; padding: 16px 0; }
.sidebar-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 20px;
  color: rgba(255,255,255,.7);
  font-size: 14px;
  font-weight: 500;
  transition: background var(--trans), color var(--trans);
  border-left: 3px solid transparent;
}
.sidebar-nav a:hover, .sidebar-nav a.active {
  background: rgba(255,255,255,.08);
  color: var(--white);
  border-left-color: var(--light-blue);
}
.sidebar-nav a i { width: 20px; text-align: center; color: var(--light-blue); font-size: 15px; }
.sidebar-nav .nav-divider {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: rgba(255,255,255,.35);
  padding: 16px 20px 6px;
}
.admin-main {
  margin-left: 260px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}
.admin-topbar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-100);
  padding: 0 28px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-sm);
}
.admin-topbar h2 { font-size: 18px; color: var(--navy); font-weight: 700; }
.admin-topbar-right { display: flex; align-items: center; gap: 16px; }
.admin-user { display: flex; align-items: center; gap: 10px; font-size: 14px; color: var(--gray-600); }
.admin-content { flex: 1; padding: 28px; }

/* ── Admin Cards / Stats ────────────────────────────────────── */
.admin-stats {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 28px;
}
.admin-stat-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 24px;
  border: 1px solid var(--gray-100);
  display: flex;
  align-items: center;
  gap: 18px;
  box-shadow: var(--shadow-sm);
  transition: box-shadow var(--trans);
}
.admin-stat-card:hover { box-shadow: var(--shadow-md); }
.stat-card-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  flex-shrink: 0;
}
.icon-blue   { background: #dbeafe; color: var(--mid-blue); }
.icon-green  { background: #dcfce7; color: #16a34a; }
.icon-red    { background: var(--red-light); color: var(--red); }
.icon-yellow { background: #fef9c3; color: #ca8a04; }
.icon-purple { background: #f3e8ff; color: #7c3aed; }
.stat-card-num { font-family: 'Sora', sans-serif; font-size: 28px; font-weight: 800; color: var(--navy); line-height: 1; }
.stat-card-label { font-size: 13px; color: var(--gray-600); font-weight: 500; margin-top: 4px; }

/* ── Admin Table ────────────────────────────────────────────── */
.admin-table-card {
  background: var(--white);
  border-radius: var(--radius-md);
  border: 1px solid var(--gray-100);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  margin-bottom: 24px;
}
.table-header {
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-100);
}
.table-header h3 { font-size: 16px; color: var(--navy); }
.table-actions { display: flex; gap: 10px; }
table { width: 100%; border-collapse: collapse; }
thead th {
  background: var(--gray-50);
  padding: 12px 16px;
  text-align: left;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .5px;
  color: var(--gray-600);
  border-bottom: 1px solid var(--gray-100);
  white-space: nowrap;
}
tbody td {
  padding: 14px 16px;
  font-size: 14px;
  color: var(--gray-800);
  border-bottom: 1px solid var(--gray-100);
}
tbody tr:last-child td { border-bottom: none; }
tbody tr:hover td { background: var(--sky-light); }

/* ── Badges ─────────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .4px;
}
.badge-pending   { background: #fef9c3; color: #854d0e; }
.badge-confirmed { background: #dbeafe; color: #1e40af; }
.badge-progress  { background: #ede9fe; color: #5b21b6; }
.badge-completed { background: #dcfce7; color: #14532d; }
.badge-cancelled { background: #fee2e2; color: #991b1b; }

/* ── Btn small ──────────────────────────────────────────────── */
.btn-sm {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 6px 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: opacity var(--trans);
  border: none;
}
.btn-sm:hover { opacity: .85; }
.btn-blue   { background: var(--sky); color: var(--mid-blue); }
.btn-red    { background: var(--red-light); color: var(--red); }
.btn-green  { background: #dcfce7; color: #16a34a; }
.btn-navy   { background: var(--navy); color: var(--white); }

/* ── Admin Login ────────────────────────────────────────────── */
.admin-login-body {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue) 100%);
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.login-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}
.login-card .login-logo { text-align: center; margin-bottom: 28px; }
.login-card .login-logo img { height: 72px; margin: 0 auto 12px; }
.login-card .login-logo h2 { font-size: 22px; margin-bottom: 4px; }
.login-card .login-logo p { color: var(--gray-600); font-size: 13.5px; }

/* ── Footer ─────────────────────────────────────────────────── */
.site-footer { background: #0a1e4f; color: rgba(255,255,255,.75); }
.footer-wave { line-height: 0; }
.footer-wave svg { width: 100%; height: auto; display: block; }
.footer-body { padding: 0 0 0; }
.footer-grid {
  max-width: 1180px;
  margin: 0 auto;
  padding: 48px 24px 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
}
.footer-logo { height: 64px; margin-bottom: 14px; }
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-tagline { font-size: 13px; font-weight: 700; letter-spacing: .8px; color: var(--light-blue); }
.footer-col h4 {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .7px;
  color: var(--white);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-col h4 i { color: var(--light-blue); }
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,.65);
  transition: color var(--trans);
}
.footer-col ul li a:hover { color: var(--light-blue); }
.footer-contact-list { gap: 12px !important; }
.footer-contact-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13.5px;
  color: rgba(255,255,255,.7);
}
.footer-contact-list li i { color: var(--light-blue); width: 16px; text-align: center; }
.footer-contact-list li a { color: rgba(255,255,255,.7); }
.footer-contact-list li a:hover { color: var(--light-blue); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  max-width: 1180px;
  margin: 0 auto;
  padding: 20px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  color: rgba(255,255,255,.4);
}

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(28px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.fade-up { opacity: 0; animation: fadeUp .7s ease forwards; }
.fade-up-1 { animation-delay: .1s; }
.fade-up-2 { animation-delay: .2s; }
.fade-up-3 { animation-delay: .3s; }
.fade-up-4 { animation-delay: .4s; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .hero-inner  { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .hero-inner  { padding: 60px 24px; }
  .about-grid  { grid-template-columns: 1fr; }
  .about-img-wrap { display: none; }
  .contact-grid { grid-template-columns: 1fr; }
  .admin-sidebar { width: 220px; }
  .admin-main { margin-left: 220px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: fixed; top: 0; right: -100%; width: 80%; max-width: 320px; height: 100vh; background: var(--white); box-shadow: var(--shadow-lg); padding: 80px 24px 32px; gap: 4px; z-index: 900; transition: right var(--trans); }
  .nav-links.open { right: 0; display: flex; }
  .nav-links a { padding: 14px 16px; border-radius: var(--radius-sm); width: 100%; }
  .nav-hamburger { display: flex; }
  .stats-inner { grid-template-columns: repeat(2,1fr); }
  .form-row { grid-template-columns: 1fr; }
  .topbar-contacts { display: none; }
  .admin-sidebar { transform: translateX(-100%); width: 260px; transition: transform var(--trans); }
  .admin-sidebar.open { transform: translateX(0); }
  .admin-main { margin-left: 0; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-banner { padding: 36px 24px; }
}
