/*
Theme Name: Love Spells USA
Theme URI: https://lovespellusa.com
Author: Baba Ali
Author URI: https://lovespellusa.com
Description: A modern, elegant WordPress theme for Love Spells in USA - Baba Ali's professional love spell casting services. Features hero sections, responsive design, and mystical aesthetics.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: lovespellusa
Tags: custom-background, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, one-column, two-columns
*/

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

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

body {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: #333333;
  line-height: 1.7;
  background-color: #FFFFFF;
  overflow-x: hidden;
}

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

a {
  color: #4A0080;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #D4AF37;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', Georgia, 'Times New Roman', serif;
  color: #4A0080;
  line-height: 1.3;
  margin-bottom: 0.75em;
}

h1 { font-size: 2.5rem; }
h2 { font-size: 2rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
  margin-bottom: 1.2em;
}

ul, ol {
  margin-bottom: 1.2em;
  padding-left: 1.5em;
}

blockquote {
  border-left: 4px solid #D4AF37;
  padding: 1em 1.5em;
  margin: 1.5em 0;
  background: #FFF8DC;
  font-style: italic;
  font-family: 'Playfair Display', Georgia, serif;
  color: #4A0080;
}

/* ===== UTILITY CLASSES ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.text-center { text-align: center; }
.text-gold { color: #D4AF37; }
.text-purple { color: #4A0080; }
.text-white { color: #FFFFFF; }
.bg-purple { background-color: #4A0080; }
.bg-gold { background-color: #D4AF37; }
.bg-cream { background-color: #FFF8DC; }
.bg-lavender { background-color: #E6E6FA; }

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

/* ===== HEADER & NAVIGATION ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(74, 0, 128, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
}

.header-top-bar {
  background: #2D004F;
  padding: 6px 0;
  font-size: 0.85rem;
  color: #E6E6FA;
}

.header-top-bar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.header-top-bar a {
  color: #D4AF37;
}

.header-top-bar a:hover {
  color: #FFFFFF;
}

.header-main {
  padding: 12px 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.site-branding .site-title {
  font-family: 'Dancing Script', cursive;
  font-size: 1.6rem;
  color: #D4AF37;
  margin: 0;
  line-height: 1.2;
}

.site-branding .site-title a {
  color: #D4AF37;
}

.site-branding .site-tagline {
  font-size: 0.75rem;
  color: #E6E6FA;
  margin: 0;
  display: block;
}

/* Main Navigation */
.main-navigation {
  display: flex;
  align-items: center;
}

.main-navigation ul {
  list-style: none;
  display: flex;
  gap: 0;
  margin: 0;
  padding: 0;
}

.main-navigation li {
  position: relative;
}

.main-navigation a {
  display: block;
  padding: 10px 16px;
  color: #FFFFFF;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  transition: all 0.3s ease;
}

.main-navigation a:hover,
.main-navigation .current-menu-item > a {
  color: #D4AF37;
}

/* Dropdown Menu */
.main-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: #FFFFFF;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-top: 3px solid #D4AF37;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.3s ease;
  z-index: 100;
  display: flex;
  flex-direction: column;
}

.main-navigation li:hover > .sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.main-navigation .sub-menu a {
  color: #333333;
  padding: 10px 20px;
  font-size: 0.85rem;
  text-transform: none;
  border-bottom: 1px solid #f0f0f0;
}

.main-navigation .sub-menu a:hover {
  background: #F5F0FF;
  color: #4A0080;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: none;
  border: none;
  color: #D4AF37;
  font-size: 1.5rem;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 28px;
  height: 3px;
  background: #D4AF37;
  margin: 5px 0;
  transition: all 0.3s ease;
  border-radius: 2px;
}

/* ===== HERO SECTION ===== */
.hero-section {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  margin-top: 100px;
}

.hero-section.hero-home {
  min-height: 85vh;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(74, 0, 128, 0.85) 0%, rgba(25, 25, 112, 0.80) 50%, rgba(74, 0, 128, 0.85) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  padding: 60px 20px;
}

.hero-content h1 {
  font-size: 3rem;
  color: #FFFFFF;
  margin-bottom: 0.5em;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content .hero-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: #D4AF37;
  margin-bottom: 1em;
}

.hero-content p {
  color: #E6E6FA;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 1.5em;
}

.hero-badges {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-badge {
  background: rgba(212, 175, 55, 0.2);
  border: 1px solid #D4AF37;
  color: #D4AF37;
  padding: 8px 20px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 600;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 36px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  text-align: center;
}

.btn-primary {
  background: linear-gradient(135deg, #D4AF37, #B8941F);
  color: #FFFFFF;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #E5C040, #D4AF37);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(212, 175, 55, 0.6);
  color: #FFFFFF;
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

.btn-secondary:hover {
  background: #FFFFFF;
  color: #4A0080;
}

.btn-outline-gold {
  background: transparent;
  color: #D4AF37;
  border: 2px solid #D4AF37;
}

.btn-outline-gold:hover {
  background: #D4AF37;
  color: #FFFFFF;
}

.btn-whatsapp {
  background: #25D366;
  color: #FFFFFF;
}

.btn-whatsapp:hover {
  background: #1DA851;
  color: #FFFFFF;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 25px;
}

/* ===== CONTENT SECTIONS ===== */
.section {
  padding: 80px 0;
}

.section-alt {
  background: #F9F5FF;
}

.section-cream {
  background: #FFF8DC;
}

.section-dark {
  background: #4A0080;
  color: #FFFFFF;
}

.section-dark h2,
.section-dark h3 {
  color: #D4AF37;
}

.section-dark p {
  color: #E6E6FA;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header h2 {
  font-size: 2.2rem;
  margin-bottom: 0.3em;
}

.section-header .section-subtitle {
  font-family: 'Dancing Script', cursive;
  font-size: 1.2rem;
  color: #D4AF37;
}

.section-header p {
  max-width: 700px;
  margin: 0.5em auto 0;
  color: #666;
}

.gold-divider {
  width: 80px;
  height: 3px;
  background: linear-gradient(to right, #D4AF37, #B8941F);
  margin: 15px auto;
  border-radius: 2px;
}

/* ===== SERVICE CARDS ===== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.service-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 35px 30px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border-top: 4px solid #D4AF37;
  text-align: center;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(74, 0, 128, 0.15);
}

.service-card .service-icon {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.service-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5em;
}

.service-card h3 a {
  color: #4A0080;
}

.service-card h3 a:hover {
  color: #D4AF37;
}

.service-card p {
  color: #666;
  font-size: 0.95rem;
}

.service-card .btn {
  margin-top: 15px;
  padding: 10px 24px;
  font-size: 0.85rem;
}

/* ===== TESTIMONIAL SECTION ===== */
.testimonials-slider {
  max-width: 800px;
  margin: 0 auto;
}

.testimonial-card {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 40px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  text-align: center;
  margin-bottom: 30px;
}

.testimonial-card .stars {
  color: #D4AF37;
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.testimonial-card .testimonial-text {
  font-style: italic;
  color: #555;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
}

.testimonial-card .testimonial-author {
  font-weight: 700;
  color: #4A0080;
}

.testimonial-card .testimonial-location {
  font-size: 0.85rem;
  color: #999;
}

/* ===== BLOG CARDS ===== */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.blog-card {
  background: #FFFFFF;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(74, 0, 128, 0.12);
}

.blog-card .blog-card-image {
  height: 220px;
  overflow: hidden;
}

.blog-card .blog-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.05);
}

.blog-card .blog-card-content {
  padding: 25px;
}

.blog-card .blog-card-meta {
  font-size: 0.8rem;
  color: #999;
  margin-bottom: 10px;
}

.blog-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5em;
}

.blog-card h3 a {
  color: #4A0080;
}

.blog-card h3 a:hover {
  color: #D4AF37;
}

.blog-card p {
  color: #666;
  font-size: 0.9rem;
}

/* ===== FAQ ACCORDION ===== */
.faq-section {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  border: 1px solid #E6E6FA;
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item.active {
  border-color: #D4AF37;
  box-shadow: 0 3px 15px rgba(212, 175, 55, 0.15);
}

.faq-question {
  padding: 18px 24px;
  background: #FFFFFF;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  color: #4A0080;
  font-size: 1rem;
  transition: all 0.3s ease;
}

.faq-question:hover {
  background: #F9F5FF;
}

.faq-question .faq-toggle {
  font-size: 1.2rem;
  color: #D4AF37;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle {
  transform: rotate(45deg);
}

.faq-answer {
  padding: 0 24px;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  color: #555;
  line-height: 1.8;
}

.faq-item.active .faq-answer {
  padding: 0 24px 20px;
  max-height: 1000px;
}

/* ===== ABOUT SECTION ===== */
.about-preview {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.about-preview-image img {
  border-radius: 12px;
  box-shadow: 0 10px 40px rgba(74, 0, 128, 0.2);
}

.about-preview-content h2 {
  margin-bottom: 0.5em;
}

.credentials-list {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.credentials-list li {
  padding: 8px 0 8px 30px;
  position: relative;
  color: #555;
}

.credentials-list li::before {
  content: "\2713";
  position: absolute;
  left: 0;
  color: #D4AF37;
  font-weight: 700;
}

/* ===== CTA SECTION ===== */
.cta-section {
  background: linear-gradient(135deg, #4A0080, #191970);
  padding: 80px 0;
  text-align: center;
}

.cta-section h2 {
  color: #D4AF37;
  font-size: 2.2rem;
  margin-bottom: 0.5em;
}

.cta-section p {
  color: #E6E6FA;
  font-size: 1.1rem;
  max-width: 700px;
  margin: 0 auto 30px;
}

.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
  margin-top: 30px;
}

.cta-contact-item {
  color: #FFFFFF;
  font-size: 1.1rem;
}

.cta-contact-item strong {
  color: #D4AF37;
}

/* ===== FOOTER ===== */
.site-footer {
  background: #1A0030;
  color: #E6E6FA;
  padding-top: 60px;
}

.footer-widgets {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.footer-widget h4 {
  color: #D4AF37;
  font-size: 1.1rem;
  margin-bottom: 20px;
  font-family: 'Playfair Display', Georgia, serif;
}

.footer-widget p {
  color: #B0A0C0;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-widget ul {
  list-style: none;
  padding: 0;
}

.footer-widget ul li {
  margin-bottom: 8px;
}

.footer-widget ul li a {
  color: #B0A0C0;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
  color: #D4AF37;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
  color: #B0A0C0;
  font-size: 0.9rem;
}

.footer-contact-item strong {
  color: #D4AF37;
}

.footer-bottom {
  padding: 20px 0;
  text-align: center;
  font-size: 0.85rem;
  color: #8070A0;
}

.footer-bottom a {
  color: #D4AF37;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  padding: 60px 0;
}

.page-content .container {
  max-width: 900px;
}

.entry-content h2 {
  margin-top: 2em;
  padding-top: 1em;
  border-top: 1px solid #E6E6FA;
}

.entry-content h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: none;
}

.entry-content h3 {
  margin-top: 1.5em;
}

.entry-content img {
  border-radius: 8px;
  margin: 1.5em 0;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.entry-content strong {
  color: #4A0080;
}

/* ===== CONTACT FORM ===== */
.contact-form {
  max-width: 700px;
  margin: 0 auto;
}

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

.form-group label {
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
  color: #4A0080;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #E6E6FA;
  border-radius: 8px;
  font-size: 1rem;
  font-family: 'Open Sans', sans-serif;
  transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form-group textarea {
  min-height: 150px;
  resize: vertical;
}

/* ===== WHATSAPP FLOATING BUTTON ===== */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  color: #FFFFFF;
  font-size: 1.8rem;
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
  color: #FFFFFF;
}

/* ===== BREADCRUMBS ===== */
.breadcrumbs {
  padding: 15px 0;
  font-size: 0.85rem;
  color: #999;
  background: #F9F5FF;
}

.breadcrumbs a {
  color: #4A0080;
}

.breadcrumbs .separator {
  margin: 0 8px;
  color: #D4AF37;
}

/* ===== SIDEBAR ===== */
.content-with-sidebar {
  display: grid;
  grid-template-columns: 1fr 350px;
  gap: 40px;
}

.sidebar .widget {
  background: #FFFFFF;
  border-radius: 12px;
  padding: 25px;
  margin-bottom: 25px;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.06);
}

.sidebar .widget h4 {
  font-size: 1.1rem;
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 2px solid #D4AF37;
}

.sidebar .widget ul {
  list-style: none;
  padding: 0;
}

.sidebar .widget ul li {
  padding: 8px 0;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar .widget ul li:last-child {
  border-bottom: none;
}

.sidebar .widget ul li a {
  color: #555;
  font-size: 0.9rem;
}

.sidebar .widget ul li a:hover {
  color: #4A0080;
}

/* ===== TRUST BADGES ===== */
.trust-badges {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  padding: 40px 0;
}

.trust-badge {
  text-align: center;
  padding: 20px;
}

.trust-badge .badge-icon {
  font-size: 2rem;
  color: #D4AF37;
  margin-bottom: 10px;
}

.trust-badge .badge-text {
  font-size: 0.85rem;
  color: #666;
  font-weight: 600;
}

/* ===== STATS COUNTER ===== */
.stats-section {
  background: linear-gradient(135deg, #4A0080, #191970);
  padding: 60px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  text-align: center;
}

.stat-item .stat-number {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  color: #D4AF37;
  font-weight: 700;
}

.stat-item .stat-label {
  color: #E6E6FA;
  font-size: 0.9rem;
  margin-top: 5px;
}

/* ===== TABLE OF CONTENTS ===== */
.toc-box {
  background: #F9F5FF;
  border: 1px solid #E6E6FA;
  border-radius: 8px;
  padding: 25px 30px;
  margin: 30px 0;
}

.toc-box h4 {
  margin-bottom: 15px;
  font-size: 1.1rem;
}

.toc-box ol {
  padding-left: 20px;
}

.toc-box ol li {
  margin-bottom: 8px;
}

.toc-box ol li a {
  color: #4A0080;
  font-size: 0.95rem;
}

.toc-box ol li a:hover {
  color: #D4AF37;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
  .footer-widgets {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-preview {
    grid-template-columns: 1fr;
  }

  .content-with-sidebar {
    grid-template-columns: 1fr;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  html {
    font-size: 15px;
  }

  h1 { font-size: 2rem; }
  h2 { font-size: 1.6rem; }

  .hero-section {
    min-height: 60vh;
    margin-top: 80px;
  }

  .hero-section.hero-home {
    min-height: 70vh;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content .hero-subtitle {
    font-size: 1.1rem;
  }

  .menu-toggle {
    display: block;
  }

  .main-navigation ul {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #4A0080;
    padding: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  }

  .main-navigation.toggled ul {
    display: flex;
  }

  .main-navigation .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-top: none;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    margin-top: 5px;
  }

  .main-navigation .sub-menu a {
    color: #E6E6FA;
    border-bottom-color: rgba(255, 255, 255, 0.1);
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .footer-widgets {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 50px 0;
  }

  .header-top-bar {
    display: none;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .cta-contact-info {
    flex-direction: column;
    align-items: center;
  }

  .trust-badges {
    gap: 20px;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.6rem;
  }

  .hero-badges {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    padding: 12px 28px;
    font-size: 0.9rem;
  }
}

/* ===== ANIMATIONS ===== */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-fadeInUp {
  animation: fadeInUp 0.6s ease forwards;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

/* ===== PRINT STYLES ===== */
@media print {
  .site-header,
  .site-footer,
  .whatsapp-float,
  .hero-section {
    display: none;
  }

  body {
    color: #000;
    font-size: 12pt;
  }
}
