/* ========================================
   Radha AC — Global CSS
   Brand: Blue (#1a56db) + Orange accent
   ======================================== */

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

/* ---- CSS Variables ---- */
:root {
  --background: #ffffff;
  --foreground: #111827;
  --card: #ffffff;
  --card-foreground: #111827;
  --primary: hsl(220, 74%, 48%);
  --primary-dark: hsl(220, 74%, 36%);
  --primary-light: hsl(220, 74%, 94%);
  --primary-foreground: #ffffff;
  --accent: hsl(25, 95%, 53%);
  --accent-dark: hsl(25, 95%, 44%);
  --accent-foreground: #ffffff;
  --secondary: hsl(220, 20%, 96%);
  --secondary-foreground: #111827;
  --muted: hsl(220, 15%, 95%);
  --muted-foreground: hsl(220, 10%, 46%);
  --border: hsl(220, 20%, 88%);
  --input: hsl(220, 20%, 88%);
  --brand-navy: hsl(220, 45%, 15%);
  --brand-blue-light: hsl(220, 74%, 94%);
  --gradient-hero: linear-gradient(135deg, hsl(220,74%,48%), hsl(220,74%,32%));
  --gradient-cta: linear-gradient(135deg, hsl(25,95%,53%), hsl(25,95%,44%));
  --shadow-card: 0 4px 24px -4px hsl(220 74% 48% / 0.15);
  --shadow-hero: 0 8px 40px -8px hsl(220 74% 48% / 0.3);
  --radius: 0.5rem;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--background);
  color: var(--foreground);
  line-height: 1.6;
  font-size: 16px;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
h1,h2,h3,h4,h5,h6 { font-weight: 700; line-height: 1.2; }
ul { list-style: none; }

/* ---- Container ---- */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1rem; }

/* ---- Gradients ---- */
.gradient-hero { background: var(--gradient-hero); }
.gradient-cta { background: var(--gradient-cta); }

/* ---- Utility Colors ---- */
.text-primary { color: var(--primary); }
.text-accent { color: var(--accent); }
.text-muted { color: var(--muted-foreground); }
.text-white { color: #fff; }
.bg-primary { background-color: var(--primary); }
.bg-accent { background-color: var(--accent); }
.bg-muted { background-color: var(--muted); }
.bg-card { background-color: var(--card); }
.bg-navy { background-color: var(--brand-navy); }
.bg-secondary { background-color: var(--secondary); }

/* ---- Buttons ---- */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.75rem 1.5rem; border-radius: 0.75rem;
  font-weight: 600; font-size: 1rem; transition: all 0.2s; cursor: pointer;
  text-decoration: none; border: none;
}
.btn-accent { background: var(--accent); color: #fff; }
.btn-accent:hover { background: var(--accent-dark); }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); }
.btn-outline-primary {
  background: transparent; color: var(--primary);
  border: 2px solid var(--primary);
}
.btn-outline-primary:hover { background: var(--primary); color: #fff; }
.btn-ghost-white {
  background: rgba(255,255,255,0.1); color: #fff;
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-ghost-white:hover { background: rgba(255,255,255,0.2); }
.btn-lg { padding: 1rem 2rem; font-size: 1.125rem; border-radius: 0.75rem; }
.btn-sm { padding: 0.5rem 1rem; font-size: 0.875rem; border-radius: 0.5rem; }

/* ---- Card ---- */
.card {
  background: var(--card); border-radius: 0.75rem;
  border: 1px solid var(--border); box-shadow: var(--shadow-card);
}

/* ---- Badge ---- */
.badge {
  display: inline-block; padding: 0.25rem 0.75rem;
  border-radius: 9999px; font-size: 0.75rem; font-weight: 600;
}
.badge-primary { background: var(--primary-light); color: var(--primary); }
.badge-accent { background: var(--accent); color: #fff; }

/* ---- Section ---- */
.section { padding: 4rem 0; }
.section-sm { padding: 2.5rem 0; }
.section-title { font-size: 2rem; font-weight: 800; color: var(--foreground); margin-bottom: 0.75rem; }
.section-sub { color: var(--muted-foreground); max-width: 42rem; margin: 0 auto; }
.section-center { text-align: center; }

/* ---- Grid helpers ---- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
@media (max-width: 1024px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .section { padding: 2.5rem 0; }
}

/* =====================
   HEADER
   ===================== */
.top-bar {
  background: var(--primary); color: #fff;
  padding: 0.375rem 1rem; font-size: 0.8125rem;
}
.top-bar-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.25rem;
}
.top-bar-links { display: flex; align-items: center; gap: 1rem; }
.top-bar a { color: rgba(255,255,255,0.85); transition: color 0.2s; }
.top-bar a:hover { color: var(--accent); }

.sticky-nav {
  position: sticky; top: 0; z-index: 50;
  background: var(--card); border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 0.75rem 0;
}
.logo { display: flex; align-items: center; gap: 0.5rem; text-decoration: none; }
.logo-icon {
  display: flex; align-items: center; justify-content: center;
  width: 2.25rem; height: 2.25rem; border-radius: 0.5rem;
  background: var(--primary); color: #fff; font-size: 1.25rem;
}
.logo-text { font-size: 1.125rem; font-weight: 700; color: var(--foreground); line-height: 1.2; }
.logo-sub { font-size: 0.7rem; color: var(--muted-foreground); }

.desktop-nav { display: flex; align-items: center; gap: 0.25rem; }
.nav-link {
  padding: 0.5rem 0.75rem; border-radius: 0.5rem; font-size: 0.875rem;
  font-weight: 500; color: var(--foreground); transition: all 0.2s; text-decoration: none;
}
.nav-link:hover, .nav-link.active { color: var(--primary); background: var(--primary-light); }

/* Dropdown */
.nav-dropdown { position: relative; }
.nav-dropdown-btn {
  display: flex; align-items: center; gap: 0.25rem;
  padding: 0.5rem 0.75rem; border-radius: 0.5rem; font-size: 0.875rem;
  font-weight: 500; color: var(--foreground); background: none;
  cursor: pointer; border: none; transition: all 0.2s; font-family: inherit;
}
.nav-dropdown-btn:hover { color: var(--primary); background: var(--muted); }
.nav-dropdown-menu {
  position: absolute; top: 100%; left: 0; margin-top: 0.25rem;
  width: 16rem; background: var(--card); border-radius: 0.75rem;
  border: 1px solid var(--border); box-shadow: 0 10px 40px -8px rgba(0,0,0,0.15);
  padding: 0.5rem; z-index: 100;
  opacity: 0; pointer-events: none; transform: translateY(-4px);
  transition: all 0.2s;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown-menu.open {
  opacity: 1; pointer-events: auto; transform: translateY(0);
}
.nav-dropdown-all {
  display: block; padding: 0.5rem 1rem; font-size: 0.875rem;
  font-weight: 600; color: var(--primary); border-radius: 0.5rem; transition: background 0.2s;
}
.nav-dropdown-all:hover { background: var(--muted); }
.nav-dropdown-divider { height: 1px; background: var(--border); margin: 0.25rem 0; }
.nav-dropdown-item {
  display: block; padding: 0.5rem 1rem; font-size: 0.875rem;
  color: var(--foreground); border-radius: 0.5rem; transition: all 0.2s;
}
.nav-dropdown-item:hover { color: var(--primary); background: var(--muted); }

.nav-cta { display: flex; align-items: center; gap: 0.5rem; }

/* Hamburger */
.hamburger {
  display: none; padding: 0.5rem; border-radius: 0.5rem;
  cursor: pointer; border: none; background: none;
  transition: background 0.2s;
}
.hamburger:hover { background: var(--muted); }
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--foreground); margin: 4px 0; border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
  display: none; border-top: 1px solid var(--border);
  background: var(--card); padding: 1rem;
}
.mobile-menu.open { display: block; }
.mobile-nav-link {
  display: block; padding: 0.625rem 0.75rem; border-radius: 0.5rem;
  font-size: 0.9rem; font-weight: 500; color: var(--foreground);
  transition: all 0.2s; text-decoration: none;
}
.mobile-nav-link:hover, .mobile-nav-link.active { color: var(--primary); background: var(--primary-light); }
.mobile-services-toggle {
  display: flex; align-items: center; justify-content: space-between;
  width: 100%; padding: 0.625rem 0.75rem; border-radius: 0.5rem;
  font-size: 0.9rem; font-weight: 500; color: var(--foreground);
  cursor: pointer; background: none; border: none; font-family: inherit; transition: background 0.2s;
}
.mobile-services-toggle:hover { background: var(--muted); }
.mobile-services-sub {
  display: none; margin-left: 0.75rem; margin-top: 0.25rem;
  padding-left: 0.75rem; border-left: 2px solid var(--primary-light);
}
.mobile-services-sub.open { display: block; }
.mobile-services-sub a {
  display: block; padding: 0.375rem 0.5rem; font-size: 0.85rem;
  color: var(--foreground); border-radius: 0.5rem; transition: color 0.2s;
}
.mobile-services-sub a:hover { color: var(--primary); }
.mobile-cta-row {
  display: flex; gap: 0.5rem; margin-top: 0.75rem;
  padding-top: 0.75rem; border-top: 1px solid var(--border);
}
.mobile-cta-row a { flex: 1; }
.chevron { transition: transform 0.2s; display: inline-block; }
.chevron.open { transform: rotate(180deg); }

@media (max-width: 1023px) { .desktop-nav { display: none; } }
@media (max-width: 767px) {
  .hamburger { display: block; }
  .nav-cta .btn-outline-primary { display: none; }
}
@media (min-width: 768px) and (max-width: 1023px) { .hamburger { display: block; } }
@media (min-width: 640px) { .top-bar-text { display: block; } }

/* =====================
   STICKY CONTACT BAR (Mobile)
   ===================== */
.sticky-contact-bar {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 50;
  display: none; border-top: 1px solid var(--border);
  background: var(--card);
}
.sticky-contact-bar a {
  flex: 1; display: flex; align-items: center; justify-content: center;
  gap: 0.5rem; padding: 0.875rem; font-weight: 600; font-size: 0.875rem;
}
.sticky-contact-bar .bar-wa { background: var(--accent); color: #fff; }
.sticky-contact-bar .bar-call { background: var(--primary); color: #fff; }
@media (max-width: 1023px) { .sticky-contact-bar { display: flex; } }

/* =====================
   HERO SECTION
   ===================== */
.hero-section {
  background: var(--gradient-hero); color: #fff;
  padding: 4rem 0 5rem; position: relative; overflow: hidden;
}
.hero-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2.5rem; align-items: center;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: rgba(255,255,255,0.1); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.9); font-size: 0.8125rem;
  padding: 0.375rem 0.75rem; border-radius: 9999px; margin-bottom: 1.5rem;
}
.hero-h1 { font-size: 3.25rem; font-weight: 800; line-height: 1.1; margin-bottom: 1rem; }
.hero-h1 .accent-text { color: var(--accent); }
.hero-sub { font-size: 1.125rem; color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 32rem; }
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-form-card {
  background: var(--card); border-radius: 1rem; padding: 1.5rem;
  border: 1px solid var(--border); box-shadow: var(--shadow-hero);
}
.hero-form-card h2 { font-size: 1.125rem; color: var(--foreground); margin-bottom: 0.25rem; }
.hero-form-card p { font-size: 0.875rem; color: var(--muted-foreground); margin-bottom: 1.25rem; }
.snowflake-bg { position: absolute; inset: 0; pointer-events: none; opacity: 0.08; }
.snowflake-bg span {
  position: absolute; font-size: 4rem; color: #fff; opacity: 0.3;
}

@media (max-width: 1023px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-form-card { display: none; }
}
@media (max-width: 640px) {
  .hero-h1 { font-size: 2.25rem; }
  .hero-ctas { flex-direction: column; }
}

/* =====================
   TRUST BAR
   ===================== */
.trust-bar { background: var(--card); border-bottom: 1px solid var(--border); padding: 1.5rem 0; }
.trust-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem; text-align: center;
}
.trust-value { font-size: 1.5rem; font-weight: 700; color: var(--primary); }
.trust-label { font-size: 0.875rem; font-weight: 600; color: var(--foreground); }
.trust-sub { font-size: 0.75rem; color: var(--muted-foreground); }
@media (max-width: 640px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

/* =====================
   SERVICE CARD
   ===================== */
.service-card {
  background: var(--card); border-radius: 0.75rem;
  border: 1px solid var(--border); padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  transition: all 0.3s; display: block; text-decoration: none;
}
.service-card:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-card);
}
.service-card .icon-box {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 0.5rem;
  background: var(--primary-light); color: var(--primary);
  margin-bottom: 1rem; transition: all 0.3s; font-size: 1.4rem;
}
.service-card:hover .icon-box { background: var(--primary); color: #fff; }
.service-card h3 { font-size: 1.125rem; color: var(--foreground); margin-bottom: 0.5rem; transition: color 0.2s; }
.service-card:hover h3 { color: var(--primary); }
.service-card p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.6; margin-bottom: 1rem; }
.service-card .card-link {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.875rem; font-weight: 600; color: var(--primary);
}
.service-card.compact { padding: 1rem; }
.service-card.compact h3 { font-size: 1rem; }
.service-card.compact p { display: none; }

/* =====================
   TESTIMONIAL CARD
   ===================== */
.testimonial-card {
  background: var(--card); border-radius: 0.75rem;
  border: 1px solid var(--border); padding: 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06); transition: box-shadow 0.2s;
}
.testimonial-card:hover { box-shadow: var(--shadow-card); }
.stars { display: flex; gap: 0.1rem; margin-bottom: 0.75rem; color: var(--accent); }
.testimonial-text {
  font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7;
  margin-bottom: 1rem; font-style: italic;
}
.testimonial-footer { display: flex; align-items: center; justify-content: space-between; }
.testimonial-name { font-weight: 600; font-size: 0.875rem; color: var(--foreground); }
.testimonial-location { font-size: 0.75rem; color: var(--muted-foreground); }
.testimonial-badge {
  font-size: 0.75rem; background: var(--primary-light); color: var(--primary);
  padding: 0.25rem 0.625rem; border-radius: 9999px; font-weight: 500;
}

/* =====================
   FAQ ACCORDION
   ===================== */
.faq-section { padding: 4rem 0; background: var(--muted); }
.faq-item {
  background: var(--card); border: 1px solid var(--border); border-radius: 0.75rem;
  margin-bottom: 0.5rem; overflow: hidden; box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.faq-question {
  width: 100%; display: flex; align-items: center; justify-content: space-between;
  padding: 1rem 1rem; text-align: left; cursor: pointer;
  background: none; border: none; font-family: inherit; transition: background 0.2s;
  gap: 1rem;
}
.faq-question:hover { background: var(--muted); }
.faq-question span { font-size: 0.9375rem; font-weight: 600; color: var(--foreground); }
.faq-icon { font-size: 1.2rem; color: var(--primary); flex-shrink: 0; transition: transform 0.3s; }
.faq-icon.open { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.35s ease;
}
.faq-answer.open { max-height: 400px; }
.faq-answer p {
  padding: 0 1rem 1rem; font-size: 0.875rem;
  color: var(--muted-foreground); line-height: 1.7;
}

/* =====================
   CTA BANNER
   ===================== */
.cta-banner { padding: 3rem 0; text-align: center; }
.cta-banner h2 { font-size: 1.75rem; font-weight: 800; color: #fff; margin-bottom: 0.75rem; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 2rem; max-width: 36rem; margin-left: auto; margin-right: auto; }
.cta-btns { display: flex; align-items: center; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.cta-note { margin-top: 1.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.6); }

/* =====================
   MAP EMBED
   ===================== */
.map-section { background: var(--muted); padding: 2.5rem 0; }
.map-section h2 { text-align: center; font-size: 1.25rem; margin-bottom: 1rem; }
.map-wrapper { border-radius: 0.75rem; overflow: hidden; border: 1px solid var(--border); box-shadow: 0 2px 8px rgba(0,0,0,0.06); }

/* =====================
   CONTACT FORM
   ===================== */
.form-group { margin-bottom: 1rem; }
.form-label { display: block; font-size: 0.875rem; font-weight: 500; color: var(--foreground); margin-bottom: 0.25rem; }
.form-label .req { color: #ef4444; }
.form-input, .form-select, .form-textarea {
  width: 100%; padding: 0.625rem 0.75rem; border: 1px solid var(--input);
  border-radius: 0.5rem; font-size: 0.875rem; font-family: inherit;
  background: var(--background); color: var(--foreground); transition: all 0.2s;
  outline: none;
}
.form-input:focus, .form-select:focus, .form-textarea:focus {
  border-color: var(--primary); box-shadow: 0 0 0 3px hsl(220 74% 48% / 0.1);
}
.form-input::placeholder, .form-textarea::placeholder { color: var(--muted-foreground); }
.form-textarea { resize: none; }
.form-hint { font-size: 0.75rem; color: var(--muted-foreground); text-align: center; margin-top: 0.5rem; }
.form-success {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 3rem 1rem;
}
.form-success-icon {
  width: 4rem; height: 4rem; border-radius: 9999px; background: var(--secondary);
  display: flex; align-items: center; justify-content: center;
  color: var(--primary); font-size: 2rem; margin-bottom: 1rem;
}
.form-success h3 { font-size: 1.25rem; color: var(--foreground); margin-bottom: 0.5rem; }
.form-success p { font-size: 0.875rem; color: var(--muted-foreground); }
.form-success-retry {
  margin-top: 1rem; font-size: 0.875rem; color: var(--primary);
  background: none; border: none; cursor: pointer; text-decoration: underline; font-family: inherit;
}

/* =====================
   BREADCRUMB
   ===================== */
.breadcrumb { display: flex; align-items: center; gap: 0.5rem; font-size: 0.8125rem; margin-bottom: 1rem; }
.breadcrumb a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.breadcrumb a:hover { color: #fff; }
.breadcrumb span { color: #fff; }
.breadcrumb-sep { color: rgba(255,255,255,0.5); }
.breadcrumb-light a { color: var(--muted-foreground); }
.breadcrumb-light a:hover { color: var(--primary); }
.breadcrumb-light span { color: var(--foreground); }
.breadcrumb-light .breadcrumb-sep { color: var(--muted-foreground); }

/* =====================
   PAGE HERO (blue gradient top)
   ===================== */
.page-hero { background: var(--gradient-hero); color: #fff; padding: 3rem 0; }
.page-hero h1 { font-size: 2.25rem; font-weight: 800; margin-bottom: 0.5rem; }
.page-hero p { color: rgba(255,255,255,0.8); max-width: 36rem; }

/* =====================
   FOOTER
   ===================== */
footer.site-footer { background: var(--brand-navy); color: rgba(255,255,255,0.7); }
.footer-grid {
  display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2rem; padding: 3rem 0;
}
.footer-logo { display: flex; align-items: center; gap: 0.5rem; margin-bottom: 1rem; text-decoration: none; }
.footer-logo-icon {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: var(--primary); color: #fff; font-size: 1.4rem;
}
.footer-logo-text { font-size: 1.125rem; font-weight: 700; color: #fff; }
.footer-logo-sub { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
.footer-desc { font-size: 0.875rem; line-height: 1.7; margin-bottom: 1rem; }
.footer-rating { display: flex; align-items: center; gap: 0.25rem; font-size: 0.875rem; margin-bottom: 0.25rem; }
.footer-rating .stars-text { color: var(--accent); }
.footer-small { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.footer-gmb {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.75rem; color: var(--accent); margin-top: 1rem; transition: opacity 0.2s;
}
.footer-gmb:hover { opacity: 0.8; }
footer h3 { font-size: 1rem; font-weight: 600; color: #fff; margin-bottom: 1rem; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a {
  font-size: 0.875rem; color: rgba(255,255,255,0.7); transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact-item {
  display: flex; align-items: flex-start; gap: 0.5rem;
  font-size: 0.875rem; color: rgba(255,255,255,0.7); margin-bottom: 0.75rem;
}
.footer-contact-item svg { flex-shrink: 0; color: var(--accent); margin-top: 0.1rem; }
.footer-contact-item a { color: rgba(255,255,255,0.7); transition: color 0.2s; }
.footer-contact-item a:hover { color: var(--accent); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1); padding: 1rem 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 0.5rem; font-size: 0.75rem; color: rgba(255,255,255,0.4);
}
@media (max-width: 1023px) {
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* =====================
   WHY CHOOSE US
   ===================== */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.why-card {
  display: flex; align-items: flex-start; gap: 1rem;
  background: var(--card); border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 1.5rem; box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.why-card .icon-box {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: var(--primary-light); color: var(--primary); flex-shrink: 0; font-size: 1.1rem;
}
.why-card h3 { font-size: 1rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.25rem; }
.why-card p { font-size: 0.8125rem; color: var(--muted-foreground); line-height: 1.6; }
@media (max-width: 1023px) { .why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px) { .why-grid { grid-template-columns: 1fr; } }

/* =====================
   AREAS PAGE
   ===================== */
.area-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 1.25rem;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.area-card-head { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; }
.area-card-head .icon-box {
  display: flex; align-items: center; justify-content: center;
  width: 2.5rem; height: 2.5rem; border-radius: 0.5rem;
  background: var(--primary-light); color: var(--primary); flex-shrink: 0; font-size: 1.1rem;
}
.area-card-head h3 { font-size: 1rem; font-weight: 700; color: var(--foreground); }
.area-card-head p { font-size: 0.75rem; color: var(--muted-foreground); }
.area-tags { display: flex; flex-wrap: wrap; gap: 0.375rem; }
.area-tag {
  display: inline-flex; align-items: center; gap: 0.25rem;
  font-size: 0.75rem; background: var(--muted); color: var(--muted-foreground);
  padding: 0.25rem 0.625rem; border-radius: 9999px; font-weight: 500;
  text-decoration: none; transition: all 0.2s;
}
.area-tag:hover { background: hsl(220 74% 48% / 0.1); color: var(--primary); }
.area-more {
  font-size: 0.75rem; background: var(--muted); color: var(--muted-foreground);
  padding: 0.25rem 0.625rem; border-radius: 9999px; font-weight: 500;
}

/* =====================
   SERVICE DETAIL PAGE
   ===================== */
.detail-hero { background: var(--gradient-hero); color: #fff; padding: 3rem 0; }
.detail-grid { display: grid; grid-template-columns: 1fr 340px; gap: 2rem; align-items: start; padding: 3rem 0; }
.detail-main h2 { font-size: 1.5rem; font-weight: 700; color: var(--foreground); margin-bottom: 1rem; }
.detail-main p { color: var(--muted-foreground); line-height: 1.8; margin-bottom: 1rem; }
.detail-sidebar { position: sticky; top: 5rem; }
.cta-card { background: var(--primary); color: #fff; border-radius: 1rem; padding: 1.5rem; margin-bottom: 1rem; }
.cta-card h3 { font-size: 1.125rem; margin-bottom: 0.5rem; }
.cta-card p { font-size: 0.875rem; color: rgba(255,255,255,0.75); margin-bottom: 1.25rem; }
.cta-card .btn { display: block; width: 100%; text-align: center; }
.detail-list { list-style: none; padding: 0; }
.detail-list li {
  display: flex; align-items: flex-start; gap: 0.625rem;
  padding: 0.625rem 0; font-size: 0.9rem; color: var(--foreground); border-bottom: 1px solid var(--border);
}
.detail-list li:last-child { border-bottom: none; }
.detail-list li::before {
  content: "✓"; color: var(--primary); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem;
}
.process-list { counter-reset: step; }
.process-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  padding: 0.75rem 0; border-bottom: 1px solid var(--border); font-size: 0.9rem;
}
.process-item:last-child { border-bottom: none; }
.process-num {
  display: flex; align-items: center; justify-content: center;
  width: 1.75rem; height: 1.75rem; border-radius: 9999px;
  background: var(--primary); color: #fff; font-size: 0.8rem; font-weight: 700; flex-shrink: 0;
}
@media (max-width: 1023px) { .detail-grid { grid-template-columns: 1fr; } .detail-sidebar { position: static; } }

/* =====================
   BRANDS BAR
   ===================== */
.brands-wrap { display: flex; flex-wrap: wrap; gap: 0.75rem; justify-content: center; }
.brand-tag {
  background: var(--secondary); color: var(--secondary-foreground);
  font-size: 0.875rem; padding: 0.5rem 1rem; border-radius: 0.5rem;
  font-weight: 600; border: 1px solid var(--border);
}

/* =====================
   SERVICE AREAS TAGS
   ===================== */
.areas-wrap { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; }
.area-pill {
  display: inline-flex; align-items: center; gap: 0.25rem;
  background: var(--primary-light); color: var(--primary);
  font-size: 0.875rem; padding: 0.375rem 0.75rem; border-radius: 9999px; font-weight: 500;
}

/* =====================
   BLOG
   ===================== */
.blog-card {
  background: var(--card); border-radius: 0.75rem; border: 1px solid var(--border);
  padding: 1.5rem; box-shadow: 0 1px 4px rgba(0,0,0,0.05); text-decoration: none;
  display: block; transition: all 0.2s;
}
.blog-card:hover { border-color: var(--primary); box-shadow: var(--shadow-card); }
.blog-meta { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.75rem; flex-wrap: wrap; }
.blog-cat {
  font-size: 0.75rem; font-weight: 600; background: var(--primary-light); color: var(--primary);
  padding: 0.2rem 0.6rem; border-radius: 9999px;
}
.blog-date { font-size: 0.75rem; color: var(--muted-foreground); }
.blog-read { font-size: 0.75rem; color: var(--muted-foreground); }
.blog-title { font-size: 1.125rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.75rem; line-height: 1.4; }
.blog-card:hover .blog-title { color: var(--primary); }
.blog-excerpt { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.7; margin-bottom: 1rem; }
.blog-link { font-size: 0.875rem; font-weight: 600; color: var(--primary); }

/* Blog Post Content */
.blog-content { max-width: 720px; }
.blog-content h2 { font-size: 1.5rem; color: var(--foreground); margin: 2rem 0 0.75rem; }
.blog-content h3 { font-size: 1.2rem; color: var(--foreground); margin: 1.5rem 0 0.5rem; }
.blog-content p { color: var(--muted-foreground); line-height: 1.8; margin-bottom: 1rem; }
.blog-content strong { color: var(--foreground); font-weight: 700; }
.blog-content ul, .blog-content ol { padding-left: 1.5rem; margin-bottom: 1rem; }
.blog-content li { color: var(--muted-foreground); line-height: 1.8; margin-bottom: 0.25rem; }

/* =====================
   ABOUT / STATS
   ===================== */
.stat-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 1.5rem; text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.stat-num { font-size: 2rem; font-weight: 800; color: var(--primary); }
.stat-label { font-size: 0.875rem; color: var(--muted-foreground); font-weight: 500; }

/* =====================
   MISC
   ===================== */
.divider { height: 1px; background: var(--border); margin: 0; }
.mt-4 { margin-top: 1rem; }
.mt-6 { margin-top: 1.5rem; }
.mt-8 { margin-top: 2rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.pb-24 { padding-bottom: 6rem; } /* space for sticky bar on mobile */

/* Values card for About */
.value-card {
  background: var(--card); border: 1px solid var(--border);
  border-radius: 0.75rem; padding: 1.5rem; text-align: center;
  box-shadow: 0 1px 4px rgba(0,0,0,0.05);
}
.value-card .icon-box {
  display: flex; align-items: center; justify-content: center;
  width: 3rem; height: 3rem; border-radius: 0.75rem;
  background: var(--primary-light); color: var(--primary); font-size: 1.3rem;
  margin: 0 auto 1rem;
}
.value-card h3 { font-size: 1rem; font-weight: 700; color: var(--foreground); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.8125rem; color: var(--muted-foreground); line-height: 1.6; }

/* Privacy / Terms */
.prose-page { max-width: 800px; margin: 0 auto; }
.prose-page h2 { font-size: 1.4rem; color: var(--foreground); margin: 2rem 0 0.75rem; }
.prose-page h3 { font-size: 1.1rem; color: var(--foreground); margin: 1.5rem 0 0.5rem; }
.prose-page p { color: var(--muted-foreground); line-height: 1.8; margin-bottom: 1rem; }
.prose-page ul { padding-left: 1.5rem; margin-bottom: 1rem; }
.prose-page li { color: var(--muted-foreground); line-height: 1.7; margin-bottom: 0.25rem; }
.prose-page strong { color: var(--foreground); }

/* 404 */
.not-found { text-align: center; padding: 6rem 1rem; }
.not-found h1 { font-size: 6rem; color: var(--primary); font-weight: 900; }
.not-found h2 { font-size: 1.75rem; color: var(--foreground); margin-bottom: 1rem; }
.not-found p { color: var(--muted-foreground); margin-bottom: 2rem; }
