/* Fonts */
:root {
  --default-font: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif,
    "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Nunito", sans-serif;
  --nav-font: "Inter", sans-serif;
}

:root {
  --background-color: #ffffff;
  --default-color: #3d4348;
  --heading-color: #3e5055;
  --accent-color: #80639b;
  --surface-color: #ffffff;
  --contrast-color: #ffffff;
}

/* Nav Menu Colors */
:root {
  --nav-color: #313336;
  --nav-hover-color: #77b6ca;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #313336;
  --nav-dropdown-hover-color: #77b6ca;
}

/* Color Presets */

.light-background {
  --background-color: #f8fbfc;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #060606;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #252525;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  transition: all 0.5s;
  z-index: 997;
}

.header .logo {
  line-height: 1;
}

.header .logo img {
  max-height: 48px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

@media (max-width: 480px) {
  .header .logo img {
    max-height: 40px;
  }

  .header .logo h1 {
    font-size: 24px;
  }
}

.header .btn-getstarted,
.header .btn-getstarted:focus {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-size: 14px;
  padding: 8px 25px;
  margin: 0 0 0 30px;
  border-radius: 50px;
  transition: 0.3s;
}

.header .btn-getstarted:hover,
.header .btn-getstarted:focus:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 1200px) {
  .header .logo {
    order: 1;
  }

  .header .btn-getstarted {
    order: 2;
    margin: 0 15px 0 0;
    padding: 6px 15px;
    font-size: 11px;
  }

  .header .navmenu {
    order: 3;
  }
}

.scrolled .header {
  box-shadow: 0px 0 18px rgba(0, 0, 0, 0.1);
}

/* Index Page Header
------------------------------*/
.index-page .header {
  --background-color: rgba(255, 255, 255, 0);
}

/* Index Page Header on Scroll
------------------------------*/
.index-page.scrolled .header {
  --background-color: #ffffff;
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Desktop Navigation */
@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

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

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-color);
    padding: 18px 15px;
    font-size: 16px;
    font-family: var(--nav-font);
    font-weight: 400;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

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

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }

  .navmenu .megamenu {
    position: static;
  }

  .navmenu .megamenu ul {
    margin: 0;
    padding: 10px;
    background: var(--nav-dropdown-background-color);
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: 130%;
    left: 0;
    right: 0;
    visibility: hidden;
    opacity: 0;
    display: flex;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
  }

  .navmenu .megamenu ul li {
    flex: 1;
  }

  .navmenu .megamenu ul li a,
  .navmenu .megamenu ul li:hover > a {
    padding: 10px 20px;
    font-size: 15px;
    color: var(--nav-dropdown-color);
  }

  .navmenu .megamenu ul li a:hover,
  .navmenu .megamenu ul li .active,
  .navmenu .megamenu ul li .active:hover {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .megamenu:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }
  
}

/* Mobile Navigation */
@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--nav-color);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--nav-dropdown-color);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 17px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    transition: all 0.5s ease-in-out;
    box-shadow: none;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 32px;
    top: 15px;
    right: 15px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }

  .info-banner .row.align-items-center {
    flex-direction: column !important;
  }
  .info-banner .col-md-8,
  .info-banner .col-md-4 {
    width: 100%;
    max-width: 100%;
  }
  .info-banner .col-md-4 {
    margin-top: 20px;
    text-align: center;
  }

  .coverage-list{
    margin-top: 1.5rem;
  }

  #mapMaule{
    margin-top: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Welcome Section
--------------------------------------------------------------*/
.welcome {
  padding: 100px 0;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 98%),
    color-mix(in srgb, var(--accent-color), transparent 95%)
  );
  position: relative;
  overflow: hidden;
}

.welcome::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='80' height='80' viewBox='0 0 80 80' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%2380639b' fill-opacity='0.03'%3E%3Ccircle cx='40' cy='40' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  animation: floatPattern 20s linear infinite;
}

@keyframes floatPattern {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(80px) translateY(80px);
  }
}

.welcome-content {
  position: relative;
  z-index: 1;
}

.welcome-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 20%)
  );
  color: var(--contrast-color);
  padding: 12px 25px;
  border-radius: 50px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 30px;
  box-shadow: 0 8px 25px rgba(128, 99, 155, 0.3);
  position: relative;
  overflow: hidden;
}

.welcome-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmerWelcome 3s infinite;
}

@keyframes shimmerWelcome {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.welcome-badge i {
  font-size: 16px;
  animation: heartbeat 2s infinite;
}

@keyframes heartbeat {
  0%,
  100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}

.welcome-title {
  font-size: 42px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 40px;
  line-height: 1.2;
  font-family: var(--heading-font);
}

.welcome-title .highlight {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 30%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.welcome-title .highlight::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 50%)
  );
  border-radius: 2px;
  animation: underlineGrow 2s ease-out;
}

@keyframes underlineGrow {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}

.welcome-description {
  margin-bottom: 60px;
}

.welcome-description .lead {
  font-size: 20px;
  font-weight: 400;
  color: var(--default-color);
  line-height: 1.6;
  margin-bottom: 25px;
}

.welcome-description .secondary {
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.7;
  margin-bottom: 0;
}

.welcome-values {
  margin-bottom: 60px;
}

.welcome-values .value-item {
  text-align: center;
  padding: 30px 20px;
  background: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
  height: 100%;
}

.welcome-values .value-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(128, 99, 155, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.welcome-values .value-item:hover::before {
  left: 100%;
}

.welcome-values .value-item:hover {
  transform: translateY(-10px);
  border-color: var(--accent-color);
  box-shadow: 0 15px 40px rgba(128, 99, 155, 0.2);
  background: rgba(255, 255, 255, 0.9);
}

.welcome-values .value-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 20%)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.welcome-values .value-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.welcome-values .value-item:hover .value-icon {
  transform: rotateY(180deg);
  box-shadow: 0 10px 30px rgba(128, 99, 155, 0.4);
}

.welcome-values .value-item h4 {
  font-size: 20px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.welcome-values .value-item p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  line-height: 1.5;
  margin: 0;
  position: relative;
  z-index: 1;
}

.welcome-quote {
  background: rgba(255, 255, 255, 0.8);
  padding: 40px;
  border-radius: 20px;
  border-left: 5px solid var(--accent-color);
  margin-bottom: 50px;
  position: relative;
  backdrop-filter: blur(10px);
}

.welcome-quote::before {
  content: '"';
  position: absolute;
  top: 15px;
  left: 25px;
  font-size: 80px;
  color: var(--accent-color);
  opacity: 0.2;
  font-family: serif;
  line-height: 1;
}

.welcome-quote blockquote {
  font-size: 18px;
  font-style: italic;
  color: var(--default-color);
  margin: 0 0 15px 0;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}

.welcome-quote cite {
  font-size: 14px;
  color: var(--accent-color);
  font-weight: 600;
  position: relative;
  z-index: 1;
  padding-left: 30px;
}

.welcome-quote cite::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--accent-color);
  transform: translateY(-50%);
}

.welcome-cta {
  text-align: center;
}

.welcome-cta .cta-text {
  font-size: 18px;
  color: var(--default-color);
  margin-bottom: 30px;
  font-weight: 500;
}

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

.btn-welcome-primary {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 20%)
  );
  color: var(--contrast-color);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(128, 99, 155, 0.3);
  border: 2px solid transparent;
}

.btn-welcome-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(128, 99, 155, 0.4);
  color: var(--contrast-color);
}

.btn-welcome-secondary {
  background: rgba(255, 255, 255, 0.8);
  color: var(--accent-color);
  padding: 15px 35px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
  backdrop-filter: blur(10px);
}

.btn-welcome-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(128, 99, 155, 0.3);
}

/* Responsive Welcome Section */
@media (max-width: 992px) {
  .welcome-title {
    font-size: 32px;
  }

  .welcome-description .lead {
    font-size: 18px;
  }

  .welcome-values .value-item {
    margin-bottom: 30px;
  }
}

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

  .welcome-title {
    font-size: 28px;
    margin-bottom: 30px;
  }

  .welcome-description .lead {
    font-size: 16px;
  }

  .welcome-description .secondary {
    font-size: 15px;
  }

  .welcome-quote {
    padding: 30px 25px;
  }

  .welcome-quote blockquote {
    font-size: 16px;
  }

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

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

  .welcome-values .value-icon {
    width: 60px;
    height: 60px;
  }

  .welcome-values .value-icon i {
    font-size: 24px;
  }
}

@media (max-width: 576px) {
  .welcome-badge {
    padding: 10px 20px;
    font-size: 13px;
  }

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

  .welcome-quote::before {
    font-size: 60px;
    top: 10px;
    left: 20px;
  }

  .welcome-quote blockquote,
  .welcome-quote cite {
    padding-left: 20px;
  }
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding-bottom: 50px;
  position: relative;
}

.footer .footer-top {
  padding-top: 50px;
}

.footer .footer-about .logo {
  line-height: 1;
  margin-bottom: 25px;
}

.footer .footer-about .logo img {
  max-height: 40px;
  margin-right: 6px;
}

.footer .footer-about .logo span {
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 1px;
  font-family: var(--heading-font);
  color: var(--heading-color);
}

.footer .footer-about p {
  font-size: 14px;
  font-family: var(--heading-font);
}

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 16px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin-right: 10px;
  transition: 0.3s;
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
}

.footer h4 {
  font-size: 16px;
  font-weight: bold;
  position: relative;
  padding-bottom: 12px;
}

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

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

.footer .footer-links ul i {
  padding-right: 2px;
  font-size: 12px;
  line-height: 0;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

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

.footer .footer-links ul a {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  display: inline-block;
  line-height: 1;
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
}

.footer .footer-contact p {
  margin-bottom: 5px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 6px 8px;
  position: relative;
  border-radius: 50px;
  border: 1px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  display: flex;
  background-color: var(--surface-color);
  transition: 0.3s;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"] {
  border: 0;
  padding: 4px 10px;
  width: 100%;
  background-color: var(--contrsast-color);
  color: var(--default-color);
}

.footer .footer-newsletter .newsletter-form input[type="email"]:focus-visible {
  outline: none;
}

.footer .footer-newsletter .newsletter-form input[type="submit"] {
  border: 0;
  font-size: 16px;
  padding: 0 20px;
  margin: -7px -9px -7px 0;
  background: var(--accent-color);
  color: var(--contrast-color);
  transition: 0.3s;
  border-radius: 50px;
}

.footer .footer-newsletter .newsletter-form input[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.footer .copyright {
  padding-top: 25px;
  padding-bottom: 25px;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 6px;
  font-size: 13px;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background-color: var(--background-color);
  transition: all 0.6s ease-out;
  width: 100%;
  height: 100vh;
}

#preloader:before,
#preloader:after {
  content: "";
  position: absolute;
  border: 4px solid var(--accent-color);
  border-radius: 50%;
  animation: animate-preloader 2s cubic-bezier(0, 0.2, 0.8, 1) infinite;
}

#preloader:after {
  animation-delay: -0.5s;
}

@keyframes animate-preloader {
  0% {
    width: 10px;
    height: 10px;
    top: calc(50% - 5px);
    left: calc(50% - 5px);
    opacity: 1;
  }

  100% {
    width: 72px;
    height: 72px;
    top: calc(50% - 36px);
    left: calc(50% - 36px);
    opacity: 0;
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  --background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
}

.page-title .breadcrumbs ol li + li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li + li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  scroll-margin-top: 100px;
  overflow: clip;
}

@media (max-width: 1199px) {
  section,
  .section {
    scroll-margin-top: 66px;
  }
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  text-align: center;
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 70vh;
  position: relative;
  padding: 180px 0 40px 0;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero .hero-bg img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero .hero-bg::before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 15%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

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

.hero h1 {
  margin: 0;
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}

.hero h1 span {
  color: var(--accent-color);
}

.hero p {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  margin: 5px 0 30px 0;
  font-size: 20px;
  font-weight: 400;
}

@media (min-width: 768px) {
  .hero .hero-img {
    max-width: 600px;
  }

  .info-banner .btn {
    font-size: 15px;
    text-align: center;
  }
}

.hero .btn-get-started {
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  display: inline-block;
  padding: 10px 28px;
  border-radius: 50px;
  transition: 0.5s;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-get-started:hover {
  color: var(--contrast-color);
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.1);
}

.hero .btn-watch-video {
  font-size: 16px;
  transition: 0.5s;
  margin-left: 25px;
  color: var(--default-color);
  font-weight: 600;
}

.hero .btn-watch-video i {
  color: var(--accent-color);
  font-size: 32px;
  transition: 0.3s;
  line-height: 0;
  margin-right: 8px;
}

.hero .btn-watch-video:hover {
  color: var(--accent-color);
}

.hero .btn-watch-video:hover i {
  color: color-mix(in srgb, var(--accent-color), transparent 15%);
}

@media (max-width: 640px) {
  .hero h1 {
    font-size: 28px;
    line-height: 36px;
  }

  .hero p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 30px;
  }

  .hero .btn-get-started,
  .hero .btn-watch-video {
    font-size: 13px;
  }
}

/*--------------------------------------------------------------
# Featured Services Section
--------------------------------------------------------------*/
.featured-services {
  padding: 40px 0;
}

.featured-services .service-item {
  position: relative;
  padding-top: 20px;
}

.featured-services .service-item .icon {
  background-color: color-mix(in srgb, var(--accent-color), transparent 80%);
  width: 72px;
  height: 72px;
  position: relative;
  margin-right: 15px;
  line-height: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: ease-in-out 0.3s;
  border-radius: 100%;
}

.featured-services .service-item .icon i {
  color: var(--accent-color);
  font-size: 32px;
  z-index: 2;
  position: relative;
}

.featured-services .service-item .title {
  font-weight: 700;
  margin-bottom: 5px;
  font-size: 18px;
}

.featured-services .service-item .title a {
  color: var(--heading-color);
}

.featured-services .service-item .title a:hover {
  color: var(--accent-color);
}

.featured-services .service-item .description {
  font-size: 14px;
}

.featured-services .service-item:hover .icon {
  background-color: var(--accent-color);
}

.featured-services .service-item:hover .icon i {
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  padding-bottom: 20px;
}

.about .content .who-we-are {
  text-transform: uppercase;
  margin-bottom: 15px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.about .content h3 {
  font-size: 2rem;
  font-weight: 700;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  padding-bottom: 10px;
}

.about .content ul i {
  font-size: 1.25rem;
  margin-right: 4px;
  color: var(--accent-color);
}

.about .content p:last-child {
  margin-bottom: 0;
}

.about .content .read-more {
  background: var(--accent-color);
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 1px;
  padding: 12px 24px;
  border-radius: 5px;
  transition: 0.3s;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.about .content .read-more i {
  font-size: 18px;
  margin-left: 5px;
  line-height: 0;
  transition: 0.3s;
}

.about .content .read-more:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  padding-right: 19px;
}

.about .content .read-more:hover i {
  margin-left: 10px;
}

.about .about-images img {
  border-radius: 10px;
}

.about-content-wrapper {
  padding: 20px 0;
}

.who-we-are-badge {
  display: inline-block;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 20%)
  );
  color: var(--contrast-color);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(128, 99, 155, 0.3);
  position: relative;
  overflow: hidden;
}

.who-we-are-badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 3s infinite;
}

.about-title {
  font-size: 32px;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 25px;
  line-height: 1.2;
  position: relative;
}

.about-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 60px;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 50%)
  );
  border-radius: 2px;
}

.about-description {
  font-size: 16px;
  line-height: 1.8;
  color: var(--default-color);
  margin-bottom: 20px;
}

.about-description-secondary {
  font-size: 15px;
  line-height: 1.7;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin-bottom: 35px;
  font-style: italic;
}

.about-features {
  margin: 40px 0;
}

.about-features .feature-item {
  display: flex;
  align-items: flex-start;
  margin-bottom: 25px;
  padding: 20px;
  background: var(--surface-color);
  border-radius: 15px;
  transition: all 0.3s ease;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
  box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
}

.about-features .feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(128, 99, 155, 0.05),
    transparent
  );
  transition: left 0.5s ease;
}

.about-features .feature-item:hover::before {
  left: 100%;
}

.about-features .feature-item:hover {
  transform: translateX(10px);
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(128, 99, 155, 0.15);
}

.about-features .feature-icon {
  width: 60px;
  height: 60px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 20%)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  flex-shrink: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.about-features .feature-icon i {
  font-size: 24px;
  color: var(--contrast-color);
}

.about-features .feature-item:hover .feature-icon {
  transform: rotateY(180deg);
  box-shadow: 0 8px 20px rgba(128, 99, 155, 0.4);
}

.about-features .feature-content {
  flex: 1;
  position: relative;
  z-index: 1;
}

.about-features .feature-content h4 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 8px;
}

.about-features .feature-content p {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  line-height: 1.5;
}

.about-stats {
  display: flex;
  gap: 30px;
  margin: 40px 0;
  padding: 30px;
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 97%),
    color-mix(in srgb, var(--accent-color), transparent 95%)
  );
  border-radius: 20px;
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
}

.about-stats .stat-item {
  text-align: center;
  flex: 1;
}

.about-stats .stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: var(--accent-color);
  margin-bottom: 5px;
  font-family: var(--heading-font);
}

.about-stats .stat-label {
  font-size: 12px;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 500;
}

.about-cta {
  display: flex;
  gap: 20px;
  margin-top: 40px;
  flex-wrap: wrap;
}

.btn-about-primary {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 20%)
  );
  color: var(--contrast-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(128, 99, 155, 0.3);
  border: 2px solid transparent;
}

.btn-about-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(128, 99, 155, 0.4);
  color: var(--contrast-color);
}

.btn-about-secondary {
  background: transparent;
  color: var(--accent-color);
  padding: 15px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s ease;
  border: 2px solid var(--accent-color);
}

.btn-about-secondary:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(128, 99, 155, 0.3);
}

/* Responsive para About Section */
@media (max-width: 992px) {
  .about-title {
    font-size: 28px;
  }

  .about-stats {
    flex-direction: column;
    gap: 15px;
  }

  .about-stats .stat-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
  }

  .about-cta {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .about-title {
    font-size: 24px;
  }

  .about-features .feature-item {
    padding: 15px;
    margin-bottom: 20px;
  }

  .about-features .feature-icon {
    width: 50px;
    height: 50px;
    margin-right: 15px;
  }

  .about-features .feature-icon i {
    font-size: 20px;
  }

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

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

/*--------------------------------------------------------------
# Clients Section
--------------------------------------------------------------*/
.clients {
  padding: 20px 0;
}

.clients .client-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}

.clients .client-logo img {
  padding: 20px 40px;
  max-width: 90%;
  transition: 0.3s;
  opacity: 0.5;
  filter: grayscale(100);
}

.clients .client-logo img:hover {
  filter: none;
  opacity: 1;
}

@media (max-width: 640px) {
  .clients .client-logo img {
    padding: 20px;
  }
}

/*--------------------------------------------------------------
# Features Section
--------------------------------------------------------------*/
.features .nav-tabs {
  border: 0;
}

.features .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.features .nav-item:last-child {
  margin-bottom: 0;
}

.features .nav-link {
  color: var(--heading-color);
  border: 0;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
  cursor: pointer;
}

.features .nav-link i {
  background-color: var(--surface-color);
  color: var(--accent-color);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 20px;
  width: 48px;
  height: 48px;
  font-size: 22px;
  flex-shrink: 0;
  border-radius: 50px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.features .nav-link h4 {
  font-size: 20px;
  font-weight: 600;
  margin: 0 0 10px 0;
  transition: 0.3s;
}

.features .nav-link p {
  font-size: 15px;
  margin: 0;
}

.features .nav-link:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
}

.features .nav-link.active {
  background: color-mix(in srgb, var(--accent-color), transparent 96%);
  color: var(--default-color);
}

.features .tab-pane img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Features Details Section
--------------------------------------------------------------*/
.features-details .features-item + .features-item {
  margin-top: 60px;
}

.features-details .features-item .content {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  padding: 30px;
  border-radius: 10px;
}

.features-details .features-item h3 {
  font-weight: 700;
  font-size: 26px;
  margin-bottom: 15px;
}

.features-details .features-item .more-btn {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 6px 30px;
  border-radius: 6px;
}

.features-details .features-item .more-btn:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
}

.features-details .features-item ul {
  list-style: none;
  padding: 0;
}

.features-details .features-item ul li {
  padding-bottom: 10px;
  display: flex;
  align-items: center;
}

.features-details .features-item ul li:last-child {
  padding-bottom: 0;
}

.features-details .features-item ul i {
  font-size: 20px;
  margin-right: 10px;
  color: var(--accent-color);
}

.features-details .features-item img {
  border-radius: 15px;
}

/*--------------------------------------------------------------
# Services Section
--------------------------------------------------------------*/
.services .service-item {
  background-color: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  height: 100%;
  padding: 30px;
  transition: 0.3s;
  border-radius: 10px;
  display: flex;
}

.services .service-item .icon {
  font-size: 32px;
  border-radius: 10px;
  position: relative;
  margin-right: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  flex-shrink: 0;
}

.services .service-item h3 {
  color: color-mix(in srgb, var(--heading-color), transparent 25%);
  font-weight: 700;
  font-size: 22px;
  transition: 0.3s;
}

.services .service-item p {
  margin-bottom: 0;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  transition: 0.3s;
}

.services .service-item .read-more {
  display: inline-flex;
  align-items: center;
  margin-top: 10px;
  transition: 0.3s;
  font-size: 14px;
}

.services .service-item .read-more i {
  margin-left: 10px;
}

.services .service-item.item-cyan .icon {
  color: #0dcaf0;
  border: 1px solid #0dcaf0;
  background: rgba(13, 202, 240, 0.1);
}

.services .service-item.item-orange .icon {
  color: #fd7e14;
  border: 1px solid #fd7e14;
  background: rgba(253, 126, 20, 0.1);
}

.services .service-item.item-teal .icon {
  color: #20c997;
  border: 1px solid #20c997;
  background: rgba(32, 201, 151, 0.1);
}

.services .service-item.item-red .icon {
  color: #df1529;
  border: 1px solid #df1529;
  background: rgba(223, 21, 4, 0.1);
}

.services .service-item.item-indigo .icon {
  color: #6610f2;
  border: 1px solid #6610f2;
  background: rgba(102, 16, 242, 0.1);
}

.services .service-item.item-pink .icon {
  color: #f3268c;
  border: 1px solid #f3268c;
  background: rgba(243, 38, 140, 0.1);
}

.services .service-item:hover {
  box-shadow: 0px 2px 25px rgba(0, 0, 0, 0.1);
}

.services .service-item:hover h3 {
  color: var(--heading-color);
}

.services .service-item:hover p {
  color: color-mix(in srgb, var(--default-color), transparent 10%);
}

/*--------------------------------------------------------------
# More Features Section
--------------------------------------------------------------*/
.more-features .features-image {
  position: relative;
  min-height: 400px;
}

.more-features .features-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.more-features h3 {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 20px;
}

.more-features .icon-box {
  margin-top: 30px;
}

.more-features .icon-box i {
  color: var(--accent-color);
  margin-right: 15px;
  font-size: 24px;
  line-height: 1.2;
}

.more-features .icon-box h4 {
  font-weight: 600;
  margin-bottom: 10px;
  font-size: 18px;
}

.more-features .icon-box p {
  line-height: 24px;
  font-size: 14px;
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing .pricing-item {
  background-color: color-mix(in srgb, var(--accent-color), transparent 96%);
  padding: 40px 40px;
  height: 100%;
  border-radius: 15px;
}

.pricing h3 {
  font-weight: 600;
  margin-bottom: 15px;
  font-size: 20px;
}

.pricing h4 {
  color: var(--accent-color);
  font-size: 48px;
  font-weight: 700;
  font-family: var(--heading-font);
  margin-bottom: 0;
}

.pricing h4 sup {
  font-size: 28px;
}

.pricing h4 span {
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  font-size: 18px;
  font-weight: 500;
}

.pricing .description {
  font-size: 14px;
}

.pricing .cta-btn {
  border: 1px solid var(--default-color);
  color: var(--default-color);
  display: block;
  text-align: center;
  padding: 10px 35px;
  border-radius: 5px;
  font-size: 16px;
  font-weight: 500;
  font-family: var(--heading-font);
  transition: 0.3s;
  margin-top: 20px;
  margin-bottom: 6px;
}

.pricing .cta-btn:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

.pricing ul {
  padding: 0;
  list-style: none;
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  text-align: left;
  line-height: 20px;
}

.pricing ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
}

.pricing ul li:last-child {
  padding-bottom: 0;
}

.pricing ul i {
  color: #059652;
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na i {
  color: color-mix(in srgb, var(--default-color), transparent 60%);
}

.pricing ul .na span {
  text-decoration: line-through;
}

.pricing .featured {
  position: relative;
}

.pricing .featured .popular {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 15px 6px 15px;
  margin: 0;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
}

.pricing .featured .cta-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border-color: var(--accent-color);
}

@media (max-width: 992px) {
  .pricing .box {
    max-width: 60%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 767px) {
  .pricing .box {
    max-width: 80%;
    margin: 0 auto 30px auto;
  }
}

@media (max-width: 420px) {
  .pricing .box {
    max-width: 100%;
    margin: 0 auto 30px auto;
  }
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq .section-title {
  padding-bottom: 20px;
}

.faq .faq-container .faq-item {
  position: relative;
  padding: 20px;
  margin-bottom: 15px;
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 5px;
  overflow: hidden;
}

.faq .faq-container .faq-item:last-child {
  margin-bottom: 0;
}

.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  margin: 0 30px 0 0;
  transition: 0.3s;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.faq .faq-container .faq-item h3 .num {
  color: var(--accent-color);
  padding-right: 5px;
}

.faq .faq-container .faq-item h3:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-item .faq-content {
  display: grid;
  grid-template-rows: 0fr;
  transition: 0.3s ease-in-out;
  visibility: hidden;
  opacity: 0;
}

.faq .faq-container .faq-item .faq-content p {
  margin-bottom: 0;
  overflow: hidden;
}

.faq .faq-container .faq-item .faq-toggle {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 16px;
  line-height: 0;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  color: var(--accent-color);
}

.faq .faq-container .faq-active {
  background-color: color-mix(in srgb, var(--accent-color), transparent 97%);
  border-color: color-mix(in srgb, var(--accent-color), transparent 80%);
}

.faq .faq-container .faq-active h3 {
  color: var(--accent-color);
}

.faq .faq-container .faq-active .faq-content {
  grid-template-rows: 1fr;
  visibility: visible;
  opacity: 1;
  padding-top: 10px;
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Testimonials Section
--------------------------------------------------------------*/
.testimonials .testimonial-item {
  background-color: var(--surface-color);
  box-shadow: 0px 0 20px rgba(0, 0, 0, 0.1);
  box-sizing: content-box;
  padding: 30px;
  margin: 40px 30px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  text-align: center;
  transition: 0.3s;
}

.testimonials .testimonial-item .stars {
  margin-bottom: 15px;
}

.testimonials .testimonial-item .stars i {
  color: #ffc107;
  margin: 0 1px;
}

.testimonials .testimonial-item .testimonial-img {
  width: 90px;
  border-radius: 50%;
  border: 4px solid var(--background-color);
  margin: 0 auto;
}

.testimonials .testimonial-item h3 {
  font-size: 18px;
  font-weight: bold;
  margin: 10px 0 5px 0;
}

.testimonials .testimonial-item h4 {
  font-size: 14px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
  margin: 0;
}

.testimonials .testimonial-item p {
  font-style: italic;
  margin: 0 auto 15px auto;
}

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

.testimonials .swiper-pagination {
  margin-top: 20px;
  position: relative;
}

.testimonials .swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  background-color: color-mix(in srgb, var(--default-color), transparent 85%);
  opacity: 1;
}

.testimonials .swiper-pagination .swiper-pagination-bullet-active {
  background-color: var(--accent-color);
}

.testimonials .swiper-slide {
  opacity: 0.3;
}

@media (max-width: 1199px) {
  .testimonials .swiper-slide-active {
    opacity: 1;
  }

  .testimonials .swiper-pagination {
    margin-top: 0;
  }

  .testimonials .testimonial-item {
    margin: 40px 20px;
  }
}

@media (min-width: 1200px) {
  .testimonials .swiper-slide-next {
    opacity: 1;
    transform: scale(1.12);
  }
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-item {
  background-color: var(--surface-color);
  padding: 20px 0 30px 0;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  width: 56px;
  height: 56px;
  font-size: 24px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  transition: all 0.3s ease-in-out;
  border-radius: 50%;
  border: 2px dotted color-mix(in srgb, var(--accent-color), transparent 40%);
}

.contact .info-item h3 {
  font-size: 20px;
  font-size: 18px;
  font-weight: 700;
  margin: 10px 0;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .php-email-form {
  background-color: var(--surface-color);
  height: 100%;
  padding: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
}

@media (max-width: 575px) {
  .contact .php-email-form {
    padding: 20px;
  }
}

.contact .php-email-form input[type="text"],
.contact .php-email-form input[type="email"],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 10px 15px;
  box-shadow: none;
  height: 100%;
  color: var(--default-color);
  background-color: var(--surface-color);
  border-color: color-mix(in srgb, var(--default-color), transparent 80%);
}

.contact .php-email-form input[type="text"]:focus,
.contact .php-email-form input[type="email"]:focus,
.contact .php-email-form textarea:focus {
  border-color: var(--accent-color);
}

.contact .php-email-form input[type="text"]::placeholder,
.contact .php-email-form input[type="email"]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

.contact .php-email-form button[type="submit"] {
  color: var(--contrast-color);
  background: var(--accent-color);
  border: 0;
  padding: 10px 30px;
  transition: 0.4s;
  border-radius: 50px;
}

.contact .php-email-form button[type="submit"]:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/*--------------------------------------------------------------
# Service Details Section
--------------------------------------------------------------*/
.service-details .service-box {
  background-color: var(--surface-color);
  padding: 20px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.service-details .service-box + .service-box {
  margin-top: 30px;
}

.service-details .service-box h4 {
  font-size: 20px;
  font-weight: 700;
  border-bottom: 2px solid
    color-mix(in srgb, var(--default-color), transparent 92%);
  padding-bottom: 15px;
  margin-bottom: 15px;
}

.service-details .services-list {
  background-color: var(--surface-color);
}

.service-details .services-list a {
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  display: flex;
  align-items: center;
  padding: 12px 15px;
  margin-top: 15px;
  transition: 0.3s;
}

.service-details .services-list a:first-child {
  margin-top: 0;
}

.service-details .services-list a i {
  font-size: 16px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .services-list a.active {
  color: var(--contrast-color);
  background-color: var(--accent-color);
}

.service-details .services-list a.active i {
  color: var(--contrast-color);
}

.service-details .services-list a:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 95%);
  color: var(--accent-color);
}

.service-details .download-catalog a {
  color: var(--default-color);
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: 0.3s;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.service-details .download-catalog a:first-child {
  border-top: 0;
  padding-top: 0;
}

.service-details .download-catalog a:last-child {
  padding-bottom: 0;
}

.service-details .download-catalog a i {
  font-size: 24px;
  margin-right: 8px;
  color: var(--accent-color);
}

.service-details .download-catalog a:hover {
  color: var(--accent-color);
}

.service-details .help-box {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  margin-top: 30px;
  padding: 30px 15px;
}

.service-details .help-box .help-icon {
  font-size: 48px;
}

.service-details .help-box h4,
.service-details .help-box a {
  color: var(--contrast-color);
}

.service-details .services-img {
  margin-bottom: 20px;
}

.service-details h3 {
  font-size: 26px;
  font-weight: 700;
}

.service-details p {
  font-size: 15px;
}

.service-details ul {
  list-style: none;
  padding: 0;
  font-size: 15px;
}

.service-details ul li {
  padding: 5px 0;
  display: flex;
  align-items: center;
}

.service-details ul i {
  font-size: 20px;
  margin-right: 8px;
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Estilos adicionales
--------------------------------------------------------------*/

.search-section {
  background: linear-gradient(rgba(56, 141, 168, 0.1), rgba(56, 141, 168, 0.1));
  padding: 80px 0;
}

.search-form {
  background: var(--surface-color);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
}

.distributor-card {
  background: var(--surface-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  padding: 25px;
  margin-bottom: 20px;
  transition: 0.3s;
  height: 100%;
}

.distributor-card:hover {
  box-shadow: 0px 5px 25px rgba(0, 0, 0, 0.1);
  transform: translateY(-5px);
}

.distributor-type {
  display: inline-block;
  background: var(--accent-color);
  color: var(--contrast-color);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  margin-bottom: 15px;
}

.contact-btn {
  background: var(--accent-color) !important;
  color: var(--contrast-color);
  border: none;
  padding: 8px 16px;
  border-radius: 5px;
  font-size: 14px;
  margin-right: 10px;
  margin-bottom: 5px;
  text-decoration: none;
  display: inline-block;
  transition: 0.3s;
}

.contact-btn:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.whatsapp-btn {
  background: #25d366;
  color: white;
}

.whatsapp-btn:hover {
  background: #128c7e;
  color: white;
}

.loading-spinner {
  display: none;
  text-align: center;
  padding: 20px;
}

.no-results {
  display: none;
  text-align: center;
  padding: 40px;
  color: color-mix(in srgb, var(--default-color), transparent 40%);
}

.location-btn {
  background: #28a745;
  border-color: #28a745;
}

.location-btn:hover {
  background: #218838;
  border-color: #1e7e34;
}

#map {
  height: 400px;
  border-radius: 10px;
  margin-top: 30px;
}

.help-section {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 60px 0;
  margin-top: 50px;
}

.help-card {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  text-align: center;
  height: 100%;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
}

.help-icon {
  font-size: 48px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.emergency-alert {
  background: linear-gradient(135deg, #dc3545, #c82333);
  color: white;
  padding: 15px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.emergency-alert::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  animation: shine 3s infinite;
}

@keyframes shine {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

.stats-section {
  background: var(--surface-color);
  padding: 60px 0;
  border-top: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
  border-bottom: 1px solid
    color-mix(in srgb, var(--default-color), transparent 90%);
}

.stat-item {
  text-align: center;
  padding: 20px;
}

.stat-number {
  font-size: 48px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
  display: block;
}

.stat-label {
  color: color-mix(in srgb, var(--default-color), transparent 30%);
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 5px;
}

.info-banner {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 20%)
  );
  color: var(--contrast-color);
  padding: 40px 0;
  margin: 40px 0;
}

.info-banner h3 {
  color: var(--contrast-color);
  margin-bottom: 15px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin: 40px 0;
}

.feature-item {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0px 2px 20px rgba(0, 0, 0, 0.1);
  transition: 0.3s;
  margin-bottom: 1rem;
}

.feature-item:hover {
  transform: translateY(-5px);
  box-shadow: 0px 10px 30px rgba(0, 0, 0, 0.15);
}

.feature-icon {
  font-size: 40px;
  color: var(--accent-color);
  margin-bottom: 20px;
}

.testimonial-mini {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid var(--accent-color);
  margin: 20px 0;
  font-style: italic;
}

.logo-tugasparin {
  width: 350px;
  height: auto;
  margin-bottom: 15px;
}

.img-gasparin-2 {
  margin-top: 2rem;
  width: 550px;
  height: auto;
}

.img-gasparin-3 {
  width: 350px;
  height: auto;
}

.about-image-wrapper {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image-main {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(128, 99, 155, 0.12);
  transition: all 0.3s ease;
}

.about-image-main:hover {
  transform: translateY(-10px) scale(1.03);
  box-shadow: 0 25px 50px rgba(128, 99, 155, 0.18);
}

.about-image-main img {
  width: 800px;
  height: auto;
  display: block;
  transition: all 0.3s ease;
  border-radius: 20px;
}

.image-overlay {
  position: absolute;
  bottom: 0px;
  left: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 15px;
  z-index: 2;
  transform: translateY(100%);
  transition: all 0.3s ease;
  border: 1px solid rgba(128, 99, 155, 0.2);
}

.about-image-main:hover .image-overlay {
  transform: translateY(-8px);
}

.overlay-content {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--accent-color);
  font-weight: 600;
  font-size: 14px;
}

.overlay-content i {
  font-size: 18px;
}

.about-badges {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 3;
}

/* Responsive */
@media (max-width: 768px) {
  .about-badges {
    position: static;
    flex-direction: row;
    justify-content: center;
    margin-top: 15px;
  }

  .about-image-main {
    border-radius: 12px;
  }

  .about-image-main img {
    border-radius: 12px;
  }

  .image-overlay {
    left: 10px;
    right: 10px;
    padding: 10px 12px;
    border-radius: 10px;
  }

  .coverage-list{
    margin-top: 1.5rem
  }
}

.distributor-type.delivery {
  background: #28a745;
}

.distributor-type.local {
  background: #fd7e14;
}

.distributor-type.paso {
  background: #6610f2;
}

.priority-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  font-size: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

.service-hours {
  display: flex;
  align-items: center;
  margin: 10px 0;
}

.service-hours i {
  margin-right: 8px;
  color: var(--accent-color);
}

.distance-badge {
  background: color-mix(in srgb, var(--accent-color), transparent 80%);
  color: var(--accent-color);
  padding: 2px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: 500;
}

.btn-get-started,
button.btn-get-started,
input[type="button"].btn-get-started,
input[type="submit"].btn-get-started {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--contrast-color);
  background: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 1px;
  padding: 10px 28px;
  border-radius: 50px;
  border: 0;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.08s ease, box-shadow 0.25s ease;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.08);
  text-decoration: none; /* para enlaces que también usen la clase */
}

/* Tamaño grande */
.btn-get-started.btn-lg,
button.btn-get-started.btn-lg {
  padding: 12px 32px;
  font-size: 16px;
}

/* Hover / focus */
.btn-get-started:hover,
button.btn-get-started:hover,
.btn-get-started:focus,
button.btn-get-started:focus {
  background: color-mix(in srgb, var(--accent-color), transparent 15%);
  color: var(--contrast-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  outline: none;
}

.btn-get-started:focus-visible,
button.btn-get-started:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent-color), transparent 70%);
  outline-offset: 3px;
}

/* Active / pressed */
.btn-get-started:active,
button.btn-get-started:active {
  transform: translateY(1px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

/* Disabled state */
.btn-get-started[disabled],
button.btn-get-started[disabled],
.btn-get-started.disabled,
button.btn-get-started.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  box-shadow: none;
}

/* Mantener consistencia en tamaños en pantallas pequeñas */
@media (max-width: 640px) {
  .btn-get-started,
  button.btn-get-started {
    padding: 8px 20px;
    font-size: 13px;
  }
}

/* Hero Section - Estadísticas rápidas */
.hero .stat-item {
  background: rgba(255, 255, 255, 0.95);
  padding: 20px 15px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.hero .stat-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.hero .stat-number {
  font-size: 32px;
  font-weight: 700;
  color: var(--accent-color);
  font-family: var(--heading-font);
  display: block;
  margin-bottom: 5px;
}

.hero .stat-label {
  color: var(--default-color);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* About Section - Mejoras específicas */
.about .about-images {
  position: relative;
}

.about .about-images img {
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

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

/* Services Section - Botones de contacto mejorados */
.services .contact-btn {
  background: var(--accent-color);
  color: var(--contrast-color);
  border: 2px solid var(--accent-color);
  padding: 10px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(128, 99, 155, 0.3);
}

.services .contact-btn:hover {
  background: transparent;
  color: var(--contrast-color);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(128, 99, 155, 0.4);
}

.services .contact-btn i {
  font-size: 16px;
}

/* Benefits Section - Grid de características */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin: 50px 0;
}

.feature-item {
  background: var(--surface-color);
  padding: 35px 25px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 2px solid transparent;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.feature-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(128, 99, 155, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.feature-item:hover::before {
  left: 100%;
}

.feature-item:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--accent-color);
}

.feature-item .feature-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 20%)
  );
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}

.feature-item .feature-icon i {
  font-size: 32px;
  color: var(--contrast-color);
}

.feature-item:hover .feature-icon {
  transform: rotateY(180deg);
  box-shadow: 0 10px 30px rgba(128, 99, 155, 0.4);
}

.feature-item h4 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  color: var(--heading-color);
  position: relative;
  z-index: 1;
}

.feature-item p {
  font-size: 14px;
  line-height: 1.6;
  color: color-mix(in srgb, var(--default-color), transparent 20%);
  margin: 0;
  position: relative;
  z-index: 1;
}

/* Coverage Section - Lista de comunas mejorada */
.coverage-list {
  background: var(--surface-color);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 25px rgba(0, 0, 0, 0.1);
  height: 400px;
  overflow-y: auto;
  position: relative;
}

.coverage-list h4 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 20px;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 2px solid var(--accent-color);
}

.coverage-list ul li {
  padding: 8px 0;
  transition: all 0.3s ease;
  border-radius: 5px;
  padding-left: 10px;
  margin-bottom: 5px;
}

.coverage-list ul li:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 95%);
  padding-left: 20px;
}

.coverage-list ul li i {
  margin-right: 10px;
  font-size: 14px;
}

/* Scrollbar personalizado para la lista de cobertura */
.coverage-list::-webkit-scrollbar {
  width: 8px;
}

.coverage-list::-webkit-scrollbar-track {
  background: color-mix(in srgb, var(--default-color), transparent 95%);
  border-radius: 4px;
}

.coverage-list::-webkit-scrollbar-thumb {
  background: var(--accent-color);
  border-radius: 4px;
}

.coverage-list::-webkit-scrollbar-thumb:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Mapa de cobertura */
#mapMaule {
  border: 3px solid var(--accent-color);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

#mapMaule:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

/* How to Order Section - Pasos numerados */
.how-to-order .feature-item .feature-icon .badge {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 20%)
  );
  box-shadow: 0 8px 25px rgba(128, 99, 155, 0.3);
  border: none;
  position: relative;
  overflow: hidden;
}

.how-to-order .feature-item .feature-icon .badge::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.3),
    transparent
  );
  animation: shimmer 3s infinite;
}

@keyframes shimmer {
  0% {
    left: -100%;
  }
  100% {
    left: 100%;
  }
}

/* Pricing Section - Banner promocional */
.pricing .info-banner {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 20%)
  );
  border-radius: 20px;
  padding: 40px;
  position: relative;
  overflow: hidden;
}

.pricing .info-banner::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.1) 0%,
    transparent 70%
  );
  animation: rotate 20s linear infinite;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.pricing .info-banner .container {
  position: relative;
  z-index: 1;
}

.pricing .info-banner h3 {
  color: var(--contrast-color);
  font-weight: 700;
  margin-bottom: 10px;
}

.pricing .info-banner p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  margin-bottom: 0;
}

.pricing .info-banner .btn {
  background: rgba(255, 255, 255, 0.2);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--contrast-color);
  font-weight: 600;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.pricing .info-banner .btn:hover {
  background: rgba(255, 255, 255, 0.3);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Testimonials Section - Testimonios mini */
.testimonial-mini {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 95%),
    color-mix(in srgb, var(--accent-color), transparent 97%)
  );
  padding: 25px;
  border-radius: 15px;
  border-left: 5px solid var(--accent-color);
  margin: 20px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.testimonial-mini::before {
  content: '"';
  position: absolute;
  top: 10px;
  left: 20px;
  font-size: 60px;
  color: var(--accent-color);
  opacity: 0.3;
  font-family: serif;
}

.testimonial-mini:hover {
  transform: translateX(10px);
  box-shadow: 0 10px 30px rgba(128, 99, 155, 0.2);
}

.testimonial-mini p {
  font-style: italic;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
  position: relative;
  z-index: 1;
}

.testimonial-mini strong {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 13px;
  position: relative;
  z-index: 1;
}

/* CTA Banner */
.info-banner {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 20%)
  );
  color: var(--contrast-color);
  padding: 50px 0;
  margin: -30px 0;
  margin-bottom: 1rem;
  position: relative;
  overflow: hidden;
}

.info-banner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Ccircle cx='30' cy='30' r='2'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  animation: moveBackground 20s linear infinite;
}

@keyframes moveBackground {
  0% {
    transform: translateX(0) translateY(0);
  }
  100% {
    transform: translateX(60px) translateY(60px);
  }
}

.info-banner .container {
  position: relative;
  z-index: 1;
}

.info-banner h3 {
  color: var(--contrast-color);
  font-weight: 700;
  font-size: 28px;
  margin-bottom: 15px;
}

.info-banner p {
  color: color-mix(in srgb, var(--contrast-color), transparent 10%);
  font-size: 16px;
  margin-bottom: 0;
  padding: 15px;
}

.info-banner .btn {
  background: rgba(255, 255, 255, 0.15);
  border: 2px solid rgba(255, 255, 255, 0.3);
  color: var(--contrast-color);
  font-weight: 600;
  padding: 12px 30px;
  border-radius: 50px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 1.5rem;
}

.info-banner .btn:hover {
  background: rgba(255, 255, 255, 0.25);
  border-color: rgba(255, 255, 255, 0.5);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
  color: var(--contrast-color);
}

/* FAQ Section - Preguntas frecuentes mejoradas */
.faq .faq-container .faq-item {
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 90%);
  border-radius: 15px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq .faq-container .faq-item:hover {
  border-color: var(--accent-color);
  box-shadow: 0 8px 25px rgba(128, 99, 155, 0.15);
}

.faq .faq-container .faq-item h3 {
  padding: 15px;
  margin: 0;
  position: relative;
}

.faq .faq-container .faq-item h3::before {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--accent-color);
  transition: width 0.3s ease;
}

.faq .faq-container .faq-item.faq-active h3::before {
  width: 8px;
}

.faq .faq-container .faq-item .faq-content {
  padding: 0 25px;
  background: var(--surface-color);
}

.faq .faq-container .faq-active .faq-content {
  padding: 20px 25px;
}

.faq .faq-container .faq-item .faq-toggle {
  top: 25px;
  right: 25px;
  width: 30px;
  height: 30px;
  background: var(--accent-color);
  color: var(--contrast-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  transition: all 0.3s ease;
}

.faq .faq-container .faq-item .faq-toggle:hover {
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
  transform: scale(1.1);
}

.faq .faq-container .faq-active .faq-toggle {
  transform: rotate(90deg);
  background: color-mix(in srgb, var(--accent-color), transparent 20%);
}

/* Contact Section - Formulario de contacto mejorado */
.contact .info-item {
  background: linear-gradient(
    135deg,
    var(--surface-color),
    color-mix(in srgb, var(--accent-color), transparent 98%)
  );
  padding: 30px 20px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 2px solid transparent;
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact .info-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(128, 99, 155, 0.05),
    transparent
  );
  transition: left 0.5s ease;
}

.contact .info-item:hover::before {
  left: 100%;
}

.contact .info-item:hover {
  border-color: var(--accent-color);
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(128, 99, 155, 0.15);
}

.contact .info-item i {
  width: 64px;
  height: 64px;
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 20%)
  );
  color: var(--contrast-color);
  font-size: 24px;
  border: none;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  transition: all 0.3s ease;
}

.contact .info-item:hover i {
  transform: rotateY(180deg);
  box-shadow: 0 10px 30px rgba(128, 99, 155, 0.4);
}

.contact .php-email-form {
  background: linear-gradient(
    135deg,
    var(--surface-color),
    color-mix(in srgb, var(--accent-color), transparent 98%)
  );
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 90%);
  position: relative;
  overflow: hidden;
}

.contact .php-email-form::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 30%)
  );
}

.contact .php-email-form .form-control {
  border: 2px solid color-mix(in srgb, var(--default-color), transparent 85%);
  border-radius: 10px;
  padding: 12px 15px;
  transition: all 0.3s ease;
  background: var(--surface-color);
}

.contact .php-email-form .form-control:focus {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(128, 99, 155, 0.1);
  outline: none;
}

.contact .php-email-form select.form-control {
  cursor: pointer;
}

.contact .php-email-form select.form-control option {
  padding: 10px;
}

/* WhatsApp Floating Button - Mejorado */
.whatsapp-float {
  position: fixed;
  bottom: 80px;
  right: 20px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: white;
  border-radius: 50%;
  width: 65px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 3px solid rgba(255, 255, 255, 0.2);
}

.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 35px rgba(37, 211, 102, 0.6);
  color: white;
}

.whatsapp-float::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: conic-gradient(from 0deg, #25d366, #128c7e, #25d366);
  border-radius: 50%;
  z-index: -1;
  animation: rotate-border 3s linear infinite;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.whatsapp-float:hover::before {
  opacity: 1;
}

@keyframes rotate-border {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Footer - Mejoras específicas */
.footer {
  background: linear-gradient(
    135deg,
    color-mix(in srgb, var(--accent-color), transparent 97%),
    color-mix(in srgb, var(--accent-color), transparent 95%)
  );
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(
    90deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 30%),
    var(--accent-color)
  );
}

.footer .footer-about .logo span {
  background: linear-gradient(
    135deg,
    var(--accent-color),
    color-mix(in srgb, var(--accent-color), transparent 20%)
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer .social-links a {
  background: var(--surface-color);
  border: 2px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.footer .social-links a::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--accent-color);
  transition: left 0.3s ease;
  z-index: -1;
}

.footer .social-links a:hover::before {
  left: 0;
}

.footer .social-links a:hover {
  color: var(--contrast-color);
  border-color: var(--accent-color);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(128, 99, 155, 0.3);
}

.footer h4 {
  color: var(--accent-color);
  position: relative;
  padding-bottom: 15px;
}

.footer h4::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--accent-color);
}

.footer .footer-links ul a:hover {
  color: var(--accent-color);
  padding-left: 10px;
  transition: all 0.3s ease;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
  .hero .stat-item {
    margin-bottom: 15px;
  }

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

  .feature-item {
    padding: 25px 20px;
  }

  .info-banner {
    padding: 30px 0;
    margin: 40px 0;
  }

  .info-banner h3 {
    font-size: 22px;
  }

  .coverage-list {
    height: 300px;
  }

  .whatsapp-float {
    width: 55px;
    height: 55px;
    font-size: 24px;
    bottom: 70px;
    right: 15px;
  }

  .info-banner .btn {
    padding: 10px 25px;
    font-size: 14px;
  }

  .faq .faq-container .faq-item .faq-toggle {
    width: 22px;
    height: 22px;
    font-size: 12px;
    top: 7px;
    right: 7px;
  }

  .info-banner .row.align-items-center {
    flex-direction: column !important;
  }

  .info-banner .col-md-8,
  .info-banner .col-md-4 {
    width: 100%;
    max-width: 100%;
  }

  .info-banner .col-md-4 {
    margin-top: 20px;
    text-align: center;
  }

  .img-gasparin-3 {
    width: 250px;
    height: auto;
  }

  .about .about-images img {
    width: 600px;
    height: auto;
    align-items: center;
  }
}

@media (max-width: 576px) {
  .hero .stat-number {
    font-size: 24px;
  }

  .hero .stat-label {
    font-size: 11px;
  }

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

  .feature-item .feature-icon i {
    font-size: 24px;
  }

  .testimonial-mini {
    padding: 20px;
  }

  .contact .php-email-form {
    padding: 20px;
  }
}

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

@keyframes bounceIn {
  0% {
    opacity: 0;
    transform: scale(0.3);
  }
  50% {
    opacity: 1;
    transform: scale(1.05);
  }
  70% {
    transform: scale(0.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(128, 99, 155, 0.7);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 0 10px rgba(128, 99, 155, 0);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(128, 99, 155, 0);
  }
}

/* Aplicar animaciones a elementos específicos */
.hero .stat-item:nth-child(1) {
  animation-delay: 0.1s;
}
.hero .stat-item:nth-child(2) {
  animation-delay: 0.2s;
}
.hero .stat-item:nth-child(3) {
  animation-delay: 0.3s;
}
.hero .stat-item:nth-child(4) {
  animation-delay: 0.4s;
}

.feature-item:nth-child(odd) {
  animation: fadeInUp 0.6s ease forwards;
}

.feature-item:nth-child(even) {
  animation: fadeInUp 0.6s ease 0.2s forwards;
  opacity: 0;
}

.whatsapp-float {
  animation: pulse 2s infinite;
}

/* Estilos para elementos específicos de gas */
.gas-cylinder-icon {
  background: linear-gradient(135deg, #ff6b6b, #ee5a24);
}

.delivery-truck-icon {
  background: linear-gradient(135deg, #4834d4, #686de0);
}

.safety-shield-icon {
  background: linear-gradient(135deg, #00d2d3, #01a3a4);
}

.payment-icon {
  background: linear-gradient(135deg, #feca57, #ff9ff3);
}

.location-icon {
  background: linear-gradient(135deg, #48dbfb, #0abde3);
}

.clock-icon {
  background: linear-gradient(135deg, #ff9ff3, #f368e0);
}

/* Loading states y estados de carga */
.loading-spinner {
  display: inline-block;
  width: 40px;
  height: 40px;
  border: 4px solid color-mix(in srgb, var(--accent-color), transparent 80%);
  border-radius: 50%;
  border-top-color: var(--accent-color);
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* Estados de error y éxito para formularios */
.form-success {
  background: linear-gradient(135deg, #00b894, #00cec9);
  color: white;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
}

.form-error {
  background: linear-gradient(135deg, #e17055, #d63031);
  color: white;
  padding: 15px;
  border-radius: 10px;
  margin-top: 20px;
  text-align: center;
}
