/* ============================================================
   AAA Garage Door Services — Main Stylesheet
   ============================================================ */

/* ---------- CSS Variables ---------- */
:root {
  --primary: #c8102e;
  --primary-dark: #a00d24;
  --secondary: #1a1a2e;
  --accent: #f5a623;
  --white: #ffffff;
  --light-gray: #f5f5f5;
  --mid-gray: #e0e0e0;
  --text-dark: #222222;
  --text-mid: #555555;
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Open Sans', sans-serif;
  --shadow: 0 4px 20px rgba(0,0,0,0.12);
  --radius: 8px;
  --transition: 0.3s ease;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; transition: color var(--transition); }

ul { list-style: none; }

h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  line-height: 1.25;
  color: var(--secondary);
}

/* ---------- Container ---------- */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.top-bar {
  background: var(--secondary);
  color: var(--white);
  font-size: 13px;
  padding: 8px 0;
}

.top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 6px;
}

.top-bar a { color: var(--white); }
.top-bar a:hover { color: var(--accent); }

.top-bar-left, .top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.top-bar i { margin-right: 5px; color: var(--accent); }

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 10px rgba(0,0,0,0.10);
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.site-logo img {
  height: 70px;
  width: auto;
}

.main-nav { display: flex; align-items: center; }

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

.nav-links > li { position: relative; }

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 14px;
  color: var(--secondary);
  padding: 8px 14px;
  border-radius: var(--radius);
  display: block;
  transition: background var(--transition), color var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  background: var(--primary);
  color: var(--white);
}

/* Dropdown */
.has-dropdown > a::after {
  content: " ▾";
  font-size: 10px;
}

.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  box-shadow: var(--shadow);
  min-width: 230px;
  border-radius: 0 0 var(--radius) var(--radius);
  border-top: 3px solid var(--primary);
  z-index: 500;
}

.dropdown-menu li a {
  font-size: 13px;
  padding: 10px 18px;
  border-radius: 0;
  white-space: nowrap;
}

.dropdown-menu li a:hover { background: var(--light-gray); color: var(--primary); }

.has-dropdown:hover .dropdown-menu { display: block; }

/* CTA Button in nav */
.nav-cta {
  background: var(--primary) !important;
  color: var(--white) !important;
  border-radius: 30px !important;
  padding: 10px 22px !important;
}

.nav-cta:hover { background: var(--primary-dark) !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}

.hamburger span {
  width: 26px; height: 3px;
  background: var(--secondary);
  border-radius: 3px;
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,6px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-6px); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  background: linear-gradient(135deg, rgba(26,26,46,0.85) 0%, rgba(200,16,46,0.75) 100%),
              url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1600&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 90px 0 80px;
  text-align: center;
}

.hero h1 {
  font-size: clamp(28px, 5vw, 52px);
  color: var(--white);
  margin-bottom: 18px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero p {
  font-size: clamp(15px, 2vw, 19px);
  max-width: 680px;
  margin: 0 auto 30px;
  opacity: 0.93;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-badge {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.35);
  border-radius: 30px;
  padding: 6px 18px;
  font-size: 13px;
  font-weight: 600;
}

.hero-badge i { margin-right: 6px; color: var(--accent); }

.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 30px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 15px;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  text-align: center;
}

.btn-primary {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

.btn-primary:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(200,16,46,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

.btn-secondary {
  background: var(--secondary);
  color: var(--white);
  border-color: var(--secondary);
}

.btn-secondary:hover {
  background: #2e2e50;
  border-color: #2e2e50;
  color: var(--white);
  transform: translateY(-2px);
}

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--primary);
  color: var(--white);
  padding: 18px 0;
}

.trust-bar .container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  gap: 16px;
  text-align: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.trust-item i { font-size: 22px; color: var(--accent); }

/* ============================================================
   SECTIONS — GENERIC
   ============================================================ */
section { padding: 70px 0; }

.section-title {
  text-align: center;
  margin-bottom: 50px;
}

.section-title h2 {
  font-size: clamp(24px, 4vw, 38px);
  margin-bottom: 12px;
  position: relative;
  display: inline-block;
}

.section-title h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: var(--primary);
  border-radius: 2px;
  margin: 10px auto 0;
}

.section-title p {
  color: var(--text-mid);
  max-width: 600px;
  margin: 0 auto;
  font-size: 16px;
}

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-section { background: var(--light-gray); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform var(--transition), box-shadow var(--transition);
  display: flex;
  flex-direction: column;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.18);
}

.service-card-icon {
  background: var(--primary);
  color: var(--white);
  text-align: center;
  padding: 28px 20px 22px;
  font-size: 46px;
}

.service-card-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }

.service-card-body h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--secondary);
}

.service-card-body p {
  color: var(--text-mid);
  font-size: 14.5px;
  flex: 1;
  margin-bottom: 18px;
}

.service-card-body .btn {
  align-self: flex-start;
  font-size: 13px;
  padding: 9px 20px;
}

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-us { background: var(--white); }

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 30px;
}

.why-card {
  text-align: center;
  padding: 30px 20px;
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.why-card:hover {
  border-color: var(--primary);
  box-shadow: 0 6px 20px rgba(200,16,46,0.12);
}

.why-card i {
  font-size: 40px;
  color: var(--primary);
  margin-bottom: 14px;
}

.why-card h3 { font-size: 17px; margin-bottom: 8px; }

.why-card p { font-size: 14px; color: var(--text-mid); }

/* ============================================================
   EMERGENCY BANNER
   ============================================================ */
.emergency-banner {
  background: linear-gradient(135deg, var(--secondary), #2e2e50);
  color: var(--white);
  text-align: center;
  padding: 60px 20px;
}

.emergency-banner h2 {
  color: var(--white);
  font-size: clamp(22px, 3.5vw, 34px);
  margin-bottom: 14px;
}

.emergency-banner p { font-size: 17px; margin-bottom: 28px; opacity: 0.9; }

.emergency-banner .btn-accent {
  background: var(--accent);
  color: var(--secondary);
  border-color: var(--accent);
}

.emergency-banner .btn-accent:hover {
  background: #e0951f;
  border-color: #e0951f;
  color: var(--secondary);
}

/* ============================================================
   PROCESS STEPS
   ============================================================ */
.process-section { background: var(--light-gray); }

.steps-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 24px;
  counter-reset: step-counter;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 22px;
  text-align: center;
  position: relative;
  box-shadow: var(--shadow);
  counter-increment: step-counter;
}

.step-card::before {
  content: counter(step-counter);
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--primary);
  color: var(--white);
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 16px;
}

.step-card h3 { font-size: 16px; margin-bottom: 8px; }

.step-card p { font-size: 14px; color: var(--text-mid); }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials { background: var(--white); }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 26px;
}

.review-card {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 26px;
  border-left: 4px solid var(--primary);
  box-shadow: var(--shadow);
}

.review-stars { color: var(--accent); font-size: 18px; margin-bottom: 10px; }

.review-text { font-size: 14.5px; color: var(--text-mid); font-style: italic; margin-bottom: 16px; }

.reviewer-name { font-weight: 700; font-size: 14px; color: var(--secondary); }

.reviewer-loc { font-size: 12px; color: var(--text-mid); }

/* ============================================================
   AREAS WE SERVE
   ============================================================ */
.areas-section { background: var(--light-gray); }

.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-top: 10px;
}

.area-tag {
  background: var(--white);
  border: 2px solid var(--mid-gray);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}

.area-tag:hover {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: var(--white);
  text-align: center;
  padding: 70px 20px;
}

.cta-section h2 { color: var(--white); font-size: clamp(24px, 4vw, 38px); margin-bottom: 14px; }

.cta-section p { font-size: 17px; opacity: 0.92; margin-bottom: 30px; max-width: 600px; margin-left: auto; margin-right: auto; }

.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--secondary);
  color: rgba(255,255,255,0.85);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 40px;
  padding-bottom: 40px;
}

.footer-col h4 {
  color: var(--white);
  font-size: 16px;
  margin-bottom: 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
  font-family: var(--font-heading);
}

.footer-col p { font-size: 14px; line-height: 1.8; }

.footer-logo { height: 65px; margin-bottom: 14px; }

.footer-links li { margin-bottom: 10px; }

.footer-links a {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  transition: color var(--transition);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: "›";
  color: var(--primary);
  font-size: 18px;
  line-height: 1;
}

.footer-links a:hover { color: var(--accent); }

.footer-contact li {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 14px;
  align-items: flex-start;
}

.footer-contact i { color: var(--accent); margin-top: 3px; flex-shrink: 0; }

.footer-contact a { color: rgba(255,255,255,0.85); }
.footer-contact a:hover { color: var(--accent); }

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: background var(--transition), transform var(--transition);
}

.social-links a:hover {
  background: var(--primary);
  transform: translateY(-3px);
}

.footer-bottom {
  background: rgba(0,0,0,0.25);
  padding: 18px 0;
  text-align: center;
  font-size: 13px;
  color: rgba(255,255,255,0.55);
}

.footer-bottom a { color: rgba(255,255,255,0.75); }
.footer-bottom a:hover { color: var(--accent); }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, rgba(26,26,46,0.88) 0%, rgba(200,16,46,0.72) 100%),
              url('https://images.unsplash.com/photo-1558618666-fcd25c85cd64?w=1400&q=80') center/cover no-repeat;
  color: var(--white);
  padding: 70px 0;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(26px, 4vw, 44px);
  color: var(--white);
  margin-bottom: 14px;
}

.page-hero p {
  font-size: 17px;
  opacity: 0.9;
  max-width: 600px;
  margin: 0 auto 22px;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 13px;
  flex-wrap: wrap;
  opacity: 0.85;
}

.breadcrumb a { color: var(--accent); }
.breadcrumb span { color: rgba(255,255,255,0.6); }

/* ============================================================
   SERVICE DETAIL PAGE
   ============================================================ */
.service-detail { padding: 70px 0; }

.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 40px;
  align-items: start;
}

.service-content h2 {
  font-size: clamp(20px, 3vw, 30px);
  margin-bottom: 14px;
  color: var(--secondary);
}

.service-content p { color: var(--text-mid); margin-bottom: 18px; font-size: 15.5px; }

.service-content ul {
  list-style: none;
  margin-bottom: 24px;
}

.service-content ul li {
  padding: 6px 0 6px 28px;
  position: relative;
  color: var(--text-mid);
  font-size: 15px;
}

.service-content ul li::before {
  content: "\f00c";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--primary);
  position: absolute;
  left: 0;
  top: 6px;
}

.service-sidebar {
  position: sticky;
  top: 100px;
}

.sidebar-box {
  background: var(--light-gray);
  border-radius: var(--radius);
  padding: 28px;
  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

.sidebar-box h3 {
  font-size: 18px;
  margin-bottom: 16px;
  color: var(--secondary);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--primary);
}

.sidebar-box .btn { width: 100%; justify-content: center; margin-bottom: 12px; }

.sidebar-links li { margin-bottom: 10px; }

.sidebar-links a {
  font-size: 14px;
  color: var(--text-mid);
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  background: var(--white);
  border-radius: 6px;
  transition: all var(--transition);
  border-left: 3px solid transparent;
}

.sidebar-links a:hover {
  border-left-color: var(--primary);
  color: var(--primary);
  background: #fff7f8;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-intro { padding: 70px 0; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-img {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-img img { width: 100%; height: 420px; object-fit: cover; }

.about-text h2 { font-size: clamp(22px, 3.5vw, 34px); margin-bottom: 16px; }

.about-text p { color: var(--text-mid); margin-bottom: 16px; font-size: 15.5px; }

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin: 22px 0;
}

.about-feature {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 600;
}

.about-feature i { color: var(--primary); font-size: 18px; }

.stats-row {
  background: var(--primary);
  color: var(--white);
  padding: 50px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 20px;
  text-align: center;
}

.stat-item h3 { font-size: 42px; color: var(--white); font-family: var(--font-heading); }

.stat-item p { font-size: 14px; opacity: 0.88; margin-top: 6px; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { padding: 70px 0; background: var(--light-gray); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-form-wrapper {
  background: var(--white);
  padding: 36px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.contact-form-wrapper h2 { font-size: 26px; margin-bottom: 6px; }

.contact-form-wrapper p { color: var(--text-mid); margin-bottom: 26px; font-size: 14.5px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  transition: border-color var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info-wrapper { display: flex; flex-direction: column; gap: 22px; }

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}

.contact-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  flex-shrink: 0;
}

.contact-info-card h4 { font-size: 16px; margin-bottom: 6px; }

.contact-info-card p, .contact-info-card a {
  font-size: 14.5px;
  color: var(--text-mid);
}

.contact-info-card a:hover { color: var(--primary); }

.map-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 24px;
}

.map-wrapper iframe { width: 100%; display: block; }

/* Alert message */
.form-alert {
  display: none;
  padding: 14px 18px;
  border-radius: var(--radius);
  font-size: 14px;
  margin-top: 16px;
  font-weight: 600;
}

.form-alert.success {
  background: #d4edda;
  color: #155724;
  border: 1px solid #c3e6cb;
  display: block;
}

/* ============================================================
   FAQ SECTION
   ============================================================ */
.faq-section { background: var(--white); }

.faq-list { max-width: 800px; margin: 0 auto; }

.faq-item {
  border: 2px solid var(--mid-gray);
  border-radius: var(--radius);
  margin-bottom: 14px;
  overflow: hidden;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--secondary);
  transition: background var(--transition);
  gap: 10px;
}

.faq-question:hover { background: var(--light-gray); }

.faq-question.open { background: var(--primary); color: var(--white); }

.faq-question i { flex-shrink: 0; transition: transform var(--transition); }
.faq-question.open i { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 18px 22px;
  color: var(--text-mid);
  font-size: 15px;
  line-height: 1.7;
  border-top: 1px solid var(--mid-gray);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 992px) {
  .service-detail-grid { grid-template-columns: 1fr; }
  .service-sidebar { position: static; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img img { height: 300px; }
  .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .main-nav { display: none; width: 100%; }
  .main-nav.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: var(--shadow);
    padding: 16px 20px;
    z-index: 999;
  }
  .nav-links { flex-direction: column; width: 100%; gap: 0; }
  .nav-links a { padding: 12px 10px; }
  .dropdown-menu { position: static; box-shadow: none; border-top: none; border-left: 3px solid var(--primary); padding-left: 12px; }
  .has-dropdown:hover .dropdown-menu { display: none; }
  .has-dropdown.open .dropdown-menu { display: block; }
  .header-inner { flex-wrap: wrap; position: relative; }
  .about-features { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .top-bar .container { justify-content: center; }
  .top-bar-right { justify-content: center; }
}

@media (max-width: 480px) {
  .hero { padding: 60px 0 50px; }
  .hero-btns { flex-direction: column; align-items: center; }
  section { padding: 50px 0; }
  .contact-form-wrapper { padding: 22px; }
}
