/* ===================================
   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);
}

ul.pricing-features i {
    position: relative;
    top: -4px;
}
.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;
}

/* ===================================
   PRICING SECTION - MODERN CARDS
   =================================== */
.pricing-section {
  background: var(--color-gray-light);
  padding: 100px 0 !important;
}

.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);
}

@media only screen and (max-width: 767px) {
  .pricing-custom-note {
    flex-direction: column;
  }
}

.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;
}

/* ===================================
   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);
}

/* ===================================
   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);
  }
}

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

@media (max-width: 991px) {
  :root {
    --section-padding: 80px;
  }

  .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;
  }

  .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;
  }

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

  .nav-actions {
    display: none;
  }

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

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

  .gradient-orb {
    display: none;
  }

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

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

/* ===================================
   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;
  }
}

/* ===================================
   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);
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0;
}

.pricing-features li {
    display: flex;
    align-items: flex-start;
    margin-bottom: 12px;
    font-family: Arial, sans-serif;
}

.pricing-features i {
    color: #fc6f32; /* Icon color */
    font-size: 20px;
    margin-right: 10px;
    margin-top: 3px; /* Align icon with text */
}

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

.feature-title {
    font-weight: bold;
    line-height: 1.2;
}

.feature-desc {
    font-weight: normal;
    color: #555;
    font-size: 0.95em;
    margin-top: 2px;
}