/*--------------------------------------------------------------
# General
--------------------------------------------------------------*/
:root {
  --primary-color: #00D98C;
  --secondary-color: #00FFC8;
  --dark-color: #000000;
  --dark-bg: #0a0a0a;
  --card-bg: #1a1a1a;
  --light-color: #ffffff;
  --text-color: #ffffff;
  --text-muted: #b0b0b0;
  --heading-color: #ffffff;
}

body {
  font-family: "Open Sans", sans-serif;
  color: var(--text-color);
  background-color: var(--dark-color);
}

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

a:hover {
  color: #3451c7;
  text-decoration: none;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Jost", sans-serif;
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Back to top button
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 996;
  background: var(--primary-color);
  width: 40px;
  height: 40px;
  border-radius: 50px;
  transition: all 0.4s;
}

.back-to-top i {
  font-size: 28px;
  color: #fff;
  line-height: 0;
}

.back-to-top:hover {
  background: #3451c7;
  color: #fff;
}

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

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
  transition: all 0.5s;
  z-index: 997;
  padding: 15px 0;
  background: rgba(0, 0, 0, 0.95);
  backdrop-filter: blur(10px);
}

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.98);
  box-shadow: 0px 2px 20px rgba(0, 217, 140, 0.2);
}

#header .logo {
  font-size: 30px;
  margin: 0;
  padding: 0;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

#header .logo a {
  color: #fff;
}

#header .logo img {
  max-height: 40px;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.navbar {
  padding: 0;
}

.navbar ul {
  margin: 0;
  padding: 0;
  display: flex;
  list-style: none;
  align-items: center;
}

.navbar li {
  position: relative;
}

.navbar a, .navbar a:focus {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 15px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.8);
  white-space: nowrap;
  transition: 0.3s;
}

.navbar a i, .navbar a:focus i {
  font-size: 12px;
  line-height: 0;
  margin-left: 5px;
}

.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
  color: #fff;
}

.navbar .getstarted, .navbar .getstarted:focus {
  padding: 8px 20px;
  margin-left: 20px;
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  border: 2px solid var(--primary-color);
  font-weight: 600;
  background: var(--primary-color);
}

.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
  background: #3451c7;
  border-color: #3451c7;
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  display: none;
  line-height: 0;
  transition: 0.5s;
}

@media (max-width: 991px) {
  .mobile-nav-toggle {
    display: block;
  }

  .navbar ul {
    display: none;
  }
}

.navbar-mobile {
  position: fixed;
  overflow: hidden;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(26, 29, 41, 0.98);
  transition: 0.3s;
  z-index: 999;
}

.navbar-mobile .mobile-nav-toggle {
  position: absolute;
  top: 15px;
  right: 15px;
}

.navbar-mobile ul {
  display: block;
  position: absolute;
  top: 55px;
  right: 15px;
  bottom: 15px;
  left: 15px;
  padding: 10px 0;
  border-radius: 10px;
  background-color: #fff;
  overflow-y: auto;
  transition: 0.3s;
}

.navbar-mobile a, .navbar-mobile a:focus {
  padding: 10px 20px;
  font-size: 15px;
  color: var(--dark-color);
}

.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
  color: var(--primary-color);
}

.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
  margin: 15px;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
#hero {
  width: 100%;
  height: 100vh;
  position: relative;
  overflow: hidden;
}

#hero-video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
  object-fit: cover;
}

#hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 29, 41, 0.25);
  z-index: 2;
}

#hero .container {
  position: relative;
  z-index: 3;
  padding-top: 74px;
}

#hero h1 {
  margin: 0 0 20px 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
  color: #fff;
}

#hero .hero-badge {
  display: inline-block;
  padding: 8px 20px;
  background: rgba(0, 217, 140, 0.2);
  border: 1px solid rgba(0, 217, 140, 0.5);
  border-radius: 50px;
  color: #fff;
  font-size: 14px;
  font-weight: 500;
  backdrop-filter: blur(10px);
}

#hero .hero-badge i {
  color:#fff;
  margin-right: 5px;
}

#hero .hero-subtitle {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-size: 20px;
  line-height: 1.6;
}

#hero .btn-get-started {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.5s;
  color: var(--dark-color);
  background: var(--primary-color);
  box-shadow: 0 8px 28px rgba(0, 217, 140, 0.4);
}

#hero .btn-get-started:hover {
  background: var(--secondary-color);
  box-shadow: 0 8px 28px rgba(0, 255, 200, 0.6);
  transform: translateY(-2px);
}

#hero .btn-secondary {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.5px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.5s;
  color: #fff;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.4);
}

#hero .btn-secondary:hover {
  border-color: var(--primary-color);
  background: rgba(0, 217, 140, 0.1);
  color: var(--primary-color);
}

@media (max-width: 768px) {
  #hero h1 {
    font-size: 32px;
    line-height: 40px;
  }

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

  #hero .btn-get-started,
  #hero .btn-secondary {
    font-size: 14px;
    padding: 12px 30px;
  }
}

/*--------------------------------------------------------------
# Sections General
--------------------------------------------------------------*/
section {
  padding: 80px 0;
  overflow: hidden;
  background-color: var(--dark-color);
}

.section-bg {
  background-color: var(--dark-bg);
}

.section-title {
  text-align: center;
  padding-bottom: 30px;
}

.section-title h2 {
  font-size: 36px;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
  color: var(--heading-color);
}

.section-title h2::before {
  content: "";
  position: absolute;
  display: block;
  width: 120px;
  height: 3px;
  background: var(--primary-color);
  bottom: 0;
  left: calc(50% - 60px);
}

.section-title p {
  margin-bottom: 0;
  font-size: 18px;
  color: var(--text-muted);
}

/*--------------------------------------------------------------
# How It Works Section
--------------------------------------------------------------*/
.how-it-works .step-box {
  padding: 40px 25px;
  text-align: center;
  border-radius: 15px;
  background: var(--card-bg);
  box-shadow: 0 0 30px rgba(0, 217, 140, 0.1);
  transition: all 0.3s;
  height: 100%;
  position: relative;
  border: 1px solid rgba(0, 217, 140, 0.2);
}

.how-it-works .step-box:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 217, 140, 0.3);
  border-color: var(--primary-color);
}

.how-it-works .step-number {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 40px;
  height: 40px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 18px;
}

.how-it-works .step-box i {
  font-size: 48px;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: block;
}

.how-it-works .step-box h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 20px;
  color: var(--heading-color);
}

.how-it-works .step-box p {
  color: var(--text-muted);
  font-size: 15px;
  line-height: 1.6;
}

/*--------------------------------------------------------------
# Examples Section
--------------------------------------------------------------*/
.examples .example-card {
  padding: 30px;
  text-align: center;
  border-radius: 15px;
  background: var(--card-bg);
  box-shadow: 0 0 30px rgba(0, 217, 140, 0.1);
  transition: all 0.3s;
  height: 100%;
  border: 1px solid rgba(0, 217, 140, 0.2);
}

.examples .example-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 217, 140, 0.3);
  border-color: var(--primary-color);
}

.examples .example-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--dark-color);
  font-size: 36px;
}

.examples .example-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  color: var(--heading-color);
}

.examples .example-card p {
  color: var(--text-muted);
  font-size: 15px;
  margin-bottom: 20px;
}

.examples .example-card img {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

/*--------------------------------------------------------------
# Methodology Section
--------------------------------------------------------------*/
.methodology .methodology-card {
  padding: 30px 20px;
  text-align: center;
  border-radius: 15px;
  background: var(--card-bg);
  box-shadow: 0 0 30px rgba(0, 217, 140, 0.1);
  transition: all 0.3s;
  height: 100%;
  border: 1px solid rgba(0, 217, 140, 0.2);
}

.methodology .methodology-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 217, 140, 0.3);
  border-color: var(--primary-color);
}

.methodology .methodology-icon {
  width: 70px;
  height: 70px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--dark-color);
  font-size: 32px;
}

.methodology .methodology-card h4 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 18px;
  color: var(--heading-color);
}

.methodology .methodology-card p {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

@media (max-width: 991px) {
  .methodology .col-lg-2 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

@media (max-width: 576px) {
  .methodology .col-lg-2 {
    flex: 0 0 100%;
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Target Audience Section
--------------------------------------------------------------*/
.target .accordion-item {
  border: none;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 217, 140, 0.1);
  background: var(--card-bg);
  border: 1px solid rgba(0, 217, 140, 0.2);
}

.target .accordion-button {
  padding: 20px 25px;
  font-weight: 600;
  font-size: 16px;
  color: var(--heading-color);
  background: var(--card-bg);
  border: none;
  box-shadow: none;
}

.target .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: rgba(0, 217, 140, 0.1);
}

.target .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.target .accordion-button::after {
  background-image: none;
  content: "\F282";
  font-family: "bootstrap-icons";
  font-size: 20px;
  color: var(--primary-color);
}

.target .accordion-button:not(.collapsed)::after {
  content: "\F286";
}

.target .accordion-body {
  padding: 20px 25px;
  background: var(--card-bg);
  color: var(--text-muted);
  line-height: 1.8;
}

.target .accordion-body ul {
  margin-top: 10px;
  padding-left: 0;
  list-style: none;
}

.target .accordion-body ul li {
  margin-bottom: 12px;
  padding-left: 5px;
}

/*--------------------------------------------------------------
# Products Section
--------------------------------------------------------------*/
.products .product-card {
  padding: 40px 30px;
  text-align: center;
  border-radius: 15px;
  background: var(--card-bg);
  box-shadow: 0 0 30px rgba(0, 217, 140, 0.1);
  transition: all 0.3s ease-in-out;
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(0, 217, 140, 0.2);
}

.products .product-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.products .product-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 40px rgba(0, 217, 140, 0.3);
  border-color: var(--primary-color);
}

.products .product-card.featured {
  border: 2px solid var(--primary-color);
  transform: scale(1.05);
  box-shadow: 0 0 40px rgba(0, 217, 140, 0.3);
}

.products .badge-popular {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--secondary-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: 600;
}

.products .product-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--primary-color);
  color: var(--dark-color);
  font-size: 36px;
  box-shadow: 0 8px 20px rgba(70, 104, 229, 0.3);
}

.products h3 {
  font-weight: 700;
  margin-bottom: 15px;
  font-size: 22px;
  color: var(--heading-color);
}

.products .price-original {
  font-size: 16px;
  color: var(--text-muted);
  text-decoration: line-through;
  margin-bottom: 5px;
}

.products .price {
  font-size: 48px;
  font-weight: 700;
  color: var(--primary-color);
  margin: 10px 0 20px 0;
}

.products .price span {
  font-size: 18px;
  font-weight: 400;
  color: var(--text-muted);
}

.products .features {
  list-style: none;
  padding: 0;
  margin: 30px 0;
  text-align: left;
  flex-grow: 1;
}

.products .features li {
  padding: 10px 0;
  color: var(--text-muted);
  font-size: 15px;
}

.products .features li i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 18px;
}

.products .btn-buy {
  display: inline-block;
  padding: 12px 40px;
  border-radius: 50px;
  color: var(--dark-color);
  background: var(--primary-color);
  transition: 0.3s;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  width: 100%;
  margin-top: auto;
}

.products .btn-buy:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 217, 140, 0.4);
}

/* Business Form */
.business-form-container {
  padding: 40px;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 217, 140, 0.1);
  border: 1px solid rgba(0, 217, 140, 0.2);
}

.business-form-container h3 {
  color: var(--heading-color);
  font-weight: 700;
}

.business-form .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.business-form .form-control {
  border: 2px solid rgba(0, 217, 140, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s;
  background: var(--dark-bg);
  color: var(--text-color);
}

.business-form .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 217, 140, 0.2);
  background: var(--dark-bg);
  color: var(--text-color);
}

.btn-business {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  color: var(--dark-color);
  background: var(--primary-color);
  transition: 0.3s;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  cursor: pointer;
}

.btn-business:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 217, 140, 0.4);
  color: var(--dark-color);
}

/*--------------------------------------------------------------
# AI Testimonials Carousel Section
--------------------------------------------------------------*/
.ai-testimonials .ai-testimonial-card {
  padding: 50px 40px;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 217, 140, 0.1);
  text-align: center;
  min-height: 400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 1px solid rgba(0, 217, 140, 0.2);
}

.ai-testimonials .ai-logo {
  margin-bottom: 30px;
}

.ai-testimonials .ai-logo img {
  width: 80px;
  height: 80px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 217, 140, 0.2);
  object-fit: contain;
  background: #ffffff;
  padding: 10px;
}

.ai-testimonials .ai-quote {
  position: relative;
  margin: 20px 0;
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  font-style: italic;
}

.ai-testimonials .quote-icon-left {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 10px;
  vertical-align: top;
}

.ai-testimonials .quote-icon-right {
  font-size: 24px;
  color: var(--primary-color);
  margin-left: 10px;
  vertical-align: bottom;
}

.ai-testimonials .ai-name {
  margin-top: 20px;
  font-size: 18px;
  color: var(--heading-color);
}

/* Carousel Controls */
.ai-testimonials .carousel-control-prev,
.ai-testimonials .carousel-control-next {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.8;
}

.ai-testimonials .carousel-control-prev:hover,
.ai-testimonials .carousel-control-next:hover {
  opacity: 1;
}

.ai-testimonials .carousel-control-prev {
  left: -25px;
}

.ai-testimonials .carousel-control-next {
  right: -25px;
}

.ai-testimonials .carousel-indicators {
  margin-bottom: -30px;
}

.ai-testimonials .carousel-indicators button {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: var(--primary-color);
  opacity: 0.5;
}

.ai-testimonials .carousel-indicators button.active {
  opacity: 1;
}

@media (max-width: 768px) {
  .ai-testimonials .ai-testimonial-card {
    padding: 30px 20px;
    min-height: 350px;
  }

  .ai-testimonials .ai-quote {
    font-size: 14px;
  }

  .ai-testimonials .carousel-control-prev,
  .ai-testimonials .carousel-control-next {
    display: none;
  }
}

/*--------------------------------------------------------------
# FAQ Section
--------------------------------------------------------------*/
.faq .accordion-item {
  border: none;
  margin-bottom: 20px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 0 20px rgba(0, 217, 140, 0.1);
  background: var(--card-bg);
  border: 1px solid rgba(0, 217, 140, 0.2);
}

.faq .accordion-button {
  padding: 20px 25px;
  font-weight: 600;
  font-size: 16px;
  color: var(--heading-color);
  background: var(--card-bg);
  border: none;
  box-shadow: none;
}

.faq .accordion-button:not(.collapsed) {
  color: var(--primary-color);
  background-color: rgba(0, 217, 140, 0.1);
}

.faq .accordion-button:focus {
  box-shadow: none;
  border: none;
}

.faq .accordion-button::after {
  background-image: none;
  content: "\F282";
  font-family: "bootstrap-icons";
  font-size: 20px;
  color: var(--primary-color);
}

.faq .accordion-button:not(.collapsed)::after {
  content: "\F286";
}

.faq .accordion-body {
  padding: 20px 25px;
  background: var(--card-bg);
  color: var(--text-muted);
  line-height: 1.8;
}

.faq .accordion-body ul {
  margin-top: 10px;
  padding-left: 20px;
}

.faq .accordion-body ul li {
  margin-bottom: 8px;
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .contact-form {
  padding: 40px;
  background: var(--card-bg);
  border-radius: 15px;
  box-shadow: 0 0 30px rgba(0, 217, 140, 0.1);
  border: 1px solid rgba(0, 217, 140, 0.2);
}

.contact .form-label {
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.contact .form-control {
  border: 2px solid rgba(0, 217, 140, 0.3);
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s;
  background: var(--dark-bg);
  color: var(--text-color);
}

.contact .form-control:focus {
  border-color: var(--primary-color);
  box-shadow: 0 0 0 0.2rem rgba(0, 217, 140, 0.2);
  background: var(--dark-bg);
  color: var(--text-color);
}

.contact .form-check-input {
  background-color: var(--dark-bg);
  border-color: rgba(0, 217, 140, 0.3);
}

.contact .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.contact .form-check-label {
  color: var(--text-muted);
}

.contact .form-check-label a {
  color: var(--primary-color);
  text-decoration: underline;
}

.btn-contact {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  color: var(--dark-color);
  background: var(--primary-color);
  transition: 0.3s;
  font-weight: 600;
  border: 2px solid var(--primary-color);
  cursor: pointer;
}

.btn-contact:hover {
  background: var(--secondary-color);
  border-color: var(--secondary-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 217, 140, 0.4);
  color: var(--dark-color);
}

/*--------------------------------------------------------------
# CTA Section
--------------------------------------------------------------*/
.cta {
  background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
  padding: 80px 0;
}

.cta h3 {
  color: var(--dark-color);
  font-size: 32px;
  font-weight: 700;
}

.cta p {
  color: var(--dark-color);
  font-size: 18px;
  margin-top: 10px;
  opacity: 0.9;
}

.cta .cta-btn {
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  transition: 0.5s;
  color: var(--primary-color);
  background: var(--dark-color);
  border: 2px solid var(--dark-color);
}

.cta .cta-btn:hover {
  background: transparent;
  color: var(--dark-color);
  border-color: var(--dark-color);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.3);
}

/*--------------------------------------------------------------
# Footer
--------------------------------------------------------------*/
#footer {
  font-size: 14px;
  background: var(--dark-color);
}

#footer .footer-top {
  padding: 60px 0 30px 0;
  background: var(--dark-bg);
}

#footer .footer-top h3 {
  color: var(--heading-color);
  font-size: 28px;
  margin-bottom: 20px;
}

#footer .footer-top p {
  color: var(--text-muted);
  line-height: 1.8;
}

.footer-top .footer-contact {
  margin-bottom: 30px;
}

#footer .footer-top h4 {
  font-size: 16px;
  font-weight: bold;
  color: var(--heading-color);
  position: relative;
  padding-bottom: 12px;
  margin-bottom: 20px;
}

#footer .footer-top .footer-links {
  margin-bottom: 30px;
}

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

#footer .footer-top .footer-links ul li {
  padding: 8px 0;
}

#footer .footer-top .footer-links ul li:first-child {
  padding-top: 0;
}

#footer .footer-top .footer-links ul a {
  color: var(--text-muted);
  transition: 0.3s;
  display: inline-block;
  line-height: 1;
}

#footer .footer-top .footer-links ul a:hover {
  text-decoration: none;
  color: var(--primary-color);
  padding-left: 5px;
}

#footer .footer-bottom {
  padding-top: 30px;
  padding-bottom: 30px;
  color: var(--text-muted);
}

#footer .copyright {
  float: left;
}

@media (max-width: 768px) {
  #footer .copyright {
    float: none;
    text-align: center;
  }
}

/*--------------------------------------------------------------
# Páginas Legales (aviso-legal, privacidad, cookies)
# AÑADIDO: estilos para el contenido de texto largo de las páginas legales
--------------------------------------------------------------*/
/* Wrapper de la sección legal: deja espacio bajo el header fijo */
.legal-section {
  padding: 140px 0 80px 0;          /* 140px arriba para no quedar tapado por el #header fixed-top */
  background-color: var(--dark-color);
}

/* Tarjeta contenedora del texto legal */
.legal-section .legal-card {
  background: var(--card-bg);
  border: 1px solid rgba(0, 217, 140, 0.2);
  border-radius: 15px;
  padding: 40px;
  box-shadow: 0 0 30px rgba(0, 217, 140, 0.1);
}

/* Título principal de la página legal */
.legal-section h1 {
  color: var(--primary-color);
  font-weight: 700;
  margin-bottom: 10px;
}

/* Fecha de última actualización */
.legal-section .legal-updated {
  color: var(--text-muted);
  font-size: 14px;
  margin-bottom: 30px;
  display: block;
}

/* Encabezados de cada apartado legal */
.legal-section h2 {
  color: var(--secondary-color);
  font-size: 22px;
  font-weight: 600;
  margin-top: 35px;
  margin-bottom: 15px;
}

.legal-section h3 {
  color: var(--light-color);
  font-size: 18px;
  font-weight: 600;
  margin-top: 25px;
  margin-bottom: 12px;
}

/* Texto y listas de las páginas legales */
.legal-section p,
.legal-section li {
  color: var(--text-muted);
  line-height: 1.8;
}

.legal-section ul {
  padding-left: 20px;
}

.legal-section li {
  margin-bottom: 8px;
}

/* Enlaces dentro del texto legal */
.legal-section a {
  color: var(--primary-color);
}

.legal-section a:hover {
  color: var(--secondary-color);
}

/* Tabla de cookies */
.legal-section .table-cookies {
  width: 100%;
  margin: 20px 0;
  border-collapse: collapse;
}

.legal-section .table-cookies th,
.legal-section .table-cookies td {
  border: 1px solid rgba(0, 217, 140, 0.2);
  padding: 12px;
  text-align: left;
  color: var(--text-muted);
  font-size: 14px;
}

.legal-section .table-cookies th {
  background: rgba(0, 217, 140, 0.1);
  color: var(--light-color);
  font-weight: 600;
}

/* Responsive: tabla con scroll horizontal en móvil */
.legal-section .table-responsive-wrapper {
  overflow-x: auto;
}

@media (max-width: 768px) {
  .legal-section {
    padding: 110px 0 60px 0;
  }
  .legal-section .legal-card {
    padding: 25px;
  }
}

/*--------------------------------------------------------------
# Banner de Consentimiento de Cookies
# AÑADIDO: banner fijo inferior para consentimiento RGPD de Google Analytics
--------------------------------------------------------------*/
/* Contenedor del banner: fijo abajo, oculto por defecto (lo muestra el JS) */
#cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(0, 217, 140, 0.3);
  box-shadow: 0 -2px 20px rgba(0, 217, 140, 0.15);
  padding: 20px 0;
  display: none;                    /* oculto hasta que el JS decida mostrarlo */
}

/* Cuando el JS añade la clase .show, el banner se hace visible */
#cookie-banner.show {
  display: block;
}

/* Texto del banner */
#cookie-banner .cookie-text {
  color: var(--text-muted);
  font-size: 14px;
  line-height: 1.6;
  margin: 0;
}

#cookie-banner .cookie-text a {
  color: var(--primary-color);
}

/* Contenedor de botones del banner */
#cookie-banner .cookie-buttons {
  display: flex;
  gap: 10px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* Botón base del banner */
#cookie-banner .cookie-btn {
  border-radius: 50px;
  padding: 10px 24px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
}

/* Botón "Aceptar": verde neón */
#cookie-banner .cookie-btn-accept {
  background: var(--primary-color);
  color: var(--dark-color);
}

#cookie-banner .cookie-btn-accept:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

/* Botón "Rechazar": borde verde, fondo transparente */
#cookie-banner .cookie-btn-reject {
  background: transparent;
  color: var(--primary-color);
  border: 1px solid rgba(0, 217, 140, 0.4);
}

#cookie-banner .cookie-btn-reject:hover {
  background: rgba(0, 217, 140, 0.1);
}

/* Responsive: en móvil los botones ocupan todo el ancho */
@media (max-width: 768px) {
  #cookie-banner .cookie-buttons {
    justify-content: center;
    margin-top: 12px;
  }
  #cookie-banner .cookie-btn {
    flex: 1;
  }
}
