/*
Theme Name:  Migwen Technical Services
Theme URI:   https://migwengroup.com
Author:      Migwen Technical Services LLC
Author URI:  https://migwengroup.com
Description: Official website theme for Migwen Technical Services LLC — UAE-based technical services and maintenance company. Modern minimal design with professional blue and orange brand colors.
Version:     1.0.0
License:     GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: migwen-technical
Tags:        business, minimal, technical, services, maintenance
*/

/* ============================================================
   MIGWEN TECHNICAL SERVICES — THEME STYLESHEET
   Brand: Blue #0f5fa3 | Orange #e8600a | Grey #3a3835
   Fonts: Barlow Condensed (headings) + DM Sans (body)
   Built on: Blank Canvas (pure blank WordPress theme)
============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@600;700;800&family=DM+Sans:wght@400;500;600&display=swap');

/* ============================================================
   CSS VARIABLES — edit here to retheme everything
============================================================ */
:root {
  --blue:          #0f5fa3;
  --blue-dark:     #0a4175;
  --blue-light:    #e0eef9;
  --orange:        #e8600a;
  --orange-dark:   #b84c07;
  --orange-light:  #fdf0e8;
  --grey:          #3a3835;
  --grey-mid:      #6b6966;
  --grey-light:    #f5f4f2;
  --white:         #ffffff;
  --black:         #0d0d0c;
  --border:        #dde5ed;

  --font-heading:  'Barlow Condensed', sans-serif;
  --font-body:     'DM Sans', sans-serif;

  --radius-sm:     4px;
  --radius-md:     8px;
  --radius-lg:     14px;
  --shadow:        0 2px 20px rgba(15,95,163,0.10);
  --shadow-hover:  0 8px 32px rgba(15,95,163,0.18);
  --transition:    0.22s ease;
}

/* ============================================================
   RESET & BASE
============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--grey);
  background: var(--white);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--blue); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--blue-dark); }
ul { list-style: none; padding: 0; }

/* ============================================================
   TYPOGRAPHY
============================================================ */
h1, h2, h3, h4, h5 {
  font-family: var(--font-heading);
  color: var(--blue);
  line-height: 1.1;
  letter-spacing: -0.01em;
  font-weight: 800;
}
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: 1.35rem; font-weight: 700; }
h4 { font-size: 1.1rem; font-weight: 700; }
p  { color: var(--grey); font-size: 1rem; line-height: 1.8; margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}
.section-title { margin-bottom: 12px; }
.section-sub   { font-size: 1.05rem; color: var(--grey-mid); max-width: 560px; margin-bottom: 40px; }

/* ============================================================
   LAYOUT
============================================================ */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 28px;
}
section { padding: 84px 0; }
.section-dark  { background: var(--black); }
.section-blue  { background: var(--blue); }
.section-light { background: var(--grey-light); }

/* ============================================================
   BUTTONS
============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 13px 30px;
  border-radius: var(--radius-sm);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}
.btn-primary {
  background: var(--orange);
  color: var(--white);
  border-color: var(--orange);
}
.btn-primary:hover {
  background: var(--orange-dark);
  border-color: var(--orange-dark);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--blue);
  border-color: var(--blue);
}
.btn-outline:hover {
  background: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}
.btn-white {
  background: var(--white);
  color: var(--blue);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}
.btn-ghost-white {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-ghost-white:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ============================================================
   NAVIGATION
============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 12px rgba(15,95,163,0.07);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}
.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.nav-logo .logo-name {
  font-family: var(--font-heading);
  font-size: 1.45rem;
  font-weight: 800;
  color: var(--blue);
  letter-spacing: -0.01em;
}
.nav-logo .logo-tag {
  font-size: 0.65rem;
  font-weight: 600;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-menu a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--grey);
  transition: color var(--transition);
  position: relative;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: -3px;
  left: 0; right: 0;
  height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transition: transform var(--transition);
}
.nav-menu a:hover,
.nav-menu a.active { color: var(--blue); }
.nav-menu a:hover::after,
.nav-menu a.active::after { transform: scaleX(1); }
.nav-cta {
  background: var(--blue);
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  transition: background var(--transition), transform var(--transition);
}
.nav-cta:hover { background: var(--blue-dark) !important; color: var(--white); transform: translateY(-1px); }
.nav-cta::after { display: none !important; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--blue);
  border-radius: 2px;
  transition: all var(--transition);
}

/* ============================================================
   HERO
============================================================ */
.hero {
  background: linear-gradient(135deg, #0a4175 0%, #0f5fa3 55%, #1470b8 100%);
  padding: 100px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -80px;
  width: 420px; height: 420px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.07);
}
.hero::after {
  content: '';
  position: absolute;
  bottom: -100px; right: 60px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.05);
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.9);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  margin-bottom: 24px;
}
.hero h1 {
  color: var(--white);
  margin-bottom: 10px;
  line-height: 1.05;
}
.hero h1 span { color: var(--orange); }
.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 500px;
  line-height: 1.75;
}
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  box-shadow: var(--shadow-hover);
}
.hero-card-title {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--blue-light);
}
.hero-card-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  font-size: 0.875rem;
  color: var(--grey);
  border-bottom: 1px solid var(--grey-light);
}
.hero-card-item:last-child { border-bottom: none; }
.hero-card-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
  flex-shrink: 0;
}
.hero-whatsapp {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 20px;
  padding: 12px 16px;
  background: #25d366;
  border-radius: var(--radius-sm);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  transition: all var(--transition);
}
.hero-whatsapp:hover { background: #1da851; color: var(--white); transform: translateY(-1px); }

/* ============================================================
   STATS BAR
============================================================ */
.stats-bar {
  background: var(--blue-dark);
  padding: 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 32px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 4px;
}
.stat-label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

/* ============================================================
   SERVICES SECTION
============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px; height: 100%;
  background: var(--orange);
  transform: scaleY(0);
  transition: transform var(--transition);
}
.service-card:hover {
  box-shadow: var(--shadow-hover);
  border-color: var(--blue-light);
  transform: translateY(-4px);
}
.service-card:hover::before { transform: scaleY(1); }
.service-icon-wrap {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 18px;
  font-size: 22px;
}
.service-card h3 {
  color: var(--blue);
  font-size: 1.25rem;
  margin-bottom: 14px;
}
.service-list { list-style: none; padding: 0; }
.service-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: var(--grey);
  padding: 5px 0;
  border-bottom: 1px solid var(--grey-light);
  line-height: 1.5;
}
.service-list li:last-child { border-bottom: none; }
.service-list li::before {
  content: '✓';
  color: var(--orange);
  font-weight: 700;
  font-size: 0.8rem;
  margin-top: 2px;
  flex-shrink: 0;
}
.service-img {
  width: 100%;
  height: 180px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, var(--blue-light), #c8dff2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 48px;
  color: var(--blue);
  overflow: hidden;
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  border-radius: var(--radius-md);
}

/* ============================================================
   PROJECTS
============================================================ */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.project-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  transition: all var(--transition);
  background: var(--white);
}
.project-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-5px);
}
.project-img {
  width: 100%; height: 200px;
  background: linear-gradient(135deg, #0a4175, #1470b8);
  display: flex; align-items: center; justify-content: center;
  font-size: 52px;
  position: relative;
  overflow: hidden;
}
.project-img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.project-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, transparent 40%, rgba(10,65,117,0.85) 100%);
}
.project-tag-overlay {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--orange);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 20px;
}
.project-info { padding: 22px 24px; }
.project-info h3 { color: var(--blue); font-size: 1.15rem; margin-bottom: 6px; }
.project-info p  { font-size: 0.875rem; color: var(--grey-mid); margin: 0; line-height: 1.6; }
.project-location {
  display: flex; align-items: center; gap: 6px;
  font-size: 0.78rem; color: var(--orange);
  font-weight: 600; margin-top: 10px;
}

/* ============================================================
   ABOUT PAGE
============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.about-img-wrap {
  position: relative;
}
.about-img {
  width: 100%; height: 420px;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, #0a4175, #0f5fa3);
  display: flex; align-items: center; justify-content: center;
  font-size: 80px;
  overflow: hidden;
}
.about-img img { width: 100%; height: 100%; object-fit: cover; }
.about-badge {
  position: absolute;
  bottom: -20px; right: -20px;
  background: var(--orange);
  color: var(--white);
  padding: 18px 22px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-hover);
}
.about-badge .badge-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.about-badge .badge-label { font-size: 0.72rem; font-weight: 600; opacity: 0.9; }
.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.value-card {
  background: var(--grey-light);
  border-radius: var(--radius-md);
  padding: 18px;
  border-left: 3px solid var(--orange);
}
.value-card h4 { font-size: 0.9rem; color: var(--blue); margin-bottom: 4px; }
.value-card p  { font-size: 0.8rem; color: var(--grey-mid); margin: 0; line-height: 1.5; }

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
  margin-top: 48px;
}
.team-card {
  text-align: center;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 20px;
  transition: all var(--transition);
}
.team-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-hover); }
.team-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--white);
}
.team-card h3 { font-size: 1.1rem; color: var(--blue); margin-bottom: 4px; }
.team-card p  { font-size: 0.85rem; color: var(--orange); font-weight: 600; margin: 0; }

/* ============================================================
   CONTACT PAGE
============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 56px;
  align-items: start;
}
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--grey);
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--grey);
  background: var(--white);
  transition: border-color var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--blue); }
.form-group textarea { height: 120px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-info-card {
  background: var(--blue);
  border-radius: var(--radius-lg);
  padding: 36px 28px;
  color: var(--white);
}
.contact-info-card h3 {
  color: var(--white);
  font-size: 1.5rem;
  margin-bottom: 28px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
}
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 22px;
}
.contact-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item h4 { font-size: 0.8rem; color: rgba(255,255,255,0.65); font-weight: 500; margin-bottom: 2px; }
.contact-item p  { font-size: 0.9rem; color: var(--white); margin: 0; font-weight: 500; }
.contact-item a  { color: var(--white); }
.whatsapp-btn {
  display: flex; align-items: center; gap: 10px;
  background: #25d366; color: var(--white);
  padding: 13px 20px; border-radius: var(--radius-sm);
  font-weight: 600; font-size: 0.9rem;
  margin-top: 8px;
  transition: all var(--transition);
}
.whatsapp-btn:hover { background: #1da851; color: var(--white); transform: translateY(-1px); }
.social-links { display: flex; gap: 10px; margin-top: 24px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.15); }
.social-link {
  width: 40px; height: 40px;
  border-radius: var(--radius-sm);
  background: rgba(255,255,255,0.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-size: 16px;
  transition: all var(--transition);
}
.social-link:hover { background: var(--orange); color: var(--white); }

/* ============================================================
   CTA PAGE
============================================================ */
.cta-hero {
  background: linear-gradient(135deg, #0a4175 0%, #0f5fa3 100%);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-hero h1 { color: var(--white); margin-bottom: 16px; }
.cta-hero h1 span { color: var(--orange); }
.cta-hero p  { color: rgba(255,255,255,0.8); font-size: 1.1rem; max-width: 560px; margin: 0 auto 36px; }
.cta-btns    { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.cta-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.cta-feat {
  padding: 36px 28px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.cta-feat:last-child { border-right: none; }
.feat-icon { font-size: 32px; margin-bottom: 12px; display: block; }
.feat-num  {
  font-family: var(--font-heading);
  font-size: 2.2rem; font-weight: 800;
  color: var(--blue); display: block; line-height: 1;
}
.cta-feat h3 { font-size: 1rem; color: var(--orange); margin: 6px 0 4px; }
.cta-feat p  { font-size: 0.85rem; color: var(--grey-mid); margin: 0; }
.faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 12px;
}
.faq-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 22px 20px;
}
.faq-card h4 { color: var(--blue); font-size: 0.95rem; margin-bottom: 6px; }
.faq-card p  { font-size: 0.85rem; color: var(--grey-mid); margin: 0; }

/* ============================================================
   FOOTER
============================================================ */
#site-footer {
  background: var(--black);
  padding: 56px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo-name {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}
.footer-logo-tag {
  font-size: 0.62rem;
  color: var(--orange);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 14px;
}
.footer-about {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.75;
  margin-bottom: 20px;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 700;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--orange);
}
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--white); }
.footer-bottom {
  padding: 20px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
}
.footer-bottom a { color: rgba(255,255,255,0.3); }
.footer-bottom a:hover { color: var(--orange); }

/* ============================================================
   UTILITY
============================================================ */
.text-center  { text-align: center; }
.text-orange  { color: var(--orange) !important; }
.text-blue    { color: var(--blue) !important; }
.text-white   { color: var(--white) !important; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-32 { margin-top: 32px; }
.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-32 { margin-bottom: 32px; }
.divider { width: 48px; height: 3px; background: var(--orange); border-radius: 2px; margin: 14px 0 28px; }
.divider-center { margin: 14px auto 28px; }
.highlight-box {
  background: var(--blue-light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  padding: 16px 20px;
  margin: 20px 0;
  font-size: 0.9rem;
  color: var(--grey);
}

/* ============================================================
   RESPONSIVE — TABLET
============================================================ */
@media (max-width: 1024px) {
  .hero-grid       { grid-template-columns: 1fr; }
  .hero-card       { display: none; }
  .about-grid      { grid-template-columns: 1fr; }
  .contact-grid    { grid-template-columns: 1fr; }
  .footer-grid     { grid-template-columns: 1fr 1fr; }
  .services-grid   { grid-template-columns: 1fr; }
  .projects-grid   { grid-template-columns: 1fr; }
}

/* ============================================================
   RESPONSIVE — MOBILE
============================================================ */
@media (max-width: 768px) {
  section { padding: 56px 0; }
  .container { padding: 0 20px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.8rem; }
  .stats-inner      { grid-template-columns: repeat(2, 1fr); }
  .nav-menu         { display: none; }
  .nav-toggle       { display: flex; }
  .nav-menu.open    { display: flex; flex-direction: column; position: absolute; top: 68px; left: 0; right: 0; background: var(--white); padding: 20px 28px; border-bottom: 1px solid var(--border); gap: 16px; z-index: 998; }
  .cta-features     { grid-template-columns: 1fr; }
  .cta-feat         { border-right: none; border-bottom: 1px solid var(--border); }
  .faq-grid         { grid-template-columns: 1fr; }
  .footer-grid      { grid-template-columns: 1fr; }
  .values-grid      { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .hero-btns        { flex-direction: column; }
  .cta-btns         { flex-direction: column; align-items: center; }
}
