/* ============================================================
   ASTROLOGY EXPERTS CMS - MAIN STYLESHEET
   Design follows topnumerologist.com aesthetic
   ============================================================ */

/* CSS VARIABLES (overridden by theme settings) */
:root {
  --cream: #FFFDF1;
  --peach: #FFCE99;
  --orange: #FF9644;
  --brown: #562F00;
  --brown-dark: #3A1F00;
  --brown-deep: #2A1600;
  --white: #FFFFFF;
  --text-dark: #3D2200;
  --text-body: #5A3D10;
  --text-muted: #8B6B3A;
  --shadow-warm: rgba(86, 47, 0, 0.12);
  --shadow-orange: rgba(255, 150, 68, 0.2);
  --gradient-hero: linear-gradient(165deg, #FFFDF1 0%, #FFF5E0 40%, #FFECCC 100%);
  --gradient-gold: linear-gradient(135deg, #FF9644 0%, #FFCE99 50%, #FF9644 100%);
  --gradient-warm: linear-gradient(135deg, #562F00 0%, #7A4400 100%);
  --footer-bg: #2A1600;
  --radius: 16px;
  --radius-sm: 8px;
  --radius-lg: 24px;
  --transition: all 0.35s cubic-bezier(.4,0,.2,1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  background: var(--cream);
  color: var(--text-body);
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
button { cursor: pointer; font-family: inherit; }

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 880px; margin: 0 auto; padding: 0 24px; }
.container-wide { max-width: 1400px; margin: 0 auto; padding: 0 24px; }

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, serif;
  color: var(--brown);
  line-height: 1.25;
  font-weight: 700;
}
h1 { font-size: clamp(2rem, 5.5vw, 4rem); font-weight: 900; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.5rem); margin-bottom: 16px; }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }
p { margin-bottom: 16px; }

.section-label {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--orange);
  display: block;
  margin-bottom: 8px;
  font-family: 'Outfit', sans-serif;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 28px;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-warm);
  color: var(--cream);
  box-shadow: 0 4px 20px var(--shadow-warm);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 32px rgba(86,47,0,.25); color: var(--cream); }
.btn-secondary {
  background: transparent;
  color: var(--brown);
  border: 2px solid var(--brown);
}
.btn-secondary:hover { background: var(--brown); color: var(--cream); }
.btn-orange {
  background: var(--orange);
  color: var(--white);
  box-shadow: 0 4px 20px var(--shadow-orange);
}
.btn-orange:hover { background: #e87e2e; transform: translateY(-2px); color: var(--white); }
.btn-whatsapp { background: #25D366; color: #fff; }
.btn-whatsapp:hover { background: #1fb855; transform: translateY(-2px); color: #fff; }
.btn-sm { padding: 8px 18px; font-size: 0.82rem; }
.btn-lg { padding: 16px 40px; font-size: 1.05rem; }

/* ============================================================
   HEADER TOP BAR
   ============================================================ */
.header-top {
  background: var(--brown-deep);
  padding: 9px 0;
  font-size: 0.82rem;
}
.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.header-top-left, .header-top-right { display: flex; gap: 16px; align-items: center; flex-wrap: wrap; }
.header-top a { color: var(--peach); font-weight: 500; }
.header-top a:hover { color: var(--white); }
.header-top i { color: var(--orange); margin-right: 5px; font-size: 0.75rem; }

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  background: var(--cream);
  border-bottom: 3px solid var(--orange);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 20px rgba(86,47,0,.08);
  transition: box-shadow 0.3s;
}
.site-header.scrolled { box-shadow: 0 4px 30px rgba(86,47,0,.15); }
.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 14px 0;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  max-width: 200px;
}
.site-logo img { max-height: 64px; width: auto; }
.site-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--brown);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.main-nav a {
  font-weight: 500;
  font-size: 0.94rem;
  color: var(--text-dark);
  padding: 7px 14px;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
}
.main-nav a:hover, .main-nav a.active { color: var(--orange); background: rgba(255,150,68,.08); }
.header-cta { display: flex; gap: 10px; align-items: center; flex-shrink: 0; }

/* Mobile toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(86,47,0,.2);
  padding: 8px 10px;
  border-radius: 8px;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.mobile-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--brown);
  border-radius: 2px;
  transition: var(--transition);
}
.mobile-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.mobile-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.mobile-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  display: none;
  background: var(--cream);
  border-top: 1px solid rgba(86,47,0,.1);
  padding: 16px 0;
}
.mobile-menu.open { display: block; }
.mobile-menu .container { display: flex; flex-direction: column; gap: 4px; }
.mobile-menu a {
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 500;
  color: var(--text-dark);
  font-size: 1rem;
}
.mobile-menu a:hover { background: rgba(255,150,68,.1); color: var(--orange); }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero-section {
  background: var(--gradient-hero);
  padding: 90px 0 70px;
  position: relative;
  overflow: hidden;
}
.hero-section::before {
  content: '';
  position: absolute;
  top: -200px; right: -200px;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(255,206,153,.3) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -150px;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(255,150,68,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  position: relative;
  z-index: 2;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,150,68,.1);
  border: 1px solid rgba(255,150,68,.25);
  color: var(--orange);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 24px;
  animation: fadeUp 0.8s ease both;
}
.hero-section h1 { margin-bottom: 20px; animation: fadeUp 0.8s ease 0.1s both; }
.hero-section h1 em { font-style: normal; color: var(--orange); }
.hero-desc {
  font-size: 1.1rem;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 32px;
  animation: fadeUp 0.8s ease 0.2s both;
}
.hero-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 48px; animation: fadeUp 0.8s ease 0.3s both; }
.hero-stats { display: flex; gap: 36px; animation: fadeUp 0.8s ease 0.4s both; flex-wrap: wrap; }
.hero-stat-number {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 800;
  color: var(--brown);
  line-height: 1;
}
.hero-stat-label { font-size: 0.78rem; color: var(--text-muted); font-weight: 500; margin-top: 4px; }

/* Hero Image card */
.hero-visual { position: relative; animation: fadeUp 0.8s ease 0.2s both; }
.hero-image-card {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--gradient-warm);
  box-shadow: 0 24px 64px rgba(86,47,0,.25);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-image-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 48px 32px;
  color: var(--peach);
}
.hero-image-placeholder .hero-icon { font-size: 4rem; margin-bottom: 16px; }
.hero-image-placeholder h3 { color: var(--peach); font-size: 1.5rem; margin-bottom: 10px; }

/* ============================================================
   TRUST BAR
   ============================================================ */
.trust-bar {
  background: var(--white);
  padding: 22px 0;
  border-bottom: 1px solid rgba(86,47,0,.06);
}
.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-muted);
  white-space: nowrap;
}
.trust-icon {
  width: 36px; height: 36px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  background: rgba(255,150,68,.1);
}

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 80px 0; }
.section-sm { padding: 56px 0; }
.section-lg { padding: 120px 0; }
.bg-white { background: var(--white); }
.bg-cream { background: var(--cream); }
.bg-warm {
  background: linear-gradient(165deg, var(--brown-deep) 0%, var(--brown) 100%);
  color: var(--peach);
}
.bg-warm h2, .bg-warm h3, .bg-warm h4 { color: var(--peach); }
.bg-warm .section-label { color: var(--orange); }
.bg-warm p { color: rgba(255,206,153,.75); }
.text-center { text-align: center; }
.section-subtitle {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 640px;
  margin-bottom: 48px;
  line-height: 1.75;
}
.section-header { margin-bottom: 52px; }

/* ============================================================
   SERVICES GRID
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: rgba(255,253,241,.06);
  border: 1px solid rgba(255,206,153,.12);
  border-radius: 20px;
  padding: 32px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.bg-warm .service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity 0.3s;
}
.bg-warm .service-card:hover { border-color: rgba(255,206,153,.3); transform: translateY(-4px); }
.bg-warm .service-card:hover::before { opacity: 1; }
.service-card.light {
  background: var(--white);
  border-color: rgba(86,47,0,.06);
}
.service-card.light:hover { box-shadow: 0 8px 32px var(--shadow-warm); transform: translateY(-4px); border-color: rgba(255,150,68,.2); }
.service-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: rgba(255,150,68,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.service-card h3 { font-size: 1.15rem; margin-bottom: 10px; }
.bg-warm .service-card h3 { color: var(--peach); }
.service-card p { font-size: 0.9rem; line-height: 1.65; }

/* ============================================================
   BLOG GRID
   ============================================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-grid.two-col { grid-template-columns: repeat(2, 1fr); }
.blog-grid.one-col { grid-template-columns: 1fr; }

.blog-card {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(86,47,0,.06);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover { box-shadow: 0 12px 40px var(--shadow-warm); transform: translateY(-4px); }
.blog-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--gradient-gold);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 3rem;
  flex-shrink: 0;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; }
.blog-body { padding: 24px; flex: 1; display: flex; flex-direction: column; }
.blog-tag {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 8px;
  display: inline-block;
}
.blog-card h3 { font-size: 1.05rem; margin-bottom: 10px; line-height: 1.4; color: var(--brown); }
.blog-card h3 a { color: inherit; }
.blog-card h3 a:hover { color: var(--orange); }
.blog-excerpt { font-size: 0.88rem; color: var(--text-muted); line-height: 1.65; flex: 1; margin-bottom: 16px; }
.blog-meta {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 0.78rem;
  color: var(--text-muted);
  flex-wrap: wrap;
  border-top: 1px solid rgba(86,47,0,.06);
  padding-top: 14px;
  margin-top: auto;
}
.blog-meta i { color: var(--orange); font-size: 0.72rem; margin-right: 3px; }

/* Blog layout with sidebar */
.blog-layout { display: grid; grid-template-columns: 1fr 320px; gap: 48px; }
.blog-sidebar { position: sticky; top: 90px; }

/* ============================================================
   BLOG SINGLE POST
   ============================================================ */
.blog-hero {
  background: var(--gradient-warm);
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}
.blog-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='30' cy='30' r='1' fill='rgba(255,206,153,0.06)'/%3E%3C/svg%3E");
  opacity: 0.5;
}
.blog-hero .hero-content { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.blog-hero h1 { color: var(--white); font-size: clamp(2rem, 4.5vw, 3.2rem); line-height: 1.25; margin-bottom: 20px; }
.blog-hero-meta {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.88rem;
  color: rgba(255,255,255,.7);
}
.blog-hero-meta i { color: var(--orange); margin-right: 5px; }
.blog-hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,150,68,.2);
  border: 1px solid rgba(255,150,68,.35);
  padding: 7px 18px;
  border-radius: 50px;
  color: var(--peach);
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.5px;
}

.post-layout {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 48px;
  padding: 52px 0 80px;
}
.post-content { max-width: 800px; }
.post-content h2 {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  color: var(--brown);
  margin: 48px 0 18px;
  padding-bottom: 12px;
  border-bottom: 3px solid rgba(255,150,68,.3);
}
.post-content h3 {
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  color: var(--brown);
  margin: 36px 0 12px;
}
.post-content h4 { font-size: 1.1rem; color: var(--text-dark); margin: 26px 0 10px; }
.post-content p { font-size: 1.03rem; line-height: 1.85; color: var(--text-body); margin-bottom: 18px; }
.post-content strong { color: var(--brown); }
.post-content a { color: var(--orange); }
.post-content a:hover { color: var(--brown); }
.post-content ul, .post-content ol { margin: 16px 0 20px 24px; }
.post-content li { margin-bottom: 8px; line-height: 1.75; }
.post-content img { border-radius: 16px; margin: 24px 0; }
.post-content blockquote {
  background: rgba(255,150,68,.08);
  border-left: 4px solid var(--orange);
  padding: 20px 24px;
  border-radius: 0 12px 12px 0;
  margin: 28px 0;
  font-style: italic;
  font-size: 1.05rem;
}
.post-content table { width: 100%; border-collapse: collapse; margin: 24px 0; border-radius: 12px; overflow: hidden; box-shadow: 0 2px 12px var(--shadow-warm); }
.post-content table th { background: var(--brown); color: var(--peach); padding: 12px 16px; text-align: left; font-weight: 600; font-size: 0.9rem; }
.post-content table td { padding: 11px 16px; border-bottom: 1px solid rgba(86,47,0,.06); }
.post-content table tbody tr:nth-child(even) { background: rgba(255,206,153,.1); }
.post-content pre {
  background: var(--brown-deep);
  color: var(--peach);
  padding: 20px 24px;
  border-radius: 12px;
  overflow-x: auto;
  margin: 24px 0;
  font-size: 0.9rem;
}

/* Post tags */
.post-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 32px 0; }
.post-tag {
  background: rgba(255,150,68,.08);
  border: 1px solid rgba(255,150,68,.2);
  color: var(--brown);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  transition: var(--transition);
}
.post-tag:hover { background: var(--orange); color: var(--white); }

/* Share buttons */
.share-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
  padding: 24px 0;
  border-top: 1px solid rgba(86,47,0,.08);
  border-bottom: 1px solid rgba(86,47,0,.08);
  margin: 32px 0;
}
.share-label { font-weight: 600; color: var(--brown); font-size: 0.9rem; }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  color: var(--white);
}
.share-facebook { background: #1877F2; }
.share-twitter { background: #1DA1F2; }
.share-whatsapp { background: #25D366; }
.share-linkedin { background: #0A66C2; }
.share-copy { background: var(--brown); }
.share-btn:hover { transform: translateY(-2px); opacity: 0.9; color: var(--white); }

/* Breadcrumb */
.breadcrumb {
  padding: 14px 0;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--orange); font-weight: 500; }
.breadcrumb a:hover { color: var(--brown); }
.breadcrumb span { margin: 0 8px; color: var(--peach); }

/* Prev/Next post nav */
.post-navigation {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin: 48px 0;
}
.post-nav-item {
  background: var(--white);
  border-radius: 16px;
  padding: 20px;
  border: 1px solid rgba(86,47,0,.06);
  transition: var(--transition);
}
.post-nav-item:hover { box-shadow: 0 6px 24px var(--shadow-warm); border-color: var(--orange); }
.post-nav-label { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--orange); margin-bottom: 6px; }
.post-nav-title { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--brown); font-weight: 600; line-height: 1.4; }
.post-nav-item.next { text-align: right; }

/* ============================================================
   SIDEBAR
   ============================================================ */
.sidebar-widget {
  background: var(--white);
  border-radius: 20px;
  padding: 28px;
  margin-bottom: 28px;
  border: 1px solid rgba(86,47,0,.06);
  box-shadow: 0 2px 12px var(--shadow-warm);
}
.sidebar-widget h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--brown);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid rgba(255,150,68,.2);
  display: flex;
  align-items: center;
  gap: 8px;
}
.sidebar-widget h4 i { color: var(--orange); }
.sidebar-widget ul { list-style: none; padding: 0; }
.sidebar-widget ul li { margin-bottom: 8px; }
.sidebar-widget ul a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: var(--transition);
}
.sidebar-widget ul a:hover { background: rgba(255,150,68,.08); color: var(--orange); }
.sidebar-widget ul a i { color: var(--orange); font-size: 0.8rem; }

/* Sidebar CTA */
.sidebar-cta-widget {
  background: var(--gradient-warm);
  border: none;
  color: var(--white);
  text-align: center;
}
.sidebar-cta-widget h4 { color: var(--peach) !important; border-bottom-color: rgba(255,206,153,.2) !important; justify-content: center; }
.sidebar-cta-widget p { color: rgba(255,255,255,.8); font-size: 0.9rem; margin-bottom: 18px; }

/* TOC */
.toc-list { list-style: none; padding: 0; counter-reset: toc; }
.toc-list li { counter-increment: toc; margin-bottom: 4px; }
.toc-list a {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--text-muted);
  font-size: 0.86rem;
  border-left: 3px solid transparent;
  line-height: 1.5;
}
.toc-list a:hover { background: rgba(255,150,68,.08); color: var(--brown); border-left-color: var(--orange); }
.toc-list a::before {
  content: counter(toc);
  display: flex;
  min-width: 22px;
  height: 22px;
  background: rgba(255,150,68,.1);
  border-radius: 50%;
  align-items: center;
  justify-content: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--orange);
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border-radius: 20px;
  padding: 32px 28px;
  border: 1px solid rgba(86,47,0,.06);
  transition: var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  color: rgba(255,150,68,.15);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}
.testimonial-card:hover { box-shadow: 0 8px 32px var(--shadow-warm); }
.testimonial-stars { color: var(--orange); font-size: 0.9rem; margin-bottom: 12px; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; font-style: italic; color: var(--text-body); margin-bottom: 20px; line-height: 1.75; position: relative; z-index: 1; }
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.testimonial-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(255,150,68,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--orange);
  font-size: 1rem;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 700; font-size: 0.92rem; color: var(--brown); }
.testimonial-role { font-size: 0.78rem; color: var(--text-muted); }

/* ============================================================
   FAQ ACCORDION
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: var(--white);
  border-radius: 16px;
  border: 1px solid rgba(86,47,0,.06);
  overflow: hidden;
}
.faq-item:hover { border-color: rgba(255,150,68,.15); }
.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 24px;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--brown);
  text-align: left;
  gap: 12px;
  line-height: 1.45;
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,150,68,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--orange);
  font-size: 1.3rem;
  line-height: 1;
  transition: transform 0.3s;
}
.faq-item.open .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-item.open .faq-answer { max-height: 500px; }
.faq-answer-inner { padding: 0 24px 22px; font-size: 0.96rem; color: var(--text-muted); line-height: 1.8; }

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form {
  background: var(--white);
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 4px 24px var(--shadow-warm);
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brown);
  margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid rgba(86,47,0,.12);
  border-radius: 12px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  background: var(--cream);
  color: var(--text-dark);
  transition: var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--orange);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(255,150,68,.1);
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.contact-info { display: flex; flex-direction: column; gap: 24px; }
.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--white);
  border-radius: 16px;
  padding: 22px;
  border: 1px solid rgba(86,47,0,.06);
  transition: var(--transition);
}
.contact-info-item:hover { box-shadow: 0 4px 20px var(--shadow-warm); }
.contact-info-icon {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: rgba(255,150,68,.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--orange);
  font-size: 1.2rem;
  flex-shrink: 0;
}
.contact-info-item h4 { font-size: 0.95rem; font-weight: 700; color: var(--brown); margin-bottom: 4px; }
.contact-info-item p { font-size: 0.88rem; color: var(--text-muted); margin: 0; }
.contact-info-item a { color: var(--text-muted); font-size: 0.88rem; }
.contact-info-item a:hover { color: var(--orange); }

/* Map */
.map-container { border-radius: 20px; overflow: hidden; margin-top: 32px; box-shadow: 0 4px 24px var(--shadow-warm); }
.map-container iframe { display: block; }

/* ============================================================
   GOOGLE REVIEW WIDGET
   ============================================================ */
.review-widget-section { background: var(--cream); padding: 56px 0; }

/* ============================================================
   PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.page-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px; height: 44px;
  border-radius: 12px;
  border: 1.5px solid rgba(86,47,0,.12);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--brown);
  background: var(--white);
  transition: var(--transition);
  text-decoration: none;
}
.page-btn:hover, .page-btn.active {
  background: var(--orange);
  border-color: var(--orange);
  color: var(--white);
}
.page-btn.disabled { opacity: 0.4; pointer-events: none; }
.page-btn.page-prev, .page-btn.page-next { width: auto; padding: 0 18px; gap: 6px; }

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer { background: var(--footer-bg, #2A1600); }
.footer-wave { margin-bottom: -4px; line-height: 0; }
.footer-wave svg { width: 100%; height: 60px; }
.footer-body { padding: 70px 0 40px; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-brand .footer-logo { margin-bottom: 18px; }
.footer-brand .footer-logo img { max-height: 56px; }
.footer-brand .logo-text { color: var(--peach); font-family: 'Playfair Display', serif; font-size: 1.4rem; font-weight: 800; }
.footer-brand p { color: rgba(255,255,255,.65); font-size: 0.9rem; line-height: 1.7; margin-bottom: 20px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  font-size: 0.9rem;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--orange); border-color: var(--orange); color: var(--white); transform: translateY(-2px); }
.footer-col h4 {
  color: var(--peach);
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  margin-bottom: 18px;
}
.footer-col ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-col a { color: rgba(255,255,255,.6); font-size: 0.88rem; transition: var(--transition); }
.footer-col a:hover { color: var(--orange); padding-left: 4px; }
.footer-contact { gap: 12px !important; }
.footer-contact li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: rgba(255,255,255,.6);
  font-size: 0.88rem;
  line-height: 1.5;
}
.footer-contact li i { color: var(--orange); margin-top: 3px; font-size: 0.85rem; flex-shrink: 0; }
.footer-contact a { color: rgba(255,255,255,.6); }
.footer-posts li { list-style: none; }
.footer-posts a { display: flex; gap: 10px; align-items: flex-start; color: rgba(255,255,255,.6); font-size: 0.85rem; margin-bottom: 10px; }
.footer-posts img { width: 48px; height: 48px; border-radius: 8px; object-fit: cover; flex-shrink: 0; }
.footer-posts span { line-height: 1.5; }
.footer-bottom { padding: 20px 0; }
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.83rem;
  color: rgba(255,255,255,.4);
}
.footer-legal { display: flex; gap: 16px; }
.footer-legal a { color: rgba(255,255,255,.4); }
.footer-legal a:hover { color: var(--orange); }

/* WhatsApp Float */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 28px;
  z-index: 9999;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.7rem;
  box-shadow: 0 6px 24px rgba(37,211,102,.45);
  transition: var(--transition);
  animation: waFloat 3s ease-in-out infinite;
}
.whatsapp-float:hover { transform: scale(1.1); color: var(--white); }
.whatsapp-tooltip {
  position: absolute;
  right: 70px;
  background: var(--white);
  color: var(--text-dark);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 8px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,.1);
  opacity: 0;
  transition: opacity 0.3s;
  pointer-events: none;
}
.whatsapp-float:hover .whatsapp-tooltip { opacity: 1; }

/* Back to top */
.back-to-top {
  position: fixed;
  bottom: 96px; right: 28px;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brown);
  color: var(--peach);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 99;
  box-shadow: 0 4px 16px rgba(86,47,0,.2);
  cursor: pointer;
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { background: var(--orange); transform: translateY(-2px); }

/* ============================================================
   ALERTS & NOTICES
   ============================================================ */
.alert {
  padding: 16px 20px;
  border-radius: 12px;
  font-size: 0.95rem;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.alert-success { background: rgba(34,197,94,.1); border: 1px solid rgba(34,197,94,.3); color: #166534; }
.alert-error { background: rgba(239,68,68,.1); border: 1px solid rgba(239,68,68,.3); color: #991b1b; }
.alert-info { background: rgba(59,130,246,.1); border: 1px solid rgba(59,130,246,.3); color: #1e40af; }

/* ============================================================
   SEARCH BOX
   ============================================================ */
.search-box { position: relative; }
.search-box input {
  width: 100%;
  padding: 13px 48px 13px 18px;
  border: 1.5px solid rgba(86,47,0,.12);
  border-radius: 50px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  background: var(--cream);
  outline: none;
  transition: var(--transition);
}
.search-box input:focus { border-color: var(--orange); box-shadow: 0 0 0 3px rgba(255,150,68,.1); }
.search-box button {
  position: absolute;
  right: 4px; top: 50%;
  transform: translateY(-50%);
  width: 40px; height: 40px;
  border-radius: 50%;
  background: var(--orange);
  border: none;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.search-box button:hover { background: var(--brown); }

/* Archive badge */
.archive-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,150,68,.1);
  border: 1px solid rgba(255,150,68,.2);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--orange);
  margin-bottom: 16px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes waFloat {
  0%, 100% { box-shadow: 0 6px 24px rgba(37,211,102,.45); }
  50% { box-shadow: 0 6px 24px rgba(37,211,102,.45), 0 0 0 14px rgba(37,211,102,.12); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* Scroll animations */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.d-none { display: none; }
.d-flex { display: flex; }
.gap-12 { gap: 12px; }
.gap-16 { gap: 16px; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-orange { color: var(--orange); }
.text-brown { color: var(--brown); }
.text-muted { color: var(--text-muted); }
.fw-600 { font-weight: 600; }
.fw-700 { font-weight: 700; }

/* ============================================================
   RESPONSIVE DESIGN — 90% Mobile Optimized
   ============================================================ */

@media (max-width: 1200px) {
  .footer-grid { grid-template-columns: 2fr 1fr 1fr 1fr; }
}

@media (max-width: 1024px) {
  .blog-layout { grid-template-columns: 1fr; }
  .blog-sidebar { position: static; }
  .post-layout { grid-template-columns: 1fr; }
  .post-sidebar { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
  .post-sidebar .sidebar-widget { position: static; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-visual { order: -1; }
  .hero-image-card { max-width: 340px; margin: 0 auto; }
  .hero-stats { justify-content: center; }
  .hero-buttons { justify-content: center; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
}

@media (max-width: 768px) {
  .main-nav { display: none; }
  .mobile-toggle { display: flex; }
  .header-cta .btn-whatsapp { display: none; }
  .header-top-right { display: none; }
  .hero-section { padding: 60px 0 48px; }
  .hero-stats { gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .post-navigation { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .section { padding: 56px 0; }
  .trust-items { gap: 20px; }
  .post-sidebar { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .blog-grid { grid-template-columns: 1fr; }
  .hero-buttons { flex-direction: column; align-items: center; }
  .hero-stats { flex-direction: column; align-items: center; gap: 16px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
  .contact-form { padding: 28px 20px; }
  .trust-bar { display: none; }
  .whatsapp-float { bottom: 20px; right: 16px; width: 54px; height: 54px; font-size: 1.5rem; }
  .back-to-top { right: 16px; }
  .header-top { display: none; }
}

@media (min-width: 769px) {
  .mobile-menu { display: none !important; }
}
