/* Fonts */
:root {
  --default-font: "Copse", serif, system-ui, -apple-system, "Segoe UI", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Copse", serif;
  --nav-font: "Copse", serif;
}

/* Global Colors - Juntos Creamos Theme (distinct palette) */
:root {
  --background-color: #0f172a; /* slate-900 */
  --default-color: #e2e8f0;   /* slate-200 */
  --heading-color: #f8fafc;   /* slate-50 */
  --accent-color: #a78bfa;    /* violet-400 */
  --surface-color: #111827;   /* gray-900 */
  --contrast-color: #0ea5e9;  /* sky-500 */
  --bg-color: #1f2937;        /* gray-800 */
  --nav-color: #cbd5e1;       /* slate-300 */
  --nav-hover-color: #a78bfa;
  --nav-mobile-background-color: #0b1220;
  --nav-dropdown-background-color: #0b1220;
  --nav-dropdown-color: #cbd5e1;
  --nav-dropdown-hover-color: #0ea5e9;

  --primary-gradient: linear-gradient(135deg, #a78bfa 0%, #0ea5e9 100%);
  --secondary-gradient: linear-gradient(135deg, #22d3ee 0%, #6366f1 100%);
  --success-color: #22c55e;
  --warning-color: #f59e0b;
  --error-color: #ef4444;
  --info-color: #38bdf8;
  --light-text: #94a3b8;      /* slate-400 */
  --border-color: #334155;     /* slate-700 */
  --shadow-color: rgba(2, 6, 23, 0.35);
  --card-bg: #0b1324;
  --section-bg: #0a1020;
  --footer-bg: #020617;        /* slate-950 */
}

/* Color Presets */
.light-background {
  --background-color: #0b1220;
  --surface-color: #0f172a;
  --section-bg: #0b1220;
}

.dark-background {
  --background-color: #020617;
  --default-color: #e2e8f0;
  --heading-color: #ffffff;
  --surface-color: #0b1324;
  --contrast-color: #22d3ee;
  --section-bg: #0a1020;
  --card-bg: #0b1324;
  --border-color: #1e293b;
}

/* 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);
  line-height: 1.6;
}

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

a:hover {
  color: var(--contrast-color);
  text-decoration: none;
  transform: translateY(-1px);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  line-height: 1.2;
}

/* PHP Email Form Messages */
.php-email-form .error-message {
  display: none;
  background: var(--error-color);
  color: #ffffff;
  text-align: left;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}

.php-email-form .sent-message {
  display: none;
  color: #ffffff;
  background: var(--success-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}

.php-email-form .loading {
  display: none;
  background: var(--surface-color);
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
}

.php-email-form .loading:before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  margin: 0 10px -6px 0;
  border: 3px solid var(--accent-color);
  border-top-color: var(--surface-color);
  animation: php-email-form-loading 1s linear infinite;
}

@keyframes php-email-form-loading {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background: var(--card-bg);
  padding: 20px 0;
  transition: all 0.5s ease;
  z-index: 997;
  box-shadow: 0 4px 20px var(--shadow-color);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid color-mix(in srgb, var(--border-color), transparent 30%);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}

.header .logo {
  line-height: 1;
  display: flex;
  align-items: center;
}

.header .logo a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: inherit;
}

.header .logo img {
  max-height: 36px;
  margin-right: 8px;
  transition: all 0.3s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.header .logo:hover img {
  transform: scale(1.1) rotate(5deg);
  filter: drop-shadow(0 4px 8px rgba(167, 139, 250, 0.3));
}

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

.header .btn-getstarted {
  background: var(--primary-gradient);
  color: #ffffff;
  border: none;
  padding: 12px 30px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.header .btn-getstarted:hover {
  background: var(--secondary-gradient);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
  color: #ffffff;
  text-decoration: none;
}

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

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

  .header .navbar {
    order: 3;
  }
}

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

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/* Navmenu - Desktop */
.navbar {
  display: flex;
  align-items: center;
}

.navmenu {
  padding: 0;
  display: flex;
  flex-direction: row !important;
}

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

.navmenu li {
  position: relative;
  list-style: none;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 10px 20px;
  font-size: 16px;
  font-family: var(--nav-font);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  transition: all 0.3s ease;
  text-decoration: none;
  border: 2px solid transparent;
  border-radius: 25px;
  margin: 0 5px;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color);
  border-color: var(--accent-color);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-2px);
}

.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;
  z-index: 99;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  border-radius: 15px;
  min-width: 200px;
}

.navmenu .dropdown ul li {
  list-style: none;
}

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

.navmenu .dropdown ul a:hover,
.navmenu .dropdown ul .active:hover,
.navmenu .dropdown ul li:hover>a {
  color: var(--nav-dropdown-hover-color);
  background: rgba(0, 212, 255, 0.05);
}

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

/* Navmenu - Mobile */
@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;

    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;

    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(--nav-dropdown-hover-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%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

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

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: #ffffff;
  background: var(--footer-bg);
  font-size: 14px;
  position: relative;
  padding: 60px 0 0 0;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
}

.footer .footer-newsletter {
  background-color: color-mix(in srgb, var(--default-color), transparent 97%);
  padding: 50px 0;
}

.footer .footer-newsletter h4 {
  font-size: 28px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 15px;
}

.footer .footer-newsletter .newsletter-form {
  margin-top: 30px;
  margin-bottom: 15px;
  padding: 8px;
  position: relative;
  background-color: var(--surface-color);
  border: 2px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0px 8px 30px rgba(0, 0, 0, 0.15);
  display: flex;
  transition: all 0.3s ease;
  border-radius: 25px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.footer .footer-newsletter .newsletter-form:focus-within {
  border-color: var(--accent-color);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.footer .footer-newsletter .newsletter-form input[type=email] {
  border: 0;
  padding: 8px 15px;
  width: 100%;
  background-color: transparent;
  color: var(--default-color);
  border-radius: 20px;
  font-size: 14px;
}

.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: 12px 25px;
  margin: -7px -8px -7px 0;
  background: var(--primary-gradient);
  color: #ffffff;
  transition: all 0.3s ease;
  border-radius: 20px;
  font-weight: 600;
  cursor: pointer;
}

.footer .footer-newsletter .newsletter-form input[type=submit]:hover {
  background: var(--secondary-gradient);
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(255, 107, 107, 0.3);
}

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

.footer .social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border: 2px solid rgba(255, 255, 255, 0.2);
  font-size: 18px;
  color: rgba(255, 255, 255, 0.7);
  margin-right: 15px;
  transition: all 0.3s ease;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.05);
}

.footer .social-links a:hover {
  color: var(--accent-color);
  border-color: var(--accent-color);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
}

.footer h4 {
  font-size: 18px;
  font-weight: 600;
  position: relative;
  padding-bottom: 15px;
  color: #ffffff;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 2px;
  background: var(--primary-gradient);
  border-radius: 1px;
}

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

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

.footer .footer-links ul i {
  margin-right: 3px;
  font-size: 12px;
  line-height: 0;
  color: var(--accent-color);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer .footer-links ul li {
  padding: 10px 0;
  display: flex;
  align-items: center;
  transition: all 0.3s ease;
}

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

.footer .footer-links ul a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1;
  transition: all 0.3s ease;
}

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

.footer .footer-about a {
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  font-family: var(--heading-font);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer .footer-contact p {
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.6;
}

.footer .copyright {
  padding: 25px 0;
  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: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

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

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: 15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 40px;
  height: 40px;
  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;
}

/*--------------------------------------------------------------
# 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 {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 20px 0;
  position: relative;
}

.page-title h1 {
  font-size: 28px;
  font-weight: 700;
  margin: 0;
}

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

.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: 90px;
  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: 36px;
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--heading-color);
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--secondary-gradient);
  border-radius: 2px;
}

.section-title p {
  margin-bottom: 0;
  color: var(--light-text);
  font-size: 18px;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 50vh;
  position: relative;
  padding: 120px 0 60px 0;
  display: flex;
  align-items: center;
  background: var(--section-bg);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--contrast-color) 100%);
  opacity: 0.05;
}

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

.hero p {
  color: var(--light-text);
  margin: 5px 0 10px 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}

.hero .download-btn {
  color: #ffffff;
  background: var(--primary-gradient);
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 15px;
  padding: 15px 35px;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  text-decoration: none;
}

.hero .download-btn+.download-btn {
  margin-left: 20px;
}

.hero .download-btn:hover {
  background: var(--secondary-gradient);
  color: #ffffff;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.hero .download-btn i {
  font-size: 16px;
  line-height: 0;
  margin-right: 8px;
}

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

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

  .hero .download-btn {
    font-size: 14px;
    padding: 8px 20px 10px 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about {
  background: var(--section-bg);
  padding: 80px 0;
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--contrast-color) 100%);
  opacity: 0.05;
}

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

.about ul li {
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  color: var(--default-color);
  line-height: 1.6;
}

.about ul li p {
  margin: 0;
  color: var(--light-text);
  font-size: 1rem;
}

.about ul i {
  font-size: 20px;
  padding-right: 4px;
  color: var(--accent-color);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about .read-more {
  background: var(--primary-gradient);
  color: #ffffff;
  font-family: var(--heading-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 1.2px;
  padding: 15px 35px;
  border-radius: 25px;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  cursor: pointer;
  user-select: none;
  text-decoration: none;
}

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

.about .read-more:hover {
  background: var(--secondary-gradient);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.about .read-more:hover i {
  transform: translateX(6px);
}


/*--------------------------------------------------------------
# Features Section - Completely Redesigned Hexagonal Design
--------------------------------------------------------------*/
#features {
  background: var(--section-bg);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

#features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  background: radial-gradient(circle at 30% 20%, rgba(167, 139, 250, 0.08) 0%, transparent 50%),
              radial-gradient(circle at 70% 80%, rgba(14, 165, 233, 0.08) 0%, transparent 50%);
  z-index: 1;
}

#features .container {
  position: relative;
  z-index: 2;
}

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

.feature-card {
  background: transparent;
  border-radius: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  position: relative;
  overflow: visible;
  text-align: center;
  height: 100%;
  transform: rotate(0deg);
}

.feature-card::before {
  content: '';
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: linear-gradient(45deg, var(--accent-color), var(--contrast-color), var(--accent-color));
  background-size: 300% 300%;
  border-radius: 50%;
  opacity: 0;
  transition: all 0.6s ease;
  z-index: -1;
  animation: gradientShift 3s ease infinite;
}

.feature-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--card-bg);
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  transition: all 0.6s ease;
  z-index: 1;
}

.feature-card:hover::before {
  opacity: 0.3;
  transform: scale(1.1);
}

.feature-card:hover::after {
  background: linear-gradient(135deg, var(--card-bg), var(--surface-color));
  transform: scale(1.05) rotate(15deg);
}

.feature-card:hover {
  transform: rotate(5deg) translateY(-20px);
}

.feature-card-inner {
  padding: 50px 30px;
  position: relative;
  z-index: 2;
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  background: var(--card-bg);
  transition: all 0.6s ease;
}

.feature-card:hover .feature-card-inner {
  background: linear-gradient(135deg, var(--card-bg), var(--surface-color));
  transform: scale(1.02);
}

.feature-icon-wrapper {
  width: 80px;
  height: 80px;
  margin: 0 auto 25px;
  background: linear-gradient(135deg, var(--accent-color), var(--contrast-color));
  clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.5s ease;
  transform: rotate(0deg);
  /* Perfect centering for hexagon */
  transform-origin: center center;
}

/* Ensure icon is perfectly centered in hexagon */
.feature-icon-wrapper::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2px;
  height: 2px;
  background: transparent;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.feature-icon {
  font-size: 2.2rem;
  color: #ffffff;
  z-index: 2;
  position: relative;
  transition: all 0.5s ease;
  /* Perfect centering for hexagon */
  transform: translate(0, 0);
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  /* Force perfect centering */
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  margin: 0;
  padding: 0;
}

.feature-card:hover .feature-icon-wrapper {
  transform: rotate(180deg) scale(1.2);
  background: linear-gradient(135deg, var(--contrast-color), var(--accent-color));
}

.feature-icon {
  font-size: 2.2rem;
  color: #ffffff;
  z-index: 2;
  position: relative;
  transition: all 0.5s ease;
}

.feature-card:hover .feature-icon {
  transform: scale(1.3);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
}

.feature-content h4 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--heading-color);
  margin-bottom: 15px;
  position: relative;
  transition: all 0.4s ease;
}

.feature-content h4::before {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--contrast-color));
  transition: width 0.4s ease;
  border-radius: 2px;
}

.feature-card:hover .feature-content h4::before {
  width: 80px;
}

.feature-content p {
  color: var(--light-text);
  line-height: 1.7;
  font-size: 1rem;
  margin: 0;
  transition: color 0.3s ease;
  padding: 0 10px;
}

.feature-card:hover .feature-content p {
  color: var(--default-color);
}

.feature-badge {
  position: absolute;
  top: -10px;
  right: -10px;
  background: var(--accent-color);
  color: #ffffff;
  padding: 8px 16px;
  border-radius: 0;
  font-size: 0.8rem;
  font-weight: 600;
  opacity: 1;
  transform: translateY(0);
  transition: all 0.4s ease;
  clip-path: polygon(0 0, 100% 0, 90% 100%, 0% 100%);
  z-index: 3;
}

.feature-card:hover .feature-badge {
  background: var(--contrast-color);
  transform: scale(1.1) rotate(5deg);
}

@keyframes gradientShift {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

/* Responsive Design */
@media (max-width: 768px) {
  .features-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  .feature-card-inner {
    padding: 40px 25px;
  }
  
  .feature-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .feature-icon {
    font-size: 2rem;
  }
}

/* Animation Classes */
.feature-card.animate-in {
  animation: featureCardIn 1s ease forwards;
}

@keyframes featureCardIn {
  from {
    opacity: 0;
    transform: rotate(45deg) translateY(100px) scale(0.5);
  }
  to {
    opacity: 1;
    transform: rotate(0deg) translateY(0) scale(1);
  }
}

.feature-card:nth-child(1) { animation-delay: 0.1s; }
.feature-card:nth-child(2) { animation-delay: 0.2s; }
.feature-card:nth-child(3) { animation-delay: 0.3s; }
.feature-card:nth-child(4) { animation-delay: 0.4s; }
.feature-card:nth-child(5) { animation-delay: 0.5s; }
.feature-card:nth-child(6) { animation-delay: 0.6s; }

/*--------------------------------------------------------------
# Métodos e Técnicas Section - Completely Redesigned
--------------------------------------------------------------*/
.metodos {
  padding: 80px 0;
  background: var(--section-bg);
}

.metodo-card {
  background: var(--card-bg);
  border-radius: 0;
  padding: 0;
  text-align: left;
  box-shadow: none;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  height: 100%;
  border: none;
  position: relative;
  overflow: hidden;
  transform: skewY(0deg);
}

.metodo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--contrast-color) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.metodo-card:hover {
  transform: skewY(-2deg) translateY(-15px);
  box-shadow: 0 25px 50px rgba(167, 139, 250, 0.25);
}

.metodo-card-inner {
  padding: 40px 30px;
  position: relative;
  z-index: 2;
  border-left: 4px solid transparent;
  transition: border-color 0.3s ease;
}

.metodo-card:hover .metodo-card-inner {
  border-left-color: var(--accent-color);
}

.metodo-icon {
  width: 70px;
  height: 70px;
  background: var(--card-bg);
  border: 3px solid var(--accent-color);
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 0 25px 0;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.metodo-icon::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--accent-color);
  transform: scaleX(0);
  transition: transform 0.4s ease;
  transform-origin: left;
}

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

.metodo-card:hover .metodo-icon {
  transform: rotate(10deg) scale(1.1);
  border-radius: 15px;
  border-color: var(--contrast-color);
}

.metodo-icon i {
  font-size: 28px;
  color: var(--accent-color);
  transition: color 0.3s ease;
  z-index: 2;
  position: relative;
}

.metodo-card:hover .metodo-icon i {
  color: #ffffff;
}

.metodo-card h4 {
  color: var(--heading-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
  position: relative;
  padding-bottom: 10px;
}

.metodo-card h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-color);
  transition: width 0.4s ease;
}

.metodo-card:hover h4::after {
  width: 100%;
}

.metodo-card p {
  color: var(--light-text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 0;
  transition: color 0.3s ease;
}

.metodo-card:hover p {
  color: var(--default-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .metodo-card-inner {
    padding: 30px 20px;
  }
  
  .metodo-icon {
    width: 60px;
    height: 60px;
  }
  
  .metodo-icon i {
    font-size: 24px;
  }
}

/*--------------------------------------------------------------
# Feature Details Section - Completely Redesigned
--------------------------------------------------------------*/
.feature-details .features-item {
  background: linear-gradient(135deg, var(--card-bg), var(--surface-color));
  border-radius: 0;
  padding: 40px;
  margin: 30px 0;
  position: relative;
  overflow: hidden;
  transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
  transform: skewY(0deg);
  border-left: 5px solid transparent;
}

.feature-details .features-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, transparent 30%, rgba(167, 139, 250, 0.1) 50%, transparent 70%);
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  z-index: 1;
}

.feature-details .features-item:hover::before {
  transform: translateX(100%);
}

.feature-details .features-item:hover {
  transform: skewY(-1deg) translateY(-10px);
  border-left-color: var(--accent-color);
  box-shadow: 0 20px 40px rgba(167, 139, 250, 0.2);
}

.feature-details .features-item+.features-item {
  margin-top: 60px;
}

@media (max-width: 640px) {
  .feature-details .features-item+.features-item {
    margin-top: 30px;
  }
  
  .feature-details .features-item {
    padding: 30px 20px;
  }
}

.feature-details .features-item h3 {
  font-weight: 700;
  font-size: 28px;
  color: var(--heading-color);
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 15px;
}

.feature-details .features-item h3::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--contrast-color));
  transition: width 0.6s ease;
  border-radius: 2px;
}

.feature-details .features-item:hover h3::after {
  width: 100%;
}

.feature-details .features-item ul {
  list-style: none;
  padding: 0;
  margin: 0;
  position: relative;
  z-index: 2;
}

.feature-details .features-item ul li {
  padding: 12px 0;
  display: flex;
  align-items: center;
  border-bottom: 1px solid rgba(167, 139, 250, 0.1);
  transition: all 0.3s ease;
}

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

.feature-details .features-item ul li:hover {
  background: rgba(167, 139, 250, 0.05);
  padding-left: 15px;
  border-radius: 8px;
}

.feature-details .features-item ul i {
  font-size: 22px;
  padding-right: 12px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.feature-details .features-item ul li:hover i {
  color: var(--contrast-color);
  transform: scale(1.2);
}

.feature-details .features-item p:last-child {
  margin-bottom: 0;
  color: var(--light-text);
  line-height: 1.6;
  font-size: 16px;
}

.feature-item-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 20px;
  position: relative;
  z-index: 2;
}

.feature-item {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px 25px;
  border: none;
  background: linear-gradient(135deg, var(--card-bg), var(--surface-color));
  transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  border-radius: 0;
  position: relative;
  overflow: hidden;
  transform: perspective(1000px) rotateX(0deg);
}

.feature-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--contrast-color));
  transform: scaleX(0);
  transition: transform 0.5s ease;
  transform-origin: left;
}

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

.feature-item:hover {
  transform: perspective(1000px) rotateX(5deg) translateY(-8px);
  box-shadow: 0 15px 35px rgba(167, 139, 250, 0.25);
}

.feature-icon {
  font-size: 45px;
  color: var(--accent-color);
  margin-right: 20px;
  transition: all 0.4s ease;
  position: relative;
  z-index: 2;
}

.feature-item:hover .feature-icon {
  color: var(--contrast-color);
  transform: rotate(10deg) scale(1.1);
}

.feature-text {
  font-size: 17px;
  color: var(--default-color);
  line-height: 1.6;
  font-weight: 500;
  transition: color 0.3s ease;
}

.feature-item:hover .feature-text {
  color: var(--heading-color);
}

.feature-item strong {
  font-size: 19px;
  color: var(--accent-color);
  font-weight: 600;
  transition: color 0.3s ease;
}

.feature-item:hover strong {
  color: var(--contrast-color);
}


/*--------------------------------------------------------------
# Gallery Section
--------------------------------------------------------------*/

/* Styles pour le bloc Témoignages */
.testimonials-section {
  padding: 100px 0;
  background: var(--section-bg);
  position: relative;
}

.testimonials-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--contrast-color) 100%);
  opacity: 0.05;
}


.testimonial-card {
  background: var(--card-bg);
  padding: 40px 30px;
  box-shadow: 0 8px 30px var(--shadow-color);
  position: relative;
  transition: all 0.3s ease;
  height: 100%;
  border-radius: 20px;
  border: 1px solid var(--border-color);
  overflow: hidden;
}

.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
  border-color: var(--accent-color);
}

.testimonial-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.testimonial-quote {
  font-size: 3rem;
  color: var(--accent-color);
  opacity: 0.2;
  position: absolute;
  top: 20px;
  left: 20px;
}

.testimonial-text {
  font-size: 1.1rem;
  line-height: 1.8;
  font-style: italic;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}

.testimonial-author {
  display: flex;
  align-items: center;
}

.testimonial-author-img {
  width: 60px;
  height: 60px;
  overflow: hidden;
  margin-right: 15px;
  border: 2px solid var(--accent-color);
}

.testimonial-author-name {
  font-weight: 600;
  margin-bottom: 3px;
}

.testimonial-author-title {
  font-size: 0.9rem;
  opacity: 0.7;
}

.testimonial-rating {
  display: flex;
  margin-bottom: 15px;
}

.rating-star {
  color: var(--accent-color);
  margin-right: 3px;
}

/* Responsive adjustments */
@media (max-width: 991.98px) {

  .pricing-section,
  .testimonials-section {
    padding: 70px 0;
  }

  .pricing-card.featured {
    transform: scale(1);
    margin-top: 30px;
    margin-bottom: 30px;
  }

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

@media (max-width: 767.98px) {
  .pricing-price {
    font-size: 2rem;
  }

  .pricing-title {
    font-size: 1.3rem;
  }

  .testimonial-card {
    margin-bottom: 30px;
  }
}

/*--------------------------------------------------------------
# Pricing Section
--------------------------------------------------------------*/
.pricing {
  background: var(--section-bg);
  padding: 80px 0;
  position: relative;
}

.pricing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--contrast-color) 100%);
  opacity: 0.05;
}

.pricing .pricing-item {
  background: var(--card-bg);
  padding: 50px 30px;
  box-shadow: 0 8px 30px var(--shadow-color);
  height: 100%;
  position: relative;
  border-radius: 20px;
  border: 2px solid var(--border-color);
  transition: all 0.3s ease;
  overflow: hidden;
}

.pricing .pricing-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.pricing .pricing-item:hover::before {
  opacity: 1;
}

.pricing .pricing-item:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 50px rgba(0, 212, 255, 0.3);
  border-color: var(--accent-color);
}

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

.pricing h4 {
  font-size: 48px;
  color: var(--accent-color);
  font-family: var(--heading-font);
  font-weight: 600;
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

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

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

.pricing ul {
  padding: 20px 0;
  list-style: none;
  color: var(--light-text);
  text-align: left;
  line-height: 1.6;
}

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

.pricing ul i {
  color: var(--success-color);
  font-size: 24px;
  padding-right: 3px;
}

.pricing ul .na {
  color: var(--light-text);
  opacity: 0.5;
}

.pricing ul .na i {
  color: var(--light-text);
  opacity: 0.5;
}

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

.pricing .buy-btn {
  color: #ffffff;
  background: var(--primary-gradient);
  display: inline-block;
  padding: 15px 40px;
  border: none;
  border-radius: 25px;
  font-size: 16px;
  font-weight: 600;
  font-family: var(--heading-font);
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.pricing .buy-btn:hover {
  background: var(--secondary-gradient);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

.pricing .featured {
  z-index: 10;
}

.pricing .featured .pricing-item {
  background: var(--primary-gradient);
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.pricing .featured h3,
.pricing .featured h4,
.pricing .featured h4 span,
.pricing .featured ul,
.pricing .featured ul .na,
.pricing .featured ul i,
.pricing .featured ul .na i {
  color: #ffffff;
}

.pricing .featured .buy-btn {
  background: #ffffff;
  color: var(--accent-color);
  border-color: #ffffff;
}

.pricing .featured .buy-btn:hover {
  background: var(--surface-color);
  color: var(--accent-color);
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
}

/*--------------------------------------------------------------
# Faq Section
--------------------------------------------------------------*/
.faq {
  background: var(--section-bg);
  padding: 80px 0;
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, var(--contrast-color) 0%, var(--accent-color) 100%);
  opacity: 0.05;
}

.faq .faq-container {
  margin-top: 15px;
}

.faq-item {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
  position: relative;
  overflow: hidden;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.faq-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.faq-item:hover::before {
  opacity: 1;
}

.faq-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
  border-color: var(--accent-color);
}

.faq-icon {
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-size: 2.5rem;
  margin-right: 20px;
}

.faq .faq-container .faq-item {
  background-color: color-mix(in srgb, var(--default-color), transparent 96%);
  position: relative;
  padding: 20px;
  margin-bottom: 20px;
  overflow: hidden;
  transition: 0.3s;
  ;
}


.faq .faq-container .faq-item h3 {
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin: 0 30px 0 32px;
  transition: 0.3s;
  cursor: pointer;
}

.faq .faq-container .faq-item h3 span {
  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-icon {
  position: absolute;
  top: 22px;
  left: 20px;
  font-size: 20px;
  line-height: 0;
  transition: 0.3s;
  color: var(--accent-color);
}

.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: var(--accent-color);
  transition: 0.3s;
}

.faq .faq-container .faq-active h3,
.faq .faq-container .faq-active h3:hover,
.faq .faq-container .faq-active .faq-toggle,
.faq .faq-container .faq-active .faq-icon,
.faq .faq-container .faq-active .faq-content {
  color: var(--contrast-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);
}

.faq-card {
  display: flex;
  align-items: start;
  gap: 15px;
  height: 100%;
}

.faq-text {
  flex-grow: 1;
}

.faq-text h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--heading-color);
  margin-bottom: 10px;
}

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

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact {
  background: var(--section-bg);
  padding: 80px 0;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: linear-gradient(135deg, var(--contrast-color) 0%, var(--accent-color) 100%);
  opacity: 0.05;
}

.contact .info-item {
  background: var(--card-bg);
  padding: 40px 30px;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact .info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.contact .info-item:hover::before {
  opacity: 1;
}

.contact .info-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
  border-color: var(--accent-color);
}

.contact .info-item i {
  font-size: 38px;
  line-height: 0;
  color: var(--accent-color);
  background: var(--primary-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact .info-item h3 {
  font-size: 20px;
  font-weight: 700;
  margin: 20px 0 10px 0;
  color: var(--heading-color);
}

.contact .info-item p {
  padding: 0;
  line-height: 1.6;
  font-size: 14px;
  margin-bottom: 0;
  color: var(--light-text);
}

.contact .php-email-form {
  background: var(--card-bg);
  padding: 30px;
  height: 100%;
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-color);
  border: 1px solid var(--border-color);
}

.contact .php-email-form input[type=text],
.contact .php-email-form input[type=email],
.contact .php-email-form textarea {
  font-size: 14px;
  padding: 15px 20px;
  box-shadow: none;
  color: var(--default-color);
  background-color: var(--surface-color);
  border: 2px solid var(--border-color);
  border-radius: 10px;
  transition: all 0.3s ease;
  width: 100%;
}

.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);
  box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
  outline: none;
}

.contact .php-email-form input[type=text]::placeholder,
.contact .php-email-form input[type=email]::placeholder,
.contact .php-email-form textarea::placeholder {
  color: var(--light-text);
  opacity: 0.7;
}

.contact .php-email-form button[type=submit] {
  background: var(--primary-gradient);
  color: #ffffff;
  border: 0;
  padding: 15px 40px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
  cursor: pointer;
}

.contact .php-email-form button[type=submit]:hover {
  background: var(--secondary-gradient);
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
}

/* New Contact Styles */
.contact {
  background: linear-gradient(135deg, rgba(167, 139, 250, 0.08) 0%, rgba(14, 165, 233, 0.08) 50%, rgba(167, 139, 250, 0.05) 100%);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  min-height: 100vh;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(167, 139, 250, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(14, 165, 233, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 40% 40%, rgba(167, 139, 250, 0.05) 0%, transparent 50%);
}

/* Floating Background Elements */
.contact-bg-elements {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.floating-shape {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  opacity: 0.1;
  animation: float 6s ease-in-out infinite;
}

.shape-1 {
  width: 120px;
  height: 120px;
  top: 10%;
  left: 5%;
  animation-delay: 0s;
}

.shape-2 {
  width: 80px;
  height: 80px;
  top: 20%;
  right: 10%;
  animation-delay: 2s;
}

.shape-3 {
  width: 100px;
  height: 100px;
  bottom: 20%;
  left: 15%;
  animation-delay: 4s;
}

.shape-4 {
  width: 60px;
  height: 60px;
  bottom: 10%;
  right: 5%;
  animation-delay: 1s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50% { transform: translateY(-20px) rotate(180deg); }
}

/* Title Decoration */
.title-decoration {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
}

.decoration-line {
  width: 60px;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--accent-color), transparent);
}

.title-decoration i {
  font-size: 2rem;
  color: var(--accent-color);
  animation: pulse 2s ease-in-out infinite;
}

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

/* Contact Info Cards */
.contact-info-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 250, 252, 0.9) 100%);
  backdrop-filter: blur(20px);
  border-radius: 25px;
  padding: 3rem 2rem;
  text-align: center;
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(167, 139, 250, 0.15);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  margin-bottom: 2rem;
  z-index: 2;
}

.floating-card {
  animation: cardFloat 8s ease-in-out infinite;
}

.floating-card:nth-child(2) {
  animation-delay: 2s;
}

.floating-card:nth-child(3) {
  animation-delay: 4s;
}

@keyframes cardFloat {
  0%, 100% { transform: translateY(0px) rotateX(0deg); }
  50% { transform: translateY(-15px) rotateX(2deg); }
}

.card-glow {
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(167, 139, 250, 0.1) 0%, transparent 70%);
  opacity: 0;
  transition: opacity 0.6s ease;
  pointer-events: none;
}

.contact-info-card:hover .card-glow {
  opacity: 1;
}

.contact-info-card:hover {
  transform: translateY(-20px) scale(1.05) rotateX(5deg);
  box-shadow: 
    0 30px 60px rgba(167, 139, 250, 0.2),
    0 0 0 1px rgba(167, 139, 250, 0.3);
  border-color: rgba(167, 139, 250, 0.4);
}

.contact-icon-wrapper {
  width: 90px;
  height: 90px;
  margin: 0 auto 2rem;
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 10px 30px rgba(167, 139, 250, 0.3),
    inset 0 0 0 2px rgba(255, 255, 255, 0.2);
}

.icon-bg-pulse {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  opacity: 0.3;
  animation: iconPulse 3s ease-in-out infinite;
}

@keyframes iconPulse {
  0%, 100% { transform: scale(1); opacity: 0.3; }
  50% { transform: scale(1.2); opacity: 0.1; }
}

.contact-icon-wrapper::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  transform: rotate(45deg);
  transition: all 0.8s ease;
}

.contact-info-card:hover .contact-icon-wrapper::before {
  transform: rotate(45deg) translate(50%, 50%);
}

.contact-icon-wrapper i {
  font-size: 2.2rem;
  color: #ffffff;
  z-index: 3;
  position: relative;
  transition: all 0.4s ease;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.contact-info-card:hover .contact-icon-wrapper i {
  transform: scale(1.2) rotate(10deg);
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.contact-info-card h3 {
  color: var(--heading-color);
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 1.5rem;
  position: relative;
  transition: all 0.3s ease;
}

.contact-info-card:hover h3 {
  color: var(--accent-color);
  transform: scale(1.05);
}

.contact-info-card h3::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  transition: width 0.5s ease;
  border-radius: 2px;
}

.contact-info-card:hover h3::after {
  width: 80%;
}

.contact-number {
  color: var(--default-color);
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  display: block;
  transition: all 0.3s ease;
}

.contact-info-card:hover .contact-number {
  color: var(--accent-color);
  transform: scale(1.05);
}

.contact-hours {
  color: var(--light-text);
  font-size: 0.95rem;
  font-weight: 500;
  opacity: 0.8;
  display: block;
  margin-bottom: 1.5rem;
}

/* Card Action Buttons */
.card-action {
  margin-top: 1rem;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  color: #ffffff;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(167, 139, 250, 0.3);
}

.action-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s ease;
}

.action-btn:hover::before {
  left: 100%;
}

.action-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 25px rgba(167, 139, 250, 0.4);
  color: #ffffff;
  text-decoration: none;
}

.action-btn i {
  transition: transform 0.3s ease;
}

.action-btn:hover i {
  transform: translateX(3px);
}

/* Contact Form Container */
.contact-form-container {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 250, 252, 0.95) 100%);
  backdrop-filter: blur(30px);
  border-radius: 30px;
  padding: 4rem;
  box-shadow: 
    0 25px 50px rgba(0, 0, 0, 0.1),
    0 0 0 1px rgba(255, 255, 255, 0.3);
  border: 1px solid rgba(167, 139, 250, 0.2);
  position: relative;
  overflow: hidden;
  z-index: 2;
}

.glassmorphism {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.form-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 1;
}

.decoration-circle {
  position: absolute;
  top: -50px;
  right: -50px;
  width: 100px;
  height: 100px;
  border: 3px solid rgba(167, 139, 250, 0.1);
  border-radius: 50%;
  animation: rotate 20s linear infinite;
}

.decoration-dots {
  position: absolute;
  bottom: 30px;
  left: 30px;
  width: 60px;
  height: 60px;
  background-image: radial-gradient(circle, var(--accent-color) 2px, transparent 2px);
  background-size: 20px 20px;
  opacity: 0.3;
  animation: float 4s ease-in-out infinite;
}

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

.contact-form-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color), var(--accent-color));
  background-size: 200% 100%;
  animation: gradientShift 4s ease infinite;
}

.contact-form-header {
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.header-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 1.5rem;
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(167, 139, 250, 0.3);
  animation: headerIconFloat 3s ease-in-out infinite;
}

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

.header-icon i {
  font-size: 2.5rem;
  color: #ffffff;
}

.contact-form-header h3 {
  color: var(--heading-color);
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--heading-color), var(--accent-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-form-header p {
  color: var(--light-text);
  font-size: 1.2rem;
  line-height: 1.6;
  max-width: 600px;
  margin: 0 auto;
}

/* Contact Form */
.contact-form {
  position: relative;
  z-index: 2;
}

.form-group {
  margin-bottom: 2rem;
  position: relative;
}

.floating-label {
  position: relative;
}

.floating-label label {
  position: absolute;
  top: 1rem;
  left: 1.25rem;
  color: var(--light-text);
  font-weight: 500;
  font-size: 1rem;
  transition: all 0.3s ease;
  pointer-events: none;
  background: transparent;
  padding: 0 4px;
  z-index: 2;
}

.floating-label .form-control:focus + label,
.floating-label .form-control:not(:placeholder-shown) + label {
  top: -0.5rem;
  left: 1rem;
  font-size: 0.85rem;
  color: var(--accent-color);
  font-weight: 600;
  background: #ffffff;
}

.form-control {
  width: 100%;
  padding: 1.25rem 1.25rem 0.75rem;
  border: 2px solid rgba(167, 139, 250, 0.15);
  border-radius: 16px;
  font-size: 1rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: rgba(255, 255, 255, 0.9);
  color: var(--default-color);
  backdrop-filter: blur(10px);
}

.form-control:focus {
  outline: none;
  border-color: var(--accent-color);
  box-shadow: 
    0 0 0 4px rgba(167, 139, 250, 0.1),
    0 8px 25px rgba(167, 139, 250, 0.15);
  transform: translateY(-3px);
  background: #ffffff;
}

.form-control::placeholder {
  color: transparent;
}

.input-border {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-color), var(--primary-color));
  transition: width 0.4s ease;
  border-radius: 2px;
}

.floating-label .form-control:focus ~ .input-border {
  width: 100%;
}

/* Select styling */
.form-control:is(select) {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%23A78BFA' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
  background-position: right 1rem center;
  background-repeat: no-repeat;
  background-size: 1.5em 1.5em;
  padding-right: 3rem;
  appearance: none;
}

/* Checkbox styling */
.checkbox-group {
  margin-top: 1.5rem;
}

.custom-checkbox {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  position: relative;
}

.custom-checkbox input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

.checkmark {
  height: 24px;
  width: 24px;
  background: #ffffff;
  border: 2px solid rgba(167, 139, 250, 0.3);
  border-radius: 6px;
  position: relative;
  transition: all 0.3s ease;
  flex-shrink: 0;
  margin-top: 2px;
}

.custom-checkbox:hover .checkmark {
  border-color: var(--accent-color);
  transform: scale(1.05);
}

.custom-checkbox input:checked ~ .checkmark {
  background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
  border-color: var(--accent-color);
}

.checkmark:after {
  content: '';
  position: absolute;
  display: none;
  left: 8px;
  top: 4px;
  width: 6px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkmark:after {
  display: block;
}

.custom-checkbox label {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.5;
  cursor: pointer;
  color: var(--default-color);
}

.custom-checkbox a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border-bottom: 1px solid transparent;
}

.custom-checkbox a:hover {
  color: var(--primary-color);
  border-bottom-color: var(--primary-color);
}

/* Submit Button */
.contact-submit-btn {
  background: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
  color: #ffffff;
  border: none;
  padding: 1.25rem 3rem;
  border-radius: 60px;
  font-size: 1.2rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  box-shadow: 
    0 15px 35px rgba(167, 139, 250, 0.4),
    0 0 0 1px rgba(255, 255, 255, 0.2);
  min-width: 200px;
}

.btn-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  position: relative;
  z-index: 2;
}

.btn-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.6s ease;
}

.contact-submit-btn:hover .btn-ripple {
  width: 300px;
  height: 300px;
}

.contact-submit-btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.8s ease;
}

.contact-submit-btn:hover::before {
  left: 100%;
}

.contact-submit-btn:hover {
  transform: translateY(-5px) scale(1.05);
  box-shadow: 
    0 25px 50px rgba(167, 139, 250, 0.5),
    0 0 0 1px rgba(255, 255, 255, 0.3);
}

.contact-submit-btn:active {
  transform: translateY(-2px) scale(1.02);
}

.btn-text {
  font-weight: 700;
  letter-spacing: 0.5px;
}

.btn-icon {
  transition: all 0.4s ease;
  font-size: 1.1rem;
}

.contact-submit-btn:hover .btn-icon {
  transform: translateX(5px) scale(1.2);
}

/* Responsive Design */
@media (max-width: 768px) {
  .contact {
    padding: 60px 0;
  }
  
  .floating-shape {
    display: none;
  }
  
  .contact-info-card {
    padding: 2rem 1.5rem;
    margin-bottom: 1.5rem;
  }
  
  .contact-icon-wrapper {
    width: 70px;
    height: 70px;
  }
  
  .contact-icon-wrapper i {
    font-size: 1.8rem;
  }
  
  .contact-form-container {
    padding: 2.5rem 1.5rem;
  }
  
  .contact-form-header h3 {
    font-size: 2rem;
  }
  
  .header-icon {
    width: 60px;
    height: 60px;
  }
  
  .header-icon i {
    font-size: 2rem;
  }
  
  .contact-submit-btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    min-width: 180px;
  }
  
  .title-decoration {
    gap: 15px;
  }
  
  .decoration-line {
    width: 40px;
  }
}

@media (max-width: 576px) {
  .contact {
    padding: 40px 0;
  }
  
  .contact-info-card {
    padding: 1.5rem 1rem;
  }
  
  .contact-form-container {
    padding: 2rem 1rem;
  }
  
  .contact-form-header h3 {
    font-size: 1.75rem;
  }
  
  .contact-submit-btn {
    width: 100%;
    min-width: auto;
  }
  
  .title-decoration {
    gap: 10px;
  }
  
  .decoration-line {
    width: 30px;
  }
  
  .title-decoration i {
    font-size: 1.5rem;
  }
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  transform: translateX(-50%);
  background: var(--card-bg);
  color: var(--default-color);
  border: 1px solid var(--border-color);
  padding: 25px;
  font-family: "Shafarik", sans-serif;
  box-shadow: 0 10px 30px var(--shadow-color);
  border-radius: 15px;
  font-size: 14px;
  max-width: 400px;
  z-index: 1000;
  display: none;
  opacity: 0;
  /* Start invisible */
  transform: translateY(30px);
  /* Slide up effect */
  transition: all 0.4s ease;
}

#cookie-popup::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--primary-gradient);
  border-radius: 15px 15px 0 0;
}

#cookie-popup.show {
  opacity: 1;
  transform: translateY(0);
}

#cookie-popup p {
  margin: 0;
  padding: 0;
}

#cookie-popup .popup-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#cookie-popup button {
  background: var(--primary-gradient);
  color: white;
  border: none;
  padding: 12px 25px;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

#cookie-popup button:hover {
  background: var(--secondary-gradient);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

#cookie-popup .popup-message {
  max-width: 80%;
}

#cookie-popup .popup-message a {
  color: var(--accent-color);
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

#cookie-popup .popup-message a:hover {
  color: var(--accent-color);
}

.footer .copyright {
  padding: 25px 0;
  font-size: 15px;
  border-top: 1px solid rgba(256, 256, 256, 0.1);
}

.footer .copyright a {
  color: var(--accent-color);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer .copyright a:hover {
  color: var(--contrast-color);
}

.footer .copyright {
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
}

.about_elem {
  margin-bottom: 2rem;
  background: var(--card-bg);
  border-radius: 15px;
  padding: 25px;
  box-shadow: 0 4px 20px var(--shadow-color);
  transition: all 0.3s ease;
  border: 1px solid var(--border-color);
}

.about_elem:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(0, 212, 255, 0.2);
  border-color: var(--accent-color);
}

.about_elem .d-flex {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(255, 107, 107, 0.1) 100%);
  border-radius: 10px;
  padding: 20px;
  border: 1px solid rgba(0, 212, 255, 0.2);
}

.about_elem i {
  color: var(--accent-color);
  font-size: 1.5rem;
  margin-right: 15px;
  background: linear-gradient(135deg, var(--accent-color), var(--contrast-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}



.swiper-slide {
  opacity: 0.4;
  transform: scale(0.92);
  transition: all 0.3s ease-in-out;
}

.swiper-slide-active {
  opacity: 1;
  transform: scale(1);
  z-index: 2;
}

.swiper-pagination-bullet {
  background-color: var(--light-text);
  opacity: 0.6;
  transition: all 0.3s ease;
}

.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(255, 255, 255, 0.0);
  border: 1px solid var(--bg-color);
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--bg-color);
  color: var(--accent-color);
}

.swiper-button-next::after,
.swiper-button-prev::after {
  font-size: 20px;
}

.swiper-pagination {
  position: absolute;
  bottom: -10px;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

.swiper-pagination .swiper-pagination-bullet {
  width: 12px;
  height: 12px;
  margin: 0 5px;
  background-color: var(--light-text);
  border-radius: 50%;
  transition: all 0.3s ease;
  opacity: 0.5;
}

.swiper-pagination .swiper-pagination-bullet-active {
  background: var(--primary-gradient);
  opacity: 1;
  transform: scale(1.2);
}

.swiper-pagination .swiper-pagination-bullet:hover {
  background: var(--accent-color);
  opacity: 0.8;
  transform: scale(1.1);
}

.swiper-button-next,
.swiper-button-prev {
  background-color: rgba(0, 212, 255, 0.1);
  border: 2px solid var(--accent-color);
  color: var(--accent-color);
  width: 40px;
  height: 40px;
  transition: all 0.3s ease;
  border-radius: 50%;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
  background-color: var(--accent-color);
  color: #ffffff;
  transform: scale(1.1);
}

.swiper-pagination.hidden {
  display: none;
}

.swiper-pagination .swiper-pagination-button {
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
}

.swiper-pagination .swiper-pagination-button-prev,
.swiper-pagination .swiper-pagination-button-next {
  font-size: 20px;
  color: var(--accent-color);
  transition: all 0.3s ease;
}

.swiper-pagination .swiper-pagination-button-prev:hover,
.swiper-pagination .swiper-pagination-button-next:hover {
  color: var(--contrast-color);
  transform: scale(1.1);
}

.testimonial-img {
  width: 100%;
  max-width: 350px;
  max-height: 350px;
  height: 350px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 1rem;
}

.growth {
  background: var(--primary-gradient);
  background-size: cover;
  background-position: center;
  color: #ffffff;
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.growth::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 255, 136, 0.9) 0%, rgba(0, 212, 255, 0.2) 100%);
  z-index: 1;
}

.growth-content {
  position: relative;
  z-index: 2;
}

.growth h2 {
  color: #ffffff;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  margin-bottom: 2rem;
}

.growth .lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.25rem;
  line-height: 1.6;
}

.growth .btn {
  background: #ffffff;
  color: var(--background-color);
  border: none;
  padding: 15px 40px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 8px 25px rgba(0, 255, 136, 0.3);
}

.growth .btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 255, 136, 0.4);
  background: var(--surface-color);
}

.lead {
  color: var(--accent-color);
  font-weight: 600;
  font-size: 1.25rem;
  line-height: 1.6;
  background: linear-gradient(135deg, var(--accent-color), var(--contrast-color));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*--------------------------------------------------------------
# Testimonials Styling
--------------------------------------------------------------*/
.testimonial-item {
  text-align: center;
  padding: 30px;
  background: var(--card-bg);
  border-radius: 20px;
  box-shadow: 0 8px 30px var(--shadow-color);
  border: 1px solid var(--border-color);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  height: 100%;
}

.testimonial-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial-item:hover::before {
  opacity: 1;
}

.testimonial-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 40px rgba(0, 212, 255, 0.2);
  border-color: var(--accent-color);
}

.testimonial-item h3 {
  color: var(--heading-color);
  font-size: 1.5rem;
  font-weight: 600;
  margin: 15px 0 5px 0;
}

.testimonial-item h4 {
  color: var(--accent-color);
  font-size: 1rem;
  font-weight: 500;
  margin-bottom: 15px;
}

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

.testimonial-item .stars i {
  color: var(--warning-color);
  font-size: 1.2rem;
  margin: 0 2px;
}

.testimonial-item p {
  color: var(--default-color);
  font-style: italic;
  line-height: 1.6;
  margin: 0;
}

.testimonial-item .quote-icon-left,
.testimonial-item .quote-icon-right {
  color: var(--accent-color);
  font-size: 1.5rem;
  opacity: 0.3;
}

.testimonial-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid var(--accent-color);
  margin: 0 auto 15px;
}

.testimonial-wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* Swiper Customization for Testimonials */
.testimonials .swiper-slide {
  height: auto;
}

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

.testimonials .swiper-pagination-bullet-active {
  background: var(--primary-gradient);
  opacity: 1;
}

/*--------------------------------------------------------------
# Mobile Navigation Menu
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--nav-color);
  transition: all 0.3s ease;
  z-index: 10001;
  position: relative;
}

.mobile-nav-toggle:hover {
  color: var(--accent-color);
}

.mobile-nav-toggle .bi-list {
  transition: transform 0.3s ease;
}

.mobile-nav-toggle.active .bi-list {
  transform: rotate(90deg);
}

/* Mobile Menu Overlay */
.mobile-nav-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(10px);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.mobile-nav-overlay.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* Mobile Menu Container */
.mobile-nav-container {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  max-width: 400px;
  height: 100vh;
  background: var(--card-bg);
  box-shadow: -10px 0 30px rgba(0, 0, 0, 0.3);
  z-index: 10000;
  transition: right 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  opacity: 0;
}

.mobile-nav-container.active {
  right: 0;
  visibility: visible;
  opacity: 1;
}

/* Mobile Menu Header */
.mobile-nav-header {
  background: var(--primary-gradient);
  padding: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid var(--border-color);
  gap: 12px;
}

.mobile-nav-header h3 {
  color: #ffffff;
  margin: 0;
  font-size: 1.5rem;
  font-weight: 600;
}



.mobile-logo-icon {
  transition: all 0.3s ease;
  filter: drop-shadow(0 1px 3px rgba(0, 0, 0, 0.1));
}

.mobile-nav-header:hover .mobile-logo-icon {
  transform: scale(1.1);
  filter: drop-shadow(0 2px 6px rgba(167, 139, 250, 0.3));
}

.mobile-nav-close {
  background: rgba(255, 255, 255, 0.2);
  border: none;
  color: #ffffff;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
}

.mobile-nav-close:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: scale(1.1);
}

/* Mobile Menu Navigation */
.mobile-nav-menu {
  flex: 1;
  padding: 20px 0;
}

.mobile-nav-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.mobile-nav-menu li {
  border-bottom: 1px solid var(--border-color);
}

.mobile-nav-menu a {
  display: flex;
  align-items: center;
  padding: 20px;
  color: var(--default-color);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.mobile-nav-menu a::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--primary-gradient);
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.mobile-nav-menu a:hover::before,
.mobile-nav-menu a.active::before {
  transform: scaleY(1);
}

.mobile-nav-menu a:hover {
  background: rgba(0, 212, 255, 0.05);
  color: var(--accent-color);
  padding-left: 25px;
}

.mobile-nav-menu i {
  margin-right: 15px;
  font-size: 1.2rem;
  width: 20px;
  text-align: center;
  color: var(--accent-color);
}

/* Mobile Menu Footer */
.mobile-nav-footer {
  padding: 20px;
  border-top: 1px solid var(--border-color);
  background: var(--section-bg);
}

.mobile-nav-footer .btn {
  width: 100%;
  background: var(--primary-gradient);
  color: #ffffff;
  border: none;
  padding: 15px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 212, 255, 0.3);
}

.mobile-nav-footer .btn:hover {
  background: var(--secondary-gradient);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.4);
}

/* Mobile Menu Social Links */
.mobile-nav-social {
  display: flex;
  justify-content: center;
  gap: 15px;
  margin-top: 20px;
}

.mobile-nav-social a {
  width: 45px;
  height: 45px;
  border: 2px solid var(--border-color);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--light-text);
  transition: all 0.3s ease;
  background: var(--card-bg);
}

.mobile-nav-social a:hover {
  border-color: var(--accent-color);
  color: var(--accent-color);
  background: rgba(0, 212, 255, 0.1);
  transform: translateY(-3px);
}

/* Mobile Menu Dropdown */
.mobile-nav-dropdown {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  background: var(--section-bg);
}

.mobile-nav-dropdown.active {
  max-height: 300px;
}

.mobile-nav-dropdown a {
  padding-left: 55px;
  font-size: 1rem;
  color: var(--light-text);
}

.mobile-nav-dropdown a:hover {
  color: var(--accent-color);
}

/* Mobile Menu Toggle Button */
.mobile-nav-toggle-btn {
  position: relative;
  width: 30px;
  height: 20px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.mobile-nav-toggle-btn span {
  display: block;
  width: 100%;
  height: 3px;
  background: currentColor;
  position: relative;
  transition: all 0.3s ease;
  border-radius: 2px;
  transform-origin: center;
}

.mobile-nav-toggle.active .mobile-nav-toggle-btn span:nth-child(1) {
  transform: rotate(45deg) translate(6px, 6px);
}

.mobile-nav-toggle.active .mobile-nav-toggle-btn span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
}

.mobile-nav-toggle.active .mobile-nav-toggle-btn span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -6px);
}

/* Responsive Design */
@media (max-width: 1199px) {
  .mobile-menu-toggle-wrapper {
    display: block !important;
  }
  
  .header .btn-getstarted {
    display: none;
  }
}

@media (max-width: 768px) {
  .mobile-nav-container {
    max-width: 100%;
  }
  
  .mobile-nav-menu a {
    padding: 18px 20px;
    font-size: 1rem;
  }
  
  .mobile-nav-header {
    padding: 15px 20px;
  }
  
  .mobile-nav-header h3 {
    font-size: 1.3rem;
  }
}

/* Body scroll lock handled by JavaScript */

/* Animation for mobile menu items */
.mobile-nav-menu li {
  opacity: 0;
  transform: translateX(30px);
  transition: all 0.3s ease;
}

.mobile-nav-container.active .mobile-nav-menu li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-container.active .mobile-nav-menu li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-container.active .mobile-nav-menu li:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-container.active .mobile-nav-menu li:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-container.active .mobile-nav-menu li:nth-child(4) { transition-delay: 0.4s; }
.mobile-nav-container.active .mobile-nav-menu li:nth-child(5) { transition-delay: 0.5s; }
.mobile-nav-container.active .mobile-nav-menu li:nth-child(6) { transition-delay: 0.6s; }

/*--------------------------------------------------------------
# Main Content
--------------------------------------------------------------*/
.main {
  margin-top: 80px;
  position: relative;
  z-index: 1;
}

/*--------------------------------------------------------------
# Mobile Navigation Menu
--------------------------------------------------------------*/
.header .container-fluid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 30px;
}

/* Hide desktop navmenu on mobile */
@media (max-width: 1199px) {
  .navmenu {
    display: none !important;
  }
  
  .navbar {
    display: none !important;
  }
}

/* Desktop Navigation Styles */
@media (min-width: 1200px) {
  .navbar {
    display: flex !important;
    align-items: center;
  }
  
  .navmenu {
    display: flex !important;
    flex-direction: row !important;
  }
  
  .navmenu ul {
    display: flex !important;
    flex-direction: row !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    gap: 10px;
    align-items: center;
  }
  
  .navmenu li {
    list-style: none !important;
    margin: 0;
    padding: 0;
  }
  
  .navmenu a {
    color: var(--nav-color);
    padding: 10px 20px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    border: 2px solid transparent;
    border-radius: 25px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    white-space: nowrap;
  }
  
  .navmenu a:hover,
  .navmenu .active {
    color: var(--nav-hover-color);
    border-color: var(--accent-color);
    background: rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
  }
  
  .header .btn-getstarted {
    display: block !important;
  }
}

/* Mobile Menu Toggle Wrapper */
.mobile-menu-toggle-wrapper {
  position: fixed;
  top: 20px;
  left: 20px;
  z-index: 10002;
  display: none;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.mobile-menu-toggle-wrapper.active {
  left: auto;
  right: 20px;
}

.mobile-menu-toggle-wrapper .mobile-nav-toggle {
  background: var(--default-color);
  border: 2px solid var(--accent-color);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #ffffff;
}

.mobile-menu-toggle-wrapper .mobile-nav-toggle:hover {
  background: var(--accent-color);
  border-color: var(--accent-color);
  box-shadow: 0 6px 20px rgba(0, 212, 255, 0.4);
  transform: scale(1.1);
  color: var(--default-color);
}

/* Mobile Menu Toggle Button */

/*--------------------------------------------------------------
# Métodos e Técnicas Section
--------------------------------------------------------------*/
.metodos {
  padding: 80px 0;
  background: var(--section-bg);
}

.metodo-card {
  background: var(--card-bg);
  border-radius: 20px;
  padding: 30px;
  text-align: center;
  box-shadow: 0 10px 30px var(--shadow-color);
  transition: all 0.3s ease;
  height: 100%;
  border: 2px solid transparent;
  position: relative;
  overflow: hidden;
}

.metodo-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--primary-gradient);
  transform: scaleX(0);
  transition: transform 0.3s ease;
}

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

.metodo-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(44, 24, 16, 0.15);
  border-color: var(--portuguese-red);
}

.metodo-icon {
  width: 80px;
  height: 80px;
  background: var(--primary-gradient);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  transition: all 0.3s ease;
}

.metodo-card:hover .metodo-icon {
  transform: scale(1.1) rotate(5deg);
  box-shadow: 0 10px 25px rgba(230, 57, 70, 0.3);
}

.metodo-icon i {
  font-size: 32px;
  color: white;
}

.metodo-card h4 {
  color: var(--heading-color);
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 15px;
  font-family: var(--heading-font);
}

.metodo-card p {
  color: var(--light-text);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}

.metodo-stats {
  display: flex;
  justify-content: space-around;
  margin-top: 25px;
  padding-top: 25px;
  border-top: 1px solid var(--border-color);
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.4s ease;
}

.feature-card:hover .feature-stats {
  opacity: 1;
  transform: translateY(0);
}

.feature-stat {
  text-align: center;
}

.feature-stat-number {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--accent-color);
  display: block;
}

.feature-stat-label {
  font-size: 0.8rem;
  color: var(--light-text);
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
  .metodo-card {
    padding: 25px 20px;
  }
  
  .metodo-icon {
    width: 60px;
    height: 60px;
  }
  
  .metodo-icon i {
    font-size: 24px;
  }
  
  .metodo-stats {
    flex-direction: column;
    gap: 8px;
  }
}