/* ==========================================================================
   FITNOW MODERN REDESIGN - Inspired by Rezerv
   Color Theme: Yellow (#FFC121) & Purple (#423273)
   ========================================================================== */

/* CSS Variables for consistent theming */
:root {
  --primary-yellow: #FFC121;
  --primary-yellow-light: #FFD54F;
  --primary-yellow-dark: #E5AC00;
  --primary-purple: #423273;
  --primary-purple-light: #6B5B95;
  --primary-purple-dark: #2D2250;
  --text-dark: #1a1a2e;
  --text-medium: #4a4a68;
  --text-light: #6b6b8d;
  --bg-white: #ffffff;
  --bg-light: #f8f9fc;
  --bg-gray: #f0f2f7;
  --shadow-sm: 0 2px 8px rgba(66, 50, 115, 0.08);
  --shadow-md: 0 4px 20px rgba(66, 50, 115, 0.12);
  --shadow-lg: 0 8px 40px rgba(66, 50, 115, 0.16);
  --shadow-xl: 0 20px 60px rgba(66, 50, 115, 0.2);
  --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-normal: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 20px;
  --border-radius-xl: 30px;
  /* Font families */
  --font-primary: 'Captura Now', 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-heading: 'Captura Now', 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

/* Reset transition on all elements for better control */
*, *::before, *::after {
  transition: none;
}

/* ==========================================================================
   TYPOGRAPHY - Modern Sans-Serif (Rezerv-inspired)
   ========================================================================== */
body {
  font-family: var(--font-primary);
  color: var(--text-medium);
  line-height: 1.7;
  font-size: 16px;
  background: var(--bg-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  color: var(--primary-purple);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

/* Text highlight yellow */
.text-highlight-yellow {
  color: var(--primary-yellow);
}

/* ==========================================================================
   MODERN NAVIGATION
   ========================================================================== */
.navbar-modern {
  padding: 15px 0;
  background: transparent;
  transition: var(--transition-normal);
}

.navbar-modern.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: var(--shadow-sm);
  padding: 10px 0;
}

.navbar-modern .nav-link {
  color: #ffffff;
  font-weight: 500;
  font-size: 15px;
  padding: 10px 20px !important;
  position: relative;
  transition: var(--transition-fast);
}

.navbar-modern .nav-link::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 20px;
  right: 20px;
  height: 2px;
  background: var(--primary-yellow);
  transform: scaleX(0);
  transition: var(--transition-fast);
}

.navbar-modern .nav-link:hover::after,
.navbar-modern .nav-link.active::after {
  transform: scaleX(1);
}

.navbar-modern .nav-link:hover {
  color: var(--primary-yellow);
}

.navbar-modern.scrolled .nav-link {
  color: var(--text-dark);
}

.navbar-modern.scrolled .nav-link:hover {
  color: var(--primary-purple);
}

/* Mobile navbar - white background only when menu is open */
@media (max-width: 767.98px) {
  /* White background for entire navbar when menu is open */
  .navbar-modern.menu-open {
    background: #ffffff !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1) !important;
  }

  /* White background for the dropdown menu */
  .navbar-modern .navbar-collapse.show,
  .navbar-modern .navbar-collapse.collapsing {
    background: #ffffff !important;
    padding: 15px !important;
    border-radius: 0;
    margin-top: 10px;
  }

  /* Dark text for nav links when menu is open */
  .navbar-modern.menu-open .nav-link,
  .navbar-modern .navbar-collapse.show .nav-link,
  .navbar-modern .navbar-collapse.collapsing .nav-link {
    color: #333333 !important;
  }

  .navbar-modern.menu-open .nav-link:hover,
  .navbar-modern .navbar-collapse.show .nav-link:hover,
  .navbar-modern .navbar-collapse.collapsing .nav-link:hover {
    color: var(--primary-yellow) !important;
  }

  /* Toggler button styling */
  .navbar-modern .navbar-toggler {
    border-color: var(--primary-yellow);
    color: var(--primary-yellow);
  }

  .navbar-modern.menu-open .navbar-toggler {
    color: #333333;
    border-color: #333333;
  }
}

/* ==========================================================================
   MODERN HERO SECTION
   ========================================================================== */
.hero-modern {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Hero Background Image Carousel */
.hero-bg-carousel {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.hero-bg-slide.active {
  opacity: 1;
}

/* Dark overlay for better text readability */
.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(66, 50, 115, 0.35) 0%,
    rgba(66, 50, 115, 0.25) 50%,
    rgba(45, 34, 80, 0.3) 100%
  );
  z-index: 1;
}

.hero-modern::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 150%;
  background: radial-gradient(ellipse, rgba(255, 193, 33, 0.15) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-modern::after {
  content: '';
  position: absolute;
  bottom: -30%;
  left: -10%;
  width: 50%;
  height: 80%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 3;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-light) 100%);
  color: var(--primary-purple-dark);
  padding: 8px 20px;
  border-radius: var(--border-radius-xl);
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 25px;
  box-shadow: 0 4px 15px rgba(255, 193, 33, 0.4);
}

.hero-badge i {
  font-size: 14px;
}

.hero-title {
  font-size: 52px;
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 10px;
  line-height: 1.2;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.hero-title-rotator {
  display: block;
  font-size: 56px;
  margin-top: 5px;
}

.hero-title-rotator .rotate-text {
  display: inline-block;
  color: var(--primary-yellow);
  position: relative;
}

.hero-title-rotator .rotate-text::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  width: 100%;
  height: 12px;
  background: rgba(255, 193, 33, 0.4);
  z-index: -1;
  transform: skewX(-5deg);
}

.hero-subtitle {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 500px;
  margin-bottom: 35px;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-stat-item {
  text-align: left;
}

.hero-stat-number {
  font-size: 36px;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 5px;
}

.hero-stat-number span {
  color: var(--primary-yellow);
}

.hero-stat-label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 500;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  z-index: 3;
}

.hero-image-container {
  position: relative;
  display: inline-block;
}

.hero-phone-mockup {
  max-width: 350px;
  filter: drop-shadow(0 30px 60px rgba(66, 50, 115, 0.25));
  animation: heroFloat 4s ease-in-out infinite;
}

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

.hero-floating-card {
  position: absolute;
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  padding: 15px 20px;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 12px;
  animation: floatCard 3s ease-in-out infinite;
}

.hero-floating-card.card-1 {
  top: 20%;
  left: -60px;
  animation-delay: 0s;
}

.hero-floating-card.card-2 {
  bottom: 25%;
  right: -40px;
  animation-delay: 1.5s;
}

@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}

.floating-card-icon {
  width: 45px;
  height: 45px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}

.floating-card-icon.yellow {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-light) 100%);
  color: var(--primary-purple-dark);
}

.floating-card-icon.purple {
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
  color: white;
}

.floating-card-text {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.floating-card-subtext {
  font-size: 11px;
  color: var(--text-light);
}

/* ==========================================================================
   MODERN BUTTONS
   ========================================================================== */
.btn-modern {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border-radius: var(--border-radius-lg);
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  transition: var(--transition-normal);
  border: none;
  cursor: pointer;
}

.btn-modern-primary {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-light) 100%);
  color: var(--primary-purple-dark);
  box-shadow: 0 4px 20px rgba(255, 193, 33, 0.4);
}

.btn-modern-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(255, 193, 33, 0.5);
  color: var(--primary-purple-dark);
}

.btn-modern-secondary {
  background: var(--bg-white);
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple);
}

.btn-modern-secondary:hover {
  background: var(--primary-purple);
  color: var(--bg-white);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

/* Hero section secondary button (for dark background) */
.hero-modern .btn-modern-secondary {
  background: transparent;
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

.hero-modern .btn-modern-secondary:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: rgba(255, 255, 255, 0.6);
  color: #ffffff;
  transform: translateY(-3px);
}

.btn-modern-outline {
  background: transparent;
  color: var(--primary-purple);
  border: 2px solid rgba(66, 50, 115, 0.2);
}

.btn-modern-outline:hover {
  border-color: var(--primary-yellow);
  color: var(--primary-yellow-dark);
  background: rgba(255, 193, 33, 0.05);
}

/* ==========================================================================
   TRUSTED BY SECTION
   ========================================================================== */
.trusted-section {
  padding: 60px 0;
  background: var(--bg-white);
  border-top: 1px solid rgba(66, 50, 115, 0.05);
  border-bottom: 1px solid rgba(66, 50, 115, 0.05);
}

.trusted-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 25px;
  text-align: center;
}

.trusted-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 50px;
  flex-wrap: wrap;
  opacity: 0.6;
}

.trusted-logos img {
  height: 35px;
  filter: grayscale(100%);
  transition: var(--transition-normal);
}

.trusted-logos img:hover {
  filter: grayscale(0%);
  opacity: 1;
}

/* ==========================================================================
   HOW IT WORKS / CUSTOMER JOURNEY
   ========================================================================== */
.journey-section {
  padding: 100px 0;
  background: var(--bg-light);
  position: relative;
}

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

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-yellow-dark);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 15px;
}

.section-eyebrow::before,
.section-eyebrow::after {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--primary-yellow);
}

.section-title-modern {
  font-size: 42px;
  color: var(--primary-purple);
  margin-bottom: 15px;
  font-weight: 900;
}

.section-subtitle-modern {
  font-size: 18px;
  color: var(--text-light);
  max-width: 600px;
  margin: 0 auto;
}

.journey-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
}

.journey-steps::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 15%;
  right: 15%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-yellow), var(--primary-purple));
  z-index: 0;
}

.journey-step {
  text-align: center;
  position: relative;
  z-index: 1;
}

.journey-step-number {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-light) 100%);
  color: var(--primary-purple-dark);
  font-size: 24px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 4px 20px rgba(255, 193, 33, 0.4);
  transition: var(--transition-normal);
}

.journey-step:hover .journey-step-number {
  transform: scale(1.1);
  box-shadow: 0 8px 30px rgba(255, 193, 33, 0.5);
}

.journey-step-icon {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-md);
  background: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.journey-step-icon i {
  font-size: 32px;
  color: var(--primary-purple);
  transition: var(--transition-normal);
}

.journey-step:hover .journey-step-icon {
  background: var(--primary-purple);
  box-shadow: var(--shadow-md);
}

.journey-step:hover .journey-step-icon i {
  color: var(--primary-yellow);
}

.journey-step-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 10px;
}

.journey-step-desc {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.6;
}

/* ==========================================================================
   FEATURES SECTION MODERN
   ========================================================================== */
.features-modern {
  padding: 100px 0;
  background: var(--bg-white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.feature-card-modern {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(66, 50, 115, 0.05);
  transition: var(--transition-normal);
  position: relative;
  overflow: hidden;
}

.feature-card-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--primary-yellow), var(--primary-purple));
  transform: scaleX(0);
  transition: var(--transition-normal);
}

.feature-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.feature-card-modern:hover::before {
  transform: scaleX(1);
}

.feature-icon-modern {
  width: 80px;
  height: 80px;
  border-radius: var(--border-radius-md);
  background: linear-gradient(135deg, rgba(255, 193, 33, 0.1) 0%, rgba(255, 193, 33, 0.05) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  transition: var(--transition-normal);
}

.feature-icon-modern i {
  font-size: 36px;
  color: var(--primary-yellow);
  transition: var(--transition-normal);
}

.feature-card-modern:hover .feature-icon-modern {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-light) 100%);
}

.feature-card-modern:hover .feature-icon-modern i {
  color: var(--primary-purple-dark);
  transform: scale(1.1);
}

.feature-title-modern {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 12px;
}

.feature-desc-modern {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
}

/* ==========================================================================
   STATS SECTION
   ========================================================================== */
.stats-section {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-dark) 100%);
  position: relative;
  overflow: hidden;
}

.stats-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  opacity: 0.5;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  position: relative;
  z-index: 1;
}

.stat-item-modern {
  text-align: center;
}

.stat-number-modern {
  font-size: 56px;
  font-weight: 700;
  color: var(--primary-yellow);
  line-height: 1;
  margin-bottom: 10px;
}

.stat-label-modern {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
}

/* ==========================================================================
   SERVICES MODERN
   ========================================================================== */
.services-modern {
  padding: 100px 0;
  background: var(--bg-light);
}

.services-grid-modern {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.service-card-modern {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-normal);
}

.service-card-modern:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-lg);
}

.service-image-modern {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.service-image-modern img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition-slow);
}

.service-card-modern:hover .service-image-modern img {
  transform: scale(1.1);
}

.service-image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(66, 50, 115, 0.8) 100%);
  opacity: 0;
  transition: var(--transition-normal);
}

.service-card-modern:hover .service-image-overlay {
  opacity: 1;
}

.service-content-modern {
  padding: 30px;
}

.service-title-modern {
  font-size: 20px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 12px;
}

.service-desc-modern {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 20px;
}

.service-link-modern {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--primary-yellow-dark);
  text-decoration: none;
  transition: var(--transition-fast);
}

.service-link-modern:hover {
  color: var(--primary-purple);
  gap: 12px;
}

/* ==========================================================================
   TESTIMONIALS MODERN
   ========================================================================== */
.testimonials-modern {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-light) 100%);
  position: relative;
}

.testimonials-modern::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.1' fill-rule='evenodd'/%3E%3C/svg%3E");
}

.testimonials-modern .section-eyebrow {
  color: var(--primary-purple);
}

.testimonials-modern .section-eyebrow::before,
.testimonials-modern .section-eyebrow::after {
  background: var(--primary-purple);
}

.testimonials-modern .section-title-modern {
  color: var(--primary-purple);
}

.testimonials-modern .section-subtitle-modern {
  color: var(--primary-purple-dark);
  opacity: 0.8;
}

.testimonial-card-modern {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  margin: 15px;
  transition: var(--transition-normal);
}

.testimonial-card-modern:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-xl);
}

.testimonial-quote {
  font-size: 40px;
  color: var(--primary-yellow);
  line-height: 1;
  margin-bottom: 20px;
}

.testimonial-text-modern {
  font-size: 16px;
  color: var(--text-medium);
  line-height: 1.8;
  margin-bottom: 25px;
  font-style: italic;
}

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

.testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--primary-yellow);
}

/* Override owl-carousel default img width to keep avatar circular */
.owl-carousel .owl-item .testimonial-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
}

.testimonial-author-info h4 {
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 3px;
}

.testimonial-author-info p {
  font-size: 14px;
  color: var(--text-light);
  margin: 0;
}

.testimonial-rating {
  margin-left: auto;
  color: var(--primary-yellow);
  font-size: 16px;
}

/* ==========================================================================
   CTA SECTION
   ========================================================================== */
.cta-modern {
  padding: 100px 0;
  background: var(--bg-white);
  text-align: center;
}

.cta-content {
  max-width: 700px;
  margin: 0 auto;
}

.cta-title {
  font-size: 42px;
  color: var(--primary-purple);
  margin-bottom: 20px;
}

.cta-subtitle {
  font-size: 18px;
  color: var(--text-light);
  margin-bottom: 35px;
}

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

/* ==========================================================================
   FOOTER MODERN
   ========================================================================== */
.footer-modern {
  background: var(--primary-purple-dark);
  padding: 80px 0 30px;
  color: rgba(255, 255, 255, 0.7);
}

.footer-brand {
  margin-bottom: 25px;
}

.footer-brand img {
  height: 40px;
}

.footer-desc {
  font-size: 15px;
  line-height: 1.8;
  margin-bottom: 25px;
  max-width: 300px;
}

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

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 16px;
  transition: var(--transition-fast);
}

.footer-social a:hover {
  background: var(--primary-yellow);
  color: var(--primary-purple-dark);
  transform: translateY(-3px);
}

.footer-title {
  font-size: 16px;
  font-weight: 700;
  color: white;
  margin-bottom: 25px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 15px;
  transition: var(--transition-fast);
  display: inline-block;
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 15px;
  font-size: 15px;
}

.footer-contact-item i {
  color: var(--primary-yellow);
  font-size: 18px;
  width: 20px;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 50px;
  padding-top: 30px;
  text-align: center;
}

.footer-bottom p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.footer-bottom a {
  color: var(--primary-yellow);
  text-decoration: none;
}

/* ==========================================================================
   RESPONSIVE DESIGN
   ========================================================================== */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 44px;
  }

  .hero-title-rotator {
    font-size: 48px;
  }
}

@media (max-width: 991px) {
  .hero-modern {
    padding: 100px 0 60px;
    min-height: auto;
  }

  .hero-title {
    font-size: 38px;
  }

  .hero-title-rotator {
    font-size: 42px;
  }

  .hero-image-wrapper {
    margin-top: 50px;
    text-align: center;
  }

  .hero-phone-mockup {
    max-width: 280px;
  }

  .hero-floating-card {
    display: none;
  }

  .hero-stats {
    gap: 25px;
  }

  .journey-steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
  }

  .journey-steps::before {
    display: none;
  }

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

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

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

  .section-title-modern {
    font-size: 34px;
  }
}

@media (max-width: 767px) {
  .hero-title {
    font-size: 32px;
  }

  .hero-title-rotator {
    font-size: 36px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-stats {
    flex-wrap: wrap;
    gap: 20px;
  }

  .hero-stat-item {
    flex: 1 1 45%;
  }

  .hero-stat-number {
    font-size: 28px;
  }

  .journey-steps {
    grid-template-columns: 1fr;
  }

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

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

  .stat-number-modern {
    font-size: 42px;
  }

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

  .section-title-modern {
    font-size: 28px;
  }

  .section-subtitle-modern {
    font-size: 16px;
  }

  .cta-title {
    font-size: 32px;
  }

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

  .testimonial-card-modern {
    padding: 25px;
    margin: 10px;
  }
}

@media (max-width: 575px) {
  .hero-badge {
    font-size: 11px;
    padding: 6px 14px;
  }

  .hero-title {
    font-size: 28px;
  }

  .hero-title-rotator {
    font-size: 30px;
  }

  .btn-modern {
    padding: 12px 24px;
    font-size: 14px;
    width: 100%;
    justify-content: center;
  }

  .feature-card-modern {
    padding: 30px 20px;
  }

  .feature-icon-modern {
    width: 60px;
    height: 60px;
  }

  .feature-icon-modern i {
    font-size: 28px;
  }
}

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

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.animate-fade-up {
  animation: fadeInUp 0.8s ease forwards;
}

.animate-fade-left {
  animation: fadeInLeft 0.8s ease forwards;
}

.animate-fade-right {
  animation: fadeInRight 0.8s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }
.animate-delay-5 { animation-delay: 0.5s; }

/* Text Rotator Animation */
.text-rotate-wrapper {
  display: inline-block;
  overflow: hidden;
  height: 70px;
  vertical-align: bottom;
}

.text-rotate-item {
  display: block;
  animation: textRotate 8s infinite;
}

@keyframes textRotate {
  0%, 20% { transform: translateY(0); }
  25%, 45% { transform: translateY(-100%); }
  50%, 70% { transform: translateY(-200%); }
  75%, 95% { transform: translateY(-300%); }
  100% { transform: translateY(-400%); }
}

/* Scroll Animation Triggers */
.scroll-animate {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.scroll-animate.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ==========================================================================
   PRICING SECTION - REZERV INSPIRED
   ========================================================================== */
.pricing-section-modern {
  padding: 100px 0;
  background: var(--bg-light);
}

/* Billing Toggle */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 50px;
}

.toggle-label {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  transition: var(--transition-fast);
}

.toggle-label.active {
  color: var(--primary-purple);
  font-weight: 600;
}

.save-badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-light) 100%);
  color: var(--primary-purple-dark);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px;
  margin-left: 8px;
  text-transform: uppercase;
}

.toggle-switch {
  position: relative;
  display: inline-block;
  width: 56px;
  height: 30px;
}

.toggle-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.toggle-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #e0e0e0;
  transition: var(--transition-fast);
  border-radius: 30px;
}

.toggle-slider:before {
  position: absolute;
  content: "";
  height: 24px;
  width: 24px;
  left: 3px;
  bottom: 3px;
  background-color: white;
  transition: var(--transition-fast);
  border-radius: 50%;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.toggle-switch input:checked + .toggle-slider {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-light) 100%);
}

.toggle-switch input:checked + .toggle-slider:before {
  transform: translateX(26px);
}

/* Pricing Cards - Rezerv Style */
.pricing-cards-container {
  margin-bottom: 80px;
}

.pricing-card-rezerv {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 40px 30px;
  height: 100%;
  box-shadow: var(--shadow-sm);
  border: 2px solid transparent;
  transition: var(--transition-normal);
  position: relative;
  display: flex;
  flex-direction: column;
}

.pricing-card-rezerv:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.pricing-card-rezerv.popular {
  border-color: var(--primary-yellow);
  box-shadow: var(--shadow-md);
  transform: scale(1.02);
}

.pricing-card-rezerv.popular:hover {
  transform: scale(1.02) translateY(-8px);
  box-shadow: var(--shadow-xl);
}

.popular-ribbon {
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-light) 100%);
  color: var(--primary-purple-dark);
  font-size: 12px;
  font-weight: 700;
  padding: 8px 24px;
  border-radius: 0 0 var(--border-radius-sm) var(--border-radius-sm);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.pricing-card-header-rezerv {
  margin-bottom: 25px;
}

.pricing-card-header-rezerv .plan-name {
  font-size: 26px;
  font-weight: 700;
  color: var(--primary-purple);
  margin-bottom: 8px;
}

.pricing-card-header-rezerv .plan-description {
  font-size: 14px;
  color: var(--text-light);
  line-height: 1.5;
  margin: 0;
}

.pricing-card-price-rezerv {
  margin-bottom: 25px;
}

.pricing-card-price-rezerv .price-wrapper {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin-bottom: 5px;
}

.pricing-card-price-rezerv .currency {
  font-size: 20px;
  font-weight: 600;
  color: var(--primary-purple);
}

.pricing-card-price-rezerv .amount {
  font-size: 52px;
  font-weight: 700;
  color: var(--primary-purple);
  line-height: 1;
}

.pricing-card-price-rezerv .period {
  font-size: 16px;
  color: var(--text-light);
  font-weight: 500;
}

.pricing-card-price-rezerv .custom-price .amount {
  font-size: 36px;
}

.pricing-card-price-rezerv .billing-info {
  font-size: 13px;
  color: var(--text-light);
  margin: 0;
}

.pricing-card-price-rezerv .billing-info strong {
  color: var(--primary-purple);
}

/* Pricing Buttons */
.btn-pricing-rezerv {
  display: block;
  width: 100%;
  padding: 14px 24px;
  border-radius: var(--border-radius-sm);
  font-size: 15px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  transition: var(--transition-normal);
  margin-bottom: 30px;
}

.btn-pricing-primary {
  background: linear-gradient(135deg, var(--primary-yellow) 0%, var(--primary-yellow-light) 100%);
  color: var(--primary-purple-dark);
  border: none;
  box-shadow: 0 4px 15px rgba(255, 193, 33, 0.4);
}

.btn-pricing-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 193, 33, 0.5);
  color: var(--primary-purple-dark);
}

.btn-pricing-outline {
  background: transparent;
  color: var(--primary-purple);
  border: 2px solid var(--primary-purple);
}

.btn-pricing-outline:hover {
  background: var(--primary-purple);
  color: white;
  transform: translateY(-2px);
}

/* Pricing Features List */
.pricing-features-rezerv {
  flex: 1;
}

.pricing-features-rezerv .feature-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  font-size: 14px;
  color: var(--text-medium);
}

.pricing-features-rezerv .feature-item i {
  color: var(--primary-yellow);
  font-size: 18px;
  flex-shrink: 0;
  margin-top: 2px;
}

.pricing-features-rezerv .feature-item strong {
  color: var(--primary-purple);
}

/* Feature Comparison Table */
.pricing-comparison-wrapper {
  background: var(--bg-white);
  border-radius: var(--border-radius-lg);
  padding: 50px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 50px;
}

.comparison-title {
  font-size: 28px;
  color: var(--primary-purple);
  text-align: center;
  margin-bottom: 40px;
}

.comparison-table-modern {
  overflow-x: auto;
}

.comparison-table-modern table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
}

.comparison-table-modern thead th {
  padding: 15px 20px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--primary-purple);
  background: var(--bg-light);
  border-bottom: 2px solid var(--primary-yellow);
}

.comparison-table-modern thead th.feature-col {
  text-align: left;
  width: 35%;
}

.comparison-table-modern thead th.popular-col {
  background: linear-gradient(135deg, rgba(255, 193, 33, 0.15) 0%, rgba(255, 193, 33, 0.05) 100%);
}

.comparison-table-modern tbody tr {
  border-bottom: 1px solid var(--bg-gray);
}

.comparison-table-modern tbody tr:hover {
  background: var(--bg-light);
}

.comparison-table-modern tbody tr.section-row {
  background: var(--primary-purple);
}

.comparison-table-modern tbody tr.section-row td {
  color: white;
  font-weight: 700;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 12px 20px;
}

.comparison-table-modern tbody td {
  padding: 15px 20px;
  text-align: center;
  font-size: 14px;
  color: var(--text-medium);
}

.comparison-table-modern tbody td:first-child {
  text-align: left;
  font-weight: 500;
  color: var(--text-dark);
}

.comparison-table-modern tbody td.popular-col {
  background: rgba(255, 193, 33, 0.05);
}

.comparison-table-modern tbody td i.lni-checkmark {
  color: var(--primary-yellow);
  font-size: 18px;
  font-weight: bold;
}

.comparison-table-modern tbody td i.lni-close {
  color: #ccc;
  font-size: 16px;
}

/* Trust Badges */
.pricing-trust {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 40px;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text-medium);
  font-weight: 500;
}

.trust-item i {
  font-size: 20px;
  color: var(--primary-yellow);
}

/* Pricing Responsive */
@media (max-width: 991px) {
  .pricing-card-rezerv.popular {
    transform: scale(1);
  }

  .pricing-card-rezerv.popular:hover {
    transform: translateY(-8px);
  }

  .pricing-comparison-wrapper {
    padding: 30px 20px;
  }

  .comparison-title {
    font-size: 24px;
  }
}

@media (max-width: 767px) {
  .pricing-section-modern {
    padding: 60px 0;
  }

  .billing-toggle {
    flex-wrap: wrap;
    gap: 10px;
  }

  .save-badge {
    display: block;
    margin-left: 0;
    margin-top: 5px;
  }

  .pricing-card-rezerv {
    padding: 30px 20px;
  }

  .pricing-card-price-rezerv .amount {
    font-size: 42px;
  }

  .pricing-trust {
    gap: 20px;
  }

  .trust-item {
    flex: 1 1 45%;
    justify-content: center;
  }

  .comparison-table-modern {
    margin: 0 -20px;
    padding: 0 20px;
  }
}

@media (max-width: 575px) {
  .pricing-card-header-rezerv .plan-name {
    font-size: 22px;
  }

  .pricing-card-price-rezerv .amount {
    font-size: 36px;
  }

  .trust-item {
    flex: 1 1 100%;
  }
}

/* ========== FAQ SECTION ========== */
.faq-section-modern {
  padding: 100px 0;
  background: linear-gradient(180deg, var(--bg-light) 0%, #ffffff 100%);
}

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

.faq-item {
  background: white;
  border-radius: 16px;
  margin-bottom: 12px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 8px 24px rgba(124, 58, 237, 0.12);
  border-color: rgba(124, 58, 237, 0.2);
}

.faq-item.active {
  box-shadow: 0 8px 32px rgba(124, 58, 237, 0.15);
  border-color: var(--primary-purple);
}

.faq-question {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--text-primary);
  margin: 0;
  padding: 22px 28px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  line-height: 1.5;
  transition: all 0.3s ease;
}

.faq-question:hover {
  color: var(--primary-purple);
}

.faq-item.active .faq-question {
  color: var(--primary-purple);
}

.faq-icon {
  width: 28px;
  height: 28px;
  min-width: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--primary-purple) 0%, var(--primary-purple-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.faq-icon::before {
  content: '';
  width: 7px;
  height: 7px;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(45deg);
  position: relative;
  top: -2px;
  transition: transform 0.3s ease, top 0.3s ease;
}

.faq-item.active .faq-icon::before {
  transform: rotate(-135deg);
  top: 2px;
}

.faq-answer {
  font-size: 1rem;
  color: var(--text-secondary);
  line-height: 1.8;
  margin: 0;
  padding: 0 28px 24px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.4s ease;
}

.faq-item.active .faq-answer {
  max-height: 300px;
  opacity: 1;
  padding-top: 4px;
}

.faq-answer-inner {
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

@media (max-width: 768px) {
  .faq-section-modern {
    padding: 60px 0;
  }

  .faq-question {
    padding: 18px 20px;
    font-size: 0.95rem;
  }

  .faq-answer {
    padding: 0 20px 20px;
    font-size: 0.9rem;
  }

  .faq-icon {
    width: 24px;
    height: 24px;
    min-width: 24px;
  }

  .faq-icon::before {
    font-size: 16px;
  }
}
