/* ==========================================================================
   Premium Astrology CSS Variables & Reset
   ========================================================================== */
:root {
  /* Rich Brand Colors */
  --primary: #720000;
  --primary-dark: #3a0000;
  --primary-light: #a51c1c;

  /* Golden Accents */
  --accent: #F5B700;
  --accent-light: #FFD54A;
  --gold-gradient: linear-gradient(135deg, #FFD700 0%, #F5B700 50%, #D4AF37 100%);
  --gold-glow: 0 0 15px rgba(245, 183, 0, 0.4);

  /* UI Colors */
  --dark: #0a0a0a;
  --dark-light: #1c1c1c;
  --white: #FFFFFF;
  --muted: #555555;
  --muted-light: #F9F7F2;
  --light-bg: #FFFaf2;
  --border: #E8E0D5;

  /* Typography */
  --font-main: 'Inter', system-ui, -apple-system, sans-serif;
  --font-heading: 'Outfit', 'Inter', system-ui, -apple-system, sans-serif;

  /* Shadows */
  --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 8px 24px rgba(114, 0, 0, 0.08);
  --shadow-lg: 0 20px 40px rgba(0, 0, 0, 0.12);
  --shadow-red: 0 10px 25px rgba(114, 0, 0, 0.25);

  /* Transitions */
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --border-radius: 12px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

html,
body {
  overflow-x: hidden;
  width: 100%;
  position: relative;
}

body {
  font-family: var(--font-main);
  color: var(--dark);
  background-color: var(--white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition);
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
  transition: var(--transition);
}

/* ==========================================================================
   Typography & Utilities
   ========================================================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  line-height: 1.2;
  font-weight: 700;
  margin-bottom: 1rem;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

h4 {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
}

.text-primary {
  color: var(--primary);
}

.text-accent {
  color: var(--accent);
}

.text-white {
  color: var(--white);
}

.text-center {
  text-align: center;
}

.text-muted {
  color: var(--muted);
}

.container {
  width: 100%;
  max-width: 1440px;
  margin-inline: auto;
  padding-inline: 2rem;
}

.section-padding {
  padding-block: clamp(5rem, 8vw, 8rem);
}

/* Premium Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.25rem;
  font-weight: 600;
  border-radius: 50px;
  transition: var(--transition);
  text-align: center;
  white-space: nowrap;
  /* Prevent breaking into two lines */
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
  z-index: -1;
}

.btn:hover::before {
  left: 100%;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background-color: var(--primary-light);
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(114, 0, 0, 0.35);
}

.btn-accent {
  background: var(--gold-gradient);
  color: var(--primary-dark);
  box-shadow: var(--gold-glow);
}

.btn-accent:hover,
.btn-accent:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(245, 183, 0, 0.5);
  color: var(--primary-dark);
}

.btn-outline {
  background-color: transparent;
  color: var(--primary);
  border: 2px solid var(--primary);
  box-shadow: none;
}

.btn-outline:hover,
.btn-outline:focus-visible {
  background-color: var(--primary);
  color: var(--white);
  box-shadow: var(--shadow-red);
}

/* Specific Header Button Sizes to fix "Call Now" issue */
.header-btn {
  padding: 0.65rem 1.5rem !important;
  font-size: 0.95rem;
  border-width: 1px !important;
}

/* Section Headers */
.section-header {
  margin-bottom: 4rem;
  text-align: center;
  max-width: 800px;
  margin-inline: auto;
}

.eyebrow {
  display: inline-block;
  color: var(--accent);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.85rem;
  margin-bottom: 1.25rem;
  background: var(--primary-dark);
  padding: 0.25rem 1rem;
  border-radius: 50px;
}

/* ==========================================================================
   Top Bar & Header
   ========================================================================== */
.top-bar {
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 0.6rem 0;
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  z-index: 1000;
}

.top-bar .container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  text-align: center;
}

.top-bar a {
  transition: var(--transition);
}

.top-bar a:hover {
  color: var(--accent);
  text-shadow: 0 0 8px rgba(245, 183, 0, 0.5);
}

.top-bar-center {
  display: none;
  letter-spacing: 1px;
}

/* Premium Header */
.header {
  background-color: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
}

.header.sticky {
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  box-shadow: var(--shadow-md);
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 90px;
  transition: height 0.3s;
  gap: 1.5rem;
}

.header.sticky .container {
  height: 75px;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.logo-img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-title {
  font-size: 1.25rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.1;
  font-family: var(--font-heading);
  white-space: nowrap;
}

.logo-subtitle {
  font-size: 0.75rem;
  color: var(--muted);
  display: none;
  font-weight: 500;
  white-space: nowrap;
}

.nav-links {
  display: none;
}

.header-actions {
  display: none;
}

/* Mobile Menu Button */
.menu-toggle {
  display: block;
  width: 32px;
  height: 24px;
  position: relative;
  z-index: 1001;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--primary);
  position: absolute;
  left: 0;
  transition: var(--transition);
  border-radius: 2px;
}

.menu-toggle span:nth-child(1) {
  top: 0;
}

.menu-toggle span:nth-child(2) {
  top: 11px;
}

.menu-toggle span:nth-child(3) {
  top: 22px;
}

.menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg);
  top: 11px;
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
  transform: translateX(-20px);
}

.menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg);
  top: 11px;
}

/* Mobile Navigation Overlay */
.mobile-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  padding: 50px 2rem 3rem;
  transform: translateX(100%);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
}

.mobile-nav.open {
  transform: translateX(0);
}

.mobile-nav-links {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 3rem;
  margin-top: 100px;
}

.mobile-nav-links a {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  font-family: var(--font-heading);
}

.mobile-nav-links a.active,
.mobile-nav-links a:hover {
  color: var(--primary);
  transform: translateX(10px);
}

.mobile-nav-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-top: auto;
}

/* ==========================================================================
   Animations
   ========================================================================== */
@keyframes float {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-15px);
  }

  100% {
    transform: translateY(0px);
  }
}

.floating {
  animation: float 6s ease-in-out infinite;
}

@keyframes pulse-glow {
  0% {
    box-shadow: 0 0 0 0 rgba(245, 183, 0, 0.4);
  }

  70% {
    box-shadow: 0 0 0 15px rgba(245, 183, 0, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(245, 183, 0, 0);
  }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 1s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.reveal.active {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   Hero Section
   ========================================================================== */
.hero {
  background: linear-gradient(135deg, var(--light-bg) 0%, var(--muted-light) 100%);
  position: relative;
  overflow: hidden;
  padding-top: 5rem;
  padding-bottom: 6rem;
}

/* Background elements */
.hero::before {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 900px;
  height: 900px;
  background: radial-gradient(circle, rgba(114, 0, 0, 0.06) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
  animation: float 15s infinite reverse;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -20%;
  left: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.08) 0%, rgba(255, 255, 255, 0) 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-content h1 {
  color: var(--primary-dark);
  margin-bottom: 1.5rem;
}

.hero-text {
  font-size: 1.2rem;
  color: var(--muted);
  margin-bottom: 2.5rem;
  max-width: 650px;
}

.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 3.5rem;
}

.trust-indicators {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  color: var(--dark);
  font-size: 1.05rem;
}

.trust-item svg {
  color: var(--accent);
  flex-shrink: 0;
  background: var(--primary-dark);
  border-radius: 50%;
  padding: 4px;
}

.hero-image-wrapper {
  position: relative;
  perspective: 1000px;
}

.hero-image {
  border-radius: 24px;
  box-shadow: var(--shadow-lg), 0 20px 60px rgba(114, 0, 0, 0.15);
  aspect-ratio: 4/5;
  object-fit: cover;
  width: 100%;
  background-color: var(--muted-light);
  border: 8px solid var(--white);
}

.hero-badge {
  position: absolute;
  bottom: -25px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--white);
  padding: 1.25rem 2rem;
  border-radius: 50px;
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 1rem;
  white-space: normal;
  text-align: center;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--primary-dark);
  border: 1px solid rgba(245, 183, 0, 0.3);
  animation: pulse-glow 3s infinite;
}

.hero-badge svg {
  color: var(--accent);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about {
  background-color: var(--white);
  position: relative;
}

.about-poster-wrapper {
  position: relative;
  margin-bottom: 3rem;
  width: 100%;
}

.about-poster {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.about-content {
  max-width: 1000px;
  margin: 0 auto;
}

.about-content h2 {
  color: var(--primary-dark);
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
  margin: 2.5rem 0;
}

@media screen and (min-width: 768px) {
  .about-features {
    grid-template-columns: repeat(3, 1fr);
  }
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  font-weight: 500;
}

.about-feature svg {
  color: var(--white);
  background: var(--primary);
  padding: 3px;
  border-radius: 50%;
  margin-top: 2px;
  flex-shrink: 0;
}

/* ==========================================================================
   Services Section (Premium Ribbons)
   ========================================================================== */
.services {
  background-color: var(--light-bg);
  position: relative;
}

.services-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
}

.service-card {
  background-color: var(--white);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.service-card:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg), 0 15px 30px rgba(245, 183, 0, 0.1);
  border-color: rgba(245, 183, 0, 0.3);
}

.service-img-wrap {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}

.service-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.service-card:hover .service-img {
  transform: scale(1.08);
}

/* Premium Ribbon Badge */
.service-badge {
  position: absolute;
  top: 1.5rem;
  right: -0.5rem;
  background: var(--gold-gradient);
  color: var(--primary-dark);
  font-size: 0.85rem;
  font-weight: 800;
  padding: 0.4rem 1.25rem;
  border-radius: 4px 0 0 4px;
  z-index: 2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.service-badge::after {
  content: '';
  position: absolute;
  bottom: -0.5rem;
  right: 0;
  border-width: 0.5rem 0.5rem 0 0;
  border-style: solid;
  border-color: #b38600 transparent transparent transparent;
}

.service-content {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.service-title {
  font-size: 1.4rem;
  margin-bottom: 1rem;
  color: var(--primary-dark);
}

.service-desc {
  color: var(--muted);
  margin-bottom: 1.5rem;
  flex-grow: 1;
  font-size: 0.95rem;
}

.service-link {
  color: var(--primary);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.service-link svg {
  transition: transform 0.3s;
}

.service-card:hover .service-link svg {
  transform: translateX(5px);
}

/* ==========================================================================
   Why Choose Us
   ========================================================================== */
.why-choose {
  background-color: var(--white);
  overflow: hidden;
}

.why-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.why-card {
  background: linear-gradient(145deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  padding: 4rem 3rem;
  border-radius: 24px;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-shadow: var(--shadow-red);
  position: relative;
  overflow: hidden;
}

.why-card::after {
  content: '';
  position: absolute;
  right: -50px;
  bottom: -50px;
  width: 200px;
  height: 200px;
  background: radial-gradient(circle, rgba(245, 183, 0, 0.2) 0%, transparent 70%);
  border-radius: 50%;
}

.why-card h2 {
  color: var(--white);
  margin-bottom: 1.5rem;
}

.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}

.why-feature {
  display: flex;
  gap: 1.25rem;
  align-items: flex-start;
  padding: 1.5rem;
  background-color: var(--white);
  border: 1px solid var(--border);
  border-radius: 16px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

.why-feature:hover {
  transform: translateY(-5px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.why-number {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--primary-light);
  line-height: 1;
  transition: var(--transition);
}

.why-feature:hover .why-number {
  color: var(--accent);
  -webkit-text-stroke: 0;
}

.why-text h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.why-text p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ==========================================================================
   How It Works
   ========================================================================== */
.how-it-works {
  background-color: var(--light-bg);
}

.steps-container {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  position: relative;
}

.steps-container::before {
  content: '';
  position: absolute;
  left: 30px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--primary), var(--accent));
}

.step {
  display: flex;
  gap: 2rem;
  position: relative;
}

.step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: var(--white);
  border: 3px solid var(--primary);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 1.5rem;
  flex-shrink: 0;
  z-index: 1;
  transition: var(--transition);
  box-shadow: 0 0 15px rgba(114, 0, 0, 0.1);
}

.step:hover .step-number {
  background: var(--gold-gradient);
  color: var(--primary-dark);
  border-color: transparent;
  transform: scale(1.1);
}

.step-content {
  padding-top: 0.5rem;
}

.step-content h4 {
  margin-bottom: 0.75rem;
  color: var(--primary-dark);
  font-size: 1.35rem;
}

.step-content p {
  color: var(--muted);
  font-size: 1.05rem;
}

/* ==========================================================================
   Testimonials
   ========================================================================== */
.testimonials {
  background: linear-gradient(180deg, var(--dark) 0%, var(--dark-light) 100%);
  color: var(--white);
  overflow: hidden;
}

.testimonials .section-header h2 {
  color: var(--white);
}

.carousel-container {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.carousel-track-container {
  overflow: hidden;
  padding: 2rem 0;
}

.carousel-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.carousel-slide {
  min-width: 100%;
  padding: 0 1.5rem;
}

.testimonial-card {
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  padding: 3.5rem 3rem;
  text-align: center;
  position: relative;
  backdrop-filter: blur(10px);
}

.testimonial-card::before {
  content: '"';
  position: absolute;
  top: 1rem;
  left: 2rem;
  font-size: 6rem;
  font-family: Georgia, serif;
  color: rgba(245, 183, 0, 0.15);
  line-height: 1;
}

.testimonial-quote {
  font-size: 1.25rem;
  font-style: italic;
  margin-bottom: 2.5rem;
  color: #E8E8E8;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.testimonial-author {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
}

.author-img {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent);
  background-color: var(--muted);
  box-shadow: 0 0 20px rgba(245, 183, 0, 0.3);
}

.author-info h4 {
  margin-bottom: 0.25rem;
  color: var(--white);
}

.author-info span {
  color: #AAA;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.stars {
  color: var(--accent);
  margin-top: 0.75rem;
  font-size: 1.25rem;
  letter-spacing: 2px;
}

.carousel-nav {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.carousel-indicator {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.carousel-indicator.current {
  background: var(--gold-gradient);
  width: 32px;
  border-radius: 8px;
}

.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--white);
  color: var(--primary-dark);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  opacity: 0;
  transition: all 0.3s;
  box-shadow: var(--shadow-md);
}

.carousel-container:hover .carousel-btn {
  opacity: 1;
}

.carousel-btn:hover {
  background: var(--gold-gradient);
  color: var(--white);
  transform: translateY(-50%) scale(1.1);
}

.carousel-btn.prev {
  left: -25px;
}

.carousel-btn.next {
  right: -25px;
}

/* ==========================================================================
   Other Services
   ========================================================================== */
.other-services {
  background-color: var(--white);
}

.other-services-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.services-list {
  background-color: var(--light-bg);
  padding: 3rem;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.services-list ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.25rem;
}

.services-list li {
  display: flex;
  align-items: center;
  gap: 1rem;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark-light);
  transition: var(--transition);
}

.services-list li:hover {
  color: var(--primary);
  transform: translateX(5px);
}

.services-list li svg {
  color: var(--accent);
  background: var(--primary-dark);
  border-radius: 50%;
  padding: 2px;
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta {
  background: linear-gradient(135deg, var(--primary-dark) 0%, var(--primary) 100%);
  color: var(--white);
  text-align: center;
  position: relative;
}

.cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyMCIgaGVpZ2h0PSIyMCI+CgkJPGNpcmNsZSBjeD0iMiIgY3k9IjIiIHI9IjIiIGZpbGw9IiNmZmZmZmYiIGZpbGwtb3BhY2l0eT0iMC4wNSIvPgoJPC9zdmc+') repeat;
}

.cta h2 {
  color: var(--white);
  margin-bottom: 1.25rem;
  position: relative;
  z-index: 1;
}

.cta p {
  font-size: 1.25rem;
  margin-bottom: 3rem;
  opacity: 0.9;
  position: relative;
  z-index: 1;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
}

.cta .btn-outline {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.3);
}

.cta .btn-outline:hover {
  background-color: var(--white);
  color: var(--primary-dark);
  border-color: var(--white);
}

/* ==========================================================================
   Contact Section
   ========================================================================== */
.contact {
  background-color: var(--muted-light);
}

.contact-container {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.contact-item {
  display: flex;
  gap: 1.5rem;
  align-items: flex-start;
  padding: 1.5rem;
  background: var(--white);
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.contact-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}

.contact-icon {
  width: 60px;
  height: 60px;
  background: var(--gold-gradient);
  color: var(--primary-dark);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: var(--shadow-sm);
}

.contact-item h4 {
  margin-bottom: 0.5rem;
  color: var(--primary-dark);
}

.contact-item p,
.contact-item a {
  color: var(--muted);
  font-size: 1.05rem;
  font-weight: 500;
}

.contact-form-wrapper {
  background-color: var(--white);
  padding: 3rem;
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
}

.form-group {
  margin-bottom: 1.75rem;
}

.form-label {
  display: block;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: var(--dark-light);
}

.form-control {
  width: 100%;
  padding: 1rem 1.25rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  font-family: inherit;
  font-size: 1rem;
  background-color: var(--muted-light);
  transition: var(--transition);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent);
  background-color: var(--white);
  box-shadow: 0 0 0 4px rgba(245, 183, 0, 0.15);
}

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

.form-submit {
  width: 100%;
  padding: 1.25rem;
  font-size: 1.1rem;
}

.form-message {
  display: none;
  margin-top: 1.5rem;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  font-weight: 500;
}

.form-message.success {
  display: block;
  background-color: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background-color: var(--dark);
  color: var(--white);
  padding-top: 5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  margin-bottom: 4rem;
}

.footer-brand img {
  background-color: var(--white);
  padding: 1rem;
  border-radius: 12px;
  width: 100%;
  max-width: 280px !important;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.footer-brand h3 {
  color: var(--white);
  margin-bottom: 1.25rem;
  font-size: 1.75rem;
}

.footer-brand p {
  color: #A0A0A0;
  margin-bottom: 1.5rem;
  line-height: 1.8;
}

.footer-heading {
  color: var(--white);
  font-size: 1.25rem;
  margin-bottom: 1.75rem;
  position: relative;
  display: inline-block;
}

.footer-heading::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--accent);
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-links a {
  color: #A0A0A0;
  display: inline-flex;
  align-items: center;
}

.footer-links a::before {
  content: '›';
  color: var(--accent);
  margin-right: 8px;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.3s;
}

.footer-links a:hover {
  color: var(--white);
  transform: translateX(5px);
}

.footer-links a:hover::before {
  transform: translateX(3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding: 2rem 0;
  text-align: center;
  color: #777;
  font-size: 0.9rem;
}

.footer-disclaimer {
  max-width: 900px;
  margin: 0 auto 2rem;
  font-style: italic;
  color: #888;
  font-size: 0.85rem;
  line-height: 1.8;
}

/* ==========================================================================
   Floating Action Buttons (FABs)
   ========================================================================== */
.fab-container {
  /* Positioning handled by individual buttons now */
}

.fab {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: var(--shadow-lg);
  position: relative;
  transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.fab:hover {
  transform: scale(1.15) rotate(5deg);
}

.fab-whatsapp {
  background-color: #25D366;
  position: fixed;
  bottom: 25px;
  right: 25px;
  z-index: 900;
}

.fab-call {
  background-color: var(--primary);
  position: fixed;
  bottom: 25px;
  left: 25px;
  z-index: 900;
}

.fab-tooltip {
  position: absolute;
  right: 75px;
  background-color: var(--dark);
  color: var(--white);
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, transform 0.3s;
  pointer-events: none;
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.fab-tooltip::after {
  content: '';
  position: absolute;
  top: 50%;
  right: -5px;
  transform: translateY(-50%);
  border-width: 6px 0 6px 6px;
  border-style: solid;
  border-color: transparent transparent transparent var(--dark);
}

@media (hover: hover) {
  .fab:hover .fab-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
  }
}

.fab-call .fab-tooltip {
  right: auto;
  left: 75px;
  transform: translateX(-10px);
}

.fab-call .fab-tooltip::after {
  right: auto;
  left: -5px;
  border-width: 6px 6px 6px 0;
  border-color: transparent var(--dark) transparent transparent;
}

.back-to-top {
  position: fixed;
  bottom: 95px;
  right: 25px;
  width: 50px;
  height: 50px;
  background-color: var(--dark);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 900;
  box-shadow: var(--shadow-md);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  background: var(--gold-gradient);
  color: var(--primary-dark);
  transform: translateY(-8px);
}

/* ==========================================================================
   Media Queries
   ========================================================================== */
/* Tablet */
@media screen and (min-width: 577px) {
  .hero-actions {
    flex-direction: row;
  }

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

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

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

  .cta-actions {
    flex-direction: row;
  }

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

/* Desktop */
@media screen and (min-width: 992px) {
  .top-bar .container {
    flex-direction: row;
    justify-content: space-between;
  }

  .top-bar-center {
    display: block;
  }

  .logo-subtitle {
    display: block;
  }

  .menu-toggle {
    display: none;
  }

  .nav-links {
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    gap: 2.5rem;
  }

  .nav-links a {
    font-weight: 600;
    font-size: 1.1rem;
    position: relative;
    padding-bottom: 5px;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--accent);
    transition: width 0.3s ease;
    border-radius: 3px;
  }

  .nav-links a:hover::after,
  .nav-links a.active::after {
    width: 100%;
  }

  .nav-links a:hover,
  .nav-links a.active {
    color: var(--primary);
  }

  .header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-shrink: 0;
    /* Prevents squishing */
  }

  .hero-container {
    grid-template-columns: 1.2fr 1fr;
  }

  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .why-container {
    grid-template-columns: 1.2fr 1.8fr;
  }

  .steps-container {
    flex-direction: row;
    gap: 2rem;
  }

  .steps-container::before {
    left: 0;
    top: 30px;
    height: 2px;
    width: 100%;
    bottom: auto;
    background: linear-gradient(to right, var(--primary), var(--accent));
  }

  .step {
    flex-direction: column;
    flex: 1;
    text-align: center;
    align-items: center;
  }

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

  .contact-container {
    grid-template-columns: 1fr 1.5fr;
  }

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

/* Large Desktop */
@media screen and (min-width: 1200px) {
  .nav-links {
    gap: 3rem;
  }

  .carousel-btn {
    opacity: 1;
  }

  .carousel-btn.prev {
    left: -70px;
  }

  .carousel-btn.next {
    right: -70px;
  }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Promo Banner Section
   ========================================================================== */
.promo-banner {
  width: 100%;
  font-family: var(--font-heading);
  background-color: var(--light-bg);
}

.promo-strip-top {
  background-color: #274187;
  color: white;
  text-align: center;
  padding: 8px 15px;
  font-size: 0.9rem;
  font-weight: 500;
}

.promo-banner-container {
  background-color: white;
  padding: 15px 2%;
  width: 100%;
  max-width: 100%;
}

.promo-banner-content {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  gap: 15px;
}

/* Left Section */
.promo-left {
  flex: 1;
  display: flex;
  border: 2px solid #3661b8;
  padding: 5px;
  align-items: center;
  gap: 10px;
}

.promo-photo-container {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  border: 4px solid #f2c94c;
  overflow: hidden;
  flex-shrink: 0;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.promo-photo-frame {
  width: 100%;
  height: 100%;
}

.promo-photo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-left-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
}

.promo-tag {
  font-size: 0.8rem;
  color: #333;
  font-weight: 600;
  text-transform: uppercase;
}

.promo-name {
  font-size: 1.3rem;
  color: #7a2b2b;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.promo-subtitle {
  background-color: #d11f26;
  color: white;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  align-self: flex-start;
}

.promo-action {
  background-color: #f2c94c;
  color: black;
  padding: 4px 8px;
  font-size: 0.75rem;
  font-weight: 700;
  display: inline-block;
  align-self: flex-start;
}

/* Middle Section */
.promo-middle {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

.promo-contact-bar {
  background-color: #0b1a47;
  color: white;
  border-radius: 8px;
  padding: 8px 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-decoration: none;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.promo-contact-bar:hover {
  color: white;
}

.promo-wa-icon {
  background-color: #25d366;
  border-radius: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 6px;
}

.promo-wa-icon svg {
  color: white;
}

.promo-number {
  font-size: 2.2rem;
  font-weight: 800;
}

.promo-badges-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.promo-stars {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.star-icon {
  color: #f2c94c;
  font-size: 2rem;
  line-height: 1;
  position: relative;
}

.star-icon span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 1rem;
  font-weight: 800;
  -webkit-text-stroke: 1px #d11f26;
}

.star-text {
  font-size: 0.6rem;
  font-weight: 800;
  color: #3661b8;
}

.promo-24h {
  display: flex;
  align-items: center;
  gap: 5px;
}

.clock-icon {
  border: 2px solid #d11f26;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #d11f26;
  font-weight: 800;
  font-size: 1rem;
  line-height: 1;
}

.clock-icon span {
  font-size: 0.5rem;
}

.clock-text {
  font-size: 0.6rem;
  font-weight: 800;
  color: black;
  line-height: 1.2;
}

.promo-ask-col {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}

.promo-ask-btn {
  background-color: #f2c94c;
  color: black;
  font-weight: 800;
  padding: 5px;
  text-align: center;
  font-size: 1rem;
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.promo-call-text {
  color: #d11f26;
  font-weight: 800;
  text-align: center;
  font-size: 0.8rem;
}

/* Right Section */
.promo-right {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 15px;
}

.promo-right-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.promo-genuine {
  background-color: #0b1a47;
  color: #f2c94c;
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
}

.promo-change-life {
  font-size: 1.1rem;
  font-weight: 800;
  line-height: 1.1;
  color: black;
}

.promo-change-life .red-text {
  color: #d11f26;
}

.promo-privacy {
  font-size: 0.9rem;
  font-weight: 700;
  color: black;
}

.promo-privacy .gold-text {
  color: #d4af37;
}

.promo-satisfied {
  color: #6a1b9a;
  font-size: 1rem;
  font-weight: 800;
}

.promo-couple-img {
  flex-shrink: 0;
}

.promo-couple-img img {
  width: 100px;
  height: auto;
  border-radius: 8px;
}

.promo-strip-bottom {
  background-color: #f2c94c;
  height: 15px;
  width: 100%;
  max-width: 100%;
}

@media (max-width: 1024px) {
  .promo-banner-content {
    flex-direction: column;
    align-items: center;
  }

  .promo-left,
  .promo-middle,
  .promo-right {
    width: 100%;
    max-width: 600px;
  }
}

@media (max-width: 576px) {
  .promo-number {
    font-size: 1.5rem;
  }

  .promo-photo-container {
    width: 80px;
    height: 80px;
  }

  .promo-name {
    font-size: 1.2rem;
  }

  .promo-badges-row {
    flex-wrap: wrap;
    justify-content: center;
  }

  .promo-contact-bar {
    padding: 8px;
  }

  .promo-right {
    flex-direction: column;
    text-align: center;
  }
}

/* Continuous Rotation Animation */
@keyframes rotate-continuous {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.rotate-continuous {
  animation: rotate-continuous 30s linear infinite;
}

/* ==========================================================================
   Certifications Section
   ========================================================================== */
.certs-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2.5rem;
  max-width: 1000px;
  margin: 0 auto;
}

.cert-card {
  background: var(--white);
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
}

.cert-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
}

.cert-img {
  width: 100%;
  height: 380px;
  object-fit: contain;
  background-color: var(--muted-light);
  padding: 1rem;
  border-bottom: 3px solid var(--accent);
}

.cert-info {
  padding: 1.5rem;
  text-align: center;
}

.cert-info h3 {
  color: var(--primary-dark);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-family: var(--font-heading);
}

.cert-info p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.6;
}