/* ============================================================
   Quick Junk Dubai — Global Stylesheet
   quickjunkdubai.com
   ============================================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
  --green:       #16A34A;
  --green-dark:  #15803D;
  --green-light: #DCFCE7;
  --navy:        #0F172A;
  --navy-mid:    #1E293B;
  --orange:      #F97316;
  --orange-dark: #EA6C0A;
  --white:       #FFFFFF;
  --bg:          #F8FAFC;
  --text:        #1E293B;
  --muted:       #64748B;
  --border:      #E2E8F0;
  --wa-green:    #25D366;
  --radius:      8px;
  --radius-lg:   16px;
  --shadow:      0 1px 3px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.06);
  --shadow-md:   0 4px 6px rgba(0,0,0,.07), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:   0 10px 15px rgba(0,0,0,.08), 0 4px 6px rgba(0,0,0,.05);
  --font:        'Inter', system-ui, -apple-system, sans-serif;
  --container:   1200px;
  --transition:  .2s ease;
}

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

html { scroll-behavior: smooth; font-size: 16px; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4, h5 {
  line-height: 1.25;
  font-weight: 700;
  color: var(--navy);
}
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.125rem, 2.5vw, 1.5rem); }
h4 { font-size: 1.125rem; }
p  { color: var(--muted); line-height: 1.75; }

/* ---------- Layout ---------- */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 1.25rem;
}
.section { padding: 5rem 0; }
.section--alt { background: var(--bg); }
.section__header { text-align: center; margin-bottom: 3rem; }
.section__header p { max-width: 600px; margin: 0.75rem auto 0; font-size: 1.125rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 1rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--primary {
  background: var(--orange);
  color: var(--white);
}
.btn--primary:hover { background: var(--orange-dark); box-shadow: 0 4px 12px rgba(249,115,22,.35); }

.btn--green {
  background: var(--green);
  color: var(--white);
}
.btn--green:hover { background: var(--green-dark); box-shadow: 0 4px 12px rgba(22,163,74,.35); }

.btn--outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn--outline:hover { background: rgba(255,255,255,.1); }

.btn--outline-dark {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
}
.btn--outline-dark:hover { border-color: var(--green); color: var(--green); }

.btn--lg { padding: 1rem 2.25rem; font-size: 1.125rem; }
.btn--sm { padding: 0.5rem 1.25rem; font-size: 0.875rem; }

/* ---------- Badge / Tag ---------- */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3rem 0.875rem;
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  background: var(--green-light);
  color: var(--green-dark);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--white);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow);
  overflow: visible;
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 75px;
  gap: 1.5rem;
  overflow: visible;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  font-weight: 800;
  font-size: 1.25rem;
  color: var(--navy);
  flex-shrink: 0;
  text-decoration: none;
  overflow: visible;
  position: relative;
  z-index: 1001;
}
/* Header logo — larger than header, overflows for prominence */
.site-logo img {
  height: 130px;
  width:  130px;
  object-fit: contain;
  flex-shrink: 0;
  display: block;
  position: relative;
  z-index: 1001;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.10));
}
.site-logo span { color: var(--green); }

/* Footer logo — clean white PNG, no filter, no artifacts */
.footer-brand .site-logo {
  display: block !important;
  background: transparent !important;
  padding: 0 !important;
  margin-bottom: 1.5rem !important;
  line-height: 0;
  outline: none;
  text-decoration: none;
  border: none;
}
.footer-brand .site-logo img {
  width: 230px !important;
  max-width: 80% !important;
  height: auto !important;
  object-fit: contain;
  position: static;
  filter: none;
  display: block;
  outline: none;
  border: none;
}

@media (max-width: 768px) {
  .header-inner { height: 65px; }
  .site-logo img { height: 95px; width: 95px; }
  .footer-brand .site-logo img { width: 200px !important; height: auto !important; }
}

/* Main Nav */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }
.main-nav a {
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 0.9375rem;
  color: var(--navy-mid);
  transition: color var(--transition), background var(--transition);
}
.main-nav a:hover,
.main-nav a.active { color: var(--green); background: var(--green-light); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown > a::after { content: ' ▾'; font-size: .7em; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
  z-index: 200;
}
.nav-dropdown:hover .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 0.625rem 1rem;
  border-radius: var(--radius);
  font-size: 0.9rem;
  color: var(--navy-mid);
}
.dropdown-menu a:hover { background: var(--green-light); color: var(--green-dark); }

/* Header phone + CTA */
.header-actions { display: flex; align-items: center; gap: 0.75rem; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
  color: var(--navy);
  font-size: 0.9375rem;
}
.header-phone:hover { color: var(--green); }
.header-phone svg { color: var(--green); flex-shrink: 0; }

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--radius);
  border: 1px solid var(--border);
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform .25s, opacity .25s;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 1rem 1.25rem 1.5rem;
}
.mobile-nav.open { display: block; }
.mobile-nav a {
  display: block;
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border);
  font-weight: 500;
  color: var(--navy-mid);
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav .btn { width: 100%; justify-content: center; margin-top: 1rem; }

/* ---------- Hero ---------- */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  color: var(--white);
  padding: 5rem 0 4rem;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('../images/hero-bg.webp') center/cover no-repeat;
  opacity: 0.12;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-content { max-width: 560px; }
.hero-badge { margin-bottom: 1.25rem; }
.hero h1 { color: var(--white); margin-bottom: 1.25rem; }
.hero h1 span { color: var(--orange); }
.hero p { color: rgba(255,255,255,.8); font-size: 1.125rem; margin-bottom: 2rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 0.875rem; align-items: center; }
.hero-stats {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,.15);
}
.hero-stat strong { display: block; font-size: 1.75rem; color: var(--orange); font-weight: 800; }
.hero-stat span { font-size: 0.875rem; color: rgba(255,255,255,.7); }

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-image img { width: 100%; height: 420px; object-fit: cover; }

/* ---------- Services Grid ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  text-decoration: none;
  display: block;
}
.service-card:hover {
  border-color: var(--green);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.service-icon {
  width: 52px;
  height: 52px;
  background: var(--green-light);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  color: var(--green);
}
.service-card h3 { font-size: 1.0625rem; margin-bottom: 0.5rem; color: var(--navy); }
.service-card p { font-size: 0.9rem; }
.service-card .arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  color: var(--green);
  font-size: 0.875rem;
  font-weight: 600;
  margin-top: 1rem;
}

/* ---------- How It Works ---------- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  position: relative;
}
.steps-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(16.67% + 1rem);
  right: calc(16.67% + 1rem);
  height: 2px;
  background: var(--green-light);
  z-index: 0;
}
.step { text-align: center; position: relative; z-index: 1; }
.step-number {
  width: 64px;
  height: 64px;
  background: var(--green);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  font-weight: 800;
  margin: 0 auto 1.25rem;
  position: relative;
}
.step h3 { margin-bottom: 0.5rem; }

/* ---------- Why Choose Us ---------- */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.feature-item { text-align: center; padding: 1.5rem 1rem; }
.feature-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  color: var(--green);
}
.feature-item h4 { margin-bottom: 0.375rem; }

/* ---------- Stats Bar ---------- */
.stats-bar {
  background: var(--green);
  color: var(--white);
  padding: 3rem 0;
}
.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat strong { display: block; font-size: 2.25rem; font-weight: 800; }
.stat span { font-size: 0.9375rem; opacity: .85; }

/* ---------- Areas ---------- */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: 0.875rem;
}
.area-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--navy-mid);
  transition: all var(--transition);
  text-decoration: none;
}
.area-chip:hover {
  border-color: var(--green);
  color: var(--green);
  background: var(--green-light);
}
.area-chip svg { color: var(--green); flex-shrink: 0; }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
}
.stars { color: #F59E0B; font-size: 1.125rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.9375rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.reviewer { display: flex; align-items: center; gap: 0.75rem; }
.reviewer-avatar {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--green);
  font-size: 1rem;
  flex-shrink: 0;
}
.reviewer-name { font-weight: 600; font-size: 0.9375rem; color: var(--navy); }
.reviewer-meta { font-size: 0.8125rem; color: var(--muted); }

/* ---------- FAQ Accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: 0.75rem;
  overflow: hidden;
}
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.125rem 1.5rem;
  text-align: left;
  font-weight: 600;
  font-size: 1rem;
  color: var(--navy);
  background: var(--white);
  transition: background var(--transition);
}
.faq-question:hover { background: var(--bg); }
.faq-question svg { flex-shrink: 0; transition: transform .25s; color: var(--green); }
.faq-item.open .faq-question svg { transform: rotate(180deg); }
.faq-answer {
  display: none;
  padding: 0 1.5rem 1.25rem;
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.9375rem;
}
.faq-item.open .faq-answer { display: block; }

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); margin-bottom: 1rem; }
.cta-banner p { color: rgba(255,255,255,.75); font-size: 1.125rem; margin-bottom: 2rem; max-width: 600px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }

/* ---------- Contact Form ---------- */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.375rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: var(--navy); }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 0.9375rem;
  color: var(--text);
  background: var(--white);
  transition: border-color var(--transition);
  width: 100%;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--green);
  box-shadow: 0 0 0 3px rgba(22,163,74,.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { text-align: center; margin-top: 0.5rem; }

/* ---------- WhatsApp Floating Button ---------- */
.wa-float {
  position: fixed;
  bottom: 1.75rem;
  right: 1.75rem;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 0.625rem;
  background: var(--wa-green);
  color: var(--white);
  padding: 0.875rem 1.25rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.9375rem;
  box-shadow: 0 4px 20px rgba(37,211,102,.4);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.wa-float:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 24px rgba(37,211,102,.55);
}
.wa-float svg { width: 22px; height: 22px; flex-shrink: 0; }
.wa-text { display: inline; }

/* ---------- Footer ---------- */
.site-footer { background: var(--navy); color: rgba(255,255,255,.75); }
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  padding: 4rem 0 3rem;
}
.footer-brand p { color: rgba(255,255,255,.65); }
.footer-brand p { font-size: 0.9rem; margin-bottom: 1.5rem; }
.footer-heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--white);
  margin-bottom: 1.125rem;
}
.footer-links li { margin-bottom: 0.625rem; }
.footer-links a { font-size: 0.9rem; transition: color var(--transition); }
.footer-links a:hover { color: var(--green); }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  margin-bottom: 0.875rem;
  font-size: 0.9rem;
}
.footer-contact svg { color: var(--green); flex-shrink: 0; margin-top: 2px; }
.footer-contact a:hover { color: var(--green); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding: 1.5rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
}
.footer-bottom a { transition: color var(--transition); }
.footer-bottom a:hover { color: var(--green); }
.social-links { display: flex; gap: 1.25rem; align-items: center; }
.social-links a {
  width: auto;
  height: auto;
  background: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  transition: color var(--transition);
  outline: none;
  border: none;
}
.social-links a:hover { background: none; color: var(--white); }

/* ---------- Page Hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  padding: 3.5rem 0;
  color: var(--white);
}
.page-hero h1 { color: var(--white); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255,255,255,.75); font-size: 1.0625rem; max-width: 600px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,.6);
  margin-bottom: 1rem;
}
.breadcrumb a:hover { color: var(--orange); }
.breadcrumb span { color: rgba(255,255,255,.4); }

/* ---------- Content Prose ---------- */
.prose h2 { margin: 2rem 0 1rem; }
.prose h3 { margin: 1.5rem 0 0.75rem; }
.prose p { margin-bottom: 1rem; }
.prose ul { padding-left: 1.5rem; list-style: disc; color: var(--muted); margin-bottom: 1rem; }
.prose ul li { margin-bottom: 0.5rem; }
.prose strong { color: var(--text); }

/* ---------- Utility ---------- */
.text-green { color: var(--green); }
.text-orange { color: var(--orange); }
.text-muted { color: var(--muted); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  /* Header */
  .main-nav, .header-phone { display: none; }
  .menu-toggle { display: flex; }

  /* Hero */
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { display: none; }
  .hero { padding: 3rem 0 2.5rem; }
  .hero-stats { gap: 1rem; }

  /* Steps */
  .steps-grid { grid-template-columns: 1fr; }
  .steps-grid::before { display: none; }

  /* Stats */
  .stats-inner { grid-template-columns: 1fr 1fr; gap: 1.5rem; }

  /* Form */
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: 1; }

  /* Footer */
  .footer-main { grid-template-columns: 1fr; gap: 2rem; padding: 3rem 0 2rem; }
  .footer-brand { grid-column: 1; }
  .footer-bottom { flex-direction: column; text-align: center; }

  /* WhatsApp button */
  .wa-text { display: none; }
  .wa-float { padding: 0.9rem; border-radius: 50%; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  .stats-inner { grid-template-columns: 1fr 1fr; }
  .hero-stats { grid-template-columns: 1fr 1fr; }
  .areas-grid { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   MOBILE OPTIMIZATION — Services & Areas hub listing pages
   ============================================================ */
@media (max-width: 768px) {
  /* page hero + section headers: tighter + responsive */
  .page-hero { padding: 2.5rem 0; }
  .page-hero h1 { font-size: 1.8rem; line-height: 1.22; }
  .page-hero p { font-size: 1rem; }
  .section__header { margin-bottom: 2rem; }
  .section__header h2 { font-size: 1.6rem; }
  .section__header p { font-size: 1rem; }

  /* SERVICE cards — neat 2-column on tablet/large phone */
  .services-grid { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .service-card { padding: 1.35rem; }
  .service-icon { width: 46px; height: 46px; margin-bottom: .85rem; }

  /* AREA cards — compact 2-column grid: icon + name (no long text) */
  .area-cards { grid-template-columns: 1fr 1fr; gap: .85rem; }
  .area-cards .service-card { padding: 1.2rem 1rem; text-align: center; }
  .area-cards .service-icon { margin: 0 auto .7rem; }
  .area-cards .service-card p { display: none; }
  .area-cards .service-card .arrow { margin-top: .55rem; }
}

@media (max-width: 560px) {
  /* SERVICES — clean readable single column on phones */
  .services-grid { grid-template-columns: 1fr; gap: .9rem; }
  .service-card { padding: 1.3rem; }
  .service-card h3 { font-size: 1.05rem; }
  .service-card p { font-size: .92rem; line-height: 1.6; }

  /* AREAS — keep tidy 2-column, more compact */
  .area-cards { grid-template-columns: 1fr 1fr; gap: .7rem; }
  .area-cards .service-card { padding: 1rem .6rem; }
  .area-cards .service-icon { width: 42px; height: 42px; margin-bottom: .55rem; }
  .area-cards .service-card h3 { font-size: .95rem; margin-bottom: .15rem; }
  .area-cards .service-card .arrow { font-size: .8rem; margin-top: .35rem; }
}

/* ============================================================
   MOBILE FIX — collapse fixed 2-column inline grids to 1 column
   (service/area/blog/about/pricing/quote/contact detail pages use
    inline grid-template-columns that don't reflow on phones)
   ============================================================ */
@media (max-width: 768px) {
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1.5fr"],
  [style*="grid-template-columns: 1fr 1.5fr"],
  [style*="grid-template-columns:1fr 300px"],
  [style*="grid-template-columns: 1fr 300px"] {
    grid-template-columns: 1fr !important;
    gap: 1.75rem !important;
  }
}
