/* ==========================================================================
   GURU KRIPA ASTRO - PREMIUM EMOTIONAL LANDING PAGE STYLING
   ========================================================================== */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Yatra+One&family=Cinzel:wght@500;700;900&display=swap');

/* CSS Variables */
:root {
  /* Color Palette */
  --maroon-dark: #3a0208;
  --maroon-mid: #5B0612;
  --maroon-light: #8C1827;

  --gold-primary: #D4AF37;
  --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
  --gold-glow: 0 0 15px rgba(212, 175, 55, 0.45);
  --gold-glow-strong: 0 0 25px rgba(212, 175, 55, 0.75);
  --gold-light: #FAF2D3;
  --gold-dark: #AA7C11;

  --saffron-primary: #E65100;
  --saffron-light: #FF9800;
  --saffron-gradient: linear-gradient(135deg, #FF9800 0%, #E65100 100%);
  --saffron-glow: 0 0 15px rgba(230, 81, 0, 0.5);

  --green-whatsapp: #25D366;
  --green-glow: 0 0 15px rgba(37, 211, 102, 0.5);

  --black-bg: #0C0204;
  --black-card: #150508;
  --black-glass: rgba(12, 2, 4, 0.75);

  --cream-bg: #FAF6F0;
  --cream-card: #FFFFFF;
  --cream-border: #E8DFD3;

  --text-light: #FFFFFF;
  --text-dark: #2B1D1D;
  --text-muted-light: #CBB4B7;
  --text-muted-dark: #6D595C;

  /* Typography */
  --font-heading: 'Yatra One', 'Cinzel', serif;
  --font-serif-sub: 'Cinzel', Georgia, serif;
  --font-body: 'Poppins', 'Inter', sans-serif;

  /* Layout Options */
  --transition-smooth: all 0.35s cubic-bezier(0.25, 0.8, 0.25, 1);
  --border-radius: 12px;
}

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

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

.mobile-lang-item {
  display: none;
}

body {
  font-family: var(--font-body);
  background-color: var(--black-bg);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

button,
input,
select,
textarea {
  font-family: inherit;
  outline: none;
  border: none;
}

/* ==========================================================================
   SCROLLBAR
   ========================================================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--maroon-dark);
}

::-webkit-scrollbar-thumb {
  background: var(--gold-dark);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--gold-primary);
}

/* ==========================================================================
   KEYFRAME ANIMATIONS
   ========================================================================== */
@keyframes goldPulse {
  0% {
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
  }

  50% {
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.8);
  }

  100% {
    box-shadow: 0 0 5px rgba(212, 175, 55, 0.4);
  }
}

@keyframes saffronPulse {
  0% {
    box-shadow: 0 0 5px rgba(230, 81, 0, 0.4);
  }

  50% {
    box-shadow: 0 0 20px rgba(230, 81, 0, 0.8);
  }

  100% {
    box-shadow: 0 0 5px rgba(230, 81, 0, 0.4);
  }
}

@keyframes pulseInfinite {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes spinSlow {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes floatSlow {
  0% {
    transform: translateY(0px);
  }

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

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

@keyframes loaderFade {
  0% {
    opacity: 1;
    pointer-events: all;
  }

  90% {
    opacity: 1;
    pointer-events: all;
  }

  100% {
    opacity: 0;
    pointer-events: none;
  }
}

@keyframes textGlow {
  0% {
    text-shadow: 0 0 5px rgba(255, 223, 0, 0.3);
  }

  50% {
    text-shadow: 0 0 15px rgba(255, 223, 0, 0.7);
  }

  100% {
    text-shadow: 0 0 5px rgba(255, 223, 0, 0.3);
  }
}

/* ==========================================================================
   PRELOADER
   ========================================================================== */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: var(--black-bg);
  z-index: 99999;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: opacity 0.5s ease;
}

.loader-mandala {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  border: 2px dashed var(--gold-primary);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: spinSlow 8s linear infinite;
  box-shadow: var(--gold-glow);
}

.loader-mandala::after {
  content: 'ॐ';
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--gold-primary);
  animation: spinSlow 8s linear infinite reverse;
}

#preloader p {
  margin-top: 20px;
  font-family: var(--font-serif-sub);
  color: var(--gold-primary);
  letter-spacing: 2px;
  font-size: 0.9rem;
  text-transform: uppercase;
}

/* ==========================================================================
   PARTICLES CONTAINER
   ========================================================================== */
.particles-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

/* ==========================================================================
   REUSABLE COMPONENTS & UTILITIES
   ========================================================================== */
.gold-text {
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

.glow-title {
  font-family: var(--font-heading);
  animation: textGlow 4s ease-in-out infinite;
}

.btn-primary,
.btn-secondary,
.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.btn-primary {
  background: var(--saffron-gradient);
  color: var(--text-light);
  border: 1px solid rgba(255, 255, 255, 0.15);
  animation: saffronPulse 3s infinite;
}

.btn-primary:hover {
  transform: translateY(-3px) scale(1.02);
  background: linear-gradient(135deg, #FFB300 0%, #F4511E 100%);
  box-shadow: var(--saffron-glow);
}

.btn-secondary {
  background: transparent;
  color: var(--gold-primary);
  border: 2px solid var(--gold-primary);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--gold-gradient);
  color: var(--maroon-dark);
  box-shadow: var(--gold-glow);
}

.btn-whatsapp {
  background: var(--green-whatsapp);
  color: var(--text-light);
}

.btn-whatsapp:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--green-glow);
}

.section-padding {
  padding: 80px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 2;
}

.section-header p {
  color: var(--gold-primary);
  font-family: var(--font-serif-sub);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.9rem;
  margin-bottom: 8px;
}

.section-header h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  color: var(--text-light);
  position: relative;
  display: inline-block;
}

.section-header h2::after {
  content: '';
  display: block;
  width: 60px;
  height: 2px;
  background: var(--gold-gradient);
  margin: 15px auto 0 auto;
  box-shadow: var(--gold-glow);
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}

/* ==========================================================================
   TOP BAR & HEADER NAVIGATION
   ========================================================================== */
.top-bar {
  background-color: var(--black-bg);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  padding: 8px 0;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold-light);
  position: relative;
  z-index: 100;
}

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

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 8px;
}

.top-bar-left i {
  color: var(--saffron-light);
  animation: pulseInfinite 1.5s infinite;
}

.top-bar-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.top-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--text-light);
  transition: var(--transition-smooth);
}

.top-link i {
  color: var(--gold-primary);
}

.top-link:hover {
  color: var(--gold-primary);
}

.top-link.wa-link i {
  color: var(--green-whatsapp);
}

/* Main Navigation */
header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
  background-color: var(--black-glass);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: var(--transition-smooth);
}

header.scrolled {
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.5);
  background-color: var(--black-bg);
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--text-light);
}

.logo-symbol {
  font-size: 1.8rem;
  color: var(--gold-primary);
  animation: spinSlow 20s linear infinite;
  text-shadow: var(--gold-glow);
}

.nav-menu {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 30px;
}

.nav-link {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text-light);
  position: relative;
  padding: 5px 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gold-gradient);
  transition: var(--transition-smooth);
}

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

.nav-link:hover {
  color: var(--gold-primary);
}

.header-cta {
  display: flex;
  align-items: center;
}

.nav-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--gold-primary);
  cursor: pointer;
}

/* ==========================================================================
   HERO FULL-SCREEN CAROUSEL
   ========================================================================== */
.hero-slider-section {
  position: relative;
  height: calc(100vh - 110px);
  min-height: 550px;
  background-color: var(--black-bg);
  overflow: hidden;
}

.hero-slider-section .swiper-container {
  width: 100%;
  height: 100%;
}

.hero-slide {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  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(to bottom, rgba(12, 2, 4, 0.65) 0%, rgba(58, 2, 8, 0.85) 50%, rgba(12, 2, 4, 0.98) 100%);
  z-index: 2;
}

.hero-content-wrapper {
  position: relative;
  z-index: 3;
  width: 100%;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  padding: 20px;
}

.hero-label {
  font-family: var(--font-serif-sub);
  color: var(--gold-primary);
  font-size: 1rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 20px;
  display: block;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3.2rem;
  line-height: 1.25;
  color: var(--text-light);
  margin-bottom: 20px;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

.hero-content h1 span {
  display: block;
  font-size: 2.2rem;
  color: var(--gold-light);
  margin-top: 10px;
  font-family: var(--font-body);
  font-weight: 300;
}

.hero-content p {
  font-size: 1.15rem;
  color: var(--text-muted-light);
  margin-bottom: 35px;
  max-width: 650px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Swiper navigation custom styles */
.hero-slider-section .swiper-button-next,
.hero-slider-section .swiper-button-prev {
  color: var(--gold-primary);
  width: 50px;
  height: 50px;
  background: rgba(91, 6, 18, 0.4);
  border: 1px solid rgba(212, 175, 55, 0.3);
  border-radius: 50%;
  transition: var(--transition-smooth);
}

.hero-slider-section .swiper-button-next:hover,
.hero-slider-section .swiper-button-prev:hover {
  background: var(--gold-gradient);
  color: var(--maroon-dark);
  border-color: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

.hero-slider-section .swiper-button-next::after,
.hero-slider-section .swiper-button-prev::after {
  font-size: 1.2rem;
  font-weight: bold;
}

.hero-slider-section .swiper-pagination-bullet {
  background: var(--text-light);
  opacity: 0.3;
  width: 10px;
  height: 10px;
  margin: 0 6px !important;
  transition: var(--transition-smooth);
}

.hero-slider-section .swiper-pagination-bullet-active {
  background: var(--gold-primary);
  opacity: 1;
  width: 25px;
  border-radius: 5px;
  box-shadow: var(--gold-glow);
}

/* ==========================================================================
   EMOTIONAL PAIN POINT SECTION (Cream Background)
   ========================================================================== */
.pain-point-section {
  background-color: var(--cream-bg);
  color: var(--text-dark);
}

.pain-point-section .section-header h2 {
  color: var(--text-dark);
}

.pain-point-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 25px;
  margin-bottom: 50px;
}

.pain-card {
  background-color: var(--cream-card);
  padding: 35px 25px;
  border-radius: var(--border-radius);
  border: 1px solid var(--cream-border);
  box-shadow: 0 6px 20px rgba(43, 29, 29, 0.05);
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.pain-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--maroon-light);
  opacity: 0;
  transition: var(--transition-smooth);
}

.pain-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(91, 6, 18, 0.12);
  border-color: rgba(91, 6, 18, 0.2);
}

.pain-card:hover::before {
  opacity: 1;
}

.pain-card:hover .pain-icon-wrapper {
  background-color: var(--maroon-mid);
  color: var(--gold-primary);
  transform: scale(1.1);
  box-shadow: 0 5px 15px rgba(91, 6, 18, 0.3);
}

.pain-icon-wrapper {
  width: 70px;
  height: 70px;
  background-color: #FAF0E6;
  color: var(--maroon-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  margin: 0 auto 20px auto;
  transition: var(--transition-smooth);
}

.pain-card h3 {
  font-family: var(--font-serif-sub);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--maroon-dark);
  margin-bottom: 12px;
}

.pain-card p {
  font-size: 0.9rem;
  color: var(--text-muted-dark);
  line-height: 1.5;
}

.section-cta-box {
  text-align: center;
  margin-top: 40px;
}

.section-cta-box p {
  font-size: 1.1rem;
  font-weight: 500;
  margin-bottom: 20px;
}

/* ==========================================================================
   PROBLEM -> SOLUTION SECTION (Cream Background contd.)
   ========================================================================== */
.problem-solution-section {
  background-color: var(--cream-bg);
  color: var(--text-dark);
  border-top: 1px solid var(--cream-border);
}

.problem-solution-section .section-header h2 {
  color: var(--text-dark);
}

.prob-sol-container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 1000px;
  margin: 0 auto;
}

.prob-sol-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.prob-box,
.sol-box {
  width: 42%;
  padding: 25px;
  border-radius: var(--border-radius);
  position: relative;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
  transition: var(--transition-smooth);
}

.prob-box {
  background: #FFF0F2;
  border: 1px solid #FFD1D6;
  border-left: 5px solid var(--maroon-light);
}

.prob-box h4 {
  font-family: var(--font-serif-sub);
  font-weight: 700;
  color: var(--maroon-dark);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.prob-box h4 i {
  color: var(--maroon-light);
}

.sol-box {
  background: #F0FFF4;
  border: 1px solid #C2F0C2;
  border-left: 5px solid #2e7d32;
}

.sol-box h4 {
  font-family: var(--font-serif-sub);
  font-weight: 700;
  color: #1b5e20;
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.sol-box h4 i {
  color: #2e7d32;
  animation: pulseInfinite 1.5s infinite;
}

.prob-sol-row p {
  font-size: 0.88rem;
  color: var(--text-muted-dark);
}

.arrow-box {
  width: 16%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.connector-line {
  position: relative;
  width: 100%;
  height: 2px;
  background: linear-gradient(to right, var(--maroon-light) 0%, #2e7d32 100%);
}

.connector-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--gold-primary);
  color: var(--maroon-dark);
  width: 28px;
  height: 28px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  box-shadow: var(--gold-glow);
  z-index: 2;
  animation: pulseInfinite 2s infinite;
}

/* ==========================================================================
   SERVICES SECTION (Premium Dark Background)
   ========================================================================== */
.services-section {
  background: linear-gradient(180deg, var(--black-bg) 0%, var(--black-card) 50%, var(--black-bg) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.15);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 30px;
  margin-bottom: 50px;
}

.service-card {
  background-color: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: var(--border-radius);
  padding: 35px 25px;
  text-align: center;
  transition: var(--transition-smooth);
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--border-radius);
  border: 2px solid transparent;
  background: var(--gold-gradient) border-box;
  -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-card:hover {
  transform: translateY(-8px);
  border-color: transparent;
  box-shadow: var(--gold-glow);
}

.service-card:hover::after {
  opacity: 1;
}

.service-icon-container {
  width: 80px;
  height: 80px;
  background: radial-gradient(circle, var(--maroon-mid) 0%, var(--maroon-dark) 100%);
  color: var(--gold-primary);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
  margin: 0 auto 25px auto;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon-container {
  background: var(--gold-gradient);
  color: var(--maroon-dark);
  transform: rotateY(360deg);
  box-shadow: var(--gold-glow);
}

.service-info {
  margin-bottom: 25px;
}

.service-info h3 {
  font-family: var(--font-serif-sub);
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--gold-light);
}

.service-info p {
  font-size: 0.88rem;
  color: var(--text-muted-light);
  line-height: 1.6;
}

.service-card .btn-secondary {
  padding: 10px 20px;
  font-size: 0.8rem;
  width: 100%;
}

/* ==========================================================================
   TRUST & EXPERIENCE SECTION (Dark Premium with Counters)
   ========================================================================== */
.trust-section {
  background: linear-gradient(135deg, var(--maroon-dark) 0%, var(--maroon-mid) 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
  position: relative;
  overflow: hidden;
}

.trust-section::before {
  content: 'ॐ';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30rem;
  color: rgba(255, 255, 255, 0.02);
  font-family: var(--font-heading);
  z-index: 1;
  pointer-events: none;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 40px;
  text-align: center;
  position: relative;
  z-index: 2;
  margin-bottom: 50px;
}

.stat-card {
  padding: 20px;
}

.stat-icon {
  font-size: 2.8rem;
  color: var(--gold-primary);
  margin-bottom: 15px;
  text-shadow: var(--gold-glow);
}

.stat-num {
  font-family: var(--font-serif-sub);
  font-size: 3rem;
  font-weight: 900;
  color: var(--text-light);
  margin-bottom: 5px;
  line-height: 1;
}

.stat-card p {
  color: var(--gold-light);
  font-weight: 500;
  font-size: 1rem;
  letter-spacing: 0.5px;
}

.trust-emotional-line {
  text-align: center;
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.trust-emotional-line h3 {
  font-family: var(--font-heading);
  font-size: 1.8rem;
  color: var(--gold-primary);
  margin-bottom: 15px;
}

.trust-emotional-line p {
  font-size: 1.1rem;
  color: var(--text-muted-light);
}

/* ==========================================================================
   TESTIMONIAL SECTION (Google Review Style Slider)
   ========================================================================== */
@keyframes marquee {
  0% {
    transform: translate3d(0, 0, 0);
  }

  100% {
    transform: translate3d(-50%, 0, 0);
  }
}

.testimonial-slider {
  width: 100%;
  overflow: hidden;
  position: relative;
  padding: 20px 0;
}

.testimonial-track {
  display: flex;
  gap: 30px;
  width: max-content;
  animation: marquee 25s linear infinite;
  will-change: transform;
}

.testimonial-track:hover {
  animation-play-state: paused;
}

.testimonial-section {
  background-color: var(--black-bg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.testimonial-slide {
  background-color: var(--black-card);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: var(--border-radius);
  padding: 30px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
  transition: var(--transition-smooth);
  width: 480px;
  max-width: 85vw;
  flex-shrink: 0;
}

.testimonial-slide:hover {
  border-color: rgba(212, 175, 55, 0.25);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
}

.google-review-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.google-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  color: var(--text-muted-light);
  background-color: rgba(255, 255, 255, 0.03);
  padding: 6px 12px;
  border-radius: 20px;
}

.google-badge i.fa-google {
  background: linear-gradient(to right, #4285F4, #EA4335, #FBBC05, #34A853);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 1rem;
}

.stars {
  color: #FFC107;
  font-size: 0.95rem;
}

.testimonial-text {
  font-style: italic;
  font-size: 0.92rem;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 15px;
}

.user-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: 2px solid var(--gold-primary);
  background-color: var(--maroon-mid);
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  box-shadow: var(--gold-glow);
}

.user-info h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--gold-light);
}

.user-info span {
  font-size: 0.8rem;
  color: var(--text-muted-light);
}

.testimonial-slider-container .swiper-pagination {
  bottom: 10px !important;
}

.testimonial-slider-container .swiper-pagination-bullet {
  background: var(--text-light);
}

.testimonial-slider-container .swiper-pagination-bullet-active {
  background: var(--gold-primary);
  box-shadow: var(--gold-glow);
}

/* ==========================================================================
   STRONG CTA BANNER
   ========================================================================== */
.cta-banner-section {
  background: linear-gradient(135deg, rgba(12, 2, 4, 0.95) 0%, rgba(91, 6, 18, 0.9) 100%), url('assets/hero_bg_1.png') center/cover no-repeat;
  text-align: center;
  padding: 100px 0;
  border-top: 1px solid rgba(212, 175, 55, 0.2);
  border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.cta-banner-content {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.cta-banner-content h2 {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--gold-primary);
  margin-bottom: 15px;
}

.cta-banner-content p {
  font-size: 1.2rem;
  color: var(--text-light);
  margin-bottom: 40px;
  font-family: var(--font-serif-sub);
}

.cta-banner-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

/* ==========================================================================
   LEAD FORM SECTION
   ========================================================================== */
.error-text {
  color: #ff4d4d;
  font-size: 13px;
  margin-top: 5px;
  display: none;
  text-align: left;
  width: 100%;
}

.form-input.is-invalid, .form-select.is-invalid, .form-textarea.is-invalid {
  border-color: #ff4d4d !important;
  box-shadow: 0 0 5px rgba(255, 77, 77, 0.3);
}

.form-input.is-valid, .form-select.is-valid, .form-textarea.is-valid {
  border-color: var(--green-whatsapp) !important;
}
.lead-form-section {
  background: linear-gradient(180deg, var(--black-bg) 0%, var(--maroon-dark) 100%);
  position: relative;
}

.form-wrapper {
  background-color: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.25);
  border-radius: var(--border-radius);
  padding: 40px;
  max-width: 600px;
  margin: 0 auto;
  box-shadow: var(--gold-glow);
  position: relative;
  z-index: 2;
}

.form-title {
  text-align: center;
  margin-bottom: 30px;
}

.form-title h3 {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--gold-primary);
  margin-bottom: 8px;
}

.form-title p {
  font-size: 0.9rem;
  color: var(--text-muted-light);
}

.consult-form {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.input-group {
  position: relative;
  width: 100%;
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 15px 18px;
  background-color: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 8px;
  color: var(--text-light);
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.form-select {
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
}

.form-select option {
  background-color: #1a1a1a;
  color: #f0e6d2;
  padding: 10px 15px;
  font-size: 0.95rem;
}

.form-select option:checked {
  background-color: #2c1a00;
  color: var(--gold-primary);
}

.form-select option:hover {
  background-color: #2c1a00;
}

/* Custom select arrow */
.select-wrapper::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 18px;
  transform: translateY(-50%);
  color: var(--gold-primary);
  font-size: 0.8rem;
  pointer-events: none;
}

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

/* Floating labels effect */
.input-group label {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted-light);
  transition: var(--transition-smooth);
  pointer-events: none;
  font-size: 0.95rem;
}

.input-group.textarea-group label {
  top: 25px;
}

/* Label states when focused or has content */
.form-input:focus~label,
.form-input:not(:placeholder-shown)~label,
.form-select:focus~label,
.form-select:not([value=""])~label,
.form-textarea:focus~label,
.form-textarea:not(:placeholder-shown)~label {
  top: 0;
  left: 12px;
  transform: translateY(-50%);
  background-color: var(--black-card);
  padding: 0 8px;
  font-size: 0.78rem;
  color: var(--gold-primary);
  font-weight: 500;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
  background-color: rgba(255, 255, 255, 0.05);
}

.form-btn {
  width: 100%;
  padding: 16px;
  font-size: 1.05rem;
  letter-spacing: 1px;
  margin-top: 10px;
}

/* ==========================================================================
   URGENCY SECTION
   ========================================================================== */
.urgency-section {
  background: linear-gradient(135deg, #7A0A10 0%, #3D0206 100%);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  border-bottom: 1px solid rgba(212, 175, 55, 0.25);
  padding: 50px 0;
}

.urgency-container {
  display: flex;
  justify-content: space-around;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
}

.urgency-item {
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 250px;
}

.urgency-icon {
  font-size: 2.2rem;
  color: var(--gold-primary);
  text-shadow: var(--gold-glow);
  animation: pulseInfinite 1.5s infinite;
}

.urgency-text h4 {
  font-family: var(--font-serif-sub);
  font-size: 1.1rem;
  color: var(--text-light);
  margin-bottom: 4px;
}

.urgency-text p {
  font-size: 0.82rem;
  color: var(--gold-light);
}

/* ==========================================================================
   FAQ SECTION (Accordion style)
   ========================================================================== */
.faq-section {
  background-color: var(--black-bg);
}

.faq-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.15);
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
  transition: var(--transition-smooth);
}

.faq-item:hover {
  border-color: rgba(212, 175, 55, 0.35);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.faq-header {
  padding: 20px 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: var(--transition-smooth);
}

.faq-header h3 {
  font-family: var(--font-serif-sub);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--gold-light);
  padding-right: 15px;
  line-height: 1.4;
}

.faq-icon {
  font-size: 0.9rem;
  color: var(--gold-primary);
  transition: transform 0.3s ease;
}

.faq-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
  background-color: rgba(255, 255, 255, 0.01);
}

.faq-content p {
  padding: 0 25px 20px 25px;
  font-size: 0.9rem;
  color: var(--text-muted-light);
  line-height: 1.7;
}

/* Active State */
.faq-item.active {
  border-color: var(--gold-primary);
}

.faq-item.active .faq-header {
  background-color: rgba(91, 6, 18, 0.2);
}

.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

.faq-item.active .faq-content {
  max-height: 1000px;
  transition: max-height 0.5s cubic-bezier(1, 0, 1, 0);
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
footer {
  background-color: #080103;
  border-top: 2px solid var(--gold-primary);
  padding: 70px 0 30px 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 40px;
  margin-bottom: 50px;
}

.footer-col h4 {
  font-family: var(--font-serif-sub);
  font-size: 1.2rem;
  color: var(--gold-primary);
  margin-bottom: 25px;
  position: relative;
  display: inline-block;
}

.footer-col h4::after {
  content: '';
  display: block;
  width: 40px;
  height: 2px;
  background: var(--saffron-primary);
  margin-top: 8px;
}

.footer-about p {
  font-size: 0.88rem;
  color: var(--text-muted-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.social-icon {
  width: 38px;
  height: 38px;
  background-color: var(--black-card);
  border: 1px solid rgba(212, 175, 55, 0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-primary);
  transition: var(--transition-smooth);
  font-size: 0.95rem;
}

.social-icon:hover {
  background: var(--gold-gradient);
  color: var(--maroon-dark);
  box-shadow: var(--gold-glow);
  transform: translateY(-3px);
}

.footer-links {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  font-size: 0.88rem;
  color: var(--text-muted-light);
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer-links a i {
  font-size: 0.75rem;
  color: var(--saffron-light);
}

.footer-links a:hover {
  color: var(--gold-primary);
  padding-left: 5px;
}

.footer-contact-info {
  list-style: none;
}

.footer-contact-info li {
  font-size: 0.88rem;
  color: var(--text-muted-light);
  margin-bottom: 15px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.footer-contact-info li i {
  color: var(--gold-primary);
  font-size: 1.05rem;
  margin-top: 3px;
}

.footer-contact-info li a:hover {
  color: var(--gold-primary);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 25px;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted-light);
}

.footer-bottom p span {
  color: var(--gold-primary);
}

/* ==========================================================================
   STICKY FLOATING ACTIONS & MOBILE OPTIMIZATIONS
   ========================================================================== */
/* Desktop floating buttons */
.desktop-whatsapp-float {
  position: fixed;
  bottom: 90px;
  right: 25px;
  width: 55px;
  height: 55px;
  background-color: var(--green-whatsapp);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.8rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), var(--green-glow);
  z-index: 98;
  transition: var(--transition-smooth);
}

.desktop-whatsapp-float:hover {
  transform: scale(1.1) rotate(15deg);
}

.desktop-call-float {
  position: fixed;
  bottom: 25px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: var(--saffron-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-light);
  font-size: 1.6rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3), var(--saffron-glow);
  z-index: 98;
  transition: var(--transition-smooth);
}

.desktop-call-float:hover {
  transform: scale(1.1) rotate(-15deg);
}

/* Mobile Sticky Sticky Bottom CTA bar */
.mobile-sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: var(--black-bg);
  border-top: 1px solid rgba(212, 175, 55, 0.25);
  box-shadow: 0 -5px 15px rgba(0, 0, 0, 0.3);
  z-index: 999;
}

.mobile-sticky-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100%;
}

.mobile-cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-light);
  text-transform: uppercase;
}

.mobile-cta-btn.call-btn {
  background: var(--saffron-gradient);
}

.mobile-cta-btn.wa-btn {
  background-color: var(--green-whatsapp);
}

.mobile-cta-btn i {
  font-size: 1.25rem;
  animation: pulseInfinite 1.5s infinite;
}

/* ==========================================================================
   GOOGLE TRANSLATE OVERRIDES
   ========================================================================== */
#google_translate_element {
  display: none !important;
}
.goog-te-banner-frame.skiptranslate {
  display: none !important;
}
body {
  top: 0px !important; 
}

/* ==========================================================================
   MEDIA QUERIES (RESPONSIVENESS)
   ========================================================================== */
@media screen and (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.8rem;
  }

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

@media screen and (max-width: 900px) {
  .prob-sol-row {
    flex-direction: column;
    gap: 15px;
  }

  .prob-box,
  .sol-box {
    width: 100%;
  }

  .arrow-box {
    width: 100%;
    transform: rotate(90deg);
    margin: 15px 0;
  }
}

@media screen and (max-width: 768px) {

  /* Navigation toggling */
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background-color: var(--black-bg);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    flex-direction: column;
    padding: 50px 20px;
    gap: 25px;
    transition: 0.4s ease-in-out;
    z-index: 99;
  }

  .nav-menu.active {
    left: 0;
  }

  .nav-toggle {
    display: block;
  }

  .header-cta {
    display: none;
  }

  .mobile-lang-item {
    display: block;
    margin-top: 15px;
    width: 100%;
  }

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

  .top-bar .container {
    justify-content: center;
  }

  /* Hero modifications */
  .hero-slider-section {
    height: calc(100vh - 60px);
  }

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

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

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 25px;
  }

  .hero-actions {
    flex-direction: column;
    gap: 12px;
  }

  .hero-actions a {
    width: 100%;
  }

  /* Counter layout */
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  /* Layout Paddings */
  .section-padding {
    padding: 60px 0;
  }

  .section-header h2 {
    font-size: 1.8rem;
  }

  /* Form Layout */
  .form-wrapper {
    padding: 25px 20px;
  }

  /* Floating elements adjustments */
  .desktop-whatsapp-float,
  .desktop-call-float {
    display: none;
  }

  .mobile-sticky-cta {
    display: block;
  }

  /* Adjust body padding for sticky footer */
  body {
    padding-bottom: 60px;
  }
}

@media screen and (max-width: 480px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-num {
    font-size: 2.5rem;
  }

  .urgency-container {
    flex-direction: column;
    align-items: flex-start;
    padding: 0 10px;
  }
}