/* ========== CSS VARIABLES ========== */
:root {
  --primary: #0F172A;
  --primary-light: #1E293B;
  --accent: #F5A623;
  --accent-hover: #E09000;
  --accent-glow: rgba(245, 166, 35, 0.25);
  --blue: #3B82F6;
  --blue-light: #60A5FA;
  --white: #FFFFFF;
  --bg-light: #F8FAFC;
  --bg-warm: #FFFBF0;
  --text-dark: #1E293B;
  --text-body: #475569;
  --text-gray: #64748B;
  --text-light: #94A3B8;
  --border: #E2E8F0;
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 40px rgba(0,0,0,0.15);
  --shadow-xl: 0 20px 60px rgba(0,0,0,0.2);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 50%;
  --transition: 0.3s ease;
  --font: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

/* ========== RESET ========== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 120px; }
body {
  font-family: var(--font);
  color: var(--text-body);
  line-height: 1.7;
  background: var(--white);
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: color var(--transition); }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; font-size: 1rem; }

/* ========== CONTAINER ========== */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ========== TYPOGRAPHY ========== */
h1, h2, h3, h4 {
  color: var(--text-dark);
  font-weight: 700;
  line-height: 1.2;
}
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
.text-accent { color: var(--accent); }

/* ========== BUTTONS ========== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.95rem;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}
.btn-lg { padding: 16px 36px; font-size: 1.05rem; }
.btn-full { width: 100%; justify-content: center; }
.btn-accent {
  background: var(--accent);
  color: var(--primary);
  border-color: var(--accent);
}
.btn-accent:hover {
  background: var(--accent-hover);
  border-color: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px var(--accent-glow);
}
.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: var(--accent);
}
.btn-outline:hover {
  background: var(--accent);
  color: var(--primary);
  transform: translateY(-2px);
}
.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--white);
}
.btn-outline-light:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-2px);
}

/* ========== HEADER ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all var(--transition);
}
.header-top {
  background: var(--primary);
  color: var(--white);
  font-size: 0.85rem;
  padding: 8px 0;
}
.header-top-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-phone {
  color: var(--accent);
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 6px;
}
.header-phone:hover { color: var(--accent-hover); }
.header-hours {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
}

/* ========== NAVBAR ========== */
.navbar {
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.header.scrolled .navbar {
  box-shadow: var(--shadow-md);
}
.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  padding-bottom: 12px;
}
.logo img {
  height: 60px;
  width: auto;
  border-radius: var(--radius-sm);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-dark);
  position: relative;
  padding: 4px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link:hover { color: var(--accent); }
.nav-link.active { color: var(--accent); }
.nav-cta { font-size: 0.85rem; padding: 10px 20px; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 1001;
}
.hamburger span {
  width: 26px;
  height: 3px;
  background: var(--primary);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }

/* ========== HERO ========== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('images/hero-bg.png') center/cover no-repeat;
  padding: 140px 24px 80px;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(15, 23, 42, 0.88) 0%,
    rgba(15, 23, 42, 0.7) 50%,
    rgba(15, 23, 42, 0.6) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 800px;
  text-align: center;
}
.hero-badge {
  display: inline-block;
  background: rgba(245, 166, 35, 0.15);
  color: var(--accent);
  border: 1px solid rgba(245, 166, 35, 0.3);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 16px;
}
.hero-subtitle {
  color: var(--accent);
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 20px;
}
.hero-description {
  color: rgba(255,255,255,0.85);
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 36px;
}
.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ========== SECTION HEADERS ========== */
.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 60px;
}
.section-header-light h2,
.section-header-light p {
  color: var(--white);
}
.section-header-light .section-description { color: rgba(255,255,255,0.75); }
.section-tag {
  display: inline-block;
  color: var(--accent);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header-light .section-tag { color: var(--accent); }
.section-description {
  color: var(--text-gray);
  font-size: 1.05rem;
  margin-top: 16px;
}

/* ========== SERVICES OVERVIEW ========== */
.services-overview {
  padding: 100px 0;
  background: var(--bg-light);
}
.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  transition: all var(--transition);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }
.service-card-icon {
  width: 72px;
  height: 72px;
  border-radius: var(--radius-full);
  background: linear-gradient(135deg, var(--accent), var(--accent-hover));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.6rem;
  color: var(--primary);
}
.service-card h3 { margin-bottom: 12px; }
.service-card p {
  font-size: 0.92rem;
  color: var(--text-gray);
  margin-bottom: 20px;
}
.service-card-link {
  color: var(--accent);
  font-weight: 600;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.service-card-link:hover { gap: 12px; }

/* ========== WHY CHOOSE US ========== */
.why-choose-us {
  padding: 100px 0;
  background: var(--white);
}
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.why-content h2 { margin-bottom: 16px; }
.why-content > p { margin-bottom: 32px; }
.check-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 36px;
}
.check-list li {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.check-icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  margin-top: 2px;
}
.check-list strong { color: var(--text-dark); font-size: 1.05rem; }
.check-list p { font-size: 0.9rem; color: var(--text-gray); margin-top: 2px; }
.why-image { position: relative; border-radius: var(--radius-lg); overflow: hidden; }
.why-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: var(--radius-lg);
}

/* ========== SERVICE DETAIL SECTIONS ========== */
.service-detail {
  padding: 80px 0;
}
.service-detail:nth-child(even) { background: var(--bg-light); }
.service-detail-reverse .service-detail-grid { direction: rtl; }
.service-detail-reverse .service-detail-grid > * { direction: ltr; }
.service-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.service-detail-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.service-detail-image img {
  width: 100%;
  height: 420px;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.service-detail-image:hover img { transform: scale(1.05); }
.service-detail-content h2 { margin-bottom: 16px; }
.service-detail-content > p {
  margin-bottom: 28px;
  color: var(--text-gray);
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
}
.service-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 500;
  color: var(--text-dark);
}
.service-list li i { color: var(--accent); font-size: 1rem; }

/* ========== TESTIMONIALS ========== */
.testimonials {
  padding: 100px 0;
  background: var(--primary);
}
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-md);
  padding: 36px;
  transition: all var(--transition);
}
.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.testimonial-stars {
  margin-bottom: 20px;
}
.testimonial-stars i { color: var(--accent); font-size: 1rem; }
.testimonial-text {
  color: rgba(255,255,255,0.85);
  font-size: 0.95rem;
  line-height: 1.8;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.testimonial-avatar {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.testimonial-author strong { color: var(--white); display: block; }
.testimonial-author span { color: var(--text-light); font-size: 0.85rem; }

/* ========== SERVICE AREAS ========== */
.service-areas {
  padding: 100px 0;
  background: var(--bg-warm);
}
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 32px;
}
.area-item {
  background: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.area-item:hover {
  border-color: var(--accent);
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.area-item i { color: var(--accent); }
.areas-note {
  text-align: center;
  color: var(--text-gray);
}
.areas-note a { color: var(--accent); font-weight: 600; }
.areas-note a:hover { text-decoration: underline; }

/* ========== CTA SECTION ========== */
.cta-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--accent) 0%, #E09000 100%);
  text-align: center;
}
.cta-content h2 { color: var(--primary); margin-bottom: 16px; }
.cta-content p {
  color: rgba(15, 23, 42, 0.75);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 36px;
}
.cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.cta-section .btn-dark {
  border-color: var(--primary);
}
.cta-section .btn-outline-light {
  border-color: var(--primary);
  color: var(--primary);
}
.cta-section .btn-outline-light:hover {
  background: var(--primary);
  color: var(--white);
}

/* ========== CONTACT SECTION ========== */
.contact-section {
  padding: 100px 0;
  background: var(--white);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}
.contact-info h2 { margin-bottom: 16px; }
.contact-info > p { margin-bottom: 36px; color: var(--text-gray); }
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-item-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-sm);
  background: rgba(245, 166, 35, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
}
.contact-item strong { color: var(--text-dark); display: block; margin-bottom: 4px; }
.contact-item a { color: var(--accent); font-weight: 500; }
.contact-item a:hover { text-decoration: underline; }
.contact-item span { color: var(--text-body); font-size: 0.95rem; }

/* Contact Form */
.contact-form-wrapper {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--border);
}
.contact-form h3 { margin-bottom: 24px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 6px;
  font-size: 0.9rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--text-dark);
  transition: border-color var(--transition), box-shadow var(--transition);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-group textarea { resize: vertical; }

/* ========== FOOTER ========== */
.footer {
  background: var(--primary);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand p {
  color: var(--text-light);
  margin-top: 16px;
  font-size: 0.9rem;
}
.footer-logo {
  height: 56px;
  border-radius: var(--radius-sm);
}
.footer h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 20px;
}
.footer-links ul,
.footer-services ul,
.footer-contact ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-links a,
.footer-services a,
.footer-contact a {
  color: var(--text-light);
  font-size: 0.9rem;
  transition: color var(--transition);
}
.footer-links a:hover,
.footer-services a:hover,
.footer-contact a:hover { color: var(--accent); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-light);
  font-size: 0.9rem;
}
.footer-contact li i { color: var(--accent); margin-top: 4px; }
.footer-bottom {
  padding: 24px 0;
  text-align: center;
}
.footer-bottom p {
  color: var(--text-light);
  font-size: 0.85rem;
}

/* ========== LEGAL PAGES (Privacy / Terms) ========== */
.legal-hero {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
  padding: 190px 0 80px;
  text-align: center;
}
.legal-hero h1 { color: var(--white); margin-bottom: 14px; }
.legal-updated {
  color: var(--text-light);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
.legal-content {
  padding: 80px 0 100px;
  background: var(--bg-light);
}
.legal-container { max-width: 860px; }
.legal-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-sm);
}
.legal-card h2 {
  font-size: 1.35rem;
  margin: 36px 0 14px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(245, 166, 35, 0.35);
  scroll-margin-top: 130px;
}
.legal-card h2:first-of-type { margin-top: 0; }
.legal-card p { margin-bottom: 14px; color: var(--text-body); }
.legal-card p strong { color: var(--text-dark); }
.legal-card ul { margin: 0 0 16px 24px; }
.legal-card ul li {
  list-style: disc;
  margin-bottom: 8px;
  color: var(--text-body);
}
.legal-card ul li::marker { color: var(--accent); }
.legal-card ul li:last-child { margin-bottom: 0; }
.legal-card a { color: var(--accent); font-weight: 500; }
.legal-card a:hover { text-decoration: underline; }
.legal-toc {
  background: var(--bg-warm);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: var(--radius-md);
  padding: 24px 28px;
  margin-bottom: 16px;
}
.legal-toc strong {
  color: var(--text-dark);
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
}
.legal-toc strong i { color: var(--accent); }
.legal-toc ol { margin: 0 0 0 22px; }
.legal-toc ol li { list-style: decimal; margin-bottom: 6px; }
.legal-toc a { color: var(--text-dark); font-size: 0.95rem; }
.legal-toc a:hover { color: var(--accent); }
.legal-contact {
  background: rgba(245, 166, 35, 0.08);
  border-left: 4px solid var(--accent);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  padding: 20px 24px;
  margin-top: 8px;
}
.legal-contact p { margin-bottom: 6px; }
.legal-contact p:last-child { margin-bottom: 0; }
.legal-contact a { color: var(--text-dark); font-weight: 600; }
.legal-contact a:hover { color: var(--accent); }
.legal-footer-nav {
  margin-top: 36px;
  padding-top: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  font-size: 0.9rem;
}
.footer-legal-links { margin-top: 8px; }
.footer-legal-links a { color: var(--text-light); }
.footer-legal-links a:hover { color: var(--accent); }
.footer-legal-links span { color: var(--text-light); margin: 0 4px; }

@media (max-width: 768px) {
  .legal-hero { padding: 160px 0 60px; }
  .legal-content { padding: 60px 0; }
  .legal-card { padding: 28px; }
  .legal-toc { padding: 20px; }
}

/* ========== ANIMATIONS ========== */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
  .service-cards { grid-template-columns: repeat(2, 1fr); }
  .testimonial-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    padding: 80px 32px 32px;
    gap: 0;
    box-shadow: var(--shadow-xl);
    transition: right var(--transition);
    z-index: 999;
  }
  .nav-links.active { right: 0; }
  .nav-links li { width: 100%; }
  .nav-link {
    display: block;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 1.05rem;
  }
  .nav-cta { display: none; }
  .header-hours { display: none; }
  .hero { min-height: auto; padding: 140px 24px 60px; }
  .hero h1 { font-size: 2rem; }
  .hero-subtitle { font-size: 1.1rem; }
  .hero-description { font-size: 0.95rem; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .service-cards { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .why-image { order: -1; }
  .why-image img { height: 350px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .service-detail-reverse .service-detail-grid { direction: ltr; }
  .service-detail-image img { height: 300px; }
  .testimonial-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .form-row { grid-template-columns: 1fr; }
  .services-overview,
  .why-choose-us,
  .service-areas,
  .contact-section { padding: 60px 0; }
  .service-detail { padding: 60px 0; }
  .testimonials { padding: 60px 0; }
}

@media (max-width: 480px) {
  .areas-grid { grid-template-columns: 1fr; }
  .hero-badge { font-size: 0.75rem; padding: 6px 14px; }
  .contact-form-wrapper { padding: 24px; }
}
