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

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

:root {
  --green: #28a745;
  --dark-green: #1a6b2a;
  --darker-green: #14532d;
  --navy: #1e3a5f;
  --dark-text: #2d3e50;
  --light-bg: #f0f7f4;
  --lighter-bg: #f8faf9;
  --yellow: #f5a623;
  --gold: #ffc107;
  --white: #ffffff;
  --gray: #6b7280;
  --light-gray: #e8f0eb;
  --card-bg: #eef5f0;
  --shadow: 0 4px 20px rgba(0,0,0,0.08);
  --shadow-lg: 0 8px 30px rgba(0,0,0,0.12);
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  color: var(--dark-text);
  background: linear-gradient(135deg, #e8f5e9 0%, #f0f7f4 30%, #e3f2fd 60%, #e8f5e9 100%);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; height: auto; }

/* ===== HEADER ===== */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}
.header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.1); }
.header-inner {
  max-width: 1300px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  padding: 12px 30px;
}
.logo { display: flex; align-items: center; gap: 8px; }
.logo-icon {
  width: 50px; height: 50px; background: var(--green);
  border-radius: 12px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: white;
}
.logo-text { font-size: 18px; font-weight: 800; color: var(--dark-green); }
.logo-text span { color: var(--green); }
.nav { display: flex; align-items: center; gap: 28px; }
.nav a {
  font-size: 15px; font-weight: 500; color: var(--dark-text);
  transition: color 0.3s; position: relative;
}
.nav a:hover { color: var(--green); }
.nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--green); transition: width 0.3s;
}
.nav a:hover::after { width: 100%; }
.header-cta {
  display: flex; align-items: center; gap: 10px;
  background: var(--green); color: white;
  padding: 12px 24px; border-radius: 50px;
  font-weight: 700; font-size: 16px;
  transition: all 0.3s; border: none; cursor: pointer;
}
.header-cta:hover { background: var(--dark-green); transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.mobile-menu-btn { display: none; background: none; border: none; font-size: 28px; cursor: pointer; color: var(--dark-text); }

/* ===== HERO ===== */
.hero {
  padding: 140px 30px 60px;
  text-align: center;
  max-width: 1300px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(40,167,69,0.1); color: var(--dark-green);
  padding: 8px 20px; border-radius: 50px;
  font-size: 14px; font-weight: 600; margin-bottom: 24px;
  border: 1px solid rgba(40,167,69,0.2);
}
.hero h1 {
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 900; line-height: 1.15;
  color: var(--dark-text); margin-bottom: 20px;
}
.hero h1 .green { color: var(--green); }
.hero p {
  font-size: 18px; color: var(--gray);
  max-width: 700px; margin: 0 auto 30px; line-height: 1.7;
}

/* ===== FORM SECTION ===== */
.form-section {
  max-width: 1300px; margin: 0 auto; padding: 0 30px 80px;
  display: grid; grid-template-columns: 1fr 1.2fr 1fr; gap: 30px; align-items: center;
}
.form-image { border-radius: 20px; overflow: hidden; height: 500px; }
.form-image img { width: 100%; height: 100%; object-fit: cover; border-radius: 20px; }
.form-card {
  background: var(--green); border-radius: 24px; padding: 36px;
  box-shadow: var(--shadow-lg);
}
.form-card h2 { color: white; font-size: 24px; font-weight: 800; margin-bottom: 20px; text-align: center; }
.form-card input, .form-card select, .form-card textarea {
  width: 100%; padding: 14px 16px; border: 2px solid rgba(255,255,255,0.3);
  border-radius: 10px; background: white; font-size: 14px;
  font-family: 'Inter', sans-serif; margin-bottom: 12px;
  transition: border-color 0.3s;
}
.form-card input:focus, .form-card select:focus, .form-card textarea:focus {
  outline: none; border-color: var(--gold);
}
.form-card textarea { min-height: 100px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.form-submit {
  width: 100%; padding: 16px; background: var(--gold); color: var(--dark-text);
  border: none; border-radius: 12px; font-size: 17px; font-weight: 700;
  cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: all 0.3s; font-family: 'Inter', sans-serif;
}
.form-submit:hover { background: #e6950f; transform: translateY(-2px); }

/* ===== STATS ===== */
.stats {
  max-width: 1100px; margin: 0 auto 80px; padding: 0 30px;
  display: flex; justify-content: center; gap: 60px; text-align: center;
}
.stat-item h3 { font-size: 42px; font-weight: 900; color: var(--green); }
.stat-item p { font-size: 14px; color: var(--gray); font-weight: 500; margin-top: 4px; }

/* ===== SERVICES ===== */
.services { max-width: 1300px; margin: 0 auto; padding: 0 30px 80px; }
.section-header { text-align: center; margin-bottom: 50px; }
.section-header h2 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 900; margin-bottom: 16px;
}
.section-header h2 .green { color: var(--green); }
.section-header p { font-size: 17px; color: var(--gray); max-width: 650px; margin: 0 auto; }
.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px;
}
.service-card {
  background: var(--card-bg); border-radius: 16px; padding: 32px;
  border: 1px solid rgba(40,167,69,0.1);
  transition: all 0.3s;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--green); }
.service-icon {
  width: 56px; height: 56px; background: rgba(40,167,69,0.12);
  border-radius: 14px; display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--green); margin-bottom: 20px;
}
.service-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.service-card p { font-size: 14px; color: var(--gray); margin-bottom: 16px; line-height: 1.6; }
.service-card ul li {
  font-size: 14px; padding: 4px 0; display: flex; align-items: center; gap: 8px;
}
.service-card ul li::before {
  content: ''; width: 8px; height: 8px; background: var(--green); border-radius: 50%; flex-shrink: 0;
}

/* ===== DONT TAKE ===== */
.dont-take {
  background: linear-gradient(135deg, var(--darker-green) 0%, var(--dark-green) 100%);
  padding: 70px 30px;
}
.dont-take-inner { max-width: 1100px; margin: 0 auto; }
.dont-take h2 {
  font-size: clamp(28px, 4vw, 42px); font-weight: 900;
  color: white; text-align: center; margin-bottom: 12px;
}
.dont-take h2 .red { color: #ef4444; }
.dont-take > .dont-take-inner > p { color: rgba(255,255,255,0.8); text-align: center; margin-bottom: 30px; font-size: 16px; }
.dont-take-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 60px;
  max-width: 700px; margin: 0 auto 30px;
}
.dont-take-grid li {
  color: white; font-size: 15px; padding: 6px 0;
  display: flex; align-items: center; gap: 10px;
}
.dont-take-grid li::before {
  content: ''; width: 8px; height: 8px; background: var(--gold); border-radius: 50%; flex-shrink: 0;
}
.dont-take-cta {
  display: flex; align-items: center; gap: 16px; justify-content: center;
  background: var(--green); padding: 24px 40px; border-radius: 16px;
  max-width: 700px; margin: 0 auto;
}
.dont-take-cta p { color: white; font-weight: 700; font-size: 18px; }
.dont-take-cta a {
  background: var(--gold); color: var(--dark-text); padding: 14px 28px;
  border-radius: 50px; font-weight: 700; display: flex; align-items: center; gap: 8px;
  transition: all 0.3s; white-space: nowrap;
}
.dont-take-cta a:hover { background: #e6950f; transform: scale(1.05); }

/* ===== ABOUT ===== */
.about {
  max-width: 1300px; margin: 0 auto; padding: 80px 30px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.about-text h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; margin-bottom: 20px; }
.about-text h2 .green { color: var(--green); }
.about-text > p { font-size: 15px; color: var(--gray); line-height: 1.8; margin-bottom: 30px; }
.about-features { display: flex; flex-direction: column; gap: 20px; }
.about-feature h4 { color: var(--green); font-size: 16px; font-weight: 700; margin-bottom: 4px; display: flex; align-items: center; gap: 10px; }
.about-feature h4::before { content: ''; width: 10px; height: 10px; background: var(--green); border-radius: 50%; }
.about-feature p { font-size: 14px; color: var(--gray); padding-left: 20px; }
.about-images { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.about-images img { width: 100%; height: 200px; object-fit: cover; border-radius: 16px; border: 3px solid rgba(40,167,69,0.15); }
.about-images img:last-child { grid-column: 1 / -1; height: 220px; }

/* ===== WHY CHOOSE ===== */
.why-choose {
  max-width: 1300px; margin: 0 auto; padding: 0 30px 80px;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start;
}
.why-choose-text h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; margin-bottom: 16px; }
.why-choose-text h2 .green { color: var(--green); }
.why-choose-text > p { font-size: 15px; color: var(--gray); line-height: 1.7; }
.why-choose-list { display: flex; flex-direction: column; gap: 16px; }
.why-choose-item {
  display: flex; align-items: center; gap: 14px; font-size: 16px; font-weight: 500;
}
.why-choose-item .check {
  width: 28px; height: 28px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 14px; flex-shrink: 0;
}

/* ===== BRANDS ===== */
.brands { max-width: 1100px; margin: 0 auto; padding: 0 30px 40px; text-align: center; }
.brands p { font-size: 16px; color: var(--gray); margin-bottom: 24px; }
.brands p span { color: var(--green); font-weight: 700; }
.brands-grid {
  display: flex; justify-content: center; gap: 20px; flex-wrap: wrap;
}
.brand-item {
  background: white; border: 1px solid var(--light-gray);
  padding: 16px 28px; border-radius: 12px;
  font-size: 18px; font-weight: 800; color: var(--gray);
  transition: all 0.3s;
}
.brand-item:hover { border-color: var(--green); transform: translateY(-3px); }
.brand-item.cnn { color: #cc0000; }
.brand-item.careem { color: #2bb32b; }
.brand-item.ibm { color: #0f62fe; }
.brand-item.marriott { color: #8b0000; }

/* ===== GALLERY ===== */
.gallery {
  padding: 40px 0; overflow: hidden;
}
.gallery-track {
  display: flex; gap: 16px; animation: scrollGallery 30s linear infinite;
}
.gallery-track img {
  width: 220px; height: 180px; object-fit: cover;
  border-radius: 16px; border: 3px solid rgba(40,167,69,0.15); flex-shrink: 0;
}
@keyframes scrollGallery {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ===== CSR ===== */
.csr {
  background: linear-gradient(135deg, var(--darker-green), var(--dark-green));
  padding: 70px 30px; margin-bottom: 80px;
}
.csr-inner { max-width: 1100px; margin: 0 auto; }
.csr h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; color: white; margin-bottom: 16px; }
.csr h2 .gold { color: var(--gold); }
.csr p { color: rgba(255,255,255,0.85); font-size: 16px; line-height: 1.7; max-width: 800px; }

/* ===== PROCESS ===== */
.process { max-width: 1300px; margin: 0 auto; padding: 0 30px 80px; }
.process-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 24px; }
.process-card {
  background: var(--card-bg); border: 2px solid rgba(40,167,69,0.15);
  border-radius: 16px; padding: 28px; transition: all 0.3s;
}
.process-card:hover { border-color: var(--green); transform: translateY(-4px); }
.process-card-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 80px; }
.process-card-top .step { color: var(--green); font-weight: 800; font-size: 16px; }
.process-card-top .icon {
  width: 48px; height: 48px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 20px;
}
.process-card h3 { font-size: 20px; font-weight: 800; margin-bottom: 12px; }
.process-card p { font-size: 14px; color: var(--gray); line-height: 1.6; }
.process-single { max-width: 420px; }

/* ===== WHY PROCESS ===== */
.why-process {
  background: linear-gradient(135deg, var(--darker-green), var(--dark-green));
  padding: 70px 30px; margin-bottom: 80px; border-radius: 20px;
  max-width: 1300px; margin: 0 auto 80px;
}
.why-process-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center;
}
.why-process-text h2 { font-size: 32px; font-weight: 900; color: white; margin-bottom: 16px; }
.why-process-text > p { color: rgba(255,255,255,0.8); font-size: 15px; margin-bottom: 24px; }
.why-process-checks { display: flex; flex-direction: column; gap: 14px; margin-bottom: 28px; }
.why-process-checks li {
  color: white; font-size: 15px; display: flex; align-items: center; gap: 12px;
}
.why-process-checks li .check {
  width: 24px; height: 24px; background: var(--green); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 12px; flex-shrink: 0;
}
.why-process-cta {
  background: var(--gold); color: var(--dark-text); padding: 14px 28px;
  border-radius: 50px; font-weight: 700; border: none; cursor: pointer;
  font-size: 16px; display: inline-flex; align-items: center; gap: 8px;
  transition: all 0.3s; font-family: 'Inter', sans-serif;
}
.why-process-cta:hover { background: #e6950f; transform: translateY(-2px); }
.why-process-stats {
  display: grid; grid-template-columns: 1fr 1fr; gap: 30px;
}
.why-process-stat h3 { font-size: 48px; font-weight: 900; color: var(--gold); }
.why-process-stat p { color: rgba(255,255,255,0.8); font-size: 14px; margin-top: 4px; }

/* ===== TESTIMONIALS ===== */
.testimonials { max-width: 1300px; margin: 0 auto; padding: 0 30px 80px; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-bottom: 30px; }
.testimonial-card {
  background: var(--card-bg); border: 2px solid rgba(40,167,69,0.12);
  border-radius: 16px; padding: 28px; transition: all 0.3s;
}
.testimonial-card:hover { border-color: var(--green); }
.testimonial-card p { font-size: 14px; color: var(--dark-text); line-height: 1.7; margin-bottom: 20px; }
.testimonial-footer { display: flex; justify-content: space-between; align-items: center; }
.testimonial-author h4 { font-size: 15px; font-weight: 700; }
.testimonial-stars { color: var(--gold); font-size: 16px; }
.google-logo { font-size: 20px; font-weight: 700; }
.google-logo .g-blue { color: #4285f4; }
.google-logo .g-red { color: #ea4335; }
.google-logo .g-yellow { color: #fbbc05; }
.google-logo .g-green { color: #34a853; }
.read-more-google {
  display: flex; align-items: center; gap: 10px; justify-content: center;
  background: var(--dark-text); color: white; padding: 14px 30px;
  border-radius: 50px; font-weight: 700; margin: 0 auto;
  transition: all 0.3s; width: fit-content;
}
.read-more-google:hover { background: #1a2e40; transform: translateY(-2px); }

/* ===== AREAS ===== */
.areas { max-width: 1300px; margin: 0 auto; padding: 0 30px 80px; }
.areas-content { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: start; }
.areas-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.area-card {
  background: var(--card-bg); border: 2px solid rgba(40,167,69,0.12);
  border-radius: 12px; padding: 16px 20px;
  display: flex; align-items: center; justify-content: space-between;
  transition: all 0.3s;
}
.area-card:hover { border-color: var(--green); transform: translateY(-3px); }
.area-card-left { display: flex; align-items: center; gap: 10px; }
.area-pin {
  width: 32px; height: 32px; background: rgba(40,167,69,0.12); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--green); font-size: 14px;
}
.area-card h4 { font-weight: 700; font-size: 15px; }
.area-card a { color: var(--green); font-weight: 600; font-size: 14px; }
.areas-map {
  background: linear-gradient(135deg, rgba(40,167,69,0.08), rgba(40,167,69,0.02));
  border-radius: 20px; padding: 40px; display: flex; align-items: center; justify-content: center;
  min-height: 300px; position: relative; overflow: hidden;
}
.uae-map-svg { width: 100%; max-width: 400px; opacity: 0.3; }

/* ===== FAQ ===== */
.faq {
  max-width: 1300px; margin: 0 auto; padding: 0 30px 80px;
  display: grid; grid-template-columns: 1fr 1.5fr; gap: 60px; align-items: start;
}
.faq-left h2 { font-size: clamp(28px, 4vw, 42px); font-weight: 900; margin-bottom: 16px; }
.faq-left h2 .green { color: var(--green); }
.faq-left > p { font-size: 15px; color: var(--gray); line-height: 1.7; }
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid rgba(0,0,0,0.08); }
.faq-question {
  width: 100%; padding: 20px 0; display: flex; justify-content: space-between;
  align-items: center; background: none; border: none; cursor: pointer;
  font-size: 16px; font-weight: 600; color: var(--dark-text); text-align: left;
  font-family: 'Inter', sans-serif; gap: 16px;
}
.faq-question .icon { font-size: 20px; color: var(--green); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.active .faq-question .icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-answer p { padding-bottom: 20px; font-size: 14px; color: var(--gray); line-height: 1.7; }
.faq-item.active .faq-answer { max-height: 300px; }

/* ===== STILL QUESTIONS ===== */
.still-questions { max-width: 1300px; margin: 0 auto; padding: 0 30px 80px; }
.still-questions .section-header { margin-bottom: 40px; }
.contact-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.contact-card {
  text-align: center; background: var(--card-bg); border-radius: 16px; padding: 32px;
  border: 1px solid rgba(40,167,69,0.1); transition: all 0.3s;
}
.contact-card:hover { transform: translateY(-4px); border-color: var(--green); }
.contact-card .icon {
  width: 56px; height: 56px; margin: 0 auto 16px;
  background: rgba(40,167,69,0.12); border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; color: var(--green);
}
.contact-card h3 { font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.contact-card a { display: block; color: var(--green); font-weight: 600; font-size: 15px; margin-top: 4px; }

/* ===== CTA BANNER ===== */
.cta-banner {
  background: linear-gradient(135deg, var(--darker-green), var(--dark-green));
  padding: 60px 30px; text-align: center; margin-bottom: 0;
}
.cta-banner p { color: rgba(255,255,255,0.85); font-size: 17px; max-width: 600px; margin: 0 auto 24px; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-btn-primary {
  background: var(--gold); color: var(--dark-text); padding: 16px 32px;
  border-radius: 50px; font-weight: 700; font-size: 16px;
  display: flex; align-items: center; gap: 8px; transition: all 0.3s;
}
.cta-btn-primary:hover { background: #e6950f; transform: translateY(-2px); }
.cta-btn-secondary {
  background: transparent; color: white; padding: 16px 32px;
  border-radius: 50px; font-weight: 700; font-size: 16px;
  border: 2px solid rgba(255,255,255,0.3);
  display: flex; align-items: center; gap: 8px; transition: all 0.3s;
}
.cta-btn-secondary:hover { border-color: white; background: rgba(255,255,255,0.1); }

/* ===== FOOTER ===== */
.footer {
  background: var(--dark-text); color: white; padding: 60px 30px 0;
}
.footer-inner {
  max-width: 1300px; margin: 0 auto;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px;
}
.footer-about p { font-size: 14px; color: rgba(255,255,255,0.7); line-height: 1.7; margin-top: 16px; }
.footer h4 { font-size: 16px; font-weight: 700; margin-bottom: 16px; color: white; }
.footer ul li { margin-bottom: 8px; }
.footer ul a { font-size: 14px; color: rgba(255,255,255,0.7); transition: color 0.3s; }
.footer ul a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 20px 0; max-width: 1300px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.5); }
.footer-bottom a { font-size: 13px; color: rgba(255,255,255,0.5); margin-left: 20px; }
.footer-bottom a:hover { color: white; }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 999;
  display: flex; align-items: center; gap: 10px;
  background: white; padding: 12px 20px 12px 14px;
  border-radius: 50px; box-shadow: 0 4px 20px rgba(0,0,0,0.15);
  cursor: pointer; transition: all 0.3s;
}
.whatsapp-float:hover { transform: translateY(-3px); box-shadow: 0 6px 25px rgba(0,0,0,0.2); }
.whatsapp-float .wa-icon {
  width: 42px; height: 42px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 22px;
}
.whatsapp-float span { font-weight: 700; font-size: 14px; color: var(--dark-text); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .form-section { grid-template-columns: 1fr; }
  .form-image { display: none; }
  .form-card { max-width: 600px; margin: 0 auto; }
  .about { grid-template-columns: 1fr; }
  .about-images { max-width: 600px; }
  .why-choose { grid-template-columns: 1fr; }
  .why-process-inner { grid-template-columns: 1fr; }
  .faq { grid-template-columns: 1fr; }
  .areas-content { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav { display: none; }
  .mobile-menu-btn { display: block; }
  .nav.active {
    display: flex; flex-direction: column;
    position: absolute; top: 100%; left: 0; right: 0;
    background: white; padding: 20px; gap: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
  }
  .services-grid, .process-grid { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .stats { flex-wrap: wrap; gap: 30px; }
  .contact-cards { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 10px; text-align: center; }
  .hero h1 { font-size: 32px; }
}
