/*
Theme Name: ARM Maintenance
Theme URI: https://armcont.com
Author: ARM Maintenance
Author URI: https://armcont.com
Description: Professional maintenance services theme for ARM Maintenance UAE — fully editable via WordPress Customizer.
Version: 2.0
License: GNU General Public License v2 or later
Text Domain: arm-maintenance
*/

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --primary: #F5A500;
  --primary-dark: #d98e00;
  --dark: #1C1C1C;
  --darker: #111111;
  --white: #ffffff;
  --zinc-300: #d4d4d8;
  --zinc-400: #a1a1aa;
  --zinc-500: #71717a;
  --zinc-600: #52525b;
  --zinc-900: #18181b;
  --font: 'Inter', sans-serif;
  --max-w: 1280px;
  --header-h: 116px;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font);
  background: #f7f7f7;
  color: var(--dark);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 2rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  font-weight: 700;
  letter-spacing: .07em;
  border-radius: .5rem;
  transition: all .2s;
  cursor: pointer;
  border: none;
  font-size: .9rem;
}
.btn-primary { background: var(--primary); color: #000; padding: .75rem 2rem; }
.btn-primary:hover { background: var(--primary-dark); color: #000; }
.btn-outline-white { background: transparent; color: #fff; border: 2px solid #fff; padding: .75rem 2rem; }
.btn-outline-white:hover { background: #fff; color: #000; }
.btn-dark { background: var(--dark); color: #fff; padding: .75rem 2rem; }
.btn-dark:hover { background: var(--primary); color: #000; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: #fff;
  transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 4px 12px rgba(0,0,0,.08); }

.header-top {
  background: var(--dark);
  padding: .5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .8rem;
  color: var(--zinc-300);
}
.header-top a { color: var(--zinc-300); transition: color .2s; }
.header-top a:hover { color: var(--primary); }
.header-top-left, .header-top-right { display: flex; align-items: center; gap: 1.5rem; }
.ht-item { display: flex; align-items: center; gap: .45rem; }
.ht-sep { color: rgba(255,255,255,.2); }
.ht-icon { color: var(--primary); flex-shrink: 0; }

.header-main {
  padding: .75rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #f4f4f5;
}

.site-logo img { height: 56px; width: auto; object-fit: contain; }

.main-nav { display: flex; align-items: center; gap: 2rem; }
.main-nav a {
  font-size: .85rem; font-weight: 600; letter-spacing: .07em;
  color: var(--dark); transition: color .2s;
}
.main-nav a:hover, .main-nav a.active { color: var(--primary); }

.nav-dropdown { position: relative; }
.nav-dropdown > button {
  font-size: .85rem; font-weight: 600; letter-spacing: .07em;
  color: var(--dark); display: flex; align-items: center; gap: .25rem;
  padding: .5rem 0; transition: color .2s;
}
.nav-dropdown:hover > button { color: var(--primary); }
.dd-chevron { transition: transform .2s; font-size: .7rem; }
.nav-dropdown:hover .dd-chevron { transform: rotate(180deg); }

.mega-menu {
  position: absolute; top: 100%; left: 50%;
  transform: translateX(-50%);
  width: 820px;
  background: var(--dark);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 25px 50px rgba(0,0,0,.4);
  padding: 1.5rem;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem;
  opacity: 0; visibility: hidden; transition: all .2s; margin-top: .5rem;
}
.nav-dropdown:hover .mega-menu { opacity: 1; visibility: visible; }
.mega-col .mega-parent { display: block; color: var(--primary); font-weight: 700; font-size: .95rem; margin-bottom: .75rem; }
.mega-col .mega-parent:hover { text-decoration: underline; }
.mega-col ul li { margin-bottom: .5rem; }
.mega-col ul li a { font-size: .85rem; color: var(--zinc-400); transition: color .2s; display: block; }
.mega-col ul li a:hover { color: #fff; }

.mobile-toggle { display: none; flex-direction: column; gap: 5px; padding: .5rem; }
.mobile-toggle span { display: block; width: 24px; height: 2px; background: var(--dark); transition: all .3s; }

.mobile-nav {
  display: none; background: #fff; border-top: 1px solid #f4f4f5;
  padding: 1rem 2rem; max-height: 80vh; overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav a { display: block; padding: .65rem 0; font-weight: 600; font-size: .9rem; color: var(--dark); border-bottom: 1px solid #f4f4f5; transition: color .2s; }
.mobile-nav a:hover { color: var(--primary); }
.mobile-svc-parent { color: var(--primary) !important; font-size: .8rem !important; letter-spacing: .06em; text-transform: uppercase; margin-top: .75rem; }
.mobile-sub a { padding-left: 1rem; font-weight: 400 !important; color: var(--zinc-500) !important; font-size: .85rem !important; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  padding: 5rem 0;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to right, #1C1C1C 0%, rgba(28,28,28,.8) 50%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: var(--max-w); margin: 0 auto; padding: 0 2rem;
  width: 100%; padding-top: var(--header-h);
}
.hero-inner { max-width: 640px; }
.hero-badge {
  display: inline-block;
  background: rgba(245,165,0,.1); border: 1px solid rgba(245,165,0,.2);
  color: var(--primary); padding: .4rem 1rem; border-radius: 9999px;
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; margin-bottom: 1.5rem;
}
.hero-title {
  font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 900;
  color: #fff; line-height: 1.05; letter-spacing: -.03em; margin-bottom: 1.5rem;
}
.hero-title span { color: var(--primary); }
.hero-desc {
  font-size: 1.1rem; color: var(--zinc-300);
  max-width: 560px; line-height: 1.7; margin-bottom: 2rem;
}
.hero-btns { display: flex; flex-wrap: wrap; gap: 1rem; }

/* ============================================================
   ABOUT
   ============================================================ */
.about-section { padding: 6rem 0; background: #fff; }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }

.section-badge {
  display: inline-block;
  background: rgba(245,165,0,.1); border: 1px solid rgba(245,165,0,.2);
  color: var(--primary); padding: .35rem 1rem;
  font-size: .8rem; font-weight: 700; letter-spacing: .1em; margin-bottom: 1rem;
}
.section-title {
  font-size: clamp(1.8rem,3vw,3rem); font-weight: 900;
  color: var(--dark); letter-spacing: -.025em; line-height: 1.15; margin-bottom: 1.5rem;
}
.section-title span { color: var(--primary); }
.section-title-light {
  font-size: clamp(1.8rem,3vw,3rem); font-weight: 900;
  color: #fff; letter-spacing: -.025em; line-height: 1.15; margin-bottom: 1rem;
}
.section-title-light span { color: var(--primary); }
.section-desc-light { color: var(--zinc-400); font-size: 1.05rem; max-width: 600px; margin: 0 auto; line-height: 1.7; }

.about-text { color: var(--zinc-600); font-size: 1.05rem; line-height: 1.75; margin-bottom: 1.25rem; }
.features-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 2rem; }
.feature-item { display: flex; align-items: center; gap: .75rem; }
.feature-icon {
  width: 40px; height: 40px;
  background: rgba(245,165,0,.1);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.feature-label { font-size: .875rem; font-weight: 600; color: var(--dark); }

.about-img-col { position: relative; }
.about-img-wrap { position: relative; height: 520px; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; }
.about-img-border { position: absolute; inset: 1rem; border: 4px solid var(--primary); pointer-events: none; }
.about-badge {
  position: absolute; bottom: -1.5rem; left: -1.5rem;
  background: var(--dark); padding: 1.5rem; box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.about-badge-num { font-size: 2.5rem; font-weight: 900; color: var(--primary); line-height: 1; }
.about-badge-text { color: #fff; font-size: .8rem; font-weight: 700; letter-spacing: .08em; margin-top: .25rem; }

/* ============================================================
   SERVICES
   ============================================================ */
.services-section { padding: 6rem 0; background: var(--darker); }
.section-header { text-align: center; margin-bottom: 4rem; }
.services-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

.service-card { background: var(--zinc-900); overflow: hidden; display: flex; flex-direction: column; transition: box-shadow .3s; text-decoration: none; }
.service-card:hover { box-shadow: 0 25px 50px rgba(0,0,0,.5); }
.service-card-img { position: relative; height: 240px; overflow: hidden; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.service-card:hover .service-card-img img { transform: scale(1.05); }
.service-card-overlay { position: absolute; inset: 0; background: rgba(0,0,0,.4); transition: background .3s; }
.service-card:hover .service-card-overlay { background: rgba(0,0,0,.2); }
.service-card-body { padding: 1.5rem; flex: 1; display: flex; flex-direction: column; }
.service-card-title { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: .5rem; transition: color .2s; }
.service-card:hover .service-card-title { color: var(--primary); }
.service-card-desc { color: var(--zinc-400); font-size: .9rem; line-height: 1.6; margin-bottom: 1rem; flex: 1; }
.service-card-link { color: var(--primary); font-weight: 600; font-size: .9rem; transition: color .2s; }
.service-card:hover .service-card-link { color: #fff; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-section { padding: 6rem 0; background: var(--dark); }
.why-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 1.5rem; }
.why-card {
  background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1);
  padding: 2rem; transition: border-color .3s;
}
.why-card:hover { border-color: rgba(245,165,0,.5); }
.why-check { width: 32px; height: 32px; color: var(--primary); margin-bottom: 1rem; }
.why-title { font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: .75rem; }
.why-desc { font-size: .875rem; color: var(--zinc-400); line-height: 1.65; }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--dark);
  border-top: 1px solid rgba(245,165,0,.3);
  border-bottom: 1px solid rgba(245,165,0,.3);
}
.stats-grid { display: grid; grid-template-columns: repeat(4,1fr); max-width: var(--max-w); margin: 0 auto; }
.stat-item { padding: 3rem; text-align: center; border-right: 1px solid rgba(245,165,0,.2); }
.stat-item:last-child { border-right: none; }
.stat-value { font-size: clamp(2rem,4vw,3rem); font-weight: 900; color: var(--primary); margin-bottom: .4rem; }
.stat-label { font-size: .8rem; font-weight: 700; color: rgba(245,165,0,.8); letter-spacing: .08em; text-transform: uppercase; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section { padding: 6rem 0; background: #fff; overflow: hidden; }
.testimonials-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.avatars-col { display: flex; align-items: center; gap: 2rem; }
.avatar-stack { display: flex; flex-direction: column; align-items: center; gap: .75rem; }
.avatar-arrow-btn {
  width: 32px; height: 32px; display: flex; align-items: center; justify-content: center;
  color: var(--zinc-400); transition: color .2s; cursor: pointer; background: none; border: none; font-size: 1.2rem;
}
.avatar-arrow-btn:hover { color: var(--primary); }
.avatar-btn {
  width: 56px; height: 56px; border-radius: 50%; overflow: hidden;
  border: 2px solid transparent; opacity: .5; transition: all .3s;
  cursor: pointer; background: none; padding: 0;
}
.avatar-btn.active { border-color: var(--primary); transform: scale(1.1); opacity: 1; box-shadow: 0 4px 20px rgba(245,165,0,.3); }
.avatar-btn:hover { opacity: .8; }
.avatar-btn img { width: 100%; height: 100%; object-fit: cover; }
.avatar-large { position: relative; flex: 1; display: flex; justify-content: center; }
.avatar-circle {
  width: 280px; height: 280px; border-radius: 50%; overflow: hidden;
  border: 4px solid rgba(245,165,0,.2); box-shadow: 0 25px 50px rgba(0,0,0,.15); position: relative;
}
.avatar-circle img { width: 100%; height: 100%; object-fit: cover; transition: opacity .4s; }
.avatar-circle-border { position: absolute; inset: 0; border-radius: 50%; border: 4px solid rgba(245,165,0,.3); pointer-events: none; }
.testimonial-dots { position: absolute; bottom: -1.25rem; left: 50%; transform: translateX(-50%); display: flex; gap: .5rem; }
.t-dot { width: 8px; height: 8px; border-radius: 50%; background: #e5e7eb; transition: background .3s; cursor: pointer; border: none; }
.t-dot.active { background: var(--primary); }

.testimonial-content {}
.testimonial-tag { display: flex; align-items: center; gap: .5rem; margin-bottom: 1rem; }
.testimonial-tag-text { color: var(--primary); font-size: .875rem; font-style: italic; font-weight: 500; }
.star-icon { color: var(--primary); fill: var(--primary); }
.testimonial-heading { font-size: clamp(1.5rem,2.5vw,2rem); font-weight: 900; color: var(--dark); line-height: 1.25; margin-bottom: 2rem; }
.testimonial-heading span { color: var(--primary); }
.testimonial-quote-wrap { position: relative; margin-bottom: 2rem; }
.q-mark { position: absolute; top: -1rem; left: -.5rem; font-size: 5rem; color: rgba(245,165,0,.2); font-family: Georgia,serif; line-height: 1; user-select: none; }
.t-quote { color: var(--zinc-600); font-size: 1.05rem; line-height: 1.75; padding-left: 1.5rem; padding-top: 1rem; }
.testimonial-author { border-left: 4px solid var(--primary); padding-left: 1rem; }
.t-role { font-size: .8rem; color: var(--zinc-400); font-weight: 500; letter-spacing: .07em; margin-bottom: .25rem; }
.t-name { font-size: 1.15rem; font-weight: 900; color: var(--dark); }
.stars { display: flex; gap: .25rem; margin-top: 1rem; }
.stars svg { width: 20px; height: 20px; color: var(--primary); fill: var(--primary); }

/* ============================================================
   FAQ
   ============================================================ */
.faq-section { padding: 6rem 0; background: var(--darker); }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item { border: 1px solid rgba(255,255,255,.1); background: rgba(255,255,255,.05); margin-bottom: .75rem; }
.faq-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1.25rem 1.5rem; text-align: left; color: #fff; font-weight: 700;
  font-size: .95rem; font-family: var(--font); cursor: pointer; transition: color .2s; background: none; border: none;
}
.faq-trigger:hover { color: var(--primary); }
.faq-icon { color: var(--primary); flex-shrink: 0; margin-left: 1rem; transition: transform .25s; font-size: 1.1rem; }
.faq-trigger.open .faq-icon { transform: rotate(180deg); }
.faq-body { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-body.open { max-height: 500px; }
.faq-body p { padding: 1rem 1.5rem 1.5rem; color: var(--zinc-400); line-height: 1.7; font-size: .9rem; border-top: 1px solid rgba(255,255,255,.05); }
.faq-cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   BLOG PREVIEW
   ============================================================ */
.blog-preview-section { padding: 6rem 0; background: #fff; }
.blog-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.blog-card { background: #fff; box-shadow: 0 4px 20px rgba(0,0,0,.06); overflow: hidden; transition: box-shadow .3s; text-decoration: none; display: block; }
.blog-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,.12); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s; }
.blog-card:hover .blog-card-img img { transform: scale(1.04); }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta { display: flex; align-items: center; gap: .75rem; margin-bottom: .75rem; }
.blog-cat { background: rgba(245,165,0,.1); color: var(--primary); font-size: .75rem; font-weight: 700; padding: .2rem .75rem; letter-spacing: .06em; }
.blog-date { font-size: .8rem; color: var(--zinc-400); }
.blog-card-title { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: .6rem; line-height: 1.4; transition: color .2s; }
.blog-card:hover .blog-card-title { color: var(--primary); }
.blog-card-excerpt { font-size: .875rem; color: var(--zinc-500); line-height: 1.6; }
.blog-cta { text-align: center; margin-top: 3rem; }

/* ============================================================
   CTA SECTION
   ============================================================ */
.cta-section { padding: 5rem 0; background: var(--dark); }
.cta-inner { text-align: center; max-width: 640px; margin: 0 auto; }
.cta-title { font-size: clamp(1.8rem,3vw,2.5rem); font-weight: 900; color: #fff; letter-spacing: -.02em; margin-bottom: 1rem; }
.cta-title span { color: var(--primary); }
.cta-desc { color: var(--zinc-400); font-size: 1.05rem; margin-bottom: 2rem; line-height: 1.6; }
.cta-btns { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer { background: var(--darker); color: var(--zinc-400); border-top: 1px solid rgba(255,255,255,.05); }
.footer-main {
  max-width: var(--max-w); margin: 0 auto; padding: 4rem 2rem 5rem;
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.5fr; gap: 3rem;
}
.footer-logo { margin-bottom: 1.5rem; }
.footer-logo img { height: 64px; width: auto; object-fit: contain; }
.footer-tagline { font-size: .875rem; line-height: 1.75; max-width: 280px; margin-bottom: 1.5rem; }
.footer-socials { display: flex; gap: 1rem; }
.footer-social {
  width: 40px; height: 40px; border-radius: 50%;
  background: rgba(255,255,255,.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--zinc-400); font-size: .9rem; transition: all .2s; text-decoration: none;
}
.footer-social:hover { background: var(--primary); color: #000; }
.footer-col-title { color: #fff; font-weight: 700; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 1.5rem; }
.footer-links li { margin-bottom: .75rem; }
.footer-links a { font-size: .875rem; transition: color .2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact-item { display: flex; align-items: flex-start; gap: .75rem; margin-bottom: 1rem; }
.footer-contact-item a { font-size: .875rem; transition: color .2s; }
.footer-contact-item a:hover { color: #fff; }
.footer-contact-item span { font-size: .875rem; }
.f-icon { color: var(--primary); flex-shrink: 0; margin-top: 2px; font-size: 1rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.05);
  max-width: var(--max-w); margin: 0 auto; padding: 1.5rem 2rem;
  display: flex; align-items: center; justify-content: space-between; font-size: .875rem;
}
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { transition: color .2s; }
.footer-bottom-links a:hover { color: var(--primary); }

/* ============================================================
   WHATSAPP FLOAT
   ============================================================ */
.whatsapp-float {
  position: fixed; bottom: 2rem; right: 2rem;
  width: 56px; height: 56px; background: #25D366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,.4); z-index: 999; transition: transform .2s; text-decoration: none;
}
.whatsapp-float:hover { transform: scale(1.1); }

/* ============================================================
   INNER PAGES
   ============================================================ */
.page-hero { background: var(--dark); padding: calc(var(--header-h) + 3rem) 2rem 4rem; text-align: center; }
.page-hero h1 { font-size: clamp(1.8rem,4vw,3rem); font-weight: 900; color: #fff; letter-spacing: -.025em; }
.breadcrumb { margin-top: 1rem; font-size: .875rem; color: var(--zinc-400); }
.breadcrumb a { color: var(--primary); }
.breadcrumb span { margin: 0 .5rem; }
.page-content {
  max-width: 860px; margin: 4rem auto; padding: 0 2rem;
  color: var(--zinc-600); line-height: 1.8; font-size: 1rem;
}
.page-content h1, .page-content h2, .page-content h3 {
  color: var(--dark); font-weight: 700; margin: 2rem 0 1rem; line-height: 1.3;
}
.page-content h2 { font-size: 1.5rem; }
.page-content h3 { font-size: 1.2rem; }
.page-content p { margin-bottom: 1.25rem; }
.page-content a { color: var(--primary); text-decoration: underline; }
.page-content img { border-radius: .5rem; margin: 1.5rem 0; max-width: 100%; }

.single-hero-img { width: 100%; max-height: 450px; object-fit: cover; margin-bottom: 2rem; display: block; }
.post-meta { display: flex; gap: 1rem; font-size: .875rem; color: var(--zinc-400); margin-bottom: 2rem; flex-wrap: wrap; align-items: center; }
.post-cat-badge { background: rgba(245,165,0,.1); color: var(--primary); padding: .2rem .75rem; font-size: .8rem; font-weight: 700; }

.blog-archive { max-width: var(--max-w); margin: 4rem auto; padding: 0 2rem; }
.blog-archive-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1023px) {
  :root { --header-h: 80px; }
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-top { display: none; }
  .about-grid { grid-template-columns: 1fr; }
  .about-img-wrap { height: 360px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 3rem; }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .blog-archive-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .services-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(245,165,0,.2); padding: 2rem; }
  .footer-main { grid-template-columns: 1fr; gap: 2rem; }
  .blog-grid, .blog-archive-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
  .hero-btns, .cta-btns { flex-direction: column; }
  .cta-btns { align-items: center; }
  .about-badge { bottom: -1rem; left: -1rem; }
}
