/* ===================================
   FONT IMPORTS
   =================================== */
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;600;700&family=Plus+Jakarta+Sans:wght@500;600;700;800&display=swap");

/* ===================================
   MODERN ROOT VARIABLES & RESET
   =================================== */
:root {
  /* Brand Colors */
  --color-orange: #f08723;
  --color-orange-light: #ff9a3c;
  --color-blue: #005b98;
  --color-blue-light: #0077c2;

  /* Light Theme */
  --color-white: #ffffff;
  --color-gray-light: #f8f9fa;
  --color-gray: #e9ecef;
  --color-text-light: #6c757d;

  /* Dark Theme */
  --color-dark-bg: #0a0e27;
  --color-dark-card: #141b2d;
  --color-dark-text: #e4e6eb;
  --color-dark-text-muted: #b0b3b8;

  /* Gradients */
  --gradient-primary: linear-gradient(135deg, #f08723 0%, #ff6b35 100%);
  --gradient-blue: linear-gradient(135deg, #005b98 0%, #0077c2 100%);
  --gradient-dark: linear-gradient(135deg, #0a0e27 0%, #1a1f3a 100%);
  --gradient-mesh: radial-gradient(
      at 0% 0%,
      rgba(240, 135, 35, 0.3) 0px,
      transparent 50%
    ),
    radial-gradient(at 100% 0%, rgba(0, 91, 152, 0.3) 0px, transparent 50%),
    radial-gradient(at 100% 100%, rgba(240, 135, 35, 0.2) 0px, transparent 50%),
    radial-gradient(at 0% 100%, rgba(0, 91, 152, 0.2) 0px, transparent 50%);

  /* Typography */
  --font-title: "Plus Jakarta Sans", sans-serif;
  --font-body: "Open Sans", sans-serif;

  /* Spacing */
  --container-max-width: 1350px;
  --section-padding: 100px;

  /* Effects */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-fast: all 0.2s ease;
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 60px rgba(0, 0, 0, 0.12);
  --shadow-xl: 0 30px 90px rgba(0, 0, 0, 0.18);
  --shadow-glow: 0 0 40px rgba(240, 135, 35, 0.4);

  /* Glassmorphism */
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
  --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--color-text-light);
  background-color: var(--color-white);
  line-height: 1.7;
  overflow-x: hidden;
}

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

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

ul {
  list-style: none;
  padding-left: 0;
}

button {
  cursor: pointer;
}

/* ===================================
   CONTAINER & LAYOUT
   =================================== */
.container-custom {
  max-width: var(--container-max-width);
  margin: 0 auto;
  padding: 0 15px;
}

@media (max-width: 768px) {
  .container-custom {
    padding: 0 18px;
  }
}

/* ===================================
   MODERN TYPOGRAPHY
   =================================== */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-title);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-dark-bg);
  letter-spacing: -0.02em;
}

.section-title {
  font-size: clamp(2rem, 5vw, 3rem);
  margin-bottom: 1.5rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.3rem);
  color: var(--color-text-light);
  margin-bottom: 4rem;
  font-weight: 400;
}

.gradient-text {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ===================================
   MODERN BUTTONS
   =================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 18px 40px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 1.05rem;
  border-radius: 100px;
  transition: var(--transition-smooth);
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.2),
    rgba(255, 255, 255, 0)
  );
  transform: translateX(-100%);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn:hover::before {
  transform: translateX(0);
}

.btn-primary {
  background: var(--gradient-primary);
  color: var(--color-white);
  box-shadow: 0 10px 40px rgba(240, 135, 35, 0.3);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 50px rgba(240, 135, 35, 0.4);
}

.btn-secondary {
  background: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
  backdrop-filter: blur(10px);
}

.btn-secondary:hover {
  background: var(--color-white);
  color: var(--color-blue);
  transform: translateY(-3px);
}

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

.btn-outline-primary:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  border-color: transparent;
  transform: translateY(-3px);
}

.btn-white {
  background: var(--color-white);
  color: var(--color-blue);
  box-shadow: var(--shadow-lg);
}

.btn-white:hover {
  background: linear-gradient(90deg, rgb(240, 135, 35), rgb(255, 107, 53));
  transform: translateY(-3px);
  box-shadow: var(--shadow-xl);
}

.btn-large {
  padding: 22px 50px;
  font-size: 1.15rem;
}

/* ===================================
   SECTION STYLING
   =================================== */
.section-padding {
  padding: var(--section-padding) 0;
}

.section-header {
  margin-bottom: 60px;
}

/* Dark Theme Sections */
.dark-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.dark-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  opacity: 0.5;
  z-index: 0;
}

.dark-section .container-custom {
  position: relative;
  z-index: 1;
}

.dark-section .section-title {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--color-orange-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

.dark-section p,
.dark-section .section-text {
  color: var(--color-dark-text-muted);
}

/* ===================================
   MODERN HEADER
   =================================== */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #ffffff;
  z-index: 9999;
  transition: var(--transition-smooth);
  padding: 16px 0;
}

.site-nav.scrolled {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(5px);
  box-shadow: 0 5px 30px rgba(0, 0, 0, 0.08);
  padding: 12px 0;
}

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar-brand .logo {
  height: 60px;
  width: auto;
  /* filter: brightness(0) saturate(100%) invert(18%) sepia(98%) saturate(1831%)
    hue-rotate(183deg) brightness(96%) contrast(101%); */
  transition: var(--transition-smooth);
}

.site-nav.scrolled .navbar-brand .logo {
  height: 60px;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 50px;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
  margin: 0;
}

.nav-link {
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 1rem;
  color: #000000;
  transition: var(--transition-smooth);
  position: relative;
  padding: 8px 0;
}

.site-nav.scrolled .nav-link {
  color: var(--color-dark-bg);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 10px;
  transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

.nav-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.btn-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 24px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.95rem;
  transition: var(--transition-smooth);
}

.btn-whatsapp {
  background: #25d366;
  color: var(--color-white);
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
}

.btn-phone {
  background: linear-gradient(90deg, rgb(240, 135, 35), rgb(255, 107, 53));
  color: var(--color-white);
  box-shadow: 0 5px 20px rgba(0, 91, 152, 0.3);
}

.btn-phone:hover {
  background: var(--gradient-blue);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 91, 152, 0.4);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}

.hamburger span {
  width: 28px;
  height: 3px;
  background: var(--color-dark-bg);
  border-radius: 10px;
  transition: var(--transition-smooth);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -7px);
}

.nav-close {
  display: none;
}

.nav-contact-mobile {
  display: none;
}

.nav-overlay {
  display: none;
}

/* ===================================
   ULTRA MODERN HERO SECTION
   =================================== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: var(--gradient-dark);
  margin-top: 0;
  padding-top: 100px;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 1;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #0a0e27ab 0%, #1a1f3abd 100%);
  opacity: 0.9;
}

/* Particle Background */
#particles-js {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
}

/* Animated Gradient Orbs */
.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  animation: float-orb 20s ease-in-out infinite;
}

.orb-1 {
  width: 500px;
  height: 500px;
  /* background: radial-gradient(circle, rgba(240, 135, 35, 0.4), transparent); */
  background: radial-gradient(circle, rgba(240, 135, 35, 0.4), transparent);
  top: 10%;
  right: 10%;
  animation-delay: 0s;
}

.orb-2 {
  width: 400px;
  height: 400px;
  /* background: radial-gradient(circle, rgba(0, 91, 152, 0.4), transparent); */
  background: radial-gradient(circle, rgba(240, 135, 35, 0.4), transparent);
  bottom: 20%;
  left: 10%;
  animation-delay: 5s;
}

.orb-3 {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(255, 107, 53, 0.3), transparent);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 10s;
}

@keyframes float-orb {
  0%,
  100% {
    transform: translate(0, 0) scale(1);
  }
  33% {
    transform: translate(30px, -40px) scale(1.1);
  }
  66% {
    transform: translate(-30px, 30px) scale(0.9);
  }
}

/* Hero Content */
.hero-content {
  text-align: center;
  color: var(--color-white);
  max-width: 1000px;
  position: relative;
  z-index: 2;
}

.hero-title {
  font-size: clamp(3rem, 8vw, 4.8rem);
  font-weight: 900;
  margin-bottom: 2rem;
  line-height: 1.1;
  color: var(--color-white);
  letter-spacing: -0.03em;
}

.hero-title .gradient-text {
  background: linear-gradient(
    135deg,
    var(--color-orange-light),
    var(--color-white),
    var(--color-blue-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 3vw, 1.5rem);
  margin-bottom: 3rem;
  opacity: 0.9;
  font-weight: 400;
  line-height: 1.6;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

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

/* Scroll Indicator */
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  animation: bounce 2s infinite;
}

.scroll-indicator {
  cursor: pointer;
}

.scroll-indicator i {
  font-size: 2rem;
  color: var(--color-white);
  opacity: 0.7;
  transition: var(--transition-smooth);
}

.scroll-indicator:hover i {
  opacity: 1;
  color: var(--color-orange);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateX(-50%) translateY(0);
  }
  40% {
    transform: translateX(-50%) translateY(-10px);
  }
  60% {
    transform: translateX(-50%) translateY(-5px);
  }
}

/* ===================================
   ABOUT SECTION - MODERN SPLIT LAYOUT
   =================================== */
.about-section {
  background: var(--color-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-content h2 {
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  margin-bottom: 2rem;
}

.about-content p {
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}

.about-image {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: var(--gradient-primary);
  border-radius: 30px;
  z-index: -1;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 30px;
}

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

/* Stats Cards */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 3rem;
}

.stat-card {
  background: var(--gradient-primary);
  padding: 30px;
  border-radius: 20px;
  text-align: center;
  color: var(--color-white);
  box-shadow: var(--shadow-lg);
  transition: var(--transition-smooth);
}

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

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  display: block;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  opacity: 0.95;
  font-weight: 600;
}

/* ===================================
   ACHIEVEMENTS COUNTER SECTION
   =================================== */
/* .achievements-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
  padding: var(--section-padding) 0;
}

.achievements-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  opacity: 0.4;
  z-index: 0;
}

.achievements-section .container-custom {
  position: relative;
  z-index: 1;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-top: 60px;
}

.achievement-item {
  text-align: center;
  padding: 40px 30px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.achievement-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-item:hover::before {
  transform: scaleX(1);
}

.achievement-item:hover {
  background: rgba(255, 255, 255, 0.08);
  transform: translateY(-10px);
  border-color: var(--color-orange);
  box-shadow: 0 20px 60px rgba(240, 135, 35, 0.25);
}

.achievement-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(240, 135, 35, 0.3);
  transition: var(--transition-smooth);
}

.achievement-item:hover .achievement-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: var(--shadow-glow);
}

.achievement-icon i {
  font-size: 2.5rem;
  color: var(--color-white);
}

.achievement-number {
  font-size: clamp(3rem, 5vw, 4.5rem);
  font-weight: 900;
  background: linear-gradient(
    135deg,
    var(--color-white),
    var(--color-orange-light)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.achievement-label {
  font-size: 1rem;
  color: var(--color-dark-text-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.achievement-description {
  font-size: 0.95rem;
  color: var(--color-dark-text-muted);
  margin-top: 10px;
  opacity: 0.8;
} */

/* ===================================
   ACHIEVEMENTS COUNTER SECTION - BRIGHT THEME
   =================================== */
.achievements-section {
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 50%, #f0f4f8 100%);
  position: relative;
  overflow: hidden;
  padding: var(--section-padding) 0;
}

.achievements-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 20% 50%,
      rgba(240, 135, 35, 0.08) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 80% 80%,
      rgba(59, 130, 246, 0.08) 0%,
      transparent 50%
    );
  opacity: 1;
  z-index: 0;
}

.achievements-section .container-custom {
  position: relative;
  z-index: 1;
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 50px;
  margin-top: 60px;
}

.achievement-item {
  text-align: center;
  padding: 40px 30px;
  background: #ffffff;
  backdrop-filter: blur(10px);
  border-radius: 25px;
  border: 2px solid rgba(240, 135, 35, 0.1);
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.achievement-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.achievement-item:hover::before {
  transform: scaleX(1);
}

.achievement-item:hover {
  background: #ffffff;
  transform: translateY(-10px);
  border-color: var(--color-orange);
  box-shadow: 0 20px 60px rgba(240, 135, 35, 0.25);
}

.achievement-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: var(--gradient-primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(240, 135, 35, 0.3);
  transition: var(--transition-smooth);
}

.achievement-item:hover .achievement-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 15px 40px rgba(240, 135, 35, 0.4);
}

.achievement-icon i {
  font-size: 2.5rem;
  color: var(--color-white);
}

.achievement-number {
  font-size: clamp(3rem, 5vw, 3.8rem);
  font-weight: 900;
  background: linear-gradient(135deg, #1e293b, var(--color-orange));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: block;
  margin-bottom: 0.5rem;
  line-height: 1;
}

.achievement-label {
  font-size: 1rem;
  color: #475569;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.achievement-description {
  font-size: 0.95rem;
  color: #64748b;
  margin-top: 10px;
  opacity: 1;
}

/* ===================================
   CTA SECTION 1 - GLASSMORPHISM
   =================================== */
.cta-section-1 {
  position: relative;
  padding: var(--section-padding) 0;
  background: var(--gradient-dark);
  overflow: hidden;
}

.cta-section-1::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  opacity: 0.3;
}

.floating-circle-cta,
.floating-square-cta {
  position: absolute;
  pointer-events: none;
}

.floating-circle-cta {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(240, 135, 35, 0.2), transparent);
  border-radius: 50%;
  filter: blur(60px);
  top: -100px;
  left: -100px;
  animation: float 8s ease-in-out infinite;
}

.floating-square-cta {
  width: 350px;
  height: 350px;
  background: radial-gradient(circle, rgba(0, 91, 152, 0.2), transparent);
  border-radius: 50%;
  filter: blur(60px);
  bottom: -100px;
  right: -100px;
  animation: float 7s ease-in-out infinite;
  animation-delay: 1.5s;
}

.cta-content {
  text-align: center;
  color: var(--color-white);
  position: relative;
  z-index: 1;
}

/* .cta-glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(20px);
  border: 1px solid var(--glass-border);
  border-radius: 40px;
  padding: 80px 60px;
  box-shadow: var(--glass-shadow);
  max-width: 900px;
  margin: 0 auto;
} */

.cta-title {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: 1.5rem;
}

.cta-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 3rem;
  opacity: 0.9;
}

/* ===================================
   SERVICES SECTION - MODERN CARDS
   =================================== */
.services-section {
  background: var(--color-gray-light);
  position: relative;
  overflow: hidden;
}

.services-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(
      circle at 10% 20%,
      rgba(240, 135, 35, 0.05) 0%,
      transparent 50%
    ),
    radial-gradient(
      circle at 90% 80%,
      rgba(0, 91, 152, 0.05) 0%,
      transparent 50%
    );
  pointer-events: none;
}

.services-section .container-custom {
  position: relative;
  z-index: 1;
}

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

.service-card {
  position: relative;
  background: var(--color-white);
  border-radius: 30px;
  padding: 50px 45px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-orange);
}

.service-card-virtual .service-icon {
  background: var(--gradient-primary);
}

.service-card-rent .service-icon {
  background: var(--gradient-blue);
}

.service-icon {
  width: 90px;
  height: 90px;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 30px;
  box-shadow: 0 10px 30px rgba(240, 135, 35, 0.25);
  transition: var(--transition-smooth);
}

.service-card:hover .service-icon {
  transform: scale(1.1) rotate(5deg);
}

.service-icon i {
  font-size: 2.8rem;
  color: var(--color-white);
}

.service-title {
  font-size: 1.8rem;
  color: var(--color-dark-bg);
  margin-bottom: 20px;
  font-weight: 800;
}

.service-description {
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 25px;
}

.service-features {
  list-style: none;
  margin-bottom: 35px;
  flex-grow: 1;
}

.service-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--color-text-light);
  transition: var(--transition-smooth);
}

.service-features li:hover {
  color: var(--color-dark-bg);
  transform: translateX(5px);
}

.service-features i {
  color: var(--color-orange);
  font-size: 1.2rem;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: rgba(240, 135, 35, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.service-card .btn {
  align-self: flex-start;
}

@media (max-width: 991px) {
  .services-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .service-card {
    padding: 40px 35px;
  }
}

@media (max-width: 576px) {
  .service-card {
    padding: 35px 25px;
  }

  .service-icon {
    width: 75px;
    height: 75px;
  }

  .service-icon i {
    font-size: 2.2rem;
  }

  .service-title {
    font-size: 1.5rem;
  }
}

/* ===================================
   PRICING SECTION - MODERN CARDS
   =================================== */
.pricing-section {
  background: var(--color-gray-light);
}

.pricing-label {
  display: inline-block;
  background: rgba(240, 135, 35, 0.1);
  color: var(--color-orange);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.pricing-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 auto;
}

@media (max-width: 1199px) {
  .pricing-row {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
  }
}

@media (max-width: 991px) {
  .pricing-row {
    grid-template-columns: 1fr;
    max-width: 450px;
    gap: 30px;
  }

  .pricing-card-popular {
    transform: none;
  }

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

.custom-office-note {
  font-size: 1.05rem;
  color: var(--color-text-light);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.custom-office-note i {
  color: var(--color-orange);
  font-size: 1.2rem;
}

.pricing-card {
  position: relative;
  background: var(--color-white);
  border-radius: 30px;
  padding: 50px 40px;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  overflow: hidden;
}

.pricing-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--gradient-primary);
  transform: scaleX(0);
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.pricing-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-xl);
  border-color: var(--color-orange);
}

.pricing-card-popular {
  background: var(--gradient-dark);
  color: var(--color-white);
  transform: scale(1.05);
}

.pricing-card-popular:hover {
  transform: scale(1.05) translateY(-10px);
}

.pricing-card-popular .pricing-name,
.pricing-card-popular .amount {
  color: var(--color-white);
}

.pricing-card-popular .pricing-description,
.pricing-card-popular .pricing-features li {
  color: var(--color-dark-text-muted);
}

.popular-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient-primary);
  color: var(--color-white);
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--shadow-glow);
}

.pricing-header {
  text-align: center;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.05);
}

.pricing-card-popular .pricing-header {
  border-bottom-color: rgba(255, 255, 255, 0.1);
}

.pricing-name {
  font-size: 1.8rem;
  color: var(--color-blue);
  margin-bottom: 20px;
  font-weight: 800;
}

.pricing-price {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 8px;
}

.currency {
  font-size: 1.8rem;
  color: var(--color-orange);
  font-weight: 700;
}

.amount {
  font-size: 4rem;
  font-weight: 900;
  color: var(--color-dark-bg);
  line-height: 1;
}

.period {
  font-size: 1rem;
  color: var(--color-text-light);
  font-weight: 600;
}

.pricing-body {
  margin-bottom: 40px;
}

.pricing-description {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 30px;
  font-size: 1.05rem;
  min-height: 50px;
}

.pricing-features {
  list-style: none;
}

.pricing-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  color: var(--color-text-light);
  font-size: 1rem;
}

.pricing-features i {
  color: var(--color-orange);
  font-size: 1.3rem;
  flex-shrink: 0;
}

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

.pricing-footer .btn {
  width: 100%;
  justify-content: center;
}

.pricing-custom-note {
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  margin-top: 50px;
  padding-top: 40px;
  border-top: 1px solid var(--color-gray);
}

.pricing-section-alt {
  background: var(--color-white);
}

.pricing-custom-note .btn {
  background: transparent;
  color: #25d366;
  border: 2px solid #25d366;
}

.pricing-custom-note .btn:before {
  background: #25d3661c;
}

/* ===================================
   CONTENT + IMAGE SECTIONS
   =================================== */
.content-image-section.section-padding {
  padding-top: 50px;
}

.content-image-section,
.content-section-2 {
  background: var(--color-white);
}

.content-image-grid,
.content-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.content-grid-reverse .content-text {
  order: 2;
}

.content-grid-reverse .content-media {
  order: 1;
}

@media (max-width: 991px) {
  .content-image-grid,
  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .content-grid-reverse .content-text,
  .content-grid-reverse .content-media {
    order: unset;
  }
}

.content-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.content-text .section-title {
  margin-bottom: 1.5rem;
}

.content-text .section-text {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 1.25rem;
}

.content-text .section-text:last-child {
  margin-bottom: 0;
}

.content-text .section-text strong {
  color: var(--color-dark-bg);
  font-weight: 700;
}

.content-media {
  position: relative;
}

.content-image,
.content-image-2 {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.content-image::before,
.content-image-2::before {
  content: "";
  position: absolute;
  top: -4px;
  left: -4px;
  right: -4px;
  bottom: -4px;
  background: var(--gradient-primary);
  border-radius: 34px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.content-image:hover::before,
.content-image-2:hover::before {
  opacity: 1;
}

.content-image img,
.content-image-2 img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.content-image:hover img,
.content-image-2:hover img {
  transform: scale(1.05);
}

@media (max-width: 576px) {
  .content-image,
  .content-image-2 {
    border-radius: 20px;
  }

  .content-text .section-text {
    font-size: 1rem;
  }
}

.feature-list {
  list-style: none;
  margin-top: 2rem;
  padding-left: 0;
}

.feature-list li {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding: 25px;
  background: var(--color-gray-light);
  border-radius: 20px;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.feature-list li:hover {
  background: var(--color-white);
  transform: translateX(10px);
  border-color: var(--color-orange);
  box-shadow: var(--shadow-md);
}

.feature-list i {
  color: var(--color-orange);
  font-size: 1.8rem;
  background: var(--gradient-primary);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  color: var(--color-white);
  flex-shrink: 0;
}

.feature-list span {
  font-size: 1rem;
  color: var(--color-dark-bg);
  font-weight: 600;
  line-height: 1.6;
}

/* ===================================
   ADVANTAGES SECTION - DARK THEME
   =================================== */
.advantages-section {
  background: var(--gradient-dark);
  position: relative;
  overflow: hidden;
}

.advantages-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  opacity: 0.3;
}

.advantages-section .container-custom {
  position: relative;
  z-index: 1;
}

.advantages-section .section-title {
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    var(--color-orange-light) 100%
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.advantages-section .section-subtitle {
  color: var(--color-dark-text-muted);
}

.advantages-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 40px;
  align-items: stretch;
}

.advantage-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  padding: 35px;
  border-radius: 30px;
  text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.advantage-card .advantage-icon {
  flex-shrink: 0;
}

.advantage-card .advantage-title {
  flex-shrink: 0;
}

.advantage-card p,
.advantage-card .advantage-text {
  margin-bottom: 0;
  flex-grow: 1;
}

@media only screen and (min-width: 1024px) {
  #bewertungen {
    padding-top: 60px;
  }
}

.advantage-card:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-10px);
  border-color: var(--color-orange);
  box-shadow: 0 20px 60px rgba(240, 135, 35, 0.3);
}

.advantage-icon {
  width: 90px;
  height: 90px;
  margin: 0 auto 30px;
  background: var(--gradient-primary);
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-glow);
}

.advantage-icon i {
  font-size: 2.8rem;
  color: var(--color-white);
}

.advantage-title {
  font-size: 1.4rem;
  color: var(--color-white);
  margin-bottom: 15px;
  font-weight: 800;
}

.advantage-text {
  color: var(--color-dark-text-muted);
  line-height: 1.7;
  font-size: 1.05rem;
}

/* ===================================
   CTA SECTION 2 - VIBRANT WITH BACKGROUND
   =================================== */
.cta-section-2 {
  position: relative;
  padding: var(--section-padding) 0;
  background-image: url("https://yecoffice.de/virtuelles-buero/assets/img/kontakt-bild-yecoffice.webp");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  overflow: hidden;
}

.cta-section-2::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgb(240 135 35 / 58%),
    rgb(0 91 152 / 46%)
  );
  z-index: 0;
}

.cta-section-2::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(10, 14, 39, 0.6);
  z-index: 0;
}

.floating-phone,
.floating-whatsapp {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.floating-phone {
  width: 250px;
  height: 250px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
  border-radius: 50%;
  filter: blur(50px);
  top: 10%;
  left: 5%;
  animation: float 6s ease-in-out infinite;
}

.floating-whatsapp {
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.15), transparent);
  border-radius: 50%;
  filter: blur(50px);
  bottom: 10%;
  right: 5%;
  animation: float 8s ease-in-out infinite;
  animation-delay: 1s;
}

.cta-content-2 {
  text-align: center;
  color: var(--color-white);
  position: relative;
  z-index: 2;
}

.cta-title-2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  color: var(--color-white);
  margin-bottom: 1.5rem;
  font-weight: 900;
}

.cta-subtitle-2 {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  margin-bottom: 3rem;
  opacity: 0.95;
}

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

.btn-whatsapp-large,
.btn-phone-large {
  padding: 20px 45px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 1.2rem;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  transition: var(--transition-smooth);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.btn-whatsapp-large {
  background: #25d366;
  color: var(--color-white);
}

.btn-whatsapp-large:hover {
  background: #20ba5a;
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(37, 211, 102, 0.5);
}

.btn-phone-large {
  background: var(--color-white);
  color: var(--color-blue);
}

.btn-phone-large:hover {
  background: linear-gradient(90deg, rgb(240, 135, 35), rgb(255, 107, 53));
  color: var(--color-white);
  transform: translateY(-6px);
  box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

/* ===================================
   TESTIMONIALS SECTION - MODERN SLIDER
   =================================== */
.testimonials-section {
  position: relative;
  background: var(--color-white);
  overflow: hidden;
}

.floating-quote {
  position: absolute;
  width: 300px;
  height: 300px;
  background: radial-gradient(circle, rgba(240, 135, 35, 0.08), transparent);
  border-radius: 50%;
  filter: blur(40px);
  top: 10%;
  right: 5%;
  animation: float 9s ease-in-out infinite;
}

.testimonials-swiper {
  padding: 30px 25px 40px !important;
}

.testimonials-swiper .swiper-wrapper {
  align-items: stretch;
}

.testimonials-swiper .swiper-wrapper .swiper-slide {
  height: auto;
}

.testimonial-card {
  background: var(--color-white);
  padding: 30px 40px;
  border-radius: 30px;
  /* box-shadow: var(--shadow-lg); */
  box-shadow: 0 0 16px #e9e9e9;
  height: 100%;
  display: flex;
  flex-direction: column;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  opacity: 0;
  transition: opacity 0.5s ease;
  z-index: 0;
}

.testimonial-card:hover::before {
  opacity: 0.05;
}

.testimonial-card:hover {
  transform: translateY(-8px);
  /* box-shadow: var(--shadow-xl); */
  border-color: var(--color-orange);
}

.testimonial-card > * {
  position: relative;
  z-index: 1;
}

.testimonial-rating {
  margin-bottom: 25px;
}

.testimonial-rating i {
  color: #ffb800;
  font-size: 1.4rem;
  margin-right: 5px;
  filter: drop-shadow(0 2px 4px rgba(255, 184, 0, 0.3));
}

.testimonial-text {
  flex: 1;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--color-text-light);
  margin-bottom: 30px;
  font-style: italic;
  position: relative;
  padding-left: 30px;
}

.testimonial-text::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--color-orange);
  opacity: 0.3;
  font-family: Georgia, serif;
  line-height: 1;
}

.testimonial-author {
  border-top: 2px solid var(--color-gray);
  padding-top: 25px;
}

.author-name {
  font-size: 1.2rem;
  color: var(--color-dark-bg);
  margin-bottom: 5px;
  font-weight: 800;
}

.author-position {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin: 0;
}

/* Swiper Custom Styling */
.swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background: var(--color-text-light);
  opacity: 0.4;
  transition: var(--transition-smooth);
}

.swiper-pagination-bullet-active {
  background: var(--gradient-primary);
  opacity: 1;
  width: 35px;
  border-radius: 10px;
}

.swiper-button-prev,
.swiper-button-next {
  width: 55px;
  height: 55px;
  background: var(--gradient-primary);
  border-radius: 50%;
  box-shadow: var(--shadow-md);
  transition: var(--transition-smooth);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  transform: scale(1.1);
  box-shadow: var(--shadow-glow);
}

.swiper-button-prev:after,
.swiper-button-next:after {
  font-size: 20px;
  color: var(--color-white);
  font-weight: 900;
}

/* ===================================
   FOOTER - MODERN DARK
   =================================== */
.footer {
  background: var(--gradient-dark);
  color: var(--color-white);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--gradient-mesh);
  opacity: 0.2;
}

/* Grid background pattern */
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: linear-gradient(
      rgba(255, 255, 255, 0.03) 1px,
      transparent 1px
    ),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.015) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.015) 1px, transparent 1px);
  background-size: 100px 100px, 100px 100px, 20px 20px, 20px 20px;
  background-position: -1px -1px, -1px -1px, -1px -1px, -1px -1px;
  pointer-events: none;
}

.footer .container-custom::before {
  content: "";
  position: absolute;
  top: -80px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(240, 135, 35, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.footer .footer-grid::after {
  content: "";
  position: absolute;
  bottom: -150px;
  right: -100px;
  width: 350px;
  height: 350px;
  background: radial-gradient(
    circle,
    rgba(0, 91, 152, 0.08) 0%,
    transparent 70%
  );
  border-radius: 50%;
  pointer-events: none;
}

.footer .container-custom {
  position: relative;
  z-index: 1;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
  overflow: hidden;
}

@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
  }
}

@media (max-width: 576px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.footer-col {
  margin-bottom: 0;
}

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

.footer-logo img {
  height: 100px;
  width: auto;
}

.footer-description {
  font-size: 1rem;
  opacity: 0.85;
  line-height: 1.8;
  color: var(--color-dark-text-muted);
}

.footer-title {
  font-size: 1.4rem;
  margin-bottom: 25px;
  font-weight: 800;
  color: var(--color-white);
  position: relative;
  padding-bottom: 12px;
}

.footer-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 3rem;
  height: 2px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

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

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

.footer-links a {
  color: var(--color-dark-text-muted);
  transition: var(--transition-smooth);
  font-size: 1rem;
  display: inline-block;
}

.footer-links a:hover {
  color: var(--color-orange-light);
  padding-left: 4px;
}

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

.footer-contact li {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-contact li:last-child {
  margin-bottom: 0;
}

.footer-contact i {
  color: var(--color-orange);
  font-size: 1.3rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact a,
.footer-contact span {
  color: var(--color-dark-text-muted);
  transition: var(--transition-smooth);
}

.footer-contact a:hover {
  color: var(--color-orange-light);
}

.footer-bottom {
  padding: 30px 0;
  text-align: center;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.95rem;
  opacity: 0.7;
  color: var(--color-dark-text-muted);
}

/* Back to Top Button */
.back-to-top {
  position: fixed;
  bottom: 20px;
  right: 25px;
  width: 55px;
  height: 55px;
  background: var(--gradient-primary);
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 22px;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition-smooth);
  z-index: 999;
  box-shadow: var(--shadow-glow);
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.back-to-top:hover {
  transform: scale(1.1) translateY(-5px);
  box-shadow: 0 0 60px rgba(240, 135, 35, 0.6);
}

.fab-container {
  position: fixed;
  right: 25px;
  bottom: 5.5rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}

.fab {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.4);
  cursor: pointer;
  border: none;
  transition: var(--transition-smooth);
  position: relative;
}

/* .fab:hover {
  transform: scale(1.04) translateY(-2px);
} */

.fab:focus-visible {
  outline: 2px solid var(--color-orange);
  outline-offset: 2px;
}

.fab svg {
  width: 24px;
  height: 24px;
  transition: var(--transition-smooth);
}

/* .fab:hover svg {
            transform: scale(1.05) rotate(5deg);
        } */

.fab-whatsapp {
  background: #25d366;
  box-shadow: 0 0 22px rgba(37, 211, 102, 0.6);
  animation: bounce 2s ease-in-out infinite;
}

.fab-whatsapp:hover {
  background: #20ba5a;
  box-shadow: 0 8px 32px rgba(37, 211, 102, 0.8);
}

.fab-phone {
  background: var(--color-blue);
  box-shadow: 0 0 22px rgba(0, 91, 152, 0.6);
}

.fab-phone:hover {
  transform: scale(1.04) translateY(-2px);
  box-shadow: 0 8px 32px rgba(0, 91, 152, 0.6);
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

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

  60% {
    transform: translateY(-5px);
  }
}

@media only screen and (max-width: 767px) {
  .fab-container {
    right: 18px;
    bottom: 5.2rem;
  }
}

/* ===================================
   RESPONSIVE DESIGN - TABLET
   =================================== */
@media (max-width: 991px) {
  :root {
    --section-padding: 80px;
  }

  .about-grid,
  .content-image-grid {
    grid-template-columns: 1fr;
    gap: 50px;
  }

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

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

  .pricing-row {
    grid-template-columns: 1fr;
    max-width: 500px;
  }

  .pricing-card-popular {
    transform: scale(1);
  }
}

@media (min-width: 768px) and (max-width: 1200px) {
  .nav-actions {
    margin-right: 3.8rem;
  }

  .hamburger {
    position: absolute;
    top: auto;
    right: 0;
  }
}

@media only screen and (max-width: 1200px) {
  .nav-list {
    gap: 20px;
  }

  .btn-header span {
    display: none;
  }

  .hamburger {
    display: flex;
    z-index: 999;
  }

  .nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    z-index: 999;
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  .nav-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Mobile Menu */
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    height: 100vh;
    background: var(--color-white);
    flex-direction: column;
    justify-content: space-between;
    padding: 100px 25px 30px;
    box-shadow: -10px 0 40px rgba(0, 0, 0, 0.15);
    transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
  }

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

  .nav-close {
    display: block;
    position: absolute;
    top: 25px;
    right: 25px;
    background: none;
    border: none;
    font-size: 1.8rem;
    color: var(--color-dark-bg);
  }

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    width: 100%;
  }

  .nav-link {
    font-size: 1.2rem;
  }

  .nav-contact-mobile {
    display: block;
    width: 100%;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid var(--color-gray);
  }

  .whatsapp-mobile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 18px;
    padding: 10px 20px;
    background: #25d366;
    color: var(--color-white);
    border-radius: 15px;
    font-weight: 600;
    transition: var(--transition-smooth);
  }

  .whatsapp-mobile:hover {
    background: #20ba5a;
    transform: translateY(-2px);
  }

  .whatsapp-mobile i {
    font-size: 1.6rem;
  }
}

/* ===================================
   RESPONSIVE DESIGN - MOBILE
   =================================== */
@media (max-width: 380px) {
  .hero {
    min-height: 115vh !important;
  }
  .hero-title {
    font-size: 2.6rem;
  }
}

@media (max-width: 767px) {
  :root {
    --section-padding: 60px;
  }

  .hero {
    min-height: 95vh;
    padding-top: 6.6rem;
    padding-bottom: 2rem;
  }

  .hero-title {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
  }

  .hero-subtitle {
    margin-bottom: 2rem;
  }

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

  .scroll-indicator {
    bottom: 0 !important;
  }

  .hero-buttons .btn-large {
    padding: 22px 26px !important;
    width: 92% !important;
  }

  .btn-large {
    width: 100%;
    justify-content: center;
  }

  .site-nav,
  .site-nav.scrolled {
    padding: 8px 0;
  }

  .site-nav.scrolled .navbar-brand .logo {
    height: 60px;
  }

  .section-title {
    margin-bottom: 1rem;
  }

  .section-subtitle {
    margin-bottom: 1rem;
  }

  .section-header {
    margin-bottom: 30px;
  }

  .testimonials-swiper {
    padding: 30px 15px 40px !important;
  }

  .footer-col:last-of-type {
    margin-bottom: 0;
  }

  .nav-actions {
    display: none;
  }

  .cta-glass-card {
    padding: 50px 30px;
    border-radius: 30px;
  }

  .cta-buttons-2 {
    flex-direction: column;
  }

  .btn-whatsapp-large,
  .btn-phone-large {
    width: 100%;
    justify-content: center;
  }

  .gradient-orb {
    display: none;
  }

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

  .achievement-number {
    font-size: 3rem;
  }

  .advantages-row {
    grid-template-columns: 1fr;
  }

  .back-to-top {
    width: 50px;
    height: 50px;
    bottom: 20px;
    right: 20px;
  }
}

@media (max-width: 576px) {
  .container-custom {
    padding: 0 15px;
  }

  .about-stats {
    gap: 20px;
  }

  .stat-card {
    padding: 25px;
  }

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

/* ===================================
   LEGAL PAGES STYLING
   =================================== */
.legal-page {
  padding: 180px 0 100px;
  background: var(--color-gray-light);
}

.legal-content {
  background: var(--color-white);
  padding: 80px;
  border-radius: 30px;
  box-shadow: var(--shadow-lg);
  max-width: 1024px;
  margin: 0 auto;
}

.legal-content h1 {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 40px;
  font-size: 3rem;
}

.legal-content h2 {
  color: var(--color-blue);
  margin-top: 50px;
  margin-bottom: 25px;
  font-size: 2rem;
}

.legal-content h3 {
  color: var(--color-dark-bg);
  margin-top: 35px;
  margin-bottom: 18px;
  font-size: 1.4rem;
}

.legal-content p {
  margin-bottom: 18px;
  line-height: 1.9;
  color: var(--color-text-light);
}

.legal-content ul {
  margin-bottom: 25px;
  padding-left: 30px;
}

.legal-content ul li {
  margin-bottom: 12px;
  list-style: disc;
  color: var(--color-text-light);
}

.legal-content strong {
  color: var(--color-dark-bg);
  font-weight: 700;
}

.legal-content a {
  color: var(--color-orange);
  transition: var(--transition-smooth);
}

.legal-content a:hover {
  color: var(--color-blue);
  text-decoration: underline;
}

@media (max-width: 768px) {
  .legal-page {
    padding: 140px 0 60px;
  }

  .legal-content {
    padding: 40px 20px;
    border-radius: 20px;
  }

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

  .legal-content h2 {
    font-size: 1.5rem;
  }
}

/* ===================================
   EXIT INTENT POPUP
   =================================== */
.exit-intent-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  backdrop-filter: blur(10px);
  z-index: 99999;
  display: none;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.exit-intent-overlay.show {
  display: flex;
  opacity: 1;
}

.exit-intent-popup {
  background: var(--color-white);
  border-radius: 30px;
  padding: 50px;
  max-width: 520px;
  width: 90%;
  position: relative;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.4);
  transform: scale(0.8) translateY(20px);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  overflow: hidden;
}

.exit-intent-overlay.show .exit-intent-popup {
  transform: scale(1) translateY(0);
}

.exit-intent-popup::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 6px;
  background: var(--gradient-primary);
}

.exit-popup-close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--color-gray-light);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  color: var(--color-dark-bg);
  transition: var(--transition-smooth);
  cursor: pointer;
}

.exit-popup-close:hover {
  background: var(--gradient-primary);
  color: var(--color-white);
  transform: rotate(90deg);
}

.exit-popup-content {
  text-align: center;
}

.exit-popup-icon {
  width: 100px;
  height: 100px;
  background: var(--gradient-primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
  box-shadow: 0 15px 40px rgba(240, 135, 35, 0.4);
  animation: pulse-icon 2s ease-in-out infinite;
}

@keyframes pulse-icon {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 15px 40px rgba(240, 135, 35, 0.4);
  }
  50% {
    transform: scale(1.05);
    box-shadow: 0 20px 50px rgba(240, 135, 35, 0.5);
  }
}

.exit-popup-icon i {
  font-size: 3rem;
  color: var(--color-white);
}

.exit-popup-title {
  font-size: 2rem;
  color: var(--color-dark-bg);
  margin-bottom: 15px;
  font-weight: 900;
}

.exit-popup-message {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 30px;
}

.exit-popup-cta {
  width: 100%;
  justify-content: center;
  font-size: 1rem;
  padding: 18px 40px;
}

@media (max-width: 576px) {
  .exit-intent-popup {
    padding: 40px 25px;
  }

  .exit-popup-icon {
    width: 80px;
    height: 80px;
  }

  .exit-popup-icon i {
    font-size: 2.5rem;
  }

  .exit-popup-title {
    font-size: 1.6rem;
  }
}

/* ===================================
   PREMIUM CTA SECTION WITH WOW EFFECTS
   =================================== */
.cta-section-wow {
  position: relative;
  padding: 120px 0;
  background: linear-gradient(135deg, #0a0e27 0%, #0f1433 50%, #1a1f4a 100%);
  overflow: hidden;
}

/* Animated Gradient Spheres */
.cta-animated-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
}

.cta-gradient-sphere {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  animation: sphere-morph 20s ease-in-out infinite;
}

.sphere-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(
    circle,
    rgba(240, 135, 35, 0.4) 0%,
    transparent 70%
  );
  top: -200px;
  right: -100px;
  animation-delay: 0s;
}

.sphere-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(
    circle,
    rgba(59, 130, 246, 0.3) 0%,
    transparent 70%
  );
  bottom: -150px;
  left: -100px;
  animation-delay: 7s;
}

.sphere-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(
    circle,
    rgba(168, 85, 247, 0.25) 0%,
    transparent 70%
  );
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 14s;
}

@keyframes sphere-morph {
  0%,
  100% {
    transform: scale(1) translate(0, 0);
    opacity: 0.6;
  }
  25% {
    transform: scale(1.2) translate(50px, -30px);
    opacity: 0.8;
  }
  50% {
    transform: scale(0.9) translate(-30px, 50px);
    opacity: 0.5;
  }
  75% {
    transform: scale(1.1) translate(-50px, -20px);
    opacity: 0.7;
  }
}

/* Floating Geometric Shapes */
.cta-shapes {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cta-shape {
  position: absolute;
  opacity: 0.15;
  animation: shape-float 25s ease-in-out infinite;
}

.shape-triangle {
  width: 0;
  height: 0;
  border-left: 40px solid transparent;
  border-right: 40px solid transparent;
  border-bottom: 70px solid var(--color-orange);
  top: 15%;
  left: 10%;
  animation-delay: 0s;
}

.shape-circle {
  width: 60px;
  height: 60px;
  border: 4px solid var(--color-orange-light);
  border-radius: 50%;
  top: 60%;
  right: 15%;
  animation-delay: 5s;
}

.shape-square {
  width: 50px;
  height: 50px;
  border: 4px solid #60a5fa;
  transform: rotate(45deg);
  bottom: 20%;
  left: 20%;
  animation-delay: 10s;
}

.shape-hexagon {
  width: 60px;
  height: 34px;
  background: rgba(168, 85, 247, 0.3);
  position: relative;
  top: 25%;
  right: 10%;
  clip-path: polygon(25% 0%, 75% 0%, 100% 50%, 75% 100%, 25% 100%, 0% 50%);
  animation-delay: 15s;
}

.shape-ring {
  width: 80px;
  height: 80px;
  border: 3px solid rgba(240, 135, 35, 0.4);
  border-radius: 50%;
  top: 70%;
  left: 70%;
  animation-delay: 20s;
}

@keyframes shape-float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  25% {
    transform: translateY(-30px) rotate(90deg);
  }
  50% {
    transform: translateY(20px) rotate(180deg);
  }
  75% {
    transform: translateY(-15px) rotate(270deg);
  }
}

/* Particle Network */
.cta-particle-network {
  position: absolute;
  width: 100%;
  height: 100%;
  top: -5px;
  left: 0;
  pointer-events: none;
  z-index: 1;
  overflow: hidden;
}

.cta-particle-network span {
  position: absolute;
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  box-shadow: 0 0 10px rgba(240, 135, 35, 0.5);
  animation: particle-drift 20s linear infinite;
}

.cta-particle-network span:nth-child(1) {
  left: 5%;
  animation-delay: 0s;
}
.cta-particle-network span:nth-child(2) {
  left: 15%;
  animation-delay: 2s;
}
.cta-particle-network span:nth-child(3) {
  left: 25%;
  animation-delay: 4s;
}
.cta-particle-network span:nth-child(4) {
  left: 35%;
  animation-delay: 6s;
}
.cta-particle-network span:nth-child(5) {
  left: 45%;
  animation-delay: 8s;
}
.cta-particle-network span:nth-child(6) {
  left: 55%;
  animation-delay: 10s;
}
.cta-particle-network span:nth-child(7) {
  left: 65%;
  animation-delay: 12s;
}
.cta-particle-network span:nth-child(8) {
  left: 75%;
  animation-delay: 14s;
}
.cta-particle-network span:nth-child(9) {
  left: 85%;
  animation-delay: 16s;
}
.cta-particle-network span:nth-child(10) {
  left: 95%;
  animation-delay: 18s;
}

@keyframes particle-drift {
  0% {
    transform: translateY(100vh) scale(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
    transform: translateY(80vh) scale(1);
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateY(-20px) scale(0.5);
    opacity: 0;
  }
}

/* Animated Lines */
.cta-animated-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.cta-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(240, 135, 35, 0.6),
    transparent
  );
  animation: line-sweep 8s ease-in-out infinite;
}

.line-1 {
  width: 200px;
  top: 20%;
  left: -200px;
  animation-delay: 0s;
}

.line-2 {
  width: 300px;
  top: 50%;
  left: -300px;
  animation-delay: 3s;
}

.line-3 {
  width: 150px;
  top: 80%;
  left: -150px;
  animation-delay: 6s;
}

@keyframes line-sweep {
  0% {
    transform: translateX(0);
    opacity: 0;
  }
  10% {
    opacity: 1;
  }
  90% {
    opacity: 1;
  }
  100% {
    transform: translateX(calc(100vw + 300px));
    opacity: 0;
  }
}

/* Premium Glass Card */
.cta-glass-card-premium {
  position: relative;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(30px);
  border-radius: 28px;
  padding: 50px 60px;
  max-width: 1000px;
  margin: 0 auto;
  overflow: hidden;
  z-index: 2;
}

.cta-card-border {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 30px;
  padding: 2px;
  background: linear-gradient(
    135deg,
    rgba(240, 135, 35, 0.5),
    transparent 50%,
    rgba(59, 130, 246, 0.5)
  );
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  animation: border-rotate 10s linear infinite;
  pointer-events: none;
}

@keyframes border-rotate {
  0% {
    background: linear-gradient(
      0deg,
      rgba(240, 135, 35, 0.5),
      transparent 50%,
      rgba(59, 130, 246, 0.5)
    );
  }
  25% {
    background: linear-gradient(
      90deg,
      rgba(240, 135, 35, 0.5),
      transparent 50%,
      rgba(59, 130, 246, 0.5)
    );
  }
  50% {
    background: linear-gradient(
      180deg,
      rgba(240, 135, 35, 0.5),
      transparent 50%,
      rgba(59, 130, 246, 0.5)
    );
  }
  75% {
    background: linear-gradient(
      270deg,
      rgba(240, 135, 35, 0.5),
      transparent 50%,
      rgba(59, 130, 246, 0.5)
    );
  }
  100% {
    background: linear-gradient(
      360deg,
      rgba(240, 135, 35, 0.5),
      transparent 50%,
      rgba(59, 130, 246, 0.5)
    );
  }
}

.cta-card-glow {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80%;
  height: 80%;
  transform: translate(-50%, -50%);
  /* background: radial-gradient(circle, rgba(240, 135, 35, 0.15), transparent 60%); */
  background: radial-gradient(circle, #f4752d61, #f4752d00 60%);
  filter: blur(60px);
  pointer-events: none;
  animation: glow-pulse 4s ease-in-out infinite;
}

@keyframes glow-pulse {
  0%,
  100% {
    opacity: 0.5;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.8;
    transform: translate(-50%, -50%) scale(1.1);
  }
}

/* Premium Badge */
.cta-badge-premium {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    rgba(240, 135, 35, 0.3),
    rgba(255, 154, 60, 0.2)
  );
  color: var(--color-orange-light);
  padding: 12px 28px;
  border-radius: 50px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 30px;
  border: 1px solid rgba(240, 135, 35, 0.4);
  overflow: hidden;
}

.badge-pulse {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  background: rgba(240, 135, 35, 0.3);
  border-radius: 50px;
  transform: translate(-50%, -50%) scale(1);
  animation: badge-pulse-effect 2s ease-out infinite;
  pointer-events: none;
}

@keyframes badge-pulse-effect {
  0% {
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.6;
  }
  100% {
    transform: translate(-50%, -50%) scale(1.8);
    opacity: 0;
  }
}

.cta-badge-premium i {
  font-size: 1.2rem;
  animation: lightning-flash 3s ease-in-out infinite;
}

@keyframes lightning-flash {
  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 0.5;
    transform: scale(1.2);
  }
}

/* Animated Title */
.cta-title-animated {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--color-white);
  margin-bottom: 1.5rem;
  line-height: 1.2;
}

.title-line {
  display: block;
}

.title-highlight {
  display: block;
  background: linear-gradient(
    135deg,
    var(--color-orange-light),
    #fbbf24,
    var(--color-orange)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradient-shift 3s ease-in-out infinite;
  font-size: 1.1em;
  margin: 10px 0;
}

@keyframes gradient-shift {
  0%,
  100% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
}

.cta-subtitle-enhanced {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 40px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

/* Premium CTA Buttons */
.cta-buttons-premium {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.btn-cta-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 45px;
  background: #25d366;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 60px;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 40px rgba(37, 211, 102, 0.4);
  text-decoration: none;
}

.btn-cta-primary .btn-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #20ba5a, #25d366);
  z-index: 0;
}

.btn-cta-primary i,
.btn-cta-primary span {
  position: relative;
  z-index: 1;
}

.btn-shine {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.4),
    transparent
  );
  transform: skewX(-20deg);
  animation: btn-shine-effect 3s ease-in-out infinite;
  z-index: 0;
}

@keyframes btn-shine-effect {
  0% {
    left: -100%;
  }
  50%,
  100% {
    left: 150%;
  }
}

.btn-cta-primary:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(37, 211, 102, 0.5);
}

.btn-cta-secondary {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 45px;
  background: transparent;
  color: var(--color-white);
  font-size: 1rem;
  font-weight: 700;
  border-radius: 60px;
  border: 2px solid rgba(255, 255, 255, 0.4);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  position: relative;
  overflow: hidden;
}

.btn-cta-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--gradient-primary);
  transition: left 0.5s ease;
  z-index: 0;
}

.btn-cta-secondary i,
.btn-cta-secondary span {
  position: relative;
  z-index: 1;
}

.btn-cta-secondary:hover {
  border-color: var(--color-orange);
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(240, 135, 35, 0.3);
}

.btn-cta-secondary:hover::before {
  left: 0;
}

/* Trust Bar */
.cta-trust-bar {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  font-weight: 600;
}

.trust-item i {
  color: #fbbf24;
  font-size: 1rem;
}

.trust-divider {
  width: 4px;
  height: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
  .cta-glass-card-premium {
    padding: 60px 40px;
  }

  .cta-shapes {
    display: none;
  }
}

@media (max-width: 768px) {
  .cta-section-wow {
    padding: 80px 0;
  }

  .cta-glass-card-premium {
    padding: 50px 30px;
    border-radius: 30px;
  }

  .cta-features-premium {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .cta-feature-card {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

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

  .btn-cta-primary,
  .btn-cta-secondary {
    width: 100%;
    max-width: 305px;
    justify-content: center;
  }

  .cta-trust-bar {
    gap: 15px;
  }

  .trust-divider {
    display: none;
  }

  .cta-animated-lines {
    display: none;
  }
}

@media (max-width: 480px) {
  .cta-glass-card-premium {
    padding: 40px 20px;
  }

  .cta-badge-premium {
    font-size: 0.85rem;
    padding: 10px 20px;
  }
}

/* ===================================
   ENHANCED ABOUT SECTION
   =================================== */
.about-header {
  margin-bottom: 30px;
}

@media only screen and (min-width: 1025px) {
  .about-header .section-title {
    width: 50%;
  }
}

.about-label {
  display: inline-block;
  background: rgba(240, 135, 35, 0.1);
  color: var(--color-orange);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-grid-enhanced {
  gap: 100px;
}

.about-lead {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--color-dark-bg);
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.about-intro {
  margin-bottom: 40px;
}

.about-highlights {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about-highlight-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px;
  background: var(--color-gray-light);
  border-radius: 20px;
  transition: var(--transition-smooth);
  border: 2px solid transparent;
}

.about-highlight-item:hover {
  background: var(--color-white);
  border-color: var(--color-orange);
  transform: translateX(10px);
  box-shadow: var(--shadow-md);
}

.highlight-icon {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 8px 25px rgba(240, 135, 35, 0.3);
}

.highlight-icon i {
  font-size: 1.6rem;
  color: var(--color-white);
}

.highlight-content h4 {
  font-size: 1rem;
  color: var(--color-dark-bg);
  margin-bottom: 5px;
  font-weight: 800;
}

.highlight-content p {
  font-size: 0.95rem;
  color: var(--color-text-light);
  margin: 0;
}

.about-image-enhanced {
  position: relative;
}

.about-image-wrapper {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.about-image-wrapper::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  background: var(--gradient-primary);
  border-radius: 32px;
  z-index: -1;
}

.about-image-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 30px;
}

.about-image-enhanced:hover img {
  transform: scale(1.05);
}

.about-image-badge {
  position: absolute;
  bottom: 30px;
  right: 30px;
  background: var(--color-white);
  padding: 20px 30px;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  transition: var(--transition-smooth);
}

.about-image-enhanced:hover .about-image-badge {
  transform: scale(1.05);
}

.badge-number {
  display: block;
  font-size: 2.5rem;
  font-weight: 900;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: 5px;
}

.badge-text {
  font-size: 0.9rem;
  color: var(--color-text-light);
  font-weight: 600;
}

@media (max-width: 991px) {
  .about-grid-enhanced {
    gap: 50px;
  }

  .about-image-badge {
    bottom: 20px;
    right: 20px;
    padding: 15px 25px;
  }

  .badge-number {
    font-size: 2rem;
  }
}

@media (max-width: 576px) {
  .about-highlights {
    gap: 15px;
  }

  .about-highlight-item {
    padding: 15px;
  }

  .highlight-icon {
    width: 50px;
    height: 50px;
  }

  .highlight-icon i {
    font-size: 1.3rem;
  }
}

/* ===================================
   ANIMATIONS & KEYFRAMES
   =================================== */
@keyframes float {
  0%,
  100% {
    transform: translateY(0) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(3deg);
  }
}

/* Fade in on scroll */
[data-aos] {
  opacity: 0;
  transition-property: transform, opacity;
}

[data-aos].aos-animate {
  opacity: 1;
}

/* Smooth reveal */
.reveal {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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