/* ============================================================
   VISION MEDIA - Global Design System
   ============================================================ */

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

/* ---- Variables ---- */
:root {
  --primary: #0d1b2e;
  --primary-light: #1a3a5c;
  --accent: #c9a227;
  --accent-light: #e8c251;
  --red: #e63946;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --light: #f0f4f8;
  --gray: #6b7280;
  --gray-light: #e5e9f0;
  --dark: #0a0e1a;
  --text: #1a1a2e;
  --text-muted: #6b7280;
  --border: #dde3ed;
  --shadow: 0 4px 24px rgba(13,27,46,0.10);
  --shadow-lg: 0 12px 48px rgba(13,27,46,0.18);
  --radius: 12px;
  --radius-lg: 20px;
  --transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-ar: 'Cairo', sans-serif;
  --font-en: 'Poppins', sans-serif;
  --header-h: 80px;
}

/* ---- Reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-ar);
  direction: rtl;
  text-align: right;
  background: var(--white);
  color: var(--text);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
button { cursor: pointer; font-family: var(--font-ar); border: none; outline: none; }
input, textarea, select { font-family: var(--font-ar); direction: rtl; }

/* ---- Typography ---- */
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.3; color: var(--primary); }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }
p { color: var(--text-muted); line-height: 1.8; }

/* ---- Container ---- */
.container { width: 100%; max-width: 1280px; margin: 0 auto; padding: 0 24px; }
.container-fluid { width: 100%; padding: 0 40px; }
.section { padding: 90px 0; }
.section-sm { padding: 60px 0; }

/* ---- Section Header ---- */
.section-header { text-align: center; margin-bottom: 60px; }
.section-tag {
  display: inline-block;
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary);
  font-size: 13px;
  font-weight: 700;
  padding: 6px 20px;
  border-radius: 50px;
  letter-spacing: 1px;
  margin-bottom: 16px;
  text-transform: uppercase;
}
.section-title { color: var(--primary); margin-bottom: 16px; }
.section-title span { color: var(--accent); }
.section-desc { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }
.section-divider {
  width: 70px; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--accent-light));
  border-radius: 2px;
  margin: 20px auto 0;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: 13px 32px; border-radius: 50px; font-size: 15px; font-weight: 700;
  font-family: var(--font-ar); cursor: pointer; transition: var(--transition);
  border: 2px solid transparent; white-space: nowrap;
}
.btn i { font-size: 14px; }
.btn-primary {
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  color: var(--white); border-color: var(--primary);
}
.btn-primary:hover { background: linear-gradient(135deg,var(--primary),#0a2540); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(13,27,46,0.3); }
.btn-gold {
  background: linear-gradient(135deg, var(--accent), var(--accent-light));
  color: var(--primary); border-color: var(--accent);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(201,162,39,0.4); }
.btn-outline {
  background: transparent; color: var(--primary); border-color: var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--white); }
.btn-outline-white:hover { background: var(--white); color: var(--primary); }
.btn-red { background: linear-gradient(135deg,var(--red),#c1121f); color: var(--white); border-color: var(--red); }
.btn-red:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(230,57,70,0.4); }
.btn-sm { padding: 9px 22px; font-size: 13px; }
.btn-lg { padding: 17px 44px; font-size: 17px; }
.btn-block { width: 100%; }
.btn-icon { width: 48px; height: 48px; padding: 0; border-radius: 50%; }

/* ---- Header / Nav ---- */
.header {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  height: var(--header-h); transition: var(--transition);
  background: transparent;
}
.header.scrolled {
  background: rgba(10, 14, 26, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 2px 30px rgba(0,0,0,0.4);
  height: 68px;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; gap: 20px;
}
.nav-logo {
  font-size: 22px; font-weight: 900; color: var(--white); letter-spacing: 1px;
  font-family: var(--font-en); flex-shrink: 0;
}
.nav-logo .accent { color: var(--accent); }
.nav-menu { display: flex; align-items: center; gap: 4px; }
.nav-link {
  color: rgba(255,255,255,0.88); font-size: 14.5px; font-weight: 600;
  padding: 8px 14px; border-radius: 8px; transition: var(--transition);
  display: flex; align-items: center; gap: 5px;
}
.nav-link:hover, .nav-link.active { color: var(--accent); }
.nav-link i { font-size: 11px; transition: var(--transition); }
.nav-dropdown { position: relative; }
.nav-dropdown:hover .nav-link i { transform: rotate(-180deg); }
.dropdown-menu {
  position: absolute; top: calc(100% + 12px); right: 0;
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: 20px;
  min-width: 560px; opacity: 0; visibility: hidden;
  transform: translateY(10px); transition: var(--transition);
  border: 1px solid var(--border);
}
.nav-dropdown.active .dropdown-menu,
.nav-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 8px; margin-bottom: 16px; }
.dropdown-item {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 14px; border-radius: 8px; font-size: 13.5px;
  color: var(--text); font-weight: 600; transition: var(--transition);
}
.dropdown-item::before { content: '▸'; color: var(--accent); font-size: 11px; }
.dropdown-item:hover { background: var(--light); color: var(--primary-light); }
.dropdown-footer { border-top: 1px solid var(--border); padding-top: 14px; text-align: center; }
.nav-actions { display: flex; align-items: center; gap: 10px; flex-shrink: 0; }
.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; padding: 6px; cursor: pointer;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ---- Hero ---- */
.hero {
  min-height: 100vh; position: relative; display: flex; align-items: center;
  background: var(--dark); overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0; background: linear-gradient(135deg, #0a0e1a 0%, #1a3a5c 50%, #0d1b2e 100%);
}
.hero-bg::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse at 30% 50%, rgba(201,162,39,0.15) 0%, transparent 60%),
              radial-gradient(ellipse at 70% 20%, rgba(26,58,92,0.4) 0%, transparent 60%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to left, rgba(13,27,46,0.85) 40%, rgba(13,27,46,0.3));
}
.hero-content {
  position: relative; z-index: 2; max-width: 680px;
  animation: heroFadeIn 1s ease both;
}
.hero-tag {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,162,39,0.15); border: 1px solid rgba(201,162,39,0.4);
  color: var(--accent); padding: 8px 20px; border-radius: 50px;
  font-size: 13px; font-weight: 700; margin-bottom: 24px;
  letter-spacing: 0.5px;
}
.hero-tag i { font-size: 12px; }
.hero h1 { color: var(--white); margin-bottom: 20px; }
.hero h1 span { color: var(--accent); }
.hero p { color: rgba(255,255,255,0.75); font-size: 1.1rem; margin-bottom: 40px; max-width: 540px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-stats {
  position: absolute; bottom: 60px; right: 0; left: 0;
  z-index: 2;
}
.hero-stats-inner {
  display: flex; gap: 0; border-radius: var(--radius-lg); overflow: hidden;
  background: rgba(255,255,255,0.05); backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.12); max-width: 700px;
}
.hero-stat {
  flex: 1; padding: 20px; text-align: center; border-left: 1px solid rgba(255,255,255,0.1);
}
.hero-stat:last-child { border-left: none; }
.hero-stat-num { font-size: 2rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 4px; }
.hero-stat-label { font-size: 12px; color: rgba(255,255,255,0.65); }
.hero-slider-dots {
  position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%);
  display: flex; gap: 8px; z-index: 3;
}
.hero-dot {
  width: 8px; height: 8px; border-radius: 50%; background: rgba(255,255,255,0.4);
  cursor: pointer; transition: var(--transition);
}
.hero-dot.active { background: var(--accent); width: 24px; border-radius: 4px; }
@keyframes heroFadeIn { from{opacity:0;transform:translateX(40px)} to{opacity:1;transform:translateX(0)} }

/* ---- Cards ---- */
.card {
  background: var(--white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow); border: 1px solid var(--border);
  overflow: hidden; transition: var(--transition);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.card-body { padding: 28px; }
.card-img { overflow: hidden; aspect-ratio: 16/9; }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.card:hover .card-img img { transform: scale(1.06); }

/* ---- Service Card ---- */
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 28px; text-align: center; border: 2px solid transparent;
  box-shadow: var(--shadow); transition: var(--transition); position: relative; overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; top: 0; right: 0; left: 0; height: 4px;
  background: linear-gradient(90deg,var(--accent),var(--accent-light));
  transform: scaleX(0); transform-origin: right; transition: var(--transition);
}
.service-card:hover::before { transform: scaleX(1); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: rgba(201,162,39,0.2); }
.service-icon {
  width: 72px; height: 72px; border-radius: 18px; display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin: 0 auto 20px; background: linear-gradient(135deg,var(--primary-light),var(--primary));
  color: var(--accent);
}
.service-card h3 { font-size: 16px; margin-bottom: 10px; color: var(--primary); }
.service-card p { font-size: 13.5px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

/* ---- Grid ---- */
.grid { display: grid; gap: 24px; }
.grid-2 { grid-template-columns: repeat(2,1fr); }
.grid-3 { grid-template-columns: repeat(3,1fr); }
.grid-4 { grid-template-columns: repeat(4,1fr); }
.grid-5 { grid-template-columns: repeat(5,1fr); }
.flex { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-gap { display: flex; gap: 16px; flex-wrap: wrap; }
.text-center { text-align: center; }
.text-accent { color: var(--accent); }
.text-primary { color: var(--primary); }
.text-white { color: var(--white); }
.text-muted { color: var(--text-muted); }

/* ---- Page Hero (inner pages) ---- */
.page-hero {
  background: linear-gradient(135deg,var(--dark) 0%,var(--primary-light) 100%);
  padding: 130px 0 70px; text-align: center; position: relative; overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; right: 0; left: 0; height: 80px;
  background: var(--white); clip-path: ellipse(60% 100% at 50% 100%);
}
.page-hero h1 { color: var(--white); margin-bottom: 14px; }
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; }
.breadcrumb { display: flex; align-items: center; gap: 8px; justify-content: center; margin-top: 16px; flex-wrap: wrap; }
.breadcrumb a { color: var(--accent); font-size: 14px; }
.breadcrumb span { color: rgba(255,255,255,0.5); font-size: 14px; }

/* ---- Footer ---- */
.footer { background: var(--dark); color: rgba(255,255,255,0.8); }
.footer-top { padding: 80px 0 50px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 50px; }
.footer-logo { font-size: 24px; font-weight: 900; color: var(--white); margin-bottom: 16px; display: block; font-family: var(--font-en); }
.footer-logo .accent { color: var(--accent); }
.footer-brand p { font-size: 14px; color: rgba(255,255,255,0.6); line-height: 1.8; margin-bottom: 24px; }
.social-links { display: flex; gap: 10px; flex-wrap: wrap; }
.social-links a {
  width: 40px; height: 40px; border-radius: 10px; display: flex; align-items: center; justify-content: center;
  background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.7); font-size: 16px;
  transition: var(--transition); border: 1px solid rgba(255,255,255,0.1);
}
.social-links a:hover { background: var(--accent); color: var(--primary); transform: translateY(-3px); }
.footer-links h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 14px; color: rgba(255,255,255,0.6); transition: var(--transition); }
.footer-links a:hover { color: var(--accent); padding-right: 6px; }
.footer-contact h4 { font-size: 15px; font-weight: 700; color: var(--white); margin-bottom: 20px; }
.footer-contact ul { display: flex; flex-direction: column; gap: 12px; margin-bottom: 24px; }
.footer-contact li { display: flex; align-items: center; gap: 10px; font-size: 14px; color: rgba(255,255,255,0.6); }
.footer-contact li i { color: var(--accent); width: 16px; }
.footer-contact a { color: rgba(255,255,255,0.6); }
.footer-contact a:hover { color: var(--accent); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; }
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 12px; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 13px; color: rgba(255,255,255,0.45); }
.footer-legal a:hover { color: var(--accent); }

/* ---- Forms ---- */
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 14px; font-weight: 600; color: var(--primary); margin-bottom: 8px; }
.form-label span { color: var(--red); }
.form-control {
  width: 100%; padding: 13px 16px; border: 2px solid var(--border);
  border-radius: var(--radius); font-size: 14px; font-family: var(--font-ar);
  color: var(--text); background: var(--white); direction: rtl;
  transition: var(--transition); outline: none;
}
.form-control:focus { border-color: var(--primary-light); box-shadow: 0 0 0 3px rgba(26,58,92,0.1); }
.form-control::placeholder { color: #bbb; }
textarea.form-control { resize: vertical; min-height: 120px; }
select.form-control { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%236b7280' d='M6 8L1 3h10z'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: left 14px center; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { font-size: 12px; color: var(--red); margin-top: 5px; }

/* ---- Badges ---- */
.badge { display: inline-block; padding: 4px 12px; border-radius: 50px; font-size: 12px; font-weight: 700; }
.badge-new { background: #dbeafe; color: #1d4ed8; }
.badge-review { background: #fef3c7; color: #92400e; }
.badge-progress { background: #d1fae5; color: #065f46; }
.badge-done { background: #d1d5db; color: #374151; }
.badge-rejected { background: #fee2e2; color: #991b1b; }
.badge-gold { background: rgba(201,162,39,0.15); color: #7c6114; }

/* ---- Modal / Overlay ---- */
.modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.7); z-index: 9000;
  display: flex; align-items: center; justify-content: center; padding: 20px;
  opacity: 0; visibility: hidden; transition: var(--transition);
}
.modal-overlay.open { opacity: 1; visibility: visible; }
.modal {
  background: var(--white); border-radius: var(--radius-lg); max-width: 520px; width: 100%;
  max-height: 90vh; overflow-y: auto; transform: scale(0.9); transition: var(--transition);
}
.modal-overlay.open .modal { transform: scale(1); }
.modal-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 28px; border-bottom: 1px solid var(--border);
}
.modal-header h3 { font-size: 18px; color: var(--primary); }
.modal-close { width: 34px; height: 34px; border-radius: 50%; background: var(--light); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gray); cursor: pointer; }
.modal-close:hover { background: var(--red); color: var(--white); }
.modal-body { padding: 28px; }

/* ---- Animations ---- */
.animate { opacity: 0; transform: translateY(30px); transition: opacity 0.6s ease, transform 0.6s ease; }
.animate.animate-in { opacity: 1; transform: translateY(0); }
.animate-delay-1 { transition-delay: 0.1s; }
.animate-delay-2 { transition-delay: 0.2s; }
.animate-delay-3 { transition-delay: 0.3s; }
.animate-delay-4 { transition-delay: 0.4s; }
.animate-delay-5 { transition-delay: 0.5s; }
.fade-in { animation: fadeIn 0.5s ease both; }
@keyframes fadeIn { from{opacity:0} to{opacity:1} }
.slide-up { animation: slideUp 0.6s ease both; }
@keyframes slideUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ---- Utilities ---- */
.mt-auto { margin-top: auto; }
.mb-0 { margin-bottom: 0; }
.gap-8 { gap: 8px; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.hidden { display: none !important; }
.w-full { width: 100%; }
.relative { position: relative; }
.absolute { position: absolute; }
.overflow-hidden { overflow: hidden; }
.rounded { border-radius: var(--radius); }
.rounded-full { border-radius: 50%; }
.border-gold { border: 2px solid var(--accent); }
.bg-dark { background: var(--dark); }
.bg-light { background: var(--light); }
.bg-gradient { background: linear-gradient(135deg,var(--primary),var(--primary-light)); }
.text-gradient {
  background: linear-gradient(135deg,var(--accent),var(--accent-light));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ---- CTA Section ---- */
.cta-section {
  background: linear-gradient(135deg,var(--primary) 0%,var(--primary-light) 100%);
  padding: 100px 0; text-align: center; position: relative; overflow: hidden;
}
.cta-section::before {
  content: ''; position: absolute; top: -50%; right: -10%;
  width: 500px; height: 500px; border-radius: 50%;
  background: rgba(201,162,39,0.08); pointer-events: none;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.75); margin-bottom: 36px; font-size: 1.05rem; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ---- Stat Counter ---- */
.stat-card { text-align: center; padding: 40px 20px; }
.stat-num { font-size: 3rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 8px; }
.stat-label { font-size: 14px; color: var(--text-muted); font-weight: 600; }

/* ---- Whatsapp Float ---- */
.whatsapp-float {
  position: fixed; bottom: 30px; left: 30px; z-index: 999;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366; color: var(--white); display: flex; align-items: center; justify-content: center;
  font-size: 26px; box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: var(--transition); animation: pulse 2s infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }
@keyframes pulse {
  0%,100% { box-shadow: 0 4px 20px rgba(37,211,102,0.5); }
  50% { box-shadow: 0 4px 40px rgba(37,211,102,0.8); }
}

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .grid-4 { grid-template-columns: repeat(2,1fr); }
  .grid-5 { grid-template-columns: repeat(3,1fr); }
  .dropdown-menu { min-width: 460px; }
  .dropdown-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 768px) {
  :root { --header-h: 68px; }
  .section { padding: 64px 0; }
  .nav-menu {
    position: fixed; top: var(--header-h); right: 0; left: 0; bottom: 0;
    background: rgba(10,14,26,0.98); backdrop-filter: blur(20px);
    flex-direction: column; align-items: flex-start; padding: 24px;
    gap: 0; overflow-y: auto; transform: translateX(100%);
    transition: transform 0.3s ease; z-index: 999;
  }
  .nav-menu.open { transform: translateX(0); }
  .nav-link { width: 100%; padding: 14px 0; border-bottom: 1px solid rgba(255,255,255,0.07); font-size: 16px; }
  .nav-dropdown { width: 100%; }
  .dropdown-menu {
    position: static; box-shadow: none; background: rgba(255,255,255,0.05);
    min-width: 100%; border: none; transform: none; opacity: 1; visibility: visible;
    border-radius: var(--radius); padding: 10px; display: none;
  }
  .nav-dropdown.active .dropdown-menu { display: block; }
  .dropdown-grid { grid-template-columns: 1fr 1fr; }
  .dropdown-item { color: rgba(255,255,255,0.8); }
  .dropdown-footer { display: none; }
  .nav-toggle { display: flex; }
  .nav-actions .btn-outline { display: none; }
  .hero-stats { display: none; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .footer-grid { grid-template-columns: 1fr; gap: 30px; }
  .grid-2,.grid-3 { grid-template-columns: 1fr; }
  .grid-4 { grid-template-columns: 1fr 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .grid-4,.grid-5 { grid-template-columns: 1fr; }
  h1 { font-size: 1.8rem; }
  h2 { font-size: 1.5rem; }
  .btn-lg { padding: 14px 28px; font-size: 15px; }
}
