/*
Theme Name: Shiv AC Solutions
Theme URI: https://shivoldacbuyer.com
Author: Shiv Old AC Buyer
Author URI: https://shivoldacbuyer.com
Description: Professional WordPress theme for Shiv Old AC Buyer — Delhi NCR's trusted old AC buyer. Features hero sections, lead forms, FAQ accordion, service cards, reviews, city pages, and Contact Form 7 integration.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: shiv-ac
Tags: business, responsive, custom-logo, custom-menu, threaded-comments, contact-form-7
*/

/* ============================================================
   CSS CUSTOM PROPERTIES (Design Tokens)
   ============================================================ */
:root {
  --radius: 0.875rem;
  --background: #ffffff;
  --foreground: #1a1f3a;
  --card: #ffffff;
  --card-foreground: #1a1f3a;
  --primary: #1e2d6b;
  --primary-glow: #2e4db0;
  --primary-foreground: #f9f9ff;
  --secondary: #f4f4f9;
  --secondary-foreground: #1e2d6b;
  --muted: #f4f4f9;
  --muted-foreground: #6b7280;
  --accent: #e07b2a;
  --accent-foreground: #1a1000;
  --border: #e5e7f0;
  --input: #e8e8f0;
  --ring: #2e4db0;
  --destructive: #dc2626;
  --shadow-elegant: 0 20px 60px -20px rgba(30, 45, 107, 0.35);
  --shadow-soft: 0 8px 30px -12px rgba(30, 45, 107, 0.20);
  --font-sans: 'Inter', ui-sans-serif, system-ui, sans-serif;
  --font-display: 'Poppins', 'Inter', ui-sans-serif, system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary); text-decoration: none; }
a:hover { text-decoration: underline; }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
  line-height: 1.15;
  color: var(--foreground);
}

ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container-x {
  margin-inline: auto;
  width: 100%;
  max-width: 80rem;
  padding-inline: 1.25rem;
}
@media (min-width: 768px) {
  .container-x { padding-inline: 2rem; }
}

.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ============================================================
   GRADIENTS
   ============================================================ */
.bg-gradient-primary {
  background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
}
.bg-gradient-hero {
  background-image:
    radial-gradient(60% 80% at 20% 0%, rgba(46,77,176,0.28) 0%, transparent 60%),
    radial-gradient(50% 70% at 100% 100%, rgba(224,123,42,0.22) 0%, transparent 60%),
    linear-gradient(180deg, var(--primary) 0%, #141c47 100%);
}
.bg-gradient-accent {
  background-image: linear-gradient(135deg, var(--accent) 0%, #e09a50 100%);
}
.text-gradient {
  background-image: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ============================================================
   SHADOWS
   ============================================================ */
.shadow-elegant { box-shadow: var(--shadow-elegant); }
.shadow-soft    { box-shadow: var(--shadow-soft); }

/* ============================================================
   HOVER LIFT
   ============================================================ */
.hover-lift {
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -24px rgba(30,45,107,0.30);
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fade-in-up {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

.animate-fade-in-up { animation: fade-in-up 0.7s cubic-bezier(.2,.7,.2,1) both; }
.animate-fade-in    { animation: fade-in 0.6s ease-out both; }
.animate-float      { animation: float-y 4s ease-in-out infinite; }

/* Reveal on scroll */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* ============================================================
   PROGRESS BAR
   ============================================================ */
#scroll-progress-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 3px;
  background: transparent;
  pointer-events: none;
}
#scroll-progress-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  transition: width 0.15s linear;
}

/* ============================================================
   FLOATING BUTTONS
   ============================================================ */
.floating-buttons {
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 40;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.floating-btn {
  display: grid;
  place-items: center;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  box-shadow: var(--shadow-elegant);
  transition: transform 0.2s ease;
  color: #fff;
  text-decoration: none;
}
.floating-btn:hover { transform: scale(1.07); text-decoration: none; }
.floating-btn.whatsapp { background: #25D366; }
.floating-btn.phone    { background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%); }
.floating-btn.whatsapp { animation: float-y 4s ease-in-out infinite; }
.floating-btn svg { width: 1.5rem; height: 1.5rem; }

/* ============================================================
   HEADER
   ============================================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100%;
  background: rgba(255,255,255,0.6);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  transition: background 0.3s ease, border-bottom 0.3s ease, box-shadow 0.3s ease;
}
#site-header.scrolled {
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 4rem;
}
@media (min-width: 768px) {
  .header-inner { height: 5rem; }
}

/* Logo */
.site-logo-link {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
  text-decoration: none;
}
.logo-icon {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  flex-shrink: 0;
}
.logo-img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
  object-fit: cover;
  flex-shrink: 0;
}
.logo-text { min-width: 0; line-height: 1.2; }
.logo-text strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  color: var(--foreground);
  font-size: 0.9375rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.logo-text span {
  display: none;
  font-size: 0.6875rem;
  color: var(--muted-foreground);
}
@media (min-width: 640px) {
  .logo-text span { display: block; }
}

/* Desktop Nav */
.desktop-nav {
  display: none;
  align-items: center;
  gap: 0.25rem;
}
@media (min-width: 1024px) {
  .desktop-nav { display: flex; }
}
.desktop-nav a {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(26,31,58,0.8);
  transition: color 0.2s;
  text-decoration: none;
  border-radius: 0.5rem;
}
.desktop-nav a:hover,
.desktop-nav a.current-menu-item,
.desktop-nav a.current_page_item { color: var(--primary); }

/* Header Actions */
.header-actions { display: flex; align-items: center; gap: 0.5rem; }

.header-call-btn {
  display: none;
  align-items: center;
  gap: 0.5rem;
  border: 1px solid var(--border);
  border-radius: 9999px;
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: background 0.2s;
}
@media (min-width: 768px) { .header-call-btn { display: inline-flex; } }
.header-call-btn:hover { background: var(--muted); text-decoration: none; }
.header-call-btn svg { width: 1rem; height: 1rem; color: var(--accent); }
.header-call-btn .phone-label-full { display: none; }
@media (min-width: 1280px) {
  .header-call-btn .phone-label-full { display: inline; }
  .header-call-btn .phone-label-short { display: none; }
}

.header-quote-btn {
  display: none;
  align-items: center;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  color: var(--primary-foreground);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  text-decoration: none;
  transition: opacity 0.2s;
}
@media (min-width: 640px) { .header-quote-btn { display: inline-flex; } }
.header-quote-btn:hover { opacity: 0.93; text-decoration: none; color: #fff; }

.hamburger-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: none;
  cursor: pointer;
}
@media (min-width: 1024px) { .hamburger-btn { display: none; } }
.hamburger-btn svg { width: 1.25rem; height: 1.25rem; color: var(--foreground); }

/* Mobile Menu */
#mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background: var(--background);
}
#mobile-menu.is-open { display: block; }
.mobile-menu-inner {
  padding: 0.75rem 0;
  display: flex;
  flex-direction: column;
}
.mobile-menu-inner a {
  padding: 0.75rem 0;
  font-size: 1rem;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  color: var(--foreground);
  text-decoration: none;
}
.mobile-menu-inner a:last-of-type { border-bottom: 0; }
.mobile-menu-inner a:hover { color: var(--primary); }
.mobile-menu-quote {
  margin-top: 0.75rem;
  display: flex;
  justify-content: center;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  color: var(--primary-foreground) !important;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  text-align: center;
  border-bottom: none !important;
}

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  position: relative;
  overflow: hidden;
  color: #fff;
}
.hero-section .bg-gradient-hero {
  position: absolute;
  inset: 0;
}
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.25;
}
.hero-inner {
  position: relative;
  display: grid;
  gap: 3rem;
  padding-block: 4rem 4rem;
  align-items: center;
}
@media (min-width: 768px) { .hero-inner { padding-block: 6rem; } }
@media (min-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr 1fr; padding-block: 7rem; }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 0.375rem 1rem;
  font-size: 0.75rem;
  font-weight: 500;
  backdrop-filter: blur(8px);
}
.hero-badge svg { width: 1rem; height: 1rem; color: var(--accent); }

.hero-h1 {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
  color: #fff;
}
.hero-h1 .accent { color: var(--accent); }

.hero-p {
  margin-top: 1.25rem;
  font-size: 1rem;
  color: rgba(255,255,255,0.82);
  max-width: 36rem;
  line-height: 1.7;
}
@media (min-width: 768px) { .hero-p { font-size: 1.125rem; } }

.hero-cta-row {
  margin-top: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.hero-trust-row {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  max-width: 36rem;
}
@media (min-width: 640px) { .hero-trust-row { grid-template-columns: repeat(4,1fr); } }
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.85);
}
.trust-icon {
  display: grid;
  place-items: center;
  width: 1.75rem;
  height: 1.75rem;
  border-radius: 50%;
  background: rgba(224,123,42,0.20);
  color: var(--accent);
  flex-shrink: 0;
}
.trust-icon svg { width: 1rem; height: 1rem; }

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  color: #fff;
  padding-block: 5rem;
}
@media (min-width: 768px) { .page-hero { padding-block: 7rem; } }
.page-hero-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.page-hero h1 {
  margin-top: 0.75rem;
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: 700;
  color: #fff;
  max-width: 42rem;
}
.page-hero p {
  margin-top: 1.25rem;
  color: rgba(255,255,255,0.82);
  max-width: 40rem;
  font-size: 1.0625rem;
}

/* ============================================================
   SECTION LABELS
   ============================================================ */
.section-eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent);
}
.section-h2 {
  margin-top: 0.5rem;
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--foreground);
}
.section-sub {
  margin-top: 0.75rem;
  color: var(--muted-foreground);
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: 9999px;
  padding: 0.875rem 1.5rem;
  font-size: 0.9375rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s, opacity 0.2s, box-shadow 0.2s;
  cursor: pointer;
  border: none;
}
.btn:hover { text-decoration: none; }
.btn svg { width: 1rem; height: 1rem; }

.btn-primary {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  color: var(--primary-foreground);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover { opacity: 0.93; transform: scale(1.02); color: #fff; }

.btn-accent {
  background: linear-gradient(135deg, var(--accent) 0%, #e09a50 100%);
  color: var(--accent-foreground);
}
.btn-accent:hover { opacity: 0.9; color: var(--accent-foreground); }

.btn-white {
  background: #fff;
  color: var(--primary);
}
.btn-white:hover { background: rgba(255,255,255,0.92); color: var(--primary); }

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover { opacity: 0.9; color: #fff; }

.btn-outline {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--foreground);
}
.btn-outline:hover { background: var(--muted); }

.btn-sm {
  padding: 0.625rem 1.25rem;
  font-size: 0.875rem;
}

/* ============================================================
   CARDS
   ============================================================ */
.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 12px);
  padding: 1.5rem;
}
@media (min-width: 768px) { .card { padding: 2rem; } }

.card-icon-box {
  display: grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  color: #fff;
  flex-shrink: 0;
}
.card-icon-box svg { width: 1.5rem; height: 1.5rem; }

.card-icon-accent {
  background: rgba(224,123,42,0.15);
  color: var(--accent);
}

/* ============================================================
   STATS
   ============================================================ */
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
@media (min-width: 1024px) { .stats-grid { grid-template-columns: repeat(4,1fr); gap: 1.5rem; } }

.stat-card { text-align: left; }
.stat-number {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@media (min-width: 768px) { .stat-number { font-size: 3rem; } }
.stat-label { margin-top: 0.5rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* ============================================================
   SERVICE CARDS
   ============================================================ */
.services-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px)  { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .services-grid { grid-template-columns: repeat(4,1fr); } }

.service-card {
  display: block;
  height: 100%;
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  text-decoration: none;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -24px rgba(30,45,107,0.30);
  text-decoration: none;
}
.service-card h3 {
  margin-top: 1.25rem;
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
}
.service-card p {
  margin-top: 0.25rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
}
.service-card .more-link {
  margin-top: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}
.service-card:hover .more-link { gap: 0.625rem; }
.service-card .more-link svg { width: 1rem; height: 1rem; }

/* ============================================================
   WHY US
   ============================================================ */
.why-grid {
  display: grid;
  gap: 1rem;
}
@media (min-width: 640px) { .why-grid { grid-template-columns: 1fr 1fr; } }

.why-card {
  border-radius: calc(var(--radius) + 8px);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.25rem;
  height: 100%;
}
.why-card h3 {
  margin-top: 1rem;
  font-family: var(--font-display);
  font-weight: 600;
}
.why-card p { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* ============================================================
   HOW IT WORKS
   ============================================================ */
.how-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 3rem;
}
@media (min-width: 768px) { .how-grid { grid-template-columns: repeat(5,1fr); } }

.how-card {
  position: relative;
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  height: 100%;
}
.how-num {
  position: absolute;
  top: -0.75rem;
  left: -0.75rem;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.9375rem;
  box-shadow: var(--shadow-soft);
}
.how-card svg { width: 1.75rem; height: 1.75rem; color: var(--accent); margin-top: 0.5rem; }
.how-card h3 { margin-top: 0.75rem; font-family: var(--font-display); font-weight: 600; }
.how-card p  { margin-top: 0.25rem; font-size: 0.875rem; color: var(--muted-foreground); }

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews-grid {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px)  { .reviews-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-grid { grid-template-columns: repeat(4,1fr); } }

.reviews-grid-3 {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px)  { .reviews-grid-3 { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .reviews-grid-3 { grid-template-columns: repeat(3,1fr); } }

.review-card {
  border-radius: calc(var(--radius) + 12px);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  height: 100%;
}
.review-stars { display: flex; gap: 0.125rem; color: var(--accent); }
.review-stars svg { width: 1rem; height: 1rem; fill: currentColor; }
.review-text {
  margin-top: 1rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(26,31,58,0.85);
}
.review-author {
  margin-top: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.review-avatar {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  flex-shrink: 0;
}
.review-name { font-size: 0.875rem; font-weight: 600; }
.review-city { font-size: 0.75rem; color: var(--muted-foreground); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list {
  border: 1px solid var(--border);
  border-radius: calc(var(--radius) + 12px);
  background: var(--card);
  overflow: hidden;
}
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:last-child { border-bottom: none; }
.faq-btn {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.faq-btn h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.9375rem;
  color: var(--foreground);
}
.faq-chevron {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  color: var(--muted-foreground);
  transition: transform 0.3s ease;
}
.faq-item.is-open .faq-chevron { transform: rotate(180deg); }
.faq-body {
  display: none;
  padding: 0 1.5rem 1.5rem;
}
.faq-body p {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.7;
}
.faq-item.is-open .faq-body { display: block; }

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner {
  position: relative;
  overflow: hidden;
  border-radius: 2rem;
  color: #fff;
  padding: 2.5rem;
}
@media (min-width: 768px) { .cta-banner { padding: 4rem; } }
.cta-glow {
  position: absolute;
  top: -5rem;
  right: -5rem;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: rgba(224,123,42,0.30);
  filter: blur(60px);
  pointer-events: none;
}
.cta-inner {
  position: relative;
  display: grid;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 1024px) { .cta-inner { grid-template-columns: 1.4fr 1fr; } }
.cta-h2 {
  font-size: clamp(1.75rem, 4vw, 3rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.15;
}
.cta-h2 .accent { color: var(--accent); }
.cta-p { margin-top: 1rem; color: rgba(255,255,255,0.8); max-width: 36rem; }
.cta-buttons { margin-top: 1.75rem; display: flex; flex-wrap: wrap; gap: 0.75rem; }
.cta-box {
  border-radius: calc(var(--radius) + 12px);
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 1.5rem;
  backdrop-filter: blur(8px);
}
.cta-box-head { display: flex; align-items: center; gap: 0.75rem; }
.cta-box-head svg { width: 1.25rem; height: 1.25rem; color: var(--accent); }
.cta-box-head span { font-weight: 600; }
.cta-box-hours { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); }
.cta-cities {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  font-size: 0.875rem;
}
.cta-city {
  border-radius: 9999px;
  background: rgba(255,255,255,0.10);
  padding: 0.5rem 0.75rem;
  text-align: center;
}

/* ============================================================
   LEAD FORM
   ============================================================ */
.lead-form {
  border-radius: calc(var(--radius) + 12px);
  background: var(--card);
  border: 1px solid var(--border);
  padding: 1.5rem;
  box-shadow: var(--shadow-elegant);
}
@media (min-width: 768px) { .lead-form { padding: 2rem; } }
.lead-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}
@media (min-width: 768px) { .lead-form h3 { font-size: 1.875rem; } }
.lead-form .sub {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-top: 0.25rem;
}
.form-fields {
  display: grid;
  gap: 1rem;
  margin-top: 1.25rem;
}
.form-fields.two-col { grid-template-columns: 1fr 1fr; }
.form-field label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted-foreground);
  margin-bottom: 0.25rem;
}
.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border-radius: calc(var(--radius));
  border: 1px solid var(--input);
  background: var(--background);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  transition: box-shadow 0.2s, border-color 0.2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--ring);
  box-shadow: 0 0 0 3px rgba(46,77,176,0.15);
}
.form-field textarea { resize: vertical; }
.form-submit {
  margin-top: 1.5rem;
  width: 100%;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  color: var(--primary-foreground);
  padding: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
  box-shadow: var(--shadow-soft);
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
  font-family: inherit;
}
.form-submit:hover { opacity: 0.93; }
.form-note {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted-foreground);
}
.form-success {
  text-align: center;
  padding: 2rem;
}
.form-success svg { width: 3rem; height: 3rem; margin: 0 auto; color: var(--accent); }
.form-success h3 { margin-top: 1rem; font-size: 1.5rem; font-weight: 700; }
.form-success p { margin-top: 0.5rem; color: var(--muted-foreground); }
.urgent-check { display: flex; align-items: center; gap: 0.5rem; font-size: 0.875rem; cursor: pointer; }
.urgent-check input { accent-color: var(--accent); width: 1rem; height: 1rem; }
.col-span-2 { grid-column: span 2; }

/* Contact Form 7 compatibility */
.wpcf7-form .wpcf7-text,
.wpcf7-form .wpcf7-email,
.wpcf7-form .wpcf7-tel,
.wpcf7-form .wpcf7-select,
.wpcf7-form .wpcf7-textarea {
  width: 100%;
  border-radius: calc(var(--radius));
  border: 1px solid var(--input);
  background: var(--background);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  color: var(--foreground);
  outline: none;
  font-family: inherit;
}
.wpcf7-form .wpcf7-submit {
  width: 100%;
  border-radius: 9999px;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  color: #fff;
  padding: 0.875rem;
  font-size: 0.9375rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
  margin-top: 1rem;
}
.wpcf7-response-output {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  font-size: 0.875rem;
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.about-two-col {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) { .about-two-col { grid-template-columns: 1fr 1fr; } }

.about-img {
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-elegant);
  width: 100%;
}

.mission-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .mission-grid { grid-template-columns: 1fr 1fr; } }

.process-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 2rem;
}
@media (min-width: 768px) { .process-list { grid-template-columns: repeat(3,1fr); } }
.process-item {
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
}
.process-num {
  display: grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  color: #fff;
  font-family: var(--font-display);
  font-weight: 700;
}
.process-item p { margin-top: 0.75rem; font-size: 0.875rem; }

/* Hero stats bar */
.hero-stats-bar {
  display: grid;
  grid-template-columns: repeat(2,1fr);
  gap: 1.5rem;
  text-align: center;
  padding-block: 4rem;
}
@media (min-width: 640px) { .hero-stats-bar { grid-template-columns: repeat(4,1fr); } }
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 700;
  color: var(--accent);
}
@media (min-width: 768px) { .hero-stat-num { font-size: 3.75rem; } }
.hero-stat-label { margin-top: 0.5rem; font-size: 0.875rem; color: rgba(255,255,255,0.8); }

/* ============================================================
   SERVICES PAGE
   ============================================================ */
.service-big-card {
  border-radius: 2rem;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
}
.service-big-card-inner {
  display: grid;
}
@media (min-width: 1024px) { .service-big-card-inner { grid-template-columns: 1fr 1.3fr; } }
.service-big-left {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  padding: 2rem 3rem;
  color: var(--primary-foreground);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 16rem;
}
.service-big-left svg { width: 3rem; height: 3rem; color: var(--accent); }
.service-big-left h2 {
  margin-top: 2rem;
  font-size: clamp(1.25rem, 3vw, 1.875rem);
  font-weight: 700;
  color: #fff;
}
.service-big-right {
  padding: 2rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.service-big-right p {
  color: var(--muted-foreground);
  line-height: 1.7;
}
.service-big-right .btns {
  margin-top: 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

/* ============================================================
   AREAS PAGE
   ============================================================ */
.areas-grid {
  display: grid;
  gap: 1.5rem;
}
@media (min-width: 768px) { .areas-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .areas-grid { grid-template-columns: repeat(3,1fr); } }

.area-card {
  display: block;
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.area-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -24px rgba(30,45,107,0.30);
  text-decoration: none;
}
.area-card-top {
  height: 8rem;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  position: relative;
}
.area-card-top svg {
  position: absolute;
  right: 1.25rem;
  top: 1.25rem;
  width: 2rem;
  height: 2rem;
  color: var(--accent);
}
.area-city-name {
  position: absolute;
  left: 1.25rem;
  bottom: 1rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}
.area-card-body { padding: 1.5rem; }
.area-card-body p { font-size: 0.875rem; color: var(--muted-foreground); }
.area-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
  transition: gap 0.2s;
}
.area-card:hover .area-more-link { gap: 0.625rem; }
.area-more-link svg { width: 1rem; height: 1rem; }

/* City detail page */
.city-areas-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
  margin-top: 1.5rem;
}
@media (min-width: 640px) { .city-areas-grid { grid-template-columns: repeat(3,1fr); } }
.city-area-chip {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-radius: calc(var(--radius) + 8px);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
}
.city-area-chip svg { width: 1rem; height: 1rem; color: var(--accent); flex-shrink: 0; }

.city-why-list { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1rem; }
.city-why-item { display: flex; gap: 0.75rem; font-size: 0.875rem; color: var(--muted-foreground); }
.city-why-item svg { width: 1.25rem; height: 1.25rem; color: var(--accent); flex-shrink: 0; margin-top: 0.125rem; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  gap: 1rem;
  margin-top: 2.5rem;
}
@media (min-width: 640px) { .contact-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .contact-grid { grid-template-columns: repeat(4,1fr); } }

.contact-card {
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
  text-decoration: none;
  display: block;
  color: inherit;
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -24px rgba(30,45,107,0.30);
  text-decoration: none;
}
.contact-card h3 { margin-top: 1.25rem; font-family: var(--font-display); font-weight: 600; }
.contact-card p  { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.25rem; }

.contact-form-map {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 1024px) { .contact-form-map { grid-template-columns: 1fr 1fr; } }

.contact-map {
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid var(--border);
  overflow: hidden;
  min-height: 30rem;
}
.contact-map iframe { width: 100%; height: 100%; min-height: 30rem; border: 0; }

.office-bar {
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
  align-items: center;
  justify-content: space-between;
}
.office-bar-left { display: flex; align-items: center; gap: 0.75rem; }
.office-bar-left svg { width: 1.5rem; height: 1.5rem; color: var(--accent); }
.office-bar-left h4 { font-family: var(--font-display); font-weight: 600; }
.office-bar-left p  { font-size: 0.875rem; color: var(--muted-foreground); }

/* ============================================================
   REVIEWS PAGE
   ============================================================ */
.featured-review {
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 2.5rem;
  display: grid;
  gap: 2rem;
  align-items: center;
}
@media (min-width: 768px) { .featured-review { grid-template-columns: 1fr 2fr; } }

.video-placeholder {
  aspect-ratio: 16/9;
  border-radius: calc(var(--radius) + 8px);
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  display: grid;
  place-items: center;
  cursor: pointer;
  transition: opacity 0.2s;
}
.video-placeholder:hover { opacity: 0.9; }
.play-btn {
  display: grid;
  place-items: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.90);
  color: var(--primary);
}
.play-btn svg { width: 1.75rem; height: 1.75rem; margin-left: 3px; }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-page-list { max-width: 48rem; margin: 0 auto; }

/* ============================================================
   SELL PAGE
   ============================================================ */
.sell-guarantees { display: flex; flex-direction: column; gap: 1.25rem; }
.sell-guarantee {
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid var(--border);
  background: var(--card);
  padding: 1.5rem;
  display: flex;
  gap: 1rem;
}
.sell-guarantee h3 { font-family: var(--font-display); font-weight: 600; }
.sell-guarantee p  { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.25rem; }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  margin-top: 6rem;
  background: #1a1d31;
  color: #fff;
}
.footer-inner {
  display: grid;
  gap: 2.5rem;
  padding-block: 4rem;
}
@media (min-width: 768px) { .footer-inner { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .footer-inner { grid-template-columns: 1.2fr 1fr 1fr 1.2fr; } }

.footer-brand {}
.footer-brand-logo { display: flex; align-items: center; gap: 0.5rem; }
.footer-brand-logo .logo-icon {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
}
.footer-brand-logo span {
  font-family: var(--font-display);
  font-size: 1.125rem;
  font-weight: 700;
}
.footer-brand p {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.70);
  line-height: 1.6;
}
.footer-social { margin-top: 1.25rem; display: flex; gap: 0.75rem; }
.footer-social-btn {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: rgba(255,255,255,0.10);
  color: #fff;
  text-decoration: none;
  transition: background 0.2s;
}
.footer-social-btn:hover { background: rgba(255,255,255,0.20); text-decoration: none; }
.footer-social-btn.wa { background: var(--accent); }
.footer-social-btn.wa:hover { opacity: 0.9; }
.footer-social-btn svg { width: 1.25rem; height: 1.25rem; }

.footer-col h4 {
  font-family: var(--font-display);
  font-weight: 600;
  margin-bottom: 1rem;
  color: #fff;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.70);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-col ul li a:hover { color: #fff; }
.footer-col ul li span { font-size: 0.875rem; color: rgba(255,255,255,0.70); }

.footer-contact-list { display: flex; flex-direction: column; gap: 0.75rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.80);
}
.footer-contact-item svg { width: 1rem; height: 1rem; color: var(--accent); flex-shrink: 0; margin-top: 0.125rem; }
.footer-contact-item a { color: rgba(255,255,255,0.80); text-decoration: none; }
.footer-contact-item a:hover { color: #fff; }

.footer-newsletter { margin-top: 1.25rem; display: flex; gap: 0.5rem; }
.footer-newsletter input {
  flex: 1;
  min-width: 0;
  border-radius: 9999px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.10);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  color: #fff;
  outline: none;
}
.footer-newsletter input::placeholder { color: rgba(255,255,255,0.50); }
.footer-newsletter input:focus { border-color: var(--accent); }
.footer-newsletter button {
  border-radius: 9999px;
  background: var(--accent);
  color: #1a1000;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10);
  padding-block: 1.5rem;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.60);
}
@media (min-width: 640px) {
  .footer-bottom-inner { flex-direction: row; justify-content: space-between; }
}

/* ============================================================
   SECONDARY BG SECTIONS
   ============================================================ */
.section-secondary {
  background: #f4f4f9;
}

/* ============================================================
   STANDARD PAGE CONTENT
   ============================================================ */
.page-content {
  padding-block: 4rem;
  max-width: 56rem;
  margin: 0 auto;
}
.page-content h1,
.page-content h2,
.page-content h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; }
.page-content p   { margin-bottom: 1rem; color: var(--muted-foreground); }
.page-content ul,
.page-content ol  { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.page-content ul li,
.page-content ol li { color: var(--muted-foreground); margin-bottom: 0.375rem; }
.page-content a   { color: var(--primary); }

/* ============================================================
   BLOG / ARCHIVE
   ============================================================ */
.blog-grid {
  display: grid;
  gap: 1.5rem;
  margin-top: 2.5rem;
}
@media (min-width: 768px) { .blog-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1024px) { .blog-grid { grid-template-columns: repeat(3,1fr); } }

.blog-card {
  border-radius: calc(var(--radius) + 12px);
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  transition: transform .35s cubic-bezier(.2,.7,.2,1), box-shadow .35s ease;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 60px -24px rgba(30,45,107,0.30);
}
.blog-card-img { height: 12rem; overflow: hidden; background: var(--muted); }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; }
.blog-card-body { padding: 1.5rem; }
.blog-card-meta {
  font-size: 0.75rem;
  color: var(--muted-foreground);
  margin-bottom: 0.5rem;
}
.blog-card-body h2 {
  font-family: var(--font-display);
  font-size: 1.0625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}
.blog-card-body h2 a { color: var(--foreground); text-decoration: none; }
.blog-card-body h2 a:hover { color: var(--primary); }
.blog-card-body .excerpt {
  font-size: 0.875rem;
  color: var(--muted-foreground);
  line-height: 1.6;
}
.read-more-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: 1rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--primary);
}
.read-more-link svg { width: 1rem; height: 1rem; }

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 3rem;
  flex-wrap: wrap;
}
.pagination a,
.pagination span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding-inline: 0.75rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--foreground);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.pagination a:hover { background: var(--muted); }
.pagination .current {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-glow) 100%);
  color: #fff;
  border-color: transparent;
}

/* ============================================================
   SINGLE POST
   ============================================================ */
.single-post-hero {
  border-radius: calc(var(--radius) + 12px);
  overflow: hidden;
  margin-bottom: 2rem;
}
.single-post-hero img { width: 100%; height: 24rem; object-fit: cover; }
.single-post-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.875rem;
  color: var(--muted-foreground);
  margin-bottom: 1.5rem;
}
.single-post-meta a { color: var(--primary); }
.single-post-content {
  max-width: 48rem;
  margin: 0 auto;
  line-height: 1.8;
}
.single-post-content h1,
.single-post-content h2,
.single-post-content h3 { margin-top: 1.5rem; margin-bottom: 0.75rem; }
.single-post-content p   { margin-bottom: 1rem; color: var(--muted-foreground); }
.single-post-content ul,
.single-post-content ol  { list-style: disc; padding-left: 1.5rem; margin-bottom: 1rem; }
.single-post-content a   { color: var(--primary); }
.single-post-content img { border-radius: var(--radius); margin-block: 1.5rem; }

/* ============================================================
   404 PAGE
   ============================================================ */
.page-404 {
  text-align: center;
  padding-block: 8rem;
}
.page-404 .big-num {
  font-family: var(--font-display);
  font-size: 8rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--primary), var(--primary-glow));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
}
.page-404 h2 { font-size: 1.875rem; margin-top: 1rem; }
.page-404 p  { color: var(--muted-foreground); margin-top: 0.75rem; max-width: 28rem; margin-inline: auto; }
.page-404 .back-btns { margin-top: 2rem; display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ============================================================
   SECTION SPACING UTILITIES
   ============================================================ */
.section-py    { padding-block: 4rem; }
.section-py-sm { padding-block: 3rem; }
@media (min-width: 768px) {
  .section-py    { padding-block: 6rem; }
  .section-py-sm { padding-block: 4rem; }
}

/* ============================================================
   RESPONSIVE UTILITIES
   ============================================================ */
.hidden-mobile { display: none; }
@media (min-width: 768px) { .hidden-mobile { display: initial; } }

/* ============================================================
   SKIP LINK
   ============================================================ */
.skip-link {
  position: absolute;
  top: -99px;
  left: 1rem;
  z-index: 9999;
  background: var(--primary);
  color: #fff;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 1rem; }

/* ============================================================
   WP EDITOR STYLES (alignments etc.)
   ============================================================ */
.alignleft  { float: left; margin-right: 1.5rem; margin-bottom: 1rem; }
.alignright { float: right; margin-left: 1.5rem; margin-bottom: 1rem; }
.aligncenter { display: block; margin-inline: auto; margin-bottom: 1rem; }
.wp-caption { max-width: 100%; }
.wp-caption-text { font-size: 0.8125rem; color: var(--muted-foreground); text-align: center; margin-top: 0.375rem; }
