/*
Theme Name: Assignments Assist
Theme URI: https://assignmentsassist.com
Author: Assignments Assist
Description: Custom WordPress theme for Assignments Assist - Student academic help service
Version: 1.0
License: GNU General Public License v2 or later
Text Domain: assignments-assist
*/

/* ===========================
   CSS VARIABLES
=========================== */
:root {
  --navy: #0f1f4b;
  --navy-dark: #08122e;
  --navy-mid: #1a3270;
  --blue: #2563c4;
  --blue-light: #4a8fe0;
  --sky: #ddeeff;
  --sky-mid: #b8d8ff;
  --accent: #f59e0b;
  --accent-dark: #d97706;
  --green: #16a34a;
  --green-bg: #dcfce7;
  --white: #ffffff;
  --off-white: #f0f4ff;
  --bg: #f5f8ff;
  --text-dark: #0f1f4b;
  --text-body: #2d3748;
  --text-muted: #5a6a8a;
  --text-light: #8899bb;
  --border: #d0dcf0;
  --border-light: #e8eef8;
  --shadow: 0 4px 24px rgba(15,31,75,0.10);
  --shadow-lg: 0 8px 40px rgba(15,31,75,0.16);
  --radius: 12px;
  --radius-lg: 18px;
}

/* ===========================
   RESET & BASE
=========================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif;
  color: var(--text-body);
  background: var(--bg);
  font-size: 16px;
  line-height: 1.7;
}
h1,h2,h3,h4,h5,h6 {
  font-family: 'Sora', 'Segoe UI', system-ui, sans-serif;
  color: var(--text-dark);
  line-height: 1.25;
}
a { text-decoration: none; color: var(--blue); }
a:hover { color: var(--blue-light); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}
.container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}
.section { padding: 72px 0; }
.section-alt { background: var(--white); }

/* ===========================
   TYPOGRAPHY HELPERS
=========================== */
.section-badge {
  display: inline-block;
  background: var(--sky);
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.section-title {
  font-size: 36px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
  letter-spacing: -0.5px;
}
.section-title span { color: var(--blue); }
.section-sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
}
.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ===========================
   BUTTONS
=========================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  cursor: pointer;
  border: none;
  transition: all 0.22s ease;
  text-decoration: none;
}
.btn-primary {
  background: var(--blue);
  color: #ffffff !important;
}
.btn-primary:hover {
  background: var(--navy);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(37,99,196,0.30);
  color: #ffffff !important;
}
.btn-accent {
  background: var(--accent);
  color: var(--navy) !important;
}
.btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-2px);
  color: var(--navy) !important;
}
.btn-white {
  background: #ffffff;
  color: var(--navy) !important;
}
.btn-white:hover {
  background: var(--sky);
  color: var(--navy) !important;
}
.btn-outline-white {
  background: transparent;
  color: #ffffff !important;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: rgba(255,255,255,0.8);
  color: #ffffff !important;
}
.btn-wa {
  background: #25d366;
  color: #ffffff !important;
}
.btn-wa:hover {
  background: #1da851;
  transform: translateY(-2px);
  color: #ffffff !important;
}
.btn-sm {
  padding: 8px 16px;
  font-size: 13px;
}
.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

/* ===========================
   HEADER & NAVIGATION
=========================== */
.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  position: sticky;
  top: 0;
  z-index: 999;
  box-shadow: 0 2px 12px rgba(15,31,75,0.06);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.site-logo img {
  height: 44px;
  width: auto;
}
.site-logo-text {
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1.2;
}
.site-logo-text span { color: var(--blue); display: block; font-size: 11px; font-weight: 600; letter-spacing: 0.5px; }
.main-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}
.main-nav a {
  padding: 7px 13px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  transition: all 0.18s;
}
.main-nav a:hover,
.main-nav a.current-menu-item {
  background: var(--sky);
  color: var(--blue);
}
.header-cta {
  background: var(--blue);
  color: #ffffff !important;
  padding: 9px 18px;
  border-radius: 9px;
  font-size: 14px;
  font-weight: 700;
  font-family: 'Sora', sans-serif;
  margin-left: 10px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s;
}
.header-cta:hover {
  background: var(--navy);
  color: #ffffff !important;
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: all 0.3s;
}

/* ===========================
   FLOATING WHATSAPP
=========================== */
.wa-float {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 58px;
  height: 58px;
  background: #25d366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 998;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.2s;
  text-decoration: none;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 30px; height: 30px; fill: white; }

/* ===========================
   PAGE BANNER (inner pages)
=========================== */
.page-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  padding: 56px 0;
  text-align: center;
}
.page-banner h1 {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 10px;
}
.page-banner p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 540px;
  margin: 0 auto;
}
.breadcrumb-nav {
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  margin-bottom: 14px;
}
.breadcrumb-nav a {
  color: rgba(255,255,255,0.65);
  text-decoration: none;
}
.breadcrumb-nav a:hover { color: white; }

/* ===========================
   HERO (Homepage)
=========================== */
.hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, #1e3a8a 100%);
  padding: 96px 0 110px;
  position: relative;
  overflow: hidden;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute;
  top: -100px; right: -120px;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.03);
  border-radius: 50%;
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 380px; height: 380px;
  background: rgba(255,255,255,0.025);
  border-radius: 50%;
}
.hero-inner { position: relative; z-index: 1; max-width: 820px; margin: 0 auto; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 30px;
  padding: 7px 18px;
  font-size: 13px;
  color: rgba(255,255,255,0.92);
  margin-bottom: 28px;
}
.hero h1 {
  font-size: 54px;
  font-weight: 800;
  color: #ffffff;
  line-height: 1.12;
  letter-spacing: -1.5px;
  margin-bottom: 22px;
}
.hero h1 span { color: #fbbf24; }
.hero p {
  font-size: 19px;
  color: rgba(255,255,255,0.78);
  max-width: 580px;
  margin: 0 auto 38px;
}
.hero-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   STATS BAR
=========================== */
.stats-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 28px 0;
}
.stats-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat-item {
  text-align: center;
  padding: 8px 40px;
  border-right: 1px solid var(--border-light);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: 'Sora', sans-serif;
  font-size: 30px;
  font-weight: 800;
  color: var(--navy);
  display: block;
}
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 2px;
}

/* ===========================
   SERVICE CARDS
=========================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.service-card {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 30px 26px;
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
  text-decoration: none;
  display: block;
}
.service-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: var(--blue);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.service-card:hover {
  border-color: var(--blue);
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::after { transform: scaleX(1); }
.service-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  font-size: 26px;
}
.icon-blue  { background: var(--sky); }
.icon-green { background: #dcfce7; }
.icon-amber { background: #fef3c7; }
.icon-purple{ background: #f3e8ff; }
.service-card h3 {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 10px;
}
.service-card p {
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.65;
}
.card-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: 13.5px;
  font-weight: 700;
  margin-top: 18px;
}

/* ===========================
   WHY CHOOSE US
=========================== */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
  margin-top: 48px;
}
.why-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 20px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  transition: box-shadow 0.2s;
}
.why-card:hover { box-shadow: var(--shadow); }
.why-icon {
  font-size: 26px;
  flex-shrink: 0;
  margin-top: 2px;
}
.why-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 5px;
}
.why-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.6;
}

/* ===========================
   CTA BANNER
=========================== */
.cta-banner-wrap { padding: 0 24px 80px; }
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark), var(--navy-mid));
  border-radius: 24px;
  padding: 56px 40px;
  text-align: center;
  max-width: 1140px;
  margin: 0 auto;
}
.cta-banner h2 {
  font-size: 32px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 12px;
}
.cta-banner p {
  color: rgba(255,255,255,0.78);
  font-size: 16px;
  margin-bottom: 30px;
}
.cta-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* ===========================
   SOLUTIONS PAGE
=========================== */
.filter-bar {
  background: var(--white);
  border-bottom: 1px solid var(--border-light);
  padding: 16px 0;
  position: sticky;
  top: 70px;
  z-index: 90;
}
.filter-inner {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  align-items: center;
}
.filter-label {
  font-size: 13px;
  font-weight: 700;
  color: var(--text-muted);
}
.filter-btn {
  padding: 7px 15px;
  border-radius: 20px;
  border: 1.5px solid var(--border);
  background: var(--white);
  font-size: 13px;
  color: var(--text-body);
  cursor: pointer;
  transition: all 0.2s;
}
.filter-btn.active,
.filter-btn:hover {
  background: var(--blue);
  color: #ffffff;
  border-color: var(--blue);
}
.solutions-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(290px, 1fr));
  gap: 22px;
  margin-top: 40px;
}
.sol-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 22px;
  transition: all 0.22s;
}
.sol-card:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(37,99,196,0.10);
}
.sol-tag {
  display: inline-block;
  background: var(--sky);
  color: var(--blue);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.sol-card h4 {
  font-size: 14.5px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 8px;
  line-height: 1.45;
}
.sol-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}
.sol-card-footer {
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px solid var(--border-light);
  display: flex;
  gap: 8px;
}
.btn-sol-view {
  background: var(--sky);
  color: var(--blue) !important;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.btn-sol-wa {
  background: var(--green-bg);
  color: var(--green) !important;
  padding: 7px 14px;
  border-radius: 8px;
  font-size: 12.5px;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

/* ===========================
   ZOOM / FULL COURSE FEATURES
=========================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px;
  margin-top: 40px;
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px 22px;
  transition: box-shadow 0.2s;
}
.feat-card:hover { box-shadow: var(--shadow); }
.feat-icon { font-size: 28px; margin-bottom: 12px; }
.feat-card h4 {
  font-size: 15px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}
.feat-card p {
  font-size: 13.5px;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ===========================
   HOW IT WORKS STEPS
=========================== */
.steps-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  margin: 40px 0 36px;
}
.step {
  text-align: center;
  padding: 0 28px;
}
.step-num {
  width: 46px;
  height: 46px;
  background: var(--blue);
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Sora', sans-serif;
  font-size: 18px;
  font-weight: 800;
  margin: 0 auto 12px;
}
.step h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.step p { font-size: 13px; color: var(--text-muted); }
.step-arrow {
  font-size: 22px;
  color: var(--border);
  margin-top: -20px;
  padding: 0 8px;
}

/* ===========================
   PRICING HIGHLIGHT (Full Course)
=========================== */
.pricing-card {
  background: linear-gradient(135deg, var(--accent), #f97316);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  text-align: center;
  margin-bottom: 40px;
  color: var(--navy-dark);
}
.pricing-card .pre-label {
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.75;
  margin-bottom: 8px;
}
.pricing-card .big-price {
  font-family: 'Sora', sans-serif;
  font-size: 54px;
  font-weight: 800;
  line-height: 1;
  color: var(--navy-dark);
}
.pricing-card .price-note {
  font-size: 15px;
  margin-top: 10px;
  opacity: 0.8;
  color: var(--navy-dark);
}

/* ===========================
   COMPARISON TABLE
=========================== */
.compare-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border-light);
  margin-bottom: 40px;
}
.compare-table {
  width: 100%;
  border-collapse: collapse;
}
.compare-table th {
  background: var(--navy);
  color: #ffffff;
  padding: 15px 20px;
  text-align: left;
  font-size: 13.5px;
  font-weight: 700;
}
.compare-table td {
  padding: 13px 20px;
  border-bottom: 1px solid var(--border-light);
  font-size: 14px;
  color: var(--text-body);
}
.compare-table tr:last-child td { border-bottom: none; }
.compare-table tr:nth-child(even) td { background: var(--off-white); }
.badge-win {
  background: var(--green-bg);
  color: #15803d;
  padding: 3px 11px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}
.badge-lose {
  background: #fee2e2;
  color: #dc2626;
  padding: 3px 11px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
}

/* ===========================
   TESTIMONIALS / REVIEWS
=========================== */
.review-submit-box {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  margin-bottom: 48px;
}
.review-submit-box h3 {
  font-size: 20px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 6px;
}
.review-submit-box > p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}
.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 22px;
}
.review-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 24px;
}
.review-stars { color: #f59e0b; font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.review-text {
  font-size: 14px;
  color: var(--text-body);
  line-height: 1.65;
  margin-bottom: 16px;
  font-style: italic;
}
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--sky);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 700; color: var(--blue);
  flex-shrink: 0;
}
.review-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.review-uni  { font-size: 12px; color: var(--text-muted); }

/* ===========================
   FORMS
=========================== */
.form-row { margin-bottom: 16px; }
.form-row label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 7px;
}
.form-input {
  width: 100%;
  padding: 11px 14px;
  border: 1.5px solid var(--border);
  border-radius: 9px;
  font-size: 14.5px;
  color: var(--text-body);
  background: var(--white);
  outline: none;
  transition: border-color 0.2s;
}
.form-input:focus { border-color: var(--blue); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-note {
  font-size: 12.5px;
  color: var(--text-muted);
  margin-top: 6px;
}

/* ===========================
   CONTACT PAGE
=========================== */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 18px;
  margin-bottom: 40px;
}
.contact-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius);
  padding: 28px 20px;
  text-align: center;
}
.contact-card .c-icon { font-size: 32px; margin-bottom: 12px; }
.contact-card h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 6px;
}
.contact-card p {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.contact-card a {
  color: var(--blue);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
}

/* ===========================
   SIMPLE (LEGAL) PAGES
=========================== */
.simple-content {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 48px 52px;
  max-width: 800px;
  margin: 60px auto;
}
.simple-content h2 {
  font-size: 20px;
  font-weight: 700;
  color: var(--navy);
  margin: 32px 0 10px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--sky);
}
.simple-content h2:first-child { margin-top: 0; }
.simple-content p {
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 12px;
}
.simple-content ul {
  list-style: disc;
  padding-left: 22px;
  color: var(--text-body);
  line-height: 2.0;
  margin-bottom: 12px;
}

/* ===========================
   FOOTER
=========================== */
.site-footer {
  background: var(--navy-dark);
  color: rgba(255,255,255,0.65);
  padding: 64px 0 28px;
  margin-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer-brand h3 {
  color: #ffffff;
  font-family: 'Sora', sans-serif;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
}
.footer-brand p {
  font-size: 14px;
  line-height: 1.75;
  color: rgba(255,255,255,0.60);
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #ffffff !important;
  padding: 9px 18px;
  border-radius: 8px;
  font-size: 13.5px;
  font-weight: 700;
  text-decoration: none;
  margin-top: 16px;
}
.footer-col h4 {
  color: #ffffff;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  font-size: 14px;
  color: rgba(255,255,255,0.58);
  text-decoration: none;
  margin-bottom: 10px;
  transition: color 0.18s;
}
.footer-col a:hover { color: #ffffff; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  flex-wrap: wrap;
  gap: 10px;
  color: rgba(255,255,255,0.45);
}
.footer-bottom a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
}
.footer-bottom a:hover { color: white; }

/* ===========================
   ZOOM HERO SECTION
=========================== */
.zoom-hero {
  background: linear-gradient(135deg, #0a1628 0%, var(--navy) 50%, #1e3a8a 100%);
  padding: 72px 0;
  text-align: center;
}
.zoom-hero h1 {
  font-size: 40px;
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 16px;
}
.zoom-hero p {
  font-size: 17px;
  color: rgba(255,255,255,0.78);
  max-width: 560px;
  margin: 0 auto 30px;
}

/* ===========================
   BOOKING BOX
=========================== */
.booking-box {
  background: var(--white);
  border: 1.5px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  margin-top: 48px;
}
.booking-box h3 {
  font-size: 22px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 8px;
}
.booking-box > p {
  color: var(--text-muted);
  margin-bottom: 28px;
}
.booking-contacts {
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-muted);
}
.booking-contacts a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

/* ===========================
   RESPONSIVE
=========================== */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero h1 { font-size: 38px; }
  .section-title { font-size: 28px; }
}
@media (max-width: 700px) {
  .main-nav, .header-cta { display: none; }
  .hamburger { display: flex; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 70px; left: 0; right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--border-light);
    padding: 16px;
    box-shadow: var(--shadow);
    z-index: 998;
  }
  .main-nav.open .header-cta { display: inline-flex; margin: 8px 0 0; }
  .hero h1 { font-size: 30px; }
  .hero { padding: 60px 0 70px; }
  .stats-inner { gap: 0; }
  .stat-item { padding: 12px 20px; border-right: none; border-bottom: 1px solid var(--border-light); width: 50%; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .form-grid { grid-template-columns: 1fr; }
  .simple-content { padding: 28px 20px; margin: 30px 16px; }
  .cta-banner { padding: 36px 24px; }
  .step-arrow { display: none; }
  .pricing-card .big-price { font-size: 36px; }
}
