/* Fonts */
:root {
  --default-font: "Red Hat Mono", monospace;
  --heading-font: "Red Hat Mono", monospace;
  --nav-font: "Red Hat Mono", monospace;
}

/* Global Colors - Modern Creative Platform Color Scheme */
:root {
  --background-color: #0a0a0a;
  --default-color: #ffffff;
  --heading-color: #00d4ff;
  --accent-color: #ff6b35;
  --surface-color: #1a1a1a;
  --contrast-color: #ffffff;
  --bg-color: #2d2d2d;
  --nav-color: #ffffff;
  --nav-hover-color: #00d4ff;
  --nav-mobile-background-color: #1a1a1a;
  --nav-dropdown-background-color: #2d2d2d;
  --nav-dropdown-color: #ffffff;
  --nav-dropdown-hover-color: #00d4ff;
  --footer-background: #0f0f0f;
  --footer-border: rgba(0, 212, 255, 0.2);
  --footer-text: rgba(255, 255, 255, 0.8);
  --footer-heading: #00d4ff;
  --gradient-primary: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  --gradient-secondary: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
  --gradient-accent: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
  --shadow-primary: 0 10px 30px rgba(0, 212, 255, 0.3);
  --shadow-secondary: 0 15px 35px rgba(255, 107, 53, 0.3);
  --shadow-accent: 0 8px 25px rgba(0, 212, 255, 0.3);
}

/* Color Presets */
.light-background {
  --background-color: #f8f9fa;
  --surface-color: #ffffff;
  --default-color: #2c3e50;
  --heading-color: #00d4ff;
}

.dark-background {
  --background-color: #0a0a0a;
  --default-color: #ffffff;
  --heading-color: #00d4ff;
  --surface-color: #1a1a1a;
  --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);
  line-height: 1.6;
}

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

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

h1, h2, h3, h4, h5, h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 600;
  letter-spacing: -0.02em;
}

/* PHP Email Form Messages */
.php-email-form .error-message {
  display: none;
  background: #dc3545;
  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: #28a745;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}

.php-email-form .loading {
  display: none;
  background: #17a2b8;
  color: #ffffff;
  text-align: center;
  padding: 15px;
  margin-bottom: 24px;
  font-weight: 600;
  border-radius: 8px;
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
.header {
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  backdrop-filter: blur(25px);
  border-bottom: 1px solid rgba(0, 212, 255, 0.2);
  padding: 20px 0;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  z-index: 1000;
}

.header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(90deg, transparent 49%, rgba(0, 212, 255, 0.05) 50%, transparent 51%);
  background-size: 20px 20px;
  opacity: 0.3;
}

.header .logo {
  text-decoration: none;
  position: relative;
  z-index: 2;
}

.header .logo h3 {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00d4ff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.header .logo:hover h3 {
  transform: scale(1.05);
  filter: brightness(1.2);
}

.header .logo img {
  max-height: 45px;
  transition: all 0.3s ease;
}

.header .logo:hover img {
  transform: scale(1.1);
}

.navmenu {
  margin-left: auto;
}

/* Ensure navmenu is properly hidden on mobile by default */
@media (max-width: 991px) {
  .navmenu {
    display: block;
  }
}

@media (min-width: 992px) {
  .navmenu {
    display: flex;
  }
}

.mobile-nav-toggle {
  display: none;
  font-size: 28px;
  cursor: pointer;
  color: var(--nav-color);
  transition: all 0.3s ease;
  background: none;
  border: none;
  padding: 0;
  margin-left: 20px;
}

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

.navmenu li {
  position: relative;
  margin: 0 15px;
}

.navmenu a {
  color: var(--nav-color);
  font-weight: 500;
  padding: 8px 12px;
  transition: all 0.3s ease;
  position: relative;
  border-radius: 8px;
  text-decoration: none;
}

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

.navmenu a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #00d4ff, #ff6b35);
  transition: all 0.3s ease;
  transform: translateX(-50%);
  border-radius: 1px;
}

.navmenu a:hover::after {
  width: 100%;
}

.navmenu a.active {
  color: var(--nav-hover-color);
  background: rgba(0, 212, 255, 0.15);
}

.navmenu a.active::after {
  width: 100%;
}

/*--------------------------------------------------------------
# Hero Section - Creative Grid Pattern
--------------------------------------------------------------*/
.hero {
  padding: 140px 0 100px;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #0f0f0f 100%);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 80%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(255, 107, 53, 0.1) 0%, transparent 50%),
    linear-gradient(45deg, transparent 49%, rgba(0, 212, 255, 0.05) 50%, transparent 51%);
  background-size: 100% 100%, 100% 100%, 20px 20px;
  animation: heroPattern 20s linear infinite;
}

@keyframes heroPattern {
  0% { transform: translateX(0) translateY(0); }
  100% { transform: translateX(-20px) translateY(-20px); }
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero h2 {
  font-size: 4rem;
  font-weight: 800;
  margin-bottom: 2rem;
  background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 50%, #00d4ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  background-size: 200% 200%;
  animation: gradientShift 3s ease-in-out infinite;
  text-shadow: 0 0 30px rgba(0, 212, 255, 0.3);
}

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

.hero .lead {
  font-size: 1.4rem;
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.8;
  font-weight: 400;
}

.btn-primary {
  background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
  border: none;
  padding: 18px 40px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.2rem;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-primary::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.5s;
}

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

.btn-primary:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.5);
}

/*--------------------------------------------------------------
# Features Section - Hexagonal Grid Design
--------------------------------------------------------------*/
.features {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
}

.features::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 70%, rgba(0, 212, 255, 0.03) 0%, transparent 70%),
    radial-gradient(circle at 70% 30%, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
}

.section-title {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  z-index: 2;
}

.section-title h2 {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #00d4ff 0%, #ff6b35 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
  position: relative;
}

.section-title h2::after {
  content: '';
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #00d4ff, #ff6b35);
  border-radius: 2px;
}

.section-title p {
  font-size: 1.2rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.7;
}

.icon-box {
  text-align: center;
  padding: 40px 25px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 25px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.15);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
}

.icon-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.icon-box:hover::before {
  opacity: 1;
}

.icon-box:hover {
  transform: translateY(-15px) scale(1.02);
  box-shadow: 0 25px 50px rgba(0, 212, 255, 0.2);
  border-color: var(--heading-color);
}

.icon-box i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #00d4ff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

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

.icon-box h4 {
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
  color: var(--heading-color);
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.icon-box p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

/*--------------------------------------------------------------
# About Section - Timeline Design
--------------------------------------------------------------*/
.about {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    linear-gradient(90deg, transparent 49%, rgba(0, 212, 255, 0.03) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(255, 107, 53, 0.03) 50%, transparent 51%);
  background-size: 50px 50px, 50px 50px;
}

.section-title {
  position: relative;
  z-index: 2;
}

.about_elem {
  margin-bottom: 3rem;
  position: relative;
  z-index: 2;
}

.about_elem .d-flex {
  padding: 30px 25px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 212, 255, 0.02) 100%);
  border-radius: 20px;
  border-left: 5px solid var(--heading-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.about_elem .d-flex::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.about_elem .d-flex:hover::before {
  opacity: 1;
}

.about_elem .d-flex:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
  transform: translateX(15px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.about_elem i {
  color: var(--heading-color);
  font-size: 2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #00d4ff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.about_elem .d-flex:hover i {
  transform: scale(1.2) rotate(10deg);
}

.about_elem p {
  margin: 0;
  color: var(--default-color);
  line-height: 1.7;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
  font-weight: 500;
}

.about .row.content {
  position: relative;
}

.about .row.content::before {
  content: '';
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, transparent, var(--heading-color), transparent);
  transform: translateX(-50%);
  opacity: 0.3;
}

/*--------------------------------------------------------------
# Services Section - Modern Service Cards
--------------------------------------------------------------*/
.services {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 25% 75%, rgba(0, 212, 255, 0.05) 0%, transparent 60%),
    radial-gradient(circle at 75% 25%, rgba(255, 107, 53, 0.05) 0%, transparent 60%);
}

.section-title {
  position: relative;
  z-index: 2;
}

.service-item {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 25px;
  padding: 40px 30px;
  text-align: center;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  height: 100%;
  position: relative;
  overflow: hidden;
  transform-style: preserve-3d;
  perspective: 1000px;
}

.service-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #00d4ff, #ff6b35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.service-item:hover {
  transform: translateY(-15px) rotateX(3deg);
  box-shadow: 0 25px 50px rgba(0, 212, 255, 0.25);
  border-color: var(--heading-color);
}

.service-item.featured {
  border-color: var(--accent-color);
  transform: scale(1.05) translateY(-5px);
  background: linear-gradient(135deg, rgba(255, 107, 53, 0.15) 0%, rgba(255, 107, 53, 0.05) 100%);
}

.service-item.featured::before {
  background: linear-gradient(90deg, #ff6b35, #ff8c42);
  opacity: 1;
}

.service-item.featured::after {
  content: 'DESTACADO';
  position: absolute;
  top: -15px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  padding: 8px 20px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1px;
}

.service-icon {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.service-icon i {
  font-size: 3.5rem;
  background: linear-gradient(135deg, #00d4ff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

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

.service-item h3 {
  font-size: 1.6rem;
  margin-bottom: 1.5rem;
  color: var(--heading-color);
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.service-item p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 2rem;
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

.service-features {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
  position: relative;
  z-index: 2;
  text-align: left;
}

.service-features li {
  padding: 8px 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  display: flex;
  align-items: center;
}

.service-features li i {
  color: var(--heading-color);
  margin-right: 10px;
  font-size: 1rem;
  flex-shrink: 0;
}

.service-btn {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  color: white;
  padding: 12px 30px;
  border-radius: 25px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  font-family: var(--default-font);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  display: inline-block;
  position: relative;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 212, 255, 0.3);
}

.service-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.5s;
}

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

.service-btn:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.4);
  color: white;
}

/*--------------------------------------------------------------
# FAQ Section - Accordion Design
--------------------------------------------------------------*/
.faq {
  padding: 100px 0;
  background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
  position: relative;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 20% 30%, rgba(0, 212, 255, 0.03) 0%, transparent 70%),
    radial-gradient(circle at 80% 70%, rgba(255, 107, 53, 0.03) 0%, transparent 70%);
}

.section-title {
  position: relative;
  z-index: 2;
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

.faq-item {
  margin-bottom: 2rem;
}

.faq-card {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 212, 255, 0.02) 100%);
  border-radius: 20px;
  padding: 30px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 212, 255, 0.15);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(15px);
}

.faq-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.faq-card:hover {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.15) 0%, rgba(0, 212, 255, 0.05) 100%);
  border-color: var(--heading-color);
  transform: translateY(-5px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
}

.faq-icon {
  color: var(--heading-color);
  font-size: 2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #00d4ff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

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

.faq-text h3 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
  font-weight: 700;
  position: relative;
  z-index: 2;
  line-height: 1.4;
}

.faq-text p {
  display: none;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin: 0;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
}

.faq-card.active {
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.2) 0%, rgba(0, 212, 255, 0.1) 100%);
  border-color: var(--heading-color);
  transform: scale(1.02);
}

.faq-card.active .faq-icon {
  transform: scale(1.1) rotate(10deg);
}

/*--------------------------------------------------------------
# Contact Section - Interactive Form Design
--------------------------------------------------------------*/
.contact {
  padding: 100px 0;
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: 
    radial-gradient(circle at 30% 20%, rgba(0, 212, 255, 0.05) 0%, transparent 70%),
    radial-gradient(circle at 70% 80%, rgba(255, 107, 53, 0.05) 0%, transparent 70%);
}

.section-title {
  position: relative;
  z-index: 2;
}

.info-item {
  margin-bottom: 2.5rem;
  padding: 30px 25px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 212, 255, 0.02) 100%);
  border-radius: 20px;
  border-left: 5px solid var(--heading-color);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  backdrop-filter: blur(15px);
  position: relative;
  overflow: hidden;
}

.info-item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

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

.info-item:hover {
  transform: translateX(10px) scale(1.02);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.15);
  border-left-color: var(--accent-color);
}

.info-item i {
  color: var(--heading-color);
  font-size: 2rem;
  margin-right: 1.5rem;
  flex-shrink: 0;
  background: linear-gradient(135deg, #00d4ff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transition: all 0.3s ease;
}

.info-item:hover i {
  transform: scale(1.2) rotate(5deg);
}

.info-item h4 {
  font-size: 1.2rem;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
  font-weight: 700;
  position: relative;
  z-index: 2;
}

.info-item p {
  margin: 0;
  color: var(--default-color);
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.php-email-form {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 25px;
  padding: 40px;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 212, 255, 0.2);
  position: relative;
  overflow: hidden;
}

.php-email-form::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.php-email-form:hover::before {
  opacity: 1;
}

.php-email-form input,
.php-email-form textarea {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
  border: 2px solid rgba(0, 212, 255, 0.2);
  border-radius: 15px;
  padding: 18px 20px;
  color: var(--default-color);
  font-family: var(--default-font);
  font-size: 1rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.php-email-form input:focus,
.php-email-form textarea:focus {
  outline: none;
  border-color: var(--heading-color);
  box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.15);
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.15) 0%, rgba(255, 255, 255, 0.08) 100%);
  transform: translateY(-2px);
}

.php-email-form input::placeholder,
.php-email-form textarea::placeholder {
  color: rgba(255, 255, 255, 0.6);
  font-weight: 400;
}

.php-email-form button {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border: none;
  padding: 18px 40px;
  border-radius: 30px;
  color: white;
  font-weight: 700;
  font-size: 1.1rem;
  font-family: var(--default-font);
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  position: relative;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.3);
}

.php-email-form button::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.5s;
}

.php-email-form button:hover::before {
  left: 100%;
}

.php-email-form button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 20px 40px rgba(0, 212, 255, 0.4);
}

/*--------------------------------------------------------------
# Footer - Modern Grid Design
--------------------------------------------------------------*/
.footer {
  background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
  padding: 80px 0 30px;
  border-top: 1px solid rgba(0, 212, 255, 0.2);
  position: relative;
}



.footer-info h3 {
  color: var(--heading-color);
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  font-weight: 800;
  background: linear-gradient(135deg, #00d4ff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.footer-info p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, rgba(0, 212, 255, 0.1), rgba(0, 212, 255, 0.05));
  color: var(--heading-color);
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: 1px solid rgba(0, 212, 255, 0.2);
  font-size: 1.2rem;
  position: relative;
  overflow: hidden;
}

.social-links a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #00d4ff, #ff6b35);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.social-links a:hover::before {
  opacity: 1;
}

.social-links a:hover {
  color: white;
  transform: translateY(-5px) scale(1.1);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
  border-color: var(--heading-color);
}

.social-links a i {
  position: relative;
  z-index: 2;
}

.footer-links h4 {
  color: var(--footer-heading);
  margin-bottom: 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  position: relative;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 30px;
  height: 3px;
  background: linear-gradient(90deg, #00d4ff, #ff6b35);
  border-radius: 2px;
}

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

.footer-links li {
  margin-bottom: 0.8rem;
  transition: all 0.3s ease;
}

.footer-links li:hover {
  transform: translateX(5px);
}

.footer-links a {
  color: var(--footer-text);
  transition: all 0.3s ease;
  text-decoration: none;
  font-size: 1rem;
  display: flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--footer-heading);
  text-decoration: none;
}

.footer-links i {
  color: var(--footer-heading);
  margin-right: 10px;
  font-size: 0.8rem;
  transition: all 0.3s ease;
}

.footer-links li:hover i {
  transform: scale(1.2);
}

.copyright {
  text-align: center;
  padding: 30px 0;
  border-top: 1px solid var(--footer-border);
  color: var(--footer-text);
  font-size: 1rem;
  position: relative;
  z-index: 2;
}

.credits {
  text-align: center;
  color: var(--footer-text);
  font-size: 0.9rem;
  margin-top: 10px;
  position: relative;
  z-index: 2;
}

.credits i {
  color: var(--accent-color);
  animation: heartbeat 2s ease-in-out infinite;
}

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

/*--------------------------------------------------------------
# Cookie Popup
--------------------------------------------------------------*/
#cookie-popup {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  background: linear-gradient(135deg, rgba(10, 10, 10, 0.95) 0%, rgba(26, 26, 26, 0.95) 100%);
  backdrop-filter: blur(25px);
  border: 1px solid rgba(0, 212, 255, 0.3);
  border-radius: 20px;
  padding: 25px;
  z-index: 9999;
  display: none;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  animation: slideInUp 0.5s ease-out;
}

.popup-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}

.popup-message p {
  margin: 0;
  color: rgba(255, 255, 255, 0.95);
  line-height: 1.6;
  font-size: 1rem;
}

.popup-message a {
  color: var(--heading-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.popup-message a:hover {
  color: var(--accent-color);
  text-decoration: none;
}

#cookie-popup button {
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  border: none;
  color: white;
  padding: 12px 25px;
  border-radius: 30px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  font-family: var(--default-font);
  font-size: 1rem;
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
  position: relative;
  overflow: hidden;
}

#cookie-popup button::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.5s;
}

#cookie-popup button:hover::before {
  left: 100%;
}

#cookie-popup button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.4);
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
}

/*--------------------------------------------------------------
# Back to Top
--------------------------------------------------------------*/
.back-to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 996;
  background: linear-gradient(135deg, #00d4ff, #0099cc);
  width: 50px;
  height: 50px;
  border-radius: 15px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  color: white;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
  border: 1px solid rgba(0, 212, 255, 0.2);
  backdrop-filter: blur(10px);
}

.back-to-top:hover {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  transform: translateY(-5px) scale(1.1);
  color: white;
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
  border-color: var(--accent-color);
}

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

.back-to-top:hover::before {
  opacity: 1;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  overflow: hidden;
  background: linear-gradient(135deg, var(--background-color) 0%, #1a1a1a 100%);
  transition: all 0.8s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  width: 100%;
  height: 100vh;
  backdrop-filter: blur(10px);
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 3px solid rgba(0, 212, 255, 0.3);
  border-color: var(--heading-color) transparent var(--heading-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1s linear infinite;
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.3);
}

#preloader:after {
  content: "Compartir Creativo";
  position: fixed;
  top: calc(50% + 50px);
  left: 50%;
  transform: translateX(-50%);
  color: var(--heading-color);
  font-size: 1.2rem;
  font-weight: 600;
  letter-spacing: 2px;
  animation: preloaderPulse 2s ease-in-out infinite;
}

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

@keyframes preloaderPulse {
  0%, 100% { opacity: 0.7; }
  50% { opacity: 1; }
}

/*--------------------------------------------------------------
# Enhanced Animations & Effects
--------------------------------------------------------------*/
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/*--------------------------------------------------------------
# Enhanced Section Transitions
--------------------------------------------------------------*/
.section {
  position: relative;
  overflow: hidden;
}

.section::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.3), transparent);
}

/*--------------------------------------------------------------
# Enhanced Button Styles
--------------------------------------------------------------*/
.btn {
  position: relative;
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  border: none;
  font-weight: 600;
  letter-spacing: 0.5px;
}

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

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

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

.btn-outline-primary:hover {
  background: var(--heading-color);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(0, 212, 255, 0.3);
}

.btn-secondary {
  background: linear-gradient(135deg, #ff6b35, #ff8c42);
  color: white;
  border: none;
  padding: 12px 25px;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.btn-secondary:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
  color: white;
}

.btn-lg {
  padding: 15px 35px;
  font-size: 1.1rem;
  border-radius: 30px;
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.9rem;
  border-radius: 20px;
}

.btn-rounded {
  border-radius: 50px;
}

.btn-block {
  display: block;
  width: 100%;
}

/*--------------------------------------------------------------
# Enhanced Form Elements
--------------------------------------------------------------*/
.form-control {
  transition: all 0.3s ease;
  font-family: var(--default-font);
}

.form-control:focus {
  transform: translateY(-2px);
}

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

.form-label {
  color: var(--heading-color);
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: block;
}

.form-control:focus + .form-label {
  color: var(--accent-color);
}

.form-control:focus {
  border-color: var(--heading-color);
  box-shadow: 0 0 0 3px rgba(0, 212, 255, 0.1);
}

.form-control.is-valid {
  border-color: #28a745;
  box-shadow: 0 0 0 3px rgba(40, 167, 69, 0.1);
}

.form-control.is-invalid {
  border-color: #dc3545;
  box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.invalid-feedback {
  color: #dc3545;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

.valid-feedback {
  color: #28a745;
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/*--------------------------------------------------------------
# Enhanced Card Hover Effects
--------------------------------------------------------------*/
.hover-card {
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-card:hover {
  transform: translateY(-10px) scale(1.02);
}

/*--------------------------------------------------------------
# Utility Classes
--------------------------------------------------------------*/
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 1rem; }
.mb-4 { margin-bottom: 1.5rem; }
.mb-5 { margin-bottom: 3rem; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 0.25rem; }
.mt-2 { margin-top: 0.5rem; }
.mt-3 { margin-top: 1rem; }
.mt-4 { margin-top: 1.5rem; }
.mt-5 { margin-top: 3rem; }

.p-0 { padding: 0; }
.p-1 { padding: 0.25rem; }
.p-2 { padding: 0.5rem; }
.p-3 { padding: 1rem; }
.p-4 { padding: 1.5rem; }
.p-5 { padding: 3rem; }

.d-none { display: none; }
.d-block { display: block; }
.d-flex { display: flex; }
.d-inline { display: inline; }
.d-inline-block { display: inline-block; }

.justify-content-center { justify-content: center; }
.justify-content-start { justify-content: flex-start; }
.justify-content-end { justify-content: flex-end; }
.justify-content-between { justify-content: space-between; }
.justify-content-around { justify-content: space-around; }

.align-items-center { align-items: center; }
.align-items-start { align-items: flex-start; }
.align-items-end { align-items: flex-end; }

.w-100 { width: 100%; }
.h-100 { height: 100%; }

.rounded { border-radius: 0.375rem; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.rounded-2xl { border-radius: 1rem; }

.shadow { box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06); }
.shadow-lg { box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); }
.shadow-xl { box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); }

/*--------------------------------------------------------------
# Enhanced Typography
--------------------------------------------------------------*/
.text-gradient {
  background: linear-gradient(135deg, #00d4ff, #ff6b35);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.text-glow {
  text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.text-shadow {
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/*--------------------------------------------------------------
# Enhanced Borders
--------------------------------------------------------------*/
.border-gradient {
  border: 2px solid;
  border-image: linear-gradient(135deg, #00d4ff, #ff6b35) 1;
}

.border-glow {
  border: 1px solid rgba(0, 212, 255, 0.3);
  box-shadow: 0 0 10px rgba(0, 212, 255, 0.2);
}

/*--------------------------------------------------------------
# Enhanced Backgrounds
--------------------------------------------------------------*/
.bg-pattern {
  background-image: 
    radial-gradient(circle at 25% 25%, rgba(0, 212, 255, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 75% 75%, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
}



/*--------------------------------------------------------------
# Scroll Animations
--------------------------------------------------------------*/
[data-aos] {
  transition-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

[data-aos="fade-up"] {
  transition-duration: 0.8s;
}

[data-aos="fade-left"] {
  transition-duration: 0.8s;
}

[data-aos="fade-right"] {
  transition-duration: 0.8s;
}

[data-aos="zoom-in"] {
  transition-duration: 0.6s;
}

[data-aos="flip-left"] {
  transition-duration: 1s;
}

[data-aos="flip-right"] {
  transition-duration: 1s;
}

/*--------------------------------------------------------------
# Enhanced Hover Effects
--------------------------------------------------------------*/
.hover-lift {
  transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.hover-lift:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.2);
}

.hover-glow {
  transition: all 0.3s ease;
}

.hover-glow:hover {
  box-shadow: 0 0 20px rgba(0, 212, 255, 0.4);
}

.hover-scale {
  transition: all 0.3s ease;
}

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

/*--------------------------------------------------------------
# Advanced Animations
--------------------------------------------------------------*/
@keyframes bounce {
  0%, 20%, 53%, 80%, 100% {
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    transform: translate3d(0, -30px, 0);
  }
  70% {
    transform: translate3d(0, -15px, 0);
  }
  90% {
    transform: translate3d(0, -4px, 0);
  }
}

@keyframes shake {
  0%, 100% {
    transform: translateX(0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translateX(-10px);
  }
  20%, 40%, 60%, 80% {
    transform: translateX(10px);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 40px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.animate-bounce { animation: bounce 1s infinite; }
.animate-shake { animation: shake 0.5s ease-in-out; }
.animate-fadeInUp { animation: fadeInUp 0.6s ease-out; }
.animate-slideInLeft { animation: slideInLeft 0.6s ease-out; }
.animate-slideInRight { animation: slideInRight 0.6s ease-out; }

/*--------------------------------------------------------------
# Loading States
--------------------------------------------------------------*/
.loading-state {
  opacity: 0.6;
  pointer-events: none;
}

.loading-state::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid var(--heading-color);
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

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

/*--------------------------------------------------------------
# Disclaimer Box Styling
--------------------------------------------------------------*/
.disclaimer-box {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
  border-radius: 20px;
  padding: 25px;
  border: 1px solid rgba(0, 212, 255, 0.15);
  backdrop-filter: blur(15px);
  transition: all 0.3s ease;
}

.disclaimer-box:hover {
  border-color: var(--heading-color);
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 212, 255, 0.1);
}

.disclaimer-box p {
  margin: 0;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

.disclaimer-box strong {
  color: var(--heading-color);
}

/*--------------------------------------------------------------
# Dark Theme Enhancements
--------------------------------------------------------------*/
.dark-theme {
  --background-color: #000000;
  --surface-color: #0a0a0a;
  --text-color: #ffffff;
  --border-color: rgba(0, 212, 255, 0.2);
}

.dark-theme .section {
  background: linear-gradient(135deg, #000000 0%, #0a0a0a 100%);
}

.dark-theme .card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(0, 212, 255, 0.1);
}

/*--------------------------------------------------------------
# Accessibility Enhancements
--------------------------------------------------------------*/
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

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

.high-contrast {
  --background-color: #000000;
  --text-color: #ffffff;
  --heading-color: #ffff00;
  --accent-color: #ff6600;
}

/*--------------------------------------------------------------
# Print Styles
--------------------------------------------------------------*/
@media print {
  .header,
  .footer,
  .back-to-top,
  #cookie-popup {
    display: none !important;
  }
  
  .section {
    page-break-inside: avoid;
  }
  
  body {
    background: white !important;
    color: black !important;
  }
}

/*--------------------------------------------------------------
# Content Pages Styling
--------------------------------------------------------------*/
.content-section {
  background: rgba(255, 255, 255, 0.02);
  border-radius: 20px;
  padding: 40px;
  border: 1px solid rgba(0, 212, 255, 0.1);
  backdrop-filter: blur(10px);
}

.content-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.content-section h2 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  color: var(--heading-color);
  border-left: 4px solid var(--accent-color);
  padding-left: 15px;
}

.content-section h3 {
  font-size: 1.3rem;
  margin-bottom: 0.8rem;
  color: var(--heading-color);
}

.content-section p {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-section ul {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.content-section li {
  margin-bottom: 0.5rem;
}

.content-section .lead {
  font-size: 1.2rem;
  color: var(--accent-color);
  font-weight: 500;
}

.content-section a {
  color: var(--heading-color);
  text-decoration: underline;
  transition: all 0.3s ease;
}

.content-section a:hover {
  color: var(--accent-color);
}

/*--------------------------------------------------------------
# Responsive Design
--------------------------------------------------------------*/
@media (max-width: 991px) {
  .header {
    padding: 15px 0;

  }
  
  .header .logo h3 {
    font-size: 1.5rem;
  }
  
  .navmenu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: linear-gradient(135deg, var(--nav-mobile-background-color) 0%, rgba(0, 0, 0, 0.95) 100%);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 999;
    padding: 60px 0 0 0;
    backdrop-filter: blur(20px);
    border-left: 1px solid rgba(0, 212, 255, 0.2);
    overflow-y: auto;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
    display: block;
  }

  /* Mobile menu overlay */
  .navmenu::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    visibility: hidden;
  }

  .navmenu.active::before {
    opacity: 1;
    visibility: visible;
  }

  /* Force hide navmenu completely when not active */
  .navmenu:not(.active) {
    max-width: 0;
    overflow: hidden;
    clip-path: polygon(100% 0, 100% 100%, 100% 100%, 100% 0);
    width: 0;
    padding: 0;
    margin: 0;
    border: none;
  }

  .navmenu.active {
    right: 0;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.5);
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .navmenu ul {
    display: block;
    padding: 0 20px;
    margin: 0;
  }

  .navmenu li {
    margin: 15px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .navmenu li:last-child {
    border-bottom: none;
  }

  .navmenu a {
    padding: 15px 20px;
    border-radius: 10px;
    margin: 5px 0;
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
  }

  .navmenu a:hover {
    background: rgba(0, 212, 255, 0.15);
    transform: translateX(10px);
    color: var(--nav-hover-color);
  }

  .mobile-nav-toggle {
    display: block !important;
    font-size: 28px;
    cursor: pointer;
    color: var(--nav-color);
    transition: all 0.3s ease;
    background: none;
    border: none;
    padding: 0;
    margin-left: 20px;
  }

  .mobile-nav-toggle:hover {
    color: var(--nav-hover-color);
    transform: scale(1.1);
  }

  /* Close button for mobile menu */
  .navmenu .close-menu {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 24px;
    color: var(--nav-color);
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
  }

  .navmenu .close-menu:hover {
    color: var(--nav-hover-color);
    transform: scale(1.1);
  }

  .hero h2 {
    font-size: 2.5rem;
  }
}

@media (max-width: 768px) {
  .header .logo h3 {
    font-size: 1.4rem;
  }
  
  .hero {
    padding: 80px 0 60px;
  }

  .hero h2 {
    font-size: 2rem;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .service-item {
    margin-bottom: 2rem;
  }
  
  .service-icon i {
    font-size: 3rem;
  }

  .popup-content {
    flex-direction: column;
    text-align: center;
  }
  
  .disclaimer-box {
    padding: 20px;
  }

  /* Mobile navigation improvements */
  .navmenu {
    width: 280px;
    clip-path: polygon(100% 0, 100% 100%, 100% 100%, 100% 0);
  }

  .navmenu.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  .navmenu a {
    padding: 12px 15px;
    font-size: 1rem;
  }

  /* Footer improvements for mobile */
  .footer-links {
    margin-bottom: 2rem;
  }

  .footer-links h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
  }

  .footer-links ul {
    margin-bottom: 0;
  }

  .footer-links li {
    margin-bottom: 0.6rem;
  }

  .footer-links a {
    font-size: 0.95rem;
  }
}

@media (max-width: 480px) {
  .header .logo h3 {
    font-size: 1.2rem;
  }
  
  .hero h2 {
    font-size: 1.8rem;
  }

  .btn-primary {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .icon-box {
    padding: 25px 20px;
  }
  
  .service-item {
    padding: 30px 25px;
  }
  
  .service-icon i {
    font-size: 2.5rem;
  }
  
  .faq-card {
    padding: 20px;
  }
  
  .content-section {
    padding: 25px;
  }
  
  .disclaimer-box {
    padding: 15px;
  }
  
  #cookie-popup {
    left: 10px;
    right: 10px;
    padding: 20px;
  }
  
  .section-title h2 {
    font-size: 1.8rem;
  }
  
  .service-item h3 {
    font-size: 1.5rem;
  }
  
  .footer-info h3 {
    font-size: 1.5rem;
  }

  /* Mobile navigation for very small screens */
  .navmenu {
    width: 100%;
    right: -100%;
    visibility: hidden;
    opacity: 0;
    transform: translateX(100%);
    pointer-events: none;
  }

  .navmenu.active {
    right: 0;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
    pointer-events: auto;
  }

  .navmenu ul {
    padding: 0 15px;
  }

  .navmenu a {
    padding: 15px;
    font-size: 1.1rem;
  }

  /* Footer for very small screens */
  .footer-links {
    text-align: center;
    margin-bottom: 1.5rem;
  }

  .footer-links h4 {
    font-size: 1.1rem;
    margin-bottom: 0.8rem;
  }

  .footer-links ul {
    display: inline-block;
    text-align: left;
  }

  .footer-links li {
    margin-bottom: 0.5rem;
  }

  .footer-links a {
    font-size: 0.9rem;
  }

  /* Additional mobile nav fixes */
  .navmenu {
    clip-path: polygon(100% 0, 100% 100%, 100% 100%, 100% 0);
  }

  .navmenu.active {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  }

  /* Force hide navmenu on very small screens */
  .navmenu {
    max-width: 0;
    overflow: hidden;
  }

  .navmenu.active {
    max-width: 100%;
  }
}