/*
Theme Name: AstrologerAcharyaDevraj
Theme URI: https://astrologyexperts.in
Author: Jyotish Acharya Devraj Ji
Author URI: https://astrologyexperts.in
Description: A premium, spiritual, and professional WordPress theme for Astrology Services. Fully compatible with Elementor & WPBakery Page Builder. SEO optimized, mobile responsive, and fast loading.
Version: 1.0.0
Requires at least: 5.8
Tested up to: 6.5
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: astrologer-acharyaDevraj
Tags: astrology, spiritual, elementor, wpbakery, seo-optimized, responsive
*/

/* ============================================
   ROOT VARIABLES
============================================ */
:root {
  --primary-color: #e8a020;
  --secondary-color: #d4600a;
  --accent-color: #8b4513;
  --dark-brown: #3e1c00;
  --light-gold: #fdf3dc;
  --white: #ffffff;
  --text-dark: #2c1a00;
  --text-muted: #7a5c3a;
  --border-color: #e8c87a;
  --gradient-main: linear-gradient(135deg, #e8a020 0%, #d4600a 50%, #8b4513 100%);
  --gradient-light: linear-gradient(135deg, #fdf3dc 0%, #fff8ee 100%);
  --shadow-soft: 0 4px 20px rgba(232,160,32,0.15);
  --shadow-strong: 0 8px 40px rgba(212,96,10,0.25);
  --font-primary: 'Georgia', 'Times New Roman', serif;
  --font-secondary: 'Arial', 'Helvetica', sans-serif;
  --border-radius: 12px;
  --transition: all 0.3s ease;
}

/* ============================================
   RESET & BASE
============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-secondary);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--primary-color); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--secondary-color); }
ul { list-style: none; }
h1,h2,h3,h4,h5,h6 { font-family: var(--font-primary); color: var(--dark-brown); line-height: 1.3; font-weight: 700; }

/* ============================================
   CONTAINER
============================================ */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.container-fluid { width: 100%; padding: 0 20px; }

/* ============================================
   TYPOGRAPHY
============================================ */
h1 { font-size: clamp(2rem, 4vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.5rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: 1.3rem; }
h5 { font-size: 1.1rem; }
p { margin-bottom: 1rem; color: var(--text-muted); }
.section-title { text-align: center; margin-bottom: 50px; }
.section-title h2 { color: var(--dark-brown); position: relative; padding-bottom: 20px; }
.section-title h2::after {
  content: '';
  display: block;
  width: 80px;
  height: 4px;
  background: var(--gradient-main);
  margin: 15px auto 0;
  border-radius: 2px;
}
.section-title p { color: var(--text-muted); font-size: 1.05rem; max-width: 600px; margin: 0 auto; }

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  text-align: center;
  letter-spacing: 0.5px;
}
.btn-primary {
  background: var(--gradient-main);
  color: var(--white);
  box-shadow: var(--shadow-soft);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-strong);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--primary-color);
  border: 2px solid var(--primary-color);
}
.btn-outline:hover {
  background: var(--gradient-main);
  color: var(--white);
  border-color: transparent;
}
.btn-white {
  background: var(--white);
  color: var(--dark-brown);
  box-shadow: var(--shadow-soft);
}
.btn-white:hover { background: var(--light-gold); transform: translateY(-3px); }

/* ============================================
   HEADER & NAVIGATION
============================================ */
#site-header {
  position: sticky;
  top: 0;
  z-index: 9999;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.1);
  transition: var(--transition);
}
#site-header.scrolled {
  box-shadow: 0 4px 30px rgba(232,160,32,0.2);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
}
.site-branding .site-title { font-size: 1.6rem; font-family: var(--font-primary); }
.site-branding .site-title a { color: var(--dark-brown); }
.site-branding .site-title a:hover { color: var(--primary-color); }
.site-branding .site-description { font-size: 0.8rem; color: var(--text-muted); }
.site-branding .custom-logo { max-height: 70px; width: auto; }

/* NAV */
.main-navigation { display: flex; align-items: center; gap: 30px; }
.main-navigation ul { display: flex; gap: 5px; }
.main-navigation ul li a {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--text-dark);
  border-radius: 6px;
  transition: var(--transition);
  position: relative;
}
.main-navigation ul li a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-main);
  transition: var(--transition);
}
.main-navigation ul li a:hover::after,
.main-navigation ul li.current-menu-item a::after { width: 60%; }
.main-navigation ul li a:hover,
.main-navigation ul li.current-menu-item > a { color: var(--primary-color); }

.header-cta .btn { padding: 10px 24px; font-size: 0.9rem; }

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--dark-brown);
  border-radius: 2px;
  transition: var(--transition);
}

/* ============================================
   HERO SECTION
============================================ */
.hero-section {
  min-height: 90vh;
  background: var(--gradient-main);
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('assets/images/hero-pattern.svg') repeat;
  opacity: 0.08;
}
.hero-section::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 80px;
  background: var(--white);
  clip-path: ellipse(55% 100% at 50% 100%);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 80px 0;
}
.hero-content { color: var(--white); }
.hero-badge {
  display: inline-block;
  background: rgba(255,255,255,0.2);
  color: var(--white);
  padding: 6px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 20px;
  border: 1px solid rgba(255,255,255,0.3);
  letter-spacing: 1px;
  text-transform: uppercase;
}
.hero-content h1 { color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 10px rgba(0,0,0,0.2); }
.hero-content p { color: rgba(255,255,255,0.88); font-size: 1.1rem; margin-bottom: 35px; }
.hero-buttons { display: flex; gap: 15px; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 30px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255,255,255,0.2);
}
.hero-stat .number { font-size: 2rem; font-weight: 700; color: var(--white); font-family: var(--font-primary); }
.hero-stat .label { font-size: 0.8rem; color: rgba(255,255,255,0.75); }
.hero-image { text-align: center; }
.hero-image img {
  max-height: 500px;
  border-radius: 20px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.hero-floating-card {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 16px 20px;
  box-shadow: var(--shadow-strong);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: float 3s ease-in-out infinite;
}
.hero-floating-card.card-1 { top: 20%; right: -20px; }
.hero-floating-card.card-2 { bottom: 20%; left: -20px; animation-delay: 1.5s; }
.hero-floating-card .icon { font-size: 1.8rem; }
.hero-floating-card .info .title { font-size: 0.8rem; font-weight: 700; color: var(--dark-brown); }
.hero-floating-card .info .subtitle { font-size: 0.7rem; color: var(--text-muted); }

@keyframes float {
  0%,100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   SECTION GENERIC
============================================ */
section { padding: 80px 0; }
.section-light { background: var(--light-gold); }
.section-dark { background: var(--dark-brown); }
.section-gradient { background: var(--gradient-main); }

/* ============================================
   CALCULATORS SECTION
============================================ */
.calculators-section { background: var(--light-gold); }
.calculators-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.calculator-card {
  background: var(--white);
  border-radius: var(--border-radius);
  padding: 35px 25px;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.calculator-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.calc-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-main);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin-bottom: 20px;
}
.calculator-card h3 { color: var(--dark-brown); margin-bottom: 10px; }
.calculator-card p { font-size: 0.9rem; margin-bottom: 20px; }
.calc-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 12px; }
.calc-form input, .calc-form select {
  width: 100%;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.9rem;
  background: #fffdf5;
  color: var(--text-dark);
  transition: var(--transition);
}
.calc-form input:focus, .calc-form select:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(232,160,32,0.15);
}
.calc-result {
  margin-top: 15px;
  padding: 15px;
  background: var(--light-gold);
  border-radius: 8px;
  border-left: 4px solid var(--primary-color);
  display: none;
}
.calc-result.show { display: block; }
.calc-result h4 { font-size: 1rem; color: var(--dark-brown); margin-bottom: 5px; }
.calc-result p { font-size: 0.85rem; margin: 0; }

/* ============================================
   SERVICES SECTION
============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); }
.service-card-img { position: relative; overflow: hidden; height: 200px; }
.service-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.service-card:hover .service-card-img img { transform: scale(1.08); }
.service-card-img .service-overlay {
  position: absolute;
  inset: 0;
  background: var(--gradient-main);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-card:hover .service-overlay { opacity: 0.7; }
.service-card-body { padding: 25px; }
.service-card-body h3 { font-size: 1.2rem; margin-bottom: 10px; color: var(--dark-brown); }
.service-card-body p { font-size: 0.9rem; margin-bottom: 18px; }

/* ============================================
   REVIEWS / TESTIMONIALS
============================================ */
.reviews-section { background: var(--dark-brown); }
.reviews-section .section-title h2 { color: var(--light-gold); }
.reviews-section .section-title p { color: rgba(255,255,255,0.7); }
.reviews-slider-wrapper { position: relative; overflow: hidden; }
.reviews-slider { display: flex; gap: 25px; transition: transform 0.5s ease; }
.review-card {
  min-width: calc(33.333% - 17px);
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(232,160,32,0.3);
  border-radius: var(--border-radius);
  padding: 30px;
  flex-shrink: 0;
}
.review-stars { color: var(--primary-color); font-size: 1.2rem; margin-bottom: 15px; letter-spacing: 2px; }
.review-text { color: rgba(255,255,255,0.85); font-style: italic; margin-bottom: 20px; font-size: 0.95rem; }
.reviewer { display: flex; align-items: center; gap: 15px; }
.reviewer-img {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--primary-color);
}
.reviewer-info .name { font-weight: 700; color: var(--light-gold); font-size: 0.95rem; }
.reviewer-info .location { font-size: 0.8rem; color: rgba(255,255,255,0.5); }
.slider-controls { display: flex; justify-content: center; gap: 10px; margin-top: 35px; }
.slider-btn {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: transparent;
  color: var(--primary-color);
  font-size: 1.2rem;
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.slider-btn:hover { background: var(--primary-color); color: var(--white); }

/* ============================================
   BLOG SECTION
============================================ */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.blog-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }
.blog-card-img { height: 200px; overflow: hidden; }
.blog-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.blog-card-body { padding: 22px; }
.blog-meta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}
.blog-cat {
  background: var(--light-gold);
  color: var(--secondary-color);
  padding: 3px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}
.blog-date { font-size: 0.78rem; color: var(--text-muted); }
.blog-card-body h3 { font-size: 1.1rem; margin-bottom: 10px; }
.blog-card-body h3 a { color: var(--dark-brown); }
.blog-card-body h3 a:hover { color: var(--primary-color); }
.blog-card-body p { font-size: 0.88rem; margin-bottom: 16px; }
.blog-tags { display: flex; gap: 8px; flex-wrap: wrap; }
.blog-tag {
  background: transparent;
  border: 1px solid var(--border-color);
  color: var(--text-muted);
  padding: 3px 10px;
  border-radius: 50px;
  font-size: 0.75rem;
}
.blog-section .blog-footer { text-align: center; margin-top: 40px; }
.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 40px; }
.pagination a, .pagination span {
  width: 42px; height: 42px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--border-color);
  font-size: 0.9rem;
  color: var(--text-dark);
  transition: var(--transition);
}
.pagination a:hover, .pagination .current {
  background: var(--gradient-main);
  color: var(--white);
  border-color: transparent;
}

/* ============================================
   YOUTUBE SECTION
============================================ */
.youtube-section { background: var(--light-gold); }
.youtube-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.youtube-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.youtube-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-strong); }
.youtube-thumb {
  position: relative;
  padding-bottom: 56.25%;
  overflow: hidden;
  cursor: pointer;
}
.youtube-thumb img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.youtube-thumb .play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background: rgba(232,160,32,0.9);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  color: var(--white);
  transition: var(--transition);
}
.youtube-thumb:hover .play-btn { background: var(--secondary-color); transform: translate(-50%, -50%) scale(1.1); }
.youtube-card-body { padding: 20px; }
.youtube-card-body h4 { font-size: 1rem; color: var(--dark-brown); margin-bottom: 8px; }
.youtube-card-body p { font-size: 0.85rem; margin: 0; }
.youtube-iframe-wrapper {
  position: absolute;
  inset: 0;
  display: none;
}
.youtube-iframe-wrapper.active { display: block; }
.youtube-iframe-wrapper iframe { width: 100%; height: 100%; border: none; }

/* ============================================
   FOOTER
============================================ */
#site-footer {
  background: var(--dark-brown);
  padding-top: 70px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 50px;
  padding-bottom: 50px;
}
.footer-widget h4 {
  color: var(--light-gold);
  font-size: 1.2rem;
  margin-bottom: 25px;
  padding-bottom: 15px;
  position: relative;
}
.footer-widget h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 3px;
  background: var(--gradient-main);
  border-radius: 2px;
}
.footer-links li { margin-bottom: 10px; }
.footer-links li a {
  color: rgba(255,255,255,0.7);
  font-size: 0.92rem;
  transition: var(--transition);
}
.footer-links li a:hover { color: var(--primary-color); padding-left: 5px; }
.footer-contact-item {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-bottom: 16px;
}
.footer-contact-item .icon {
  color: var(--primary-color);
  font-size: 1.1rem;
  margin-top: 2px;
  min-width: 20px;
}
.footer-contact-item .text { color: rgba(255,255,255,0.75); font-size: 0.9rem; line-height: 1.6; }
.footer-contact-item .text a { color: rgba(255,255,255,0.75); }
.footer-contact-item .text a:hover { color: var(--primary-color); }
.footer-recent-post {
  display: flex;
  gap: 15px;
  align-items: flex-start;
  margin-bottom: 18px;
  padding-bottom: 18px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-recent-post:last-child { border-bottom: none; }
.footer-recent-post img {
  width: 60px;
  height: 60px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}
.footer-recent-post .post-info .title { font-size: 0.85rem; color: rgba(255,255,255,0.85); font-weight: 600; margin-bottom: 4px; }
.footer-recent-post .post-info .title a { color: rgba(255,255,255,0.85); }
.footer-recent-post .post-info .title a:hover { color: var(--primary-color); }
.footer-recent-post .post-info .date { font-size: 0.75rem; color: rgba(255,255,255,0.45); }
.footer-bottom {
  background: rgba(0,0,0,0.3);
  padding: 18px 0;
  text-align: center;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-bottom p { color: rgba(255,255,255,0.55); font-size: 0.85rem; margin: 0; }
.footer-bottom a { color: var(--primary-color); }

/* ============================================
   BLOG / PAGE LAYOUT
============================================ */
.site-main { padding: 60px 0; }
.content-area { float: left; width: 67%; }
.widget-area { float: right; width: 28%; }
.full-width .content-area { width: 100%; float: none; }
.clearfix::after { content: ''; display: table; clear: both; }

/* Single Post */
.single-post-header { padding: 60px 0; background: var(--light-gold); }
.single-post-header h1 { margin-bottom: 20px; }
.post-meta-bar { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.post-meta-item { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-muted); }
.post-meta-item a { color: var(--text-muted); }
.post-meta-item a:hover { color: var(--primary-color); }
.post-featured-img { margin-bottom: 40px; border-radius: var(--border-radius); overflow: hidden; }
.post-featured-img img { width: 100%; height: 400px; object-fit: cover; }
.entry-content { font-size: 1rem; line-height: 1.9; }
.entry-content p { margin-bottom: 1.4rem; }
.entry-content h2, .entry-content h3, .entry-content h4 { margin: 2rem 0 1rem; }
.entry-content ul, .entry-content ol { padding-left: 1.5rem; margin-bottom: 1.4rem; }
.entry-content li { margin-bottom: 0.5rem; }
.post-tags { margin-top: 30px; padding-top: 20px; border-top: 1px solid var(--border-color); }
.post-tags .tag {
  display: inline-block;
  background: var(--light-gold);
  color: var(--secondary-color);
  padding: 5px 14px;
  border-radius: 50px;
  font-size: 0.82rem;
  margin: 4px;
  border: 1px solid var(--border-color);
}

/* Sidebar / Widgets */
.widget { margin-bottom: 35px; background: var(--white); border-radius: var(--border-radius); padding: 25px; border: 1px solid var(--border-color); }
.widget-title { font-size: 1.1rem; color: var(--dark-brown); margin-bottom: 20px; padding-bottom: 12px; border-bottom: 2px solid var(--border-color); position: relative; }
.widget-title::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 50px; height: 2px; background: var(--gradient-main); }
.widget ul li { padding: 8px 0; border-bottom: 1px solid var(--light-gold); font-size: 0.9rem; }
.widget ul li:last-child { border-bottom: none; }
.widget ul li a { color: var(--text-muted); }
.widget ul li a:hover { color: var(--primary-color); }
.search-widget .search-form { display: flex; }
.search-widget .search-input {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--border-color);
  border-right: none;
  border-radius: 8px 0 0 8px;
  font-size: 0.9rem;
}
.search-widget .search-btn {
  padding: 10px 16px;
  background: var(--gradient-main);
  border: none;
  border-radius: 0 8px 8px 0;
  color: var(--white);
  cursor: pointer;
}
.tag-cloud a {
  display: inline-block;
  padding: 5px 12px;
  background: var(--light-gold);
  border-radius: 50px;
  font-size: 0.8rem !important;
  color: var(--secondary-color) !important;
  margin: 3px;
  border: 1px solid var(--border-color);
  transition: var(--transition);
}
.tag-cloud a:hover { background: var(--gradient-main); color: var(--white) !important; border-color: transparent; }

/* ============================================
   BREADCRUMB
============================================ */
.breadcrumb-wrapper {
  background: var(--light-gold);
  padding: 14px 0;
  border-bottom: 1px solid var(--border-color);
}
.breadcrumb { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; }
.breadcrumb a { color: var(--text-muted); }
.breadcrumb a:hover { color: var(--primary-color); }
.breadcrumb span { color: var(--text-muted); }
.breadcrumb .current { color: var(--dark-brown); font-weight: 600; }

/* ============================================
   CONTACT PAGE
============================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.contact-form-wrap h3 { margin-bottom: 25px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.9rem; font-weight: 600; color: var(--dark-brown); margin-bottom: 8px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  font-size: 0.95rem;
  background: #fffdf5;
  color: var(--text-dark);
  transition: var(--transition);
}
.form-group input:focus,
.form-group textarea:focus { outline: none; border-color: var(--primary-color); box-shadow: 0 0 0 3px rgba(232,160,32,0.15); }
.form-group textarea { height: 140px; resize: vertical; }
.contact-info-card { background: var(--gradient-main); border-radius: var(--border-radius); padding: 40px; color: var(--white); }
.contact-info-card h3 { color: var(--white); margin-bottom: 30px; }
.contact-info-item { display: flex; gap: 15px; margin-bottom: 25px; }
.contact-info-item .icon { font-size: 1.5rem; min-width: 30px; }
.contact-info-item .info h5 { color: var(--white); margin-bottom: 5px; }
.contact-info-item .info p { color: rgba(255,255,255,0.8); margin: 0; font-size: 0.9rem; }

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; text-align: center; }
  .hero-image { display: none; }
  .hero-buttons { justify-content: center; }
  .hero-stats { justify-content: center; }
  .calculators-grid { grid-template-columns: 1fr 1fr; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .blog-grid { grid-template-columns: 1fr 1fr; }
  .youtube-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .main-navigation { display: none; }
  .main-navigation.open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); padding: 20px; box-shadow: 0 10px 30px rgba(0,0,0,0.1); z-index: 9998; }
  .main-navigation.open ul { flex-direction: column; width: 100%; }
  .main-navigation.open ul li a { display: block; padding: 12px 0; border-bottom: 1px solid var(--border-color); }
  .menu-toggle { display: flex; }
  .header-cta { display: none; }
  .calculators-grid, .services-grid, .blog-grid, .youtube-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .content-area, .widget-area { float: none; width: 100%; }
  .contact-grid { grid-template-columns: 1fr; }
  .review-card { min-width: 85%; }
  .calc-form .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  section { padding: 50px 0; }
  .hero-section { min-height: 70vh; }
  .hero-stats { flex-wrap: wrap; gap: 20px; }
  .post-featured-img img { height: 220px; }
}

/* ============================================
   ELEMENTOR & WPBAKERY COMPATIBILITY
============================================ */
.elementor-section { margin: 0 !important; }
.vc_row { margin-left: 0 !important; margin-right: 0 !important; }
.wpb_wrapper p:last-child { margin-bottom: 0; }
