/*
Theme Name: Pandit Pankaj Dahal
Theme URI: https://vedicguide.com
Author: Pandit Pankaj Kumar Dahal
Author URI: https://vedicguide.com
Description: A sacred Vedic priest and astrologer website theme with warm ochre and russet tones, Devanagari typography, and traditional spiritual aesthetics.
Version: 1.0.3
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: pandit-pankaj
Tags: spiritual, vedic, astrology, priest, custom-colors, custom-menu, featured-images, full-width-template, responsive-layout
*/

/* =============================================
   THEME VARIABLES
   ============================================= */
:root {
  --deep-ochre: #c16f1e;
  --burnt-sienna: #b5451a;
  --russet: #8b3a1a;
  --sand: #f4e9d8;
  --ivory-dark: #fdf7f0;
  --charcoal: #2c2418;
  --stone: #5c4b37;
  --gold-muted: #d4af37;
  --cream: #fff9ef;
  --white: #ffffff;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  background-color: var(--cream);
  color: var(--charcoal);
  overflow-x: hidden;
  line-height: 1.6;
}

img { max-width: 100%; height: auto; display: block; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; }

/* =============================================
   TYPOGRAPHY
   ============================================= */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--charcoal);
}

.font-cormorant { font-family: 'Cormorant Garamond', serif; }
.font-devanagari { font-family: 'Noto Sans Devanagari', sans-serif; }

/* =============================================
   NAVIGATION
   ============================================= */
.site-header {
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: linear-gradient(to right, var(--russet), var(--burnt-sienna), var(--deep-ochre));
  border-bottom: 1px solid rgba(212, 175, 55, 0.4);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}

.site-header .header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 48px;
  flex-wrap: wrap;
  gap: 12px;
}

.site-branding {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(212,175,55,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #ffe2b5;
  flex-shrink: 0;
}

.brand-name {
  font-size: 18px;
  font-weight: 700;
  color: #fff4dc;
  letter-spacing: -0.3px;
  display: block;
}

.brand-subtitle {
  font-size: 11px;
  color: #ffe0a8;
  letter-spacing: 1px;
  display: block;
}

/* Primary Navigation */
#primary-menu {
  display: flex;
  gap: 32px;
  align-items: center;
}

#primary-menu li a {
  color: #fff3d8;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  font-weight: 500;
  border-bottom: 2px solid transparent;
  padding-bottom: 2px;
  transition: all 0.2s ease;
}

#primary-menu li a:hover,
#primary-menu li.current-menu-item a,
#primary-menu li.current_page_item a {
  color: #ffe08a;
  border-bottom-color: #ffe08a;
}

.header-cta {
  display: inline-block;
  background: #fff3d8;
  color: var(--russet) !important;
  padding: 8px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 12px;
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
  border-bottom: none !important;
}

.header-cta:hover {
  background: var(--gold-muted) !important;
  color: white !important;
  transform: translateY(-2px);
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff3d8;
  font-size: 24px;
  cursor: pointer;
  padding: 4px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--russet);
  width: 100%;
}

.mobile-menu a {
  padding: 12px 20px;
  color: #fff3d8;
  border-bottom: 1px solid rgba(212,175,55,0.3);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1.2px;
  transition: background 0.2s;
}

.mobile-menu a:hover { background: var(--burnt-sienna); }

/* =============================================
   MANTRA SCROLLING BANNER
   ============================================= */
.mantra-banner {
  background: linear-gradient(to right, var(--charcoal), var(--stone), var(--charcoal));
  padding: 12px 0;
  overflow: hidden;
  white-space: nowrap;
}

.mantra-track {
  display: flex;
  width: max-content;
  animation: endlessMantra 28s linear infinite;
}

.mantra-text {
  font-family: 'Noto Sans Devanagari', sans-serif;
  color: var(--gold-muted);
  font-size: 1rem;
  letter-spacing: 4px;
  padding-right: 3rem;
  white-space: nowrap;
}

@keyframes endlessMantra {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =============================================
   HERO SECTION
   ============================================= */
.hero-section {
  position: relative;
  min-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-section.page-hero { min-height: 58vh; }
.hero-section.contact-hero { min-height: 55vh; }
.hero-section.astrology-hero { min-height: 60vh; }

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.6);
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(44,36,24,0.8), rgba(139,58,26,0.55), rgba(0,0,0,0.75));
}

.hero-dots {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: radial-gradient(circle at 25% 35%, rgba(212,175,55,0.45) 2px, transparent 2px);
  background-size: 45px 45px;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px;
  text-align: center;
}

.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.1);
  color: #f8ddb0;
  font-size: 11px;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: 50px;
  letter-spacing: 2px;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(4px);
}

.hero-title {
  color: white;
  font-size: clamp(2.2rem, 6vw, 4.5rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 16px;
  text-shadow: 0 4px 20px rgba(0,0,0,0.5);
}

.hero-title .highlight { color: #f5d9a8; }

.hero-subtitle {
  font-family: 'Noto Sans Devanagari', sans-serif;
  color: #f0d4a8;
  font-size: 1.3rem;
  letter-spacing: 1px;
  margin-bottom: 20px;
  text-shadow: 0 2px 10px rgba(0,0,0,0.4);
}

.hero-description {
  color: rgba(255,255,255,0.9);
  font-size: 1.05rem;
  max-width: 750px;
  margin: 0 auto 32px;
  line-height: 1.7;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 48px;
  margin-bottom: 36px;
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #f5d9a8;
  display: block;
}

.stat-label {
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  display: block;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn {
  display: inline-block;
  padding: 12px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  transition: all 0.2s ease;
  cursor: pointer;
  text-align: center;
}

.btn-primary {
  background: var(--burnt-sienna);
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.btn-primary:hover {
  background: var(--deep-ochre);
  transform: translateY(-3px);
  color: white;
}

.btn-outline {
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(4px);
  border: 2px solid rgba(255,255,255,0.8);
  color: white;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.btn-outline:hover {
  background: rgba(255,255,255,0.2);
  color: white;
}

.btn-ochre {
  background: var(--deep-ochre);
  color: white;
}

.btn-ochre:hover {
  background: var(--burnt-sienna);
  transform: translateY(-3px);
  color: white;
}

.btn-ochre-outline {
  background: transparent;
  border: 2px solid var(--deep-ochre);
  color: var(--deep-ochre);
}

.btn-ochre-outline:hover {
  background: var(--deep-ochre);
  color: white;
}

.btn-cream {
  background: #fff3d8;
  color: var(--russet);
  box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.btn-cream:hover {
  background: var(--gold-muted);
  color: white;
  transform: translateY(-2px);
}

/* =============================================
   SECTION COMMONS
   ============================================= */
.section-label {
  color: var(--deep-ochre);
  font-size: 11px;
  letter-spacing: 4px;
  text-transform: uppercase;
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  color: var(--charcoal);
}

.section-subtitle {
  color: var(--stone);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

/* =============================================
   MANTRA CARD
   ============================================= */
.mantra-card {
  max-width: 700px;
  margin: 32px auto;
  padding: 0 24px;
}

.mantra-card-inner {
  background: linear-gradient(135deg, #FFF8F0, #FFEFE0);
  border-left: 4px solid var(--burnt-sienna);
  padding: 24px;
  text-align: center;
  border-radius: 16px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.mantra-devanagari {
  font-family: 'Noto Sans Devanagari', sans-serif;
  color: var(--russet);
  font-size: 1.1rem;
  margin-bottom: 8px;
  line-height: 1.8;
}

.mantra-translation {
  color: var(--stone);
  font-size: 13px;
  font-style: italic;
}

/* =============================================
   DEITIES SECTION
   ============================================= */
.deities-section {
  padding: 80px 24px;
  background: var(--ivory-dark);
  text-align: center;
}

.deities-grid {
  max-width: 1500px;
  margin: 48px auto 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.deity-card {
  background: white;
  border-radius: 24px;
  padding: 20px;
  width: 190px;
  flex-shrink: 0;
  border: 1px solid #eddcc8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
  cursor: pointer;
}

.deity-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-muted);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}

.deity-img-wrap {
  width: 100%;
  height: 176px;
  background: #fcf3e5;
  border-radius: 16px;
  overflow: hidden;
}

.deity-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.deity-name {
  display: block;
  margin-top: 16px;
  font-weight: 600;
  font-size: 17px;
  color: var(--stone);
}

/* =============================================
   ABOUT SECTION
   ============================================= */
.about-section {
  padding: 64px 24px;
  background: white;
}

.about-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  align-items: center;
}

.about-photo {
  flex: 1;
  min-width: 280px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 10px 50px rgba(0,0,0,0.2);
}

.about-photo img { width: 100%; height: auto; object-fit: cover; }

.about-text { flex: 1; min-width: 280px; }

.about-name {
  font-size: clamp(1.6rem, 3vw, 2rem);
  font-weight: 700;
  margin: 8px 0 4px;
}

.about-title-italic {
  font-family: 'Cormorant Garamond', serif;
  color: var(--deep-ochre);
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 20px;
  display: block;
}

.about-text p {
  color: var(--stone);
  line-height: 1.75;
  margin-bottom: 16px;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.tag {
  background: #f5eddf;
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--charcoal);
}

/* =============================================
   SERVICES SECTION
   ============================================= */
.services-section {
  padding: 64px 24px;
  background: #fcf7ef;
}

.services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.service-card {
  background: white;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  border: 1px solid #f0e3d4;
  transition: all 0.25s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.service-icon {
  font-size: 2.5rem;
  color: var(--burnt-sienna);
  margin-bottom: 12px;
}

.service-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--charcoal);
}

.service-card p {
  color: var(--stone);
  font-size: 13px;
  line-height: 1.6;
}

/* =============================================
   ASTROLOGY SECTION
   ============================================= */
.astrology-section {
  padding: 64px 24px;
  background: white;
}

.astrology-cards {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 24px;
}

.astro-card {
  background: #fef9f2;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  min-width: 150px;
  border: 1px solid #eddbcc;
  flex: 1;
  max-width: 200px;
}

.astro-card i { font-size: 2rem; color: var(--burnt-sienna); }
.astro-card h4 { font-weight: 600; margin: 8px 0 4px; font-size: 0.95rem; }
.astro-card small { color: var(--stone); font-size: 12px; }

/* =============================================
   RITUAL CARDS
   ============================================= */
.rituals-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.ritual-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  border: 1px solid #f0e3d4;
  transition: all 0.25s ease;
}

.ritual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.ritual-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: #fcf3e5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ritual-icon-wrap i { font-size: 1.8rem; color: var(--burnt-sienna); }
.ritual-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.ritual-card p { color: var(--stone); font-size: 13px; line-height: 1.6; }

/* =============================================
   PROCESS SECTION
   ============================================= */
.process-section {
  padding: 64px 24px;
  background: white;
}

.process-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.process-steps { display: flex; flex-direction: column; gap: 20px; }

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-number {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--burnt-sienna);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
}

.step-content h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 4px; }
.step-content p { color: var(--stone); font-size: 13px; line-height: 1.6; }

.mantra-quote-card {
  background: linear-gradient(135deg, #FFF8F0, #FFEFE0);
  border-left: 4px solid var(--burnt-sienna);
  padding: 32px;
  border-radius: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
  text-align: center;
}

.mantra-quote-card .devanagari {
  font-family: 'Noto Sans Devanagari', sans-serif;
  color: var(--russet);
  font-size: 1.3rem;
  margin-bottom: 16px;
  line-height: 1.8;
}

.mantra-quote-card p {
  color: var(--stone);
  font-style: italic;
  line-height: 1.7;
}

/* =============================================
   CONTACT SECTION
   ============================================= */
.contact-section {
  padding: 80px 24px;
  background: var(--ivory-dark);
}

.contact-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.contact-card, .contact-form-card {
  background: white;
  border-radius: 24px;
  padding: 36px;
  border: 1px solid #eddcc8;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.contact-card-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fcf3e5;
  border: 1px solid #eddcc8;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--burnt-sienna);
  margin-bottom: 16px;
}

.contact-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.contact-card > p { color: var(--stone); line-height: 1.7; margin-bottom: 24px; }

.contact-info-items { display: flex; flex-direction: column; gap: 16px; }

.contact-info-item {
  display: flex;
  gap: 16px;
  background: #fff9ef;
  border-radius: 16px;
  padding: 20px;
  border: 1px solid #f0e3d4;
}

.info-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--burnt-sienna);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.info-content strong { display: block; color: var(--charcoal); margin-bottom: 4px; font-size: 14px; }
.info-content span, .info-content a { color: var(--stone); font-size: 14px; line-height: 1.5; }
.info-content a { color: var(--deep-ochre); }
.info-content a:hover { color: var(--burnt-sienna); }

/* Contact Form */
.contact-form-card h3 { font-size: 1.4rem; font-weight: 700; margin-bottom: 8px; }
.contact-form-card > p { color: var(--stone); line-height: 1.7; margin-bottom: 28px; }

.form-group { margin-bottom: 20px; }

.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  border-radius: 16px;
  border: 1px solid #e5d5c3;
  background: #fffaf3;
  padding: 12px 20px;
  color: var(--stone);
  font-family: 'Inter', sans-serif;
  font-size: 14px;
  transition: all 0.2s ease;
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burnt-sienna);
  box-shadow: 0 0 0 3px rgba(181,69,26,0.12);
}

.form-group textarea { resize: none; }

.form-submit {
  width: 100%;
  background: var(--burnt-sienna);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 13px;
  cursor: pointer;
  transition: all 0.2s ease;
  box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

.form-submit:hover {
  background: var(--deep-ochre);
  transform: translateY(-2px);
}

/* =============================================
   STATS ROW
   ============================================= */
.stats-section {
  padding: 56px 24px;
  background: var(--ivory-dark);
}

.stats-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  border: 1px solid #eddcc8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.stat-card .number {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--deep-ochre);
  display: block;
  margin-bottom: 4px;
}

.stat-card .label {
  color: var(--stone);
  font-weight: 500;
  font-size: 14px;
}

/* =============================================
   TIMELINE / JOURNEY
   ============================================= */
.journey-section {
  padding: 64px 24px;
  background: white;
}

.journey-items {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.journey-item {
  display: flex;
  gap: 20px;
  background: #fef9f2;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #eddbcc;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.journey-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--burnt-sienna);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.journey-item h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 8px; }
.journey-item p { color: var(--stone); line-height: 1.7; font-size: 14px; }

/* =============================================
   ASTROLOGY INTRO SECTION
   ============================================= */
.astrology-intro {
  padding: 64px 24px;
  background: var(--ivory-dark);
}

.astrology-intro-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.astrology-tags { display: flex; flex-wrap: wrap; gap: 10px; }

.astro-tag {
  background: white;
  border: 1px solid #eddcc8;
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  color: var(--stone);
}

.astrology-reading-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  border: 1px solid #eddcc8;
  box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

.reading-inner {
  background: linear-gradient(135deg, #FFF8F0, #FFEFE0);
  border-radius: 24px;
  padding: 32px;
  text-align: center;
  border: 1px solid #f0e3d4;
}

.reading-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--burnt-sienna);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.reading-inner h3 { font-size: 1.5rem; font-weight: 700; margin-bottom: 12px; }
.reading-inner p { color: var(--stone); line-height: 1.7; margin-bottom: 20px; }

.reading-details {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 12px;
}

.reading-detail {
  background: white;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #eddcc8;
  text-align: center;
}

.reading-detail i { color: var(--burnt-sienna); margin-bottom: 8px; font-size: 1.1rem; }
.reading-detail p { font-weight: 600; font-size: 13px; }

/* =============================================
   ASTROLOGY SERVICES
   ============================================= */
.astrology-services-section {
  padding: 64px 24px;
  background: white;
}

.astrology-services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.astro-service-card {
  background: #fef9f2;
  border-radius: 20px;
  padding: 28px;
  text-align: center;
  border: 1px solid #eddbcc;
  transition: all 0.2s ease;
}

.astro-service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 25px rgba(0,0,0,0.1);
}

.astro-service-card i { font-size: 2.5rem; color: var(--burnt-sienna); margin-bottom: 12px; }
.astro-service-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.astro-service-card p { color: var(--stone); font-size: 13px; line-height: 1.6; }

/* =============================================
   SPIRITUAL SECTION
   ============================================= */
.spiritual-cards-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.spiritual-card {
  background: white;
  border-radius: 24px;
  padding: 28px;
  text-align: center;
  border: 1px solid #f0e3d4;
  transition: all 0.25s ease;
}

.spiritual-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.spiritual-icon-wrap {
  width: 64px;
  height: 64px;
  margin: 0 auto 16px;
  border-radius: 16px;
  background: #fcf3e5;
  display: flex;
  align-items: center;
  justify-content: center;
}

.spiritual-icon-wrap i { font-size: 1.8rem; color: var(--burnt-sienna); }
.spiritual-card h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 8px; }
.spiritual-card p { color: var(--stone); font-size: 13px; line-height: 1.6; }

/* =============================================
   CTA BANNER
   ============================================= */
.cta-section {
  padding: 64px 24px;
  background: var(--ivory-dark);
}

.cta-inner {
  max-width: 950px;
  margin: 0 auto;
  background: linear-gradient(135deg, var(--russet), var(--burnt-sienna), var(--deep-ochre));
  border-radius: 24px;
  padding: 48px;
  text-align: center;
  box-shadow: 0 10px 40px rgba(0,0,0,0.2);
  color: white;
}

.cta-inner .cta-icon { font-size: 2.5rem; color: #ffe2b5; margin-bottom: 16px; }
.cta-inner h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); font-weight: 700; margin-bottom: 16px; color: white; }
.cta-inner p { color: rgba(255,255,255,0.9); max-width: 600px; margin: 0 auto 28px; line-height: 1.7; }

/* =============================================
   QUICK SERVICE CARDS (Contact Page)
   ============================================= */
.quick-services {
  padding: 0 24px 80px;
  background: var(--ivory-dark);
}

.quick-services-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}

.quick-card {
  background: white;
  border-radius: 20px;
  padding: 24px;
  text-align: center;
  border: 1px solid #f0e3d4;
  transition: all 0.2s ease;
}

.quick-card:hover { transform: translateY(-4px); box-shadow: 0 6px 25px rgba(0,0,0,0.1); }
.quick-card i { font-size: 2.5rem; color: var(--burnt-sienna); margin-bottom: 12px; }
.quick-card h4 { font-size: 1.1rem; font-weight: 600; margin-bottom: 8px; }
.quick-card p { color: var(--stone); font-size: 13px; line-height: 1.6; }

/* =============================================
   SECTION ACTIONS (buttons row)
   ============================================= */
.section-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: #231F1A;
  color: #cfc5b2;
  padding: 48px 24px 32px;
  text-align: center;
}

.footer-om { font-size: 2rem; opacity: 0.8; color: var(--gold-muted); margin-bottom: 16px; }

.site-footer p { margin-bottom: 12px; font-size: 14px; }

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  margin: 20px 0;
}

.footer-nav a {
  color: #d6b575;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: color 0.2s;
}

.footer-nav a:hover { color: var(--gold-muted); }

.footer-contact { font-size: 13px; }
.footer-contact a { color: #d6b575; }
.footer-contact a:hover { color: var(--gold-muted); }

.footer-copy {
  margin-top: 20px;
  font-size: 12px;
  color: #a29178;
}

/* =============================================
   WORDPRESS CONTENT AREA
   ============================================= */
.entry-content {
  max-width: 900px;
  margin: 48px auto;
  padding: 0 24px;
  color: var(--stone);
  line-height: 1.75;
}

.entry-content h1, .entry-content h2, .entry-content h3 { color: var(--charcoal); margin-bottom: 16px; margin-top: 32px; }
.entry-content p { margin-bottom: 16px; }
.entry-content a { color: var(--deep-ochre); }
.entry-content a:hover { color: var(--burnt-sienna); }

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
  .contact-grid { grid-template-columns: 1fr; }
  .process-inner { grid-template-columns: 1fr; }
  .astrology-intro-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .site-header .header-inner { padding: 12px 20px; flex-wrap: nowrap; justify-content: space-between; align-items: center; gap: 8px; }
  #primary-menu { display: none; }
  .header-right { display: flex; align-items: center; margin-left: auto; margin-right: 10px; }
  .header-right .header-cta { display: inline-block; padding: 7px 14px; font-size: 11px; white-space: nowrap; }
  .menu-toggle { display: block; flex-shrink: 0; }
  .stats-grid { grid-template-columns: 1fr; }
  .about-inner { flex-direction: column; }
  .hero-stats { gap: 32px; }
  .cta-inner { padding: 32px 24px; }
  .astrology-cards { gap: 16px; }
  .astro-card { min-width: 120px; }
  .services-grid, .rituals-grid, .astrology-services-grid { grid-template-columns: 1fr; }
  .quick-services-grid { grid-template-columns: repeat(2, 1fr); }
  .reading-details { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 1.8rem; }
  .hero-stats { flex-direction: column; gap: 20px; }
  .deities-grid { gap: 16px; }
  .deity-card { width: 150px; }
  .deity-img-wrap { height: 140px; }
  .quick-services-grid { grid-template-columns: 1fr; }
}

/* =============================================
   WIDGETS
   ============================================= */
.widget-area { padding: 24px; }
.widget { margin-bottom: 32px; }
.widget-title { font-size: 1.1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }

/* =============================================
   V2 ADDITIONS — Social, Gallery, Blog, Breadcrumbs
   ============================================= */

/* --- SOCIAL LINKS BAR --- */
.social-bar {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: all 0.2s ease;
  text-decoration: none;
  flex-shrink: 0;
}
.social-link.facebook  { background: #1877F2; color: white; }
.social-link.instagram { background: linear-gradient(45deg,#f09433,#e6683c,#dc2743,#cc2366,#bc1888); color: white; }
.social-link.youtube   { background: #FF0000; color: white; }
.social-link.twitter   { background: #000; color: white; }
.social-link.whatsapp  { background: #25D366; color: white; }
.social-link.email     { background: var(--burnt-sienna); color: white; }
.social-link:hover     { transform: translateY(-3px) scale(1.1); box-shadow: 0 4px 12px rgba(0,0,0,0.25); }

/* Social links inline in contact info */
.contact-social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #f0e3d4;
}
.contact-social-row .social-link {
  width: 44px;
  height: 44px;
  font-size: 17px;
}

/* Footer social */
.footer-social {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin: 20px 0;
}
.footer-social .social-link {
  opacity: 0.85;
}
.footer-social .social-link:hover {
  opacity: 1;
}

/* Floating social bar (side) */
.floating-social {
  position: fixed;
  right: 16px;
  bottom: 80px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 900;
}
.floating-social .social-link {
  width: 44px;
  height: 44px;
  font-size: 17px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.25);
}
@media (max-width: 768px) {
  .floating-social { right: 10px; bottom: 70px; }
  .floating-social .social-link { width: 38px; height: 38px; font-size: 15px; }
}

/* --- BREADCRUMBS --- */
.breadcrumbs {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 24px;
  font-size: 13px;
  color: var(--stone);
  background: var(--ivory-dark);
  border-bottom: 1px solid #eddcc8;
}
.breadcrumbs a {
  color: var(--deep-ochre);
  transition: color 0.2s;
}
.breadcrumbs a:hover { color: var(--burnt-sienna); }
.breadcrumbs span   { margin: 0 6px; color: var(--stone); }

/* --- GALLERY PAGE --- */
.gallery-section {
  padding: 64px 24px;
  background: var(--ivory-dark);
}
.gallery-filters {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
}
.gallery-filter-btn {
  padding: 8px 22px;
  border-radius: 50px;
  border: 2px solid var(--deep-ochre);
  background: transparent;
  color: var(--deep-ochre);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Inter', sans-serif;
}
.gallery-filter-btn:hover,
.gallery-filter-btn.active {
  background: var(--deep-ochre);
  color: white;
}
.gallery-grid {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 24px;
}
.gallery-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eddcc8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  transition: all 0.25s ease;
}
.gallery-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.14);
}
.gallery-card-thumb {
  position: relative;
  width: 100%;
  height: 220px;
  overflow: hidden;
  background: #fcf3e5;
}
.gallery-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}
.gallery-card:hover .gallery-card-thumb img {
  transform: scale(1.05);
}
.gallery-card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s;
}
.gallery-card:hover .gallery-card-overlay {
  background: rgba(0,0,0,0.4);
}
.gallery-card-overlay i {
  color: white;
  font-size: 2rem;
  opacity: 0;
  transition: opacity 0.25s;
}
.gallery-card:hover .gallery-card-overlay i { opacity: 1; }

.gallery-card-info {
  padding: 18px 20px 20px;
}
.gallery-card-category {
  color: var(--deep-ochre);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 6px;
}
.gallery-card-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 6px;
  line-height: 1.4;
}
.gallery-card-date {
  font-size: 12px;
  color: var(--stone);
}
.gallery-card-excerpt {
  font-size: 13px;
  color: var(--stone);
  line-height: 1.6;
  margin-top: 8px;
}

/* Gallery lightbox grid inside single event */
.event-photo-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 24px;
}
.event-photo-item {
  border-radius: 12px;
  overflow: hidden;
  height: 160px;
  background: #fcf3e5;
}
.event-photo-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.event-photo-item:hover img { transform: scale(1.06); }

/* --- BLOG --- */
.blog-section {
  padding: 64px 24px;
  background: var(--ivory-dark);
}
.blog-layout {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) {
  .blog-layout { grid-template-columns: 1fr; }
}
.blog-posts-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.blog-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eddcc8;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  transition: all 0.25s;
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.blog-card-thumb {
  width: 100%;
  height: 240px;
  overflow: hidden;
  background: #fcf3e5;
  flex-shrink: 0;
}
.blog-card-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}
.blog-card:hover .blog-card-thumb img { transform: scale(1.04); }
.blog-card-body {
  padding: 24px 28px 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-card-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}
.blog-card-category {
  color: var(--deep-ochre);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  background: #fef9f2;
  padding: 3px 10px;
  border-radius: 50px;
  border: 1px solid #eddcc8;
}
.blog-card-date {
  color: var(--stone);
  font-size: 12px;
}
.blog-card-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 10px;
  line-height: 1.4;
  text-decoration: none;
  display: block;
  transition: color 0.2s;
}
.blog-card-title:hover { color: var(--burnt-sienna); }
.blog-card-excerpt {
  color: var(--stone);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 16px;
  flex: 1;
}
.blog-card-read-more {
  color: var(--deep-ochre);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.2s;
}
.blog-card-read-more:hover { gap: 10px; color: var(--burnt-sienna); }

/* Blog Sidebar */
.blog-sidebar .widget {
  background: white;
  border-radius: 16px;
  padding: 24px;
  border: 1px solid #eddcc8;
  margin-bottom: 24px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.blog-sidebar .widget-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--deep-ochre);
  display: flex;
  align-items: center;
  gap: 8px;
}
.blog-sidebar ul { list-style: none; }
.blog-sidebar ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f0e3d4;
  font-size: 13px;
}
.blog-sidebar ul li:last-child { border-bottom: none; }
.blog-sidebar ul li a { color: var(--stone); transition: color 0.2s; }
.blog-sidebar ul li a:hover { color: var(--burnt-sienna); }

/* Blog contact widget */
.sidebar-contact-widget {
  background: linear-gradient(135deg, var(--russet), var(--burnt-sienna)) !important;
  color: white;
  border: none !important;
  text-align: center;
}
.sidebar-contact-widget .widget-title { color: white !important; border-color: rgba(255,255,255,0.3) !important; }
.sidebar-contact-widget p { color: rgba(255,255,255,0.9); font-size: 13px; margin-bottom: 16px; }
.sidebar-social { display: flex; justify-content: center; gap: 10px; margin-top: 16px; }

/* Single Blog Post */
.single-post-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 40px;
  align-items: start;
}
@media (max-width: 900px) { .single-post-wrap { grid-template-columns: 1fr; } }
.post-article {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid #eddcc8;
}
.post-featured-img {
  width: 100%;
  height: 380px;
  overflow: hidden;
}
.post-featured-img img { width: 100%; height: 100%; object-fit: cover; }
.post-article-body { padding: 36px 40px 40px; }
@media (max-width: 600px) { .post-article-body { padding: 24px 20px; } }
.post-meta-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.post-category-badge {
  background: #fef9f2;
  border: 1px solid #eddcc8;
  color: var(--deep-ochre);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 50px;
}
.post-date, .post-author { color: var(--stone); font-size: 13px; }
.post-title {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 24px;
  line-height: 1.3;
}
.post-content {
  color: var(--stone);
  line-height: 1.85;
  font-size: 15px;
}
.post-content h2, .post-content h3 { color: var(--charcoal); margin: 28px 0 12px; }
.post-content p  { margin-bottom: 18px; }
.post-content a  { color: var(--deep-ochre); }
.post-content a:hover { color: var(--burnt-sienna); }
.post-content img { border-radius: 12px; margin: 16px 0; }
.post-content blockquote {
  border-left: 4px solid var(--burnt-sienna);
  background: #fff9ef;
  padding: 16px 20px;
  margin: 20px 0;
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--stone);
}
.post-tags {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid #eddcc8;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
}
.post-tag {
  background: #f5eddf;
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 12px;
  color: var(--stone);
  text-decoration: none;
  transition: background 0.2s;
}
.post-tag:hover { background: var(--deep-ochre); color: white; }
.post-share {
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid #eddcc8;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}
.post-share span { font-weight: 600; font-size: 13px; color: var(--charcoal); }
.share-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 16px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s;
}
.share-btn.facebook  { background: #1877F2; color: white; }
.share-btn.whatsapp  { background: #25D366; color: white; }
.share-btn.copy-link { background: var(--ivory-dark); color: var(--stone); border: 1px solid #eddcc8; cursor: pointer; border: none; font-family: inherit; }
.share-btn:hover     { opacity: 0.85; transform: translateY(-1px); }

/* Pagination */
.pagination-wrap {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
  flex-wrap: wrap;
}
.pagination-wrap a,
.pagination-wrap span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.2s;
  border: 2px solid #eddcc8;
  color: var(--stone);
  text-decoration: none;
}
.pagination-wrap a:hover     { background: var(--deep-ochre); color: white; border-color: var(--deep-ochre); }
.pagination-wrap .current   { background: var(--burnt-sienna); color: white; border-color: var(--burnt-sienna); }

/* --- CONTACT FORM AJAX STATES --- */
.form-message {
  padding: 14px 20px;
  border-radius: 12px;
  font-size: 14px;
  margin-bottom: 20px;
  display: none;
  align-items: center;
  gap: 10px;
}
.form-message.success { background:#d4edda; border:1px solid #c3e6cb; color:#155724; display:flex; }
.form-message.error   { background:#f8d7da; border:1px solid #f5c6cb; color:#721c24; display:flex; }
.form-message.loading { background:#d1ecf1; border:1px solid #bee5eb; color:#0c5460;  display:flex; }

/* --- RITUALS — Additional cards row --- */
.rituals-extra-section {
  padding: 0 24px 64px;
  background: #fcf7ef;
}
.rituals-extra-heading {
  max-width: 1200px;
  margin: 0 auto 28px;
}
.rituals-extra-heading h3 {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 6px;
}
.rituals-extra-heading p {
  color: var(--stone);
  font-size: 14px;
}
.rituals-extra-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 20px;
}
.ritual-extra-card {
  background: white;
  border-radius: 16px;
  padding: 22px 20px;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  border: 1px solid #f0e3d4;
  transition: all 0.2s;
}
.ritual-extra-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.09); }
.ritual-extra-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: #fcf3e5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--burnt-sienna);
  flex-shrink: 0;
}
.ritual-extra-card h4 { font-size: 0.95rem; font-weight: 600; margin-bottom: 4px; }
.ritual-extra-card p  { font-size: 12px; color: var(--stone); line-height: 1.5; }

/* --- CONTACT — direct reach row --- */
.contact-reach-row {
  max-width: 1200px;
  margin: 0 auto 40px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}
.reach-card {
  display: flex;
  align-items: center;
  gap: 14px;
  background: white;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid #eddcc8;
  text-decoration: none;
  transition: all 0.2s;
  color: var(--charcoal);
}
.reach-card:hover { transform: translateY(-3px); box-shadow: 0 6px 20px rgba(0,0,0,0.1); }
.reach-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: white;
  flex-shrink: 0;
}
.reach-icon.fb   { background: #1877F2; }
.reach-icon.ig   { background: linear-gradient(45deg,#f09433,#dc2743,#bc1888); }
.reach-icon.wa   { background: #25D366; }
.reach-icon.em   { background: var(--burnt-sienna); }
.reach-icon.ph   { background: var(--deep-ochre); }
.reach-label     { font-weight: 600; font-size: 13px; display: block; }
.reach-value     { font-size: 12px; color: var(--stone); }


/* =============================================
   HEADER RIGHT — social icons + CTA
   ============================================= */
.header-right {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.header-social-icons {
    display: flex;
    align-items: center;
    gap: 7px;
}

.header-social-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: white !important;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    flex-shrink: 0;
}
.header-social-icon:hover {
    transform: translateY(-2px) scale(1.12);
    box-shadow: 0 3px 10px rgba(0,0,0,0.3);
    color: white !important;
}

/* Hide social icons on small screens — keep floating sidebar */
@media (max-width: 900px) {
    .header-social-icons { display: none; }
}
@media (max-width: 768px) {
    /* header-right handled above in main mobile breakpoint */
}

/* Mobile menu social row */
.mobile-social-row {
    display: flex;
    gap: 10px;
    padding: 14px 20px;
    background: rgba(0,0,0,0.15);
    border-top: 1px solid rgba(212,175,55,0.2);
    flex-wrap: wrap;
}

/* Floating social — ensure always visible */
.floating-social {
    position: fixed;
    right: 16px;
    bottom: 80px;
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    z-index: 9999;
}
.floating-social .social-link {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    color: white !important;
    text-decoration: none;
    box-shadow: 0 3px 12px rgba(0,0,0,0.3);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.floating-social .social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 6px 18px rgba(0,0,0,0.35);
    color: white !important;
}

@media (max-width: 768px) {
    .floating-social {
        right: 10px;
        bottom: 16px;
    }
    .floating-social .social-link {
        width: 40px;
        height: 40px;
        font-size: 15px;
    }
}
