/* =========================================================
   CareOnRent — Main Stylesheet
   ========================================================= */

:root {
  --primary: #0e7c86;
  --primary-dark: #095c64;
  --primary-light: #e6f6f7;
  --accent: #ff7a45;
  --accent-dark: #e85f2a;
  --text-dark: #1c2b2e;
  --text-muted: #5a6b6e;
  --bg-light: #f6faf9;
  --white: #ffffff;
  --border: #e2e8e8;
  --success: #2e9e5b;
  --shadow: 0 6px 24px rgba(14, 124, 134, 0.10);
  --radius: 14px;
  --radius-sm: 8px;
  --transition: all 0.25s ease;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, Roboto, Arial, sans-serif;
  color: var(--text-dark);
  background: var(--bg-light);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 20px;
}

.section { padding: 64px 0; }
.section-alt { background: var(--white); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 40px; }
.section-head .eyebrow {
  display: inline-block;
  background: var(--primary-light);
  color: var(--primary-dark);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 30px;
  margin-bottom: 14px;
}
.section-head h2 { font-size: 32px; margin-bottom: 10px; color: var(--text-dark); }
.section-head p { color: var(--text-muted); font-size: 16px; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 15px;
  border: none;
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary { background: var(--accent); color: var(--white); }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.7); }
.btn-outline:hover { background: rgba(255,255,255,0.15); }
.btn-secondary { background: var(--primary); color: var(--white); }
.btn-secondary:hover { background: var(--primary-dark); }
.btn-block { width: 100%; justify-content: center; }
.btn-sm { padding: 8px 18px; font-size: 13px; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--primary-dark);
  color: #d9f0f1;
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.topbar a { color: #fff; font-weight: 600; }
.topbar .topbar-links { display: flex; gap: 20px; flex-wrap: wrap; }
.topbar .topbar-links span, .topbar .topbar-links a { display: flex; align-items: center; gap: 6px; }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 12px rgba(0,0,0,0.05);
  position: sticky;
  top: 0;
  z-index: 999;
}
.navbar { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 24px; font-weight: 800; color: var(--primary-dark); }
.logo span { color: var(--accent); }
.logo small { display: block; font-size: 11px; font-weight: 500; color: var(--text-muted); letter-spacing: 0.4px; }

.nav-menu { display: flex; align-items: center; gap: 32px; }
.nav-menu a {
  font-weight: 600;
  font-size: 15px;
  color: var(--text-dark);
  position: relative;
  padding: 6px 0;
  transition: var(--transition);
}
.nav-menu a:hover, .nav-menu a.active { color: var(--primary); }
.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 2px;
  background: var(--accent);
}

.nav-actions { display: flex; align-items: center; gap: 12px; }
.nav-call {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--primary-light);
  color: var(--primary-dark);
  padding: 9px 16px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 14px;
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
}
.menu-toggle span { width: 26px; height: 3px; background: var(--text-dark); border-radius: 3px; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(120deg, var(--primary-dark), var(--primary) 60%, #0aa3a3);
  color: var(--white);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}
.hero .container { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: center; position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.15);
  padding: 7px 16px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 { font-size: 42px; line-height: 1.25; margin-bottom: 18px; }
.hero h1 em { font-style: normal; color: #ffe0a3; }
.hero p { font-size: 17px; color: #dff3f4; margin-bottom: 26px; max-width: 520px; }
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 30px; }
.hero-points { display: flex; flex-wrap: wrap; gap: 20px; }
.hero-points div { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 600; }
.hero-visual {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 20px;
  padding: 24px;
  backdrop-filter: blur(6px);
}
.hero-visual img { border-radius: 14px; width: 100%; }

/* Quick quote card in hero */
.hero-quote-card {
  background: var(--white);
  color: var(--text-dark);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.25);
}
.hero-quote-card h3 { font-size: 18px; margin-bottom: 4px; color: var(--primary-dark); }
.hero-quote-card p.muted { font-size: 13px; color: var(--text-muted); margin-bottom: 16px; }

/* ---------- Trust strip ---------- */
.trust-strip { background: var(--white); border-bottom: 1px solid var(--border); padding: 22px 0; }
.trust-strip .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 18px; }
.trust-item { display: flex; align-items: center; gap: 10px; font-weight: 600; font-size: 14px; color: var(--primary-dark); }
.trust-item .num { font-size: 22px; font-weight: 800; color: var(--accent); }

/* ---------- Cards / Grid ---------- */
.grid { display: grid; gap: 26px; }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 24px;
  transition: var(--transition);
}
.feature-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: transparent; }
.feature-card .icon {
  width: 54px; height: 54px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px;
  margin-bottom: 16px;
}
.feature-card h3 { font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: var(--text-muted); font-size: 14.5px; }

/* Product card */
.product-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.product-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.product-card .thumb { position: relative; background: var(--primary-light); }
.product-card .thumb img { width: 100%; height: 200px; object-fit: cover; }
.product-card .badge {
  position: absolute; top: 12px; left: 12px;
  background: var(--accent); color: var(--white);
  font-size: 11px; font-weight: 700; padding: 5px 12px; border-radius: 20px;
  text-transform: uppercase; letter-spacing: 0.4px;
}
.product-card .body { padding: 20px; flex: 1; display: flex; flex-direction: column; }
.product-card .category-tag { font-size: 12px; color: var(--primary); font-weight: 700; text-transform: uppercase; letter-spacing: 0.4px; margin-bottom: 6px; }
.product-card h3 { font-size: 18px; margin-bottom: 8px; }
.product-card p.desc { color: var(--text-muted); font-size: 14px; margin-bottom: 14px; flex: 1; }
.product-card .price-row {
  display: flex; align-items: baseline; gap: 8px;
  border-top: 1px dashed var(--border); padding-top: 14px; margin-bottom: 14px;
}
.product-card .price-row .price { font-size: 22px; font-weight: 800; color: var(--primary-dark); }
.product-card .price-row .per { font-size: 13px; color: var(--text-muted); }
.product-card .actions { display: flex; gap: 10px; }
.product-card .actions .btn { flex: 1; justify-content: center; padding: 10px; font-size: 14px; }

/* ---------- Steps / How it works ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; counter-reset: step; }
.step { text-align: center; position: relative; }
.step .step-num {
  width: 52px; height: 52px; border-radius: 50%;
  background: var(--primary); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-weight: 800; font-size: 20px; margin: 0 auto 16px;
}
.step h4 { font-size: 16px; margin-bottom: 6px; }
.step p { font-size: 13.5px; color: var(--text-muted); }

/* ---------- Pricing table (home preview) ---------- */
.price-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); }
.price-table th, .price-table td { padding: 16px 20px; text-align: left; border-bottom: 1px solid var(--border); font-size: 14.5px; }
.price-table th { background: var(--primary-dark); color: var(--white); font-weight: 700; }
.price-table tr:last-child td { border-bottom: none; }
.price-table td.amount { font-weight: 800; color: var(--accent-dark); }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--accent), var(--accent-dark));
  color: var(--white);
  border-radius: var(--radius);
  padding: 40px;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px;
}
.cta-banner h3 { font-size: 24px; margin-bottom: 6px; }
.cta-banner p { opacity: 0.9; }
.cta-banner .btn { background: var(--white); color: var(--accent-dark); }
.cta-banner .btn:hover { background: #fff3e9; }

/* ---------- Testimonials ---------- */
.testimonial-card { background: var(--white); border-radius: var(--radius); padding: 26px; border: 1px solid var(--border); }
.testimonial-card .stars { color: #f5a623; margin-bottom: 12px; font-size: 14px; }
.testimonial-card p { color: var(--text-dark); font-size: 14.5px; margin-bottom: 16px; }
.testimonial-card .who { display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar {
  width: 42px; height: 42px; border-radius: 50%;
  background: var(--primary-light); color: var(--primary-dark);
  display: flex; align-items: center; justify-content: center; font-weight: 800;
}
.testimonial-card .who strong { display: block; font-size: 14px; }
.testimonial-card .who span { font-size: 12.5px; color: var(--text-muted); }

/* ---------- FAQ ---------- */
.faq-item { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius-sm); margin-bottom: 12px; overflow: hidden; }
.faq-question {
  padding: 18px 20px; display: flex; justify-content: space-between; align-items: center;
  font-weight: 700; cursor: pointer; font-size: 15px;
}
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; padding: 0 20px; color: var(--text-muted); font-size: 14.5px; }
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 18px; }
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-toggle { transition: var(--transition); font-size: 20px; color: var(--accent); }

/* ---------- Service areas ---------- */
.area-zone { background: var(--white); border: 1px solid var(--border); border-radius: var(--radius); padding: 22px; margin-bottom: 20px; }
.area-zone h4 { color: var(--primary-dark); font-size: 17px; margin-bottom: 12px; display: flex; align-items: center; gap: 8px; }
.area-list { display: flex; flex-wrap: wrap; gap: 8px; }
.area-list span {
  background: var(--primary-light); color: var(--primary-dark);
  font-size: 12.5px; padding: 6px 12px; border-radius: 20px; font-weight: 600;
}

/* ---------- Forms ---------- */
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-weight: 600; font-size: 14px; margin-bottom: 7px; }
.form-control {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--border); border-radius: var(--radius-sm);
  font-size: 14.5px; font-family: inherit; transition: var(--transition);
  background: var(--white);
}
.form-control:focus { outline: none; border-color: var(--primary); box-shadow: 0 0 0 3px var(--primary-light); }
textarea.form-control { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.alert { padding: 14px 18px; border-radius: var(--radius-sm); margin-bottom: 20px; font-size: 14.5px; font-weight: 600; }
.alert-success { background: #e8f8ee; color: var(--success); border: 1px solid #b9e8c9; }
.alert-error { background: #fdeceb; color: #c0392b; border: 1px solid #f3c2c2; }

/* ---------- Contact page ---------- */
.contact-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.contact-info-card {
  background: var(--primary-dark); color: var(--white); border-radius: var(--radius); padding: 32px;
}
.contact-info-card h3 { font-size: 22px; margin-bottom: 8px; }
.contact-info-card p.muted { color: #cdeaea; margin-bottom: 24px; font-size: 14.5px; }
.contact-info-item { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 22px; }
.contact-info-item .icon-box {
  width: 42px; height: 42px; border-radius: 10px; background: rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.contact-info-item strong { display: block; font-size: 15px; margin-bottom: 2px; }
.contact-info-item span, .contact-info-item a { font-size: 14px; color: #d9f0f1; }
.map-embed { border-radius: var(--radius); overflow: hidden; margin-top: 20px; border: 1px solid rgba(255,255,255,0.2); }
.map-embed iframe { width: 100%; height: 220px; border: 0; display: block; }

.form-card { background: var(--white); border-radius: var(--radius); padding: 32px; border: 1px solid var(--border); box-shadow: var(--shadow); }

/* ---------- Product detail ---------- */
.pd-wrap { display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 44px; }
.pd-gallery img { border-radius: var(--radius); border: 1px solid var(--border); width: 100%; }
.pd-info h1 { font-size: 28px; margin-bottom: 10px; }
.pd-info .brand-tag { color: var(--primary); font-weight: 700; font-size: 13px; text-transform: uppercase; margin-bottom: 12px; display: block;}
.pd-info .short { color: var(--text-muted); margin-bottom: 20px; font-size: 15.5px; }
.pd-price-box { background: var(--primary-light); border-radius: var(--radius); padding: 22px; margin-bottom: 22px; }
.pd-price-box .row { display: flex; justify-content: space-between; padding: 8px 0; font-size: 14.5px; border-bottom: 1px dashed rgba(14,124,134,0.25); }
.pd-price-box .row:last-child { border-bottom: none; }
.pd-price-box .row strong { color: var(--primary-dark); font-size: 17px; }
.pd-features { margin: 20px 0; }
.pd-features li { display: flex; gap: 10px; align-items: flex-start; padding: 8px 0; font-size: 14.5px; color: var(--text-dark); }
.pd-features li i { color: var(--success); margin-top: 3px; }
.pd-cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* ---------- Breadcrumb ---------- */
.breadcrumb-bar { background: var(--primary-light); padding: 18px 0; }
.breadcrumb-bar .container { display: flex; align-items: center; gap: 8px; font-size: 13.5px; color: var(--primary-dark); flex-wrap:wrap; }
.breadcrumb-bar a { font-weight: 600; }
.page-title-bar { background: var(--primary-dark); color: var(--white); padding: 46px 0; text-align: center; }
.page-title-bar h1 { font-size: 32px; margin-bottom: 8px; }
.page-title-bar p { color: #cdeaea; }

/* ---------- Footer ---------- */
.site-footer { background: #0a2e33; color: #b9d3d4; padding: 60px 0 0; margin-top: 40px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
.footer-grid h4 { color: var(--white); font-size: 16px; margin-bottom: 18px; }
.footer-about .logo { color: var(--white); margin-bottom: 14px; }
.footer-about .logo span { color: var(--accent); }
.footer-about p { font-size: 14px; line-height: 1.7; margin-bottom: 16px; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { font-size: 14px; transition: var(--transition); }
.footer-links a:hover { color: var(--white); padding-left: 4px; }
.footer-contact li { display: flex; gap: 10px; margin-bottom: 14px; font-size: 14px; align-items: flex-start; }
.social-row { display: flex; gap: 10px; margin-top: 18px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.social-row a:hover { background: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.1); padding: 20px 0; text-align: center; font-size: 13px; }
.footer-bottom a { color: var(--accent); }

/* ---------- Floating buttons ---------- */
.floating-actions { position: fixed; right: 22px; bottom: 22px; z-index: 998; display: flex; flex-direction: column; gap: 12px; }
.floating-actions a {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 24px; box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  transition: var(--transition);
}
.floating-actions a:hover { transform: scale(1.08); }
.fab-whatsapp { background: #25d366; }
.fab-call { background: var(--accent); }

/* ---------- Admin ---------- */
.admin-body { background: #f1f5f6; font-family: 'Segoe UI', sans-serif; }
.admin-login-wrap { min-height: 100vh; display: flex; align-items: center; justify-content: center; padding: 20px; background: linear-gradient(120deg, var(--primary-dark), var(--primary)); }
.admin-login-card { background: var(--white); border-radius: var(--radius); padding: 40px; width: 100%; max-width: 400px; box-shadow: 0 20px 60px rgba(0,0,0,0.3); }
.admin-login-card h2 { text-align:center; color: var(--primary-dark); margin-bottom: 6px; }
.admin-login-card p.muted { text-align:center; color: var(--text-muted); font-size: 13.5px; margin-bottom: 26px; }

.admin-layout { display: flex; min-height: 100vh; }
.admin-sidebar { width: 240px; background: var(--primary-dark); color: #cdeaea; flex-shrink: 0; padding: 24px 0; }
.admin-sidebar .brand { padding: 0 24px 24px; font-size: 20px; font-weight: 800; color: var(--white); border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 16px; }
.admin-sidebar .brand span { color: var(--accent); }
.admin-nav a {
  display: flex; align-items: center; gap: 12px; padding: 13px 24px; font-size: 14.5px; font-weight: 600;
  transition: var(--transition); border-left: 3px solid transparent;
}
.admin-nav a:hover, .admin-nav a.active { background: rgba(255,255,255,0.08); color: var(--white); border-left-color: var(--accent); }
.admin-main { flex: 1; padding: 28px 34px; }
.admin-topbar { display: flex; justify-content: space-between; align-items: center; margin-bottom: 26px; flex-wrap: wrap; gap: 12px; }
.admin-topbar h1 { font-size: 24px; color: var(--text-dark); }

.stat-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-bottom: 30px; }
.stat-card { background: var(--white); border-radius: var(--radius); padding: 22px; border: 1px solid var(--border); }
.stat-card .icon { width: 46px; height: 46px; border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 14px; font-size: 20px; color: var(--white); }
.stat-card .value { font-size: 26px; font-weight: 800; color: var(--text-dark); }
.stat-card .label { font-size: 13px; color: var(--text-muted); }

.admin-card { background: var(--white); border-radius: var(--radius); border: 1px solid var(--border); padding: 24px; margin-bottom: 24px; }
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td { padding: 12px 14px; text-align: left; font-size: 14px; border-bottom: 1px solid var(--border); }
.admin-table th { background: var(--bg-light); font-weight: 700; color: var(--text-muted); text-transform: uppercase; font-size: 11.5px; letter-spacing: 0.5px; }
.admin-table img { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; }
.status-pill { padding: 4px 12px; border-radius: 20px; font-size: 12px; font-weight: 700; }
.status-active, .status-new { background: #e8f8ee; color: var(--success); }
.status-inactive, .status-closed { background: #f1f1f1; color: #777; }
.status-contacted { background: #fff4e5; color: #b5720c; }
.table-actions { display: flex; gap: 8px; }
.table-actions a, .table-actions button {
  padding: 6px 12px; border-radius: 6px; font-size: 12.5px; font-weight: 700; border: none; display:inline-flex; align-items:center; gap:4px;
}
.action-edit { background: #e6f6f7; color: var(--primary-dark); }
.action-delete { background: #fdeceb; color: #c0392b; }
.action-view { background: #eef2ff; color: #4338ca; }

@media (max-width: 991px) {
  .hero .container { grid-template-columns: 1fr; }
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .steps { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .pd-wrap { grid-template-columns: 1fr; }
  .contact-wrap { grid-template-columns: 1fr; }
  .stat-cards { grid-template-columns: repeat(2, 1fr); }
  .admin-sidebar { position: fixed; left: -240px; top: 0; bottom: 0; z-index: 1000; transition: var(--transition); }
  .admin-sidebar.open { left: 0; }
}

@media (max-width: 767px) {
  .nav-menu { position: fixed; top: 0; right: -280px; width: 280px; height: 100vh; background: var(--white); flex-direction: column; align-items: flex-start; padding: 90px 28px; gap: 22px; box-shadow: -10px 0 30px rgba(0,0,0,0.15); transition: right 0.3s ease; z-index: 1001; }
  .nav-menu.open { right: 0; }
  .menu-toggle { display: flex; }
  .nav-call { display: none; }
  .hero h1 { font-size: 30px; }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { justify-content: center; }
  .grid-3, .grid-4, .grid-2 { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .section { padding: 44px 0; }
  .topbar .container { justify-content: center; text-align: center; }
  .stat-cards { grid-template-columns: 1fr; }
  .admin-main { padding: 20px; }
  #sidebarToggle { display: block !important; }
}

.nav-overlay { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.4); z-index: 1000; }
.nav-overlay.open { display: block; }
