@import url('https://fonts.googleapis.com/css2?family=Source+Sans+3:wght@300;400;600;700&display=swap');

:root {
  --color-white: #FFFFFF;
  --color-gold: #F0E68C;
  --color-green: #98FB98;
  --color-pastel: #EEE8AA;
  --color-text: #333333;
  --neon-blue: #00f0ff;
  --electric-purple: #8a2be2;
  --space-black: #0f0f0f;
  --pure-white: #ffffff;
  --glass-bg: rgba(255, 255, 255, 0.1);
  --glass-border: rgba(255, 255, 255, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Source Sans 3', sans-serif;
}
::-webkit-scrollbar{
  width: .8rem;
}
::-webkit-scrollbar-track{
  background: var(--electric-purple);
}
::-webkit-scrollbar-thumb{
background: var(--neon-blue);
}
option{
  background: var(--color-text);
}
body {
  background: var(--space-black);
  color: var(--pure-white);
  overflow-x: hidden;
}
label{
  color: var(--color-text);
}
.text-matrix{
  color: var(--color-text);
}
img {
  max-width: 100%;
  height: auto;
}
/* Header & Navigation */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  padding: 1rem;
}

.main-nav {
  backdrop-filter: blur(10px);
  background: var(--glass-bg);
  border: 1px solid var(--glass-border);
  border-radius: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: max(2rem, 5%);
  padding-right: max(2rem, 5%);
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.nav-links {
  display: flex;
  gap: 2rem;
}

.nav-links a {
  color: var(--pure-white);
  text-decoration: none;
  transition: all 0.3s ease;
}

.nav-links a:hover {
  color: var(--neon-blue);
}

.demo-btn {
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
  border: none;
  border-radius: 2rem;
  color: var(--pure-white);
  padding: 0.8rem 1.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.demo-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.5);
}

.menu-toggle {
  display: none;
}

/* Hero Section - Optimized */
.hero {
  position: relative;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background: radial-gradient(circle at center, #1a1a2e, var(--space-black));
  padding: 0;
  z-index: 1;
}

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

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}

.hero-content h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  line-height: 1.2;
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 0 10px rgba(0, 240, 255, 0.2);
  margin: 0;
  max-width: 800px;
}

.hero-content p {
  font-size: clamp(1rem, 2vw, 1.4rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.9);
  margin: 0;
  max-width: 600px;
}

.cta-buttons {
  display: flex;
  gap: 1.5rem;
  margin: 0;
  justify-content: center;
  flex-wrap: wrap;
}

.cta-btn {
  text-decoration: none;
  padding: 1rem 2rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 200px;
}

.primary-btn {
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
  color: var(--pure-white);
  /* border: 2px solid transparent; */
}

.primary-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.2);
}

.secondary-btn {
  background: transparent;
  color: var(--pure-white);
  border: 2px solid var(--neon-blue);
}

.secondary-btn:hover {
  background: rgba(0, 240, 255, 0.1);
  transform: translateY(-2px);
}

/* Globe Container - Optimized */
.globe-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}

#globe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* Particles - Optimized */
.particle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  will-change: transform;
}

/* Data Flow Lines - Optimized */
.data-flow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

.data-line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(0, 240, 255, 0.2),
    transparent
  );
  animation: dataFlow 8s linear infinite;
}

@keyframes dataFlow {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  .data-line {
    animation: none;
  }
  
  .particle {
    transition: none;
  }
}

/* Mobile Optimizations */
@media (max-width: 768px) {
  .hero {
    height: calc(100vh - 60px); /* Account for mobile browser chrome */
  }
  
  .hero-content {
    padding: 1rem;
  }
  
  .hero-content h1 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
  }
  
  .hero-content p {
    font-size: clamp(0.9rem, 1.8vw, 1.2rem);
  }
  
  .cta-buttons {
    flex-direction: column;
    width: 100%;
    max-width: 300px;
  }
}

/* Container Width Adjustments */
.main-nav,
.hero-content,
.about-container,
.services-container,
.highlights-container,
.team-grid,
.contact-form,
.footer-container,
.checkout-page {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
  padding-left: max(2rem, 5%);
  padding-right: max(2rem, 5%);
}

@media (max-width: 1200px) {
  .main-nav,
  .hero-content,
  .about-container,
  .services-container,
  .highlights-container,
  .team-grid,
  .contact-form,
  .footer-container,
  .checkout-page {
    width: 90%;
  }
}

@media (max-width: 768px) {
  .main-nav,
  .hero-content,
  .about-container,
  .services-container,
  .highlights-container,
  .team-grid,
  .contact-form,
  .footer-container,
  .checkout-page {
    width: 95%;
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

/* Enhanced Highlight Section */
.highlights {
  position: relative;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.05), transparent);
  padding: 8rem 2rem;
}

.highlights::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      rgba(0, 240, 255, 0.03) 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      rgba(138, 43, 226, 0.03) 1px,
      transparent 3px
    );
  pointer-events: none;
}

.highlights-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.highlight-card {
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 3rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.highlight-card::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(
    circle at center,
    rgba(0, 240, 255, 0.1),
    transparent 70%
  );
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.highlight-card:hover {
  transform: translateY(-15px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 240, 255, 0.2);
}

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

.icon-wrapper {
  position: relative;
  width: 80px;
  height: 80px;
  margin: 0 auto 2rem;
}

.icon {
  width: 100%;
  height: 100%;
  position: relative;
  z-index: 1;
}

.icon svg {
  width: 100%;
  height: 100%;
  fill: var(--neon-blue);
  filter: drop-shadow(0 0 5px rgba(0, 240, 255, 0.5));
  transition: all 0.3s ease;
}

.icon-bg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  background: radial-gradient(
    circle at center,
    rgba(0, 240, 255, 0.1),
    transparent 70%
  );
  animation: pulse 2s infinite;
}

.highlight-card h3 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.highlight-card p {
  font-size: 1.1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
}

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

/* About Section */
.about {
  padding: 8rem 2rem;
  background: var(--space-black);
  position: relative;
  overflow: hidden;
}

.about::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at top right, 
      rgba(0, 240, 255, 0.03),
      transparent 70%),
    radial-gradient(circle at bottom left, 
      rgba(138, 43, 226, 0.03),
      transparent 70%);
  pointer-events: none;
}

.about-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.section-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 4rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-blue), var(--electric-purple));
  margin: 1rem auto;
  border-radius: 2px;
}

.about-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-text {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.intro-text {
  font-size: 1.2rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 3rem;
}

.achievements {
  display: grid;
  gap: 2rem;
}

.achievement-item {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 1rem;
  transition: all 0.3s ease;
}

.achievement-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.05);
}

.achievement-icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(0, 240, 255, 0.1), rgba(138, 43, 226, 0.1));
  border-radius: 50%;
  padding: 0.8rem;
}

.achievement-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--neon-blue);
  stroke-width: 1.5;
}

.achievement-text h4 {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
  color: var(--pure-white);
}

.achievement-text p {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.about-image {
  position: relative;
  border-radius: 1.5rem;
  overflow: hidden;
  opacity: 0;
  transform: translateX(30px);
  animation: fadeInRight 1s ease 0.3s forwards;
  max-width: 600px;
  /* margin: 0 auto; */
}

.image-container {
  aspect-ratio: 4/3;
  /* background-image: url('./img/about.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover; */
  filter: grayscale(100%);
}


.pattern-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: 
    linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,0.1) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,0.1) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,0.1) 75%);
  background-size: 20px 20px;
  opacity: 0.1;
}

.gradient-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, 
    rgba(0, 240, 255, 0.2),
    rgba(138, 43, 226, 0.2)
  );
}

.about-footer {
  text-align: center;
  margin-top: 4rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease 0.6s forwards;
}

.final-message {
  font-style: italic;
  font-size: 1.1rem;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.8);
  max-width: 800px;
  margin: 0 auto 2rem;
}

.about-slide-img{
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  position: relative;
  box-shadow: 0 50px 20px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  user-select: none;
}

.about-slide-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.overlay-tuor {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #0f2027, transparent, transparent);
  background-repeat: no-repeat;
  background-size: cover;
}
.overlay-tuor span {
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  padding: 7px 18px;
  margin: 10px;
  border-radius: 20px;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 700;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.095);
  box-shadow: inset 2px -2px 20px rgba(214, 214, 214, 0.2),
  inset -3px 3px 3px rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(74px);
}
.overlay-tuor h2 {
  position: absolute;
  bottom: 0;
  left: 0;
  color: #fff;
  font-weight: 400;
  font-size: 1.1rem;
  line-height: 1.4;
  margin: 0 0 20px 20px;
}
.contact-btn {
  background: var(--electric-purple);
  color: var(--pure-white);
  padding: 1rem 2.5rem;
  border: none;
  border-radius: 2rem;
  font-size: 1.1rem;
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-btn:hover {
  background: var(--neon-blue);
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 240, 255, 0.2);
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Timeline styles */
.timeline {
  max-width: 800px;
  margin: 4rem auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 50%;
  width: 2px;
  height: 100%;
  background: linear-gradient(to bottom, var(--neon-blue), var(--electric-purple));
}

.timeline-entry {
  position: relative;
  margin: 2rem 0;
  width: calc(50% - 2rem);
}

.timeline-entry:nth-child(odd) {
  left: 0;
}

.timeline-entry:nth-child(even) {
  left: calc(50% + 2rem);
}

.timeline-content {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

/* FAQ Section - Enhanced */
.faq {
  position: relative;
  padding: 8rem 2rem;
  background: radial-gradient(circle at center, rgba(0, 240, 255, 0.05), transparent);
  overflow: hidden;
}

.faq::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    repeating-linear-gradient(
      90deg,
      transparent,
      rgba(0, 240, 255, 0.02) 1px,
      transparent 3px
    ),
    repeating-linear-gradient(
      0deg,
      transparent,
      rgba(138, 43, 226, 0.02) 1px,
      transparent 3px
    );
  pointer-events: none;
}

.faq-container {
  max-width: 1200px;
  margin: 0 auto;
  width: 90%;
  position: relative;
  z-index: 1;
}

.faq-title {
  text-align: center;
  font-size: clamp(2rem, 5vw, 3.5rem);
  margin-bottom: 4rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  position: relative;
}

.faq-title::after {
  content: '';
  display: block;
  width: 100px;
  height: 3px;
  background: linear-gradient(90deg, var(--neon-blue), var(--electric-purple));
  margin: 1rem auto;
  border-radius: 2px;
}

.faq-grid {
  display: grid;
  gap: 1.5rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1s ease forwards;
}

.faq-item {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1rem;
  overflow: hidden;
  transition: all 0.3s ease;
}

.faq-item:hover {
  transform: translateX(10px);
  background: rgba(255, 255, 255, 0.05);
}

.faq-question {
  padding: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
  transition: all 0.3s ease;
}

.faq-question h3 {
  font-size: 1.2rem;
  color: var(--pure-white);
  margin: 0;
  padding-right: 2rem;
}

.faq-toggle {
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform 0.3s ease;
}

.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--neon-blue);
  border-radius: 2px;
  transition: all 0.3s ease;
}

.faq-toggle::before {
  width: 2px;
  height: 100%;
  left: 50%;
  transform: translateX(-50%);
}

.faq-toggle::after {
  width: 100%;
  height: 2px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-item.active .faq-toggle::before {
  transform: translateX(-50%) rotate(90deg);
  opacity: 0;
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  padding: 0 1.5rem;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  line-height: 1.6;
}

.faq-item.active .faq-answer {
  max-height: 500px;
  padding: 1rem 1.5rem 1.5rem;
}

.faq-item.active .faq-question {
  background: rgba(255, 255, 255, 0.05);
}

@media (max-width: 768px) {
  .faq {
    padding: 4rem 1rem;
  }
  
  .faq-container {
    width: 95%;
  }
  
  .faq-title {
    font-size: 2rem;
    margin-bottom: 2rem;
  }
  
  .faq-question h3 {
    font-size: 1.1rem;
  }
  
  .faq-answer {
    font-size: 1rem;
  }
}

/* Team Section */
.team {
  display: none;
}

.team-grid {
  display: none;
}

.team-card {
  display: none;
}

.team-photo {
  display: none;
}

.team-info {
  display: none;
}

/* Contact Section */
.contact {
  padding: 4rem 2rem;
  position: relative;
}
.contact .map {
  position: absolute;
  height: 75%;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 0;
  opacity: 0.25;
}
.contact-form {
  max-width: 600px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  border-radius: 1rem;
  padding: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

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

.form-group label {
  display: block;
  margin-bottom: 0.5rem;
  color: var(--color-white);
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 0.8rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 0.5rem;
  color: var(--pure-white);
}

.form-group textarea {
  height: 150px;
  resize: vertical;
}

.submit-btn {
  width: 100%;
  padding: 1rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
  border: none;
  border-radius: 0.5rem;
  color: var(--pure-white);
  cursor: pointer;
  transition: all 0.3s ease;
}

.submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 20px rgba(0, 240, 255, 0.3);
}
@media (max-width: 1000px) {
  .contact .map{
    height: 50%;
  }
}
@media (max-width: 750px) {
  .contact .map{
    height:0 ;
  }
}

/* Services Section - Updated for Better Responsiveness */
.services {
  padding: 8rem 2rem;
  background: var(--space-black);
  position: relative;
  overflow: hidden;
}

.services::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at top right, 
      rgba(0, 240, 255, 0.03),
      transparent 70%),
    radial-gradient(circle at bottom left, 
      rgba(138, 43, 226, 0.03),
      transparent 70%);
  pointer-events: none;
}

.services-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 4rem;
}

.service-card {
  display: flex;
  flex-direction: column;
  background: linear-gradient(135deg, 
    rgba(255, 255, 255, 0.05),
    rgba(255, 255, 255, 0.02));
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 1.5rem;
  padding: 2rem;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  height: 100%;
  min-height: 400px;
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 
    0 20px 40px rgba(0, 0, 0, 0.3),
    0 0 20px rgba(0, 240, 255, 0.2);
}

.service-icon {
  width: 60px;
  height: 60px;
  margin: 0 auto 1.5rem;
}

.service-icon svg {
  width: 100%;
  height: 100%;
  stroke: var(--neon-blue);
  stroke-width: 1.5;
  transition: all 0.3s ease;
}

.service-content {
  display: flex;
  flex-direction: column;
  flex: 1;
  text-align: center;
}

.service-title {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 600;
  line-height: 1.3;
}

.service-description {
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2rem;
  flex-grow: 1;
}

.service-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin-top: auto;
}

.service-btn {
  padding: 0.8rem 1.5rem;
  border-radius: 2rem;
  font-size: clamp(0.875rem, 1.5vw, 1rem);
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  flex: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.learn-more-btn {
  background: transparent;
  color: var(--neon-blue);
  border: 2px solid var(--neon-blue);
  position: relative;
  overflow: hidden;
}

.learn-more-btn:hover {
  background: rgba(0, 240, 255, 0.1);
  box-shadow: 0 0 15px rgba(0, 240, 255, 0.3);
}

.buy-btn {
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
  color: var(--pure-white);
  border: none;
  position: relative;
  overflow: hidden;
}

.buy-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
}

/* Responsive Design for Services Section */
@media (max-width: 1200px) {
  .service-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 992px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .services {
    padding: 6rem 1.5rem;
  }
  
  .service-card {
    min-height: 350px;
  }
}

@media (max-width: 768px) {
  .service-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .service-card {
    padding: 1.5rem;
    min-height: 300px;
  }
  
  .service-buttons {
    flex-direction: column;
  }
  
  .service-btn {
    width: 100%;
  }
}

@media (max-width: 576px) {
  .service-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .services {
    padding: 4rem 1rem;
  }
  
  .service-card {
    min-height: auto;
  }
  
  .service-icon {
    width: 50px;
    height: 50px;
  }
  
  .service-title {
    font-size: 1.25rem;
  }
  
  .service-description {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .nav-links {
    position: fixed;
    top: 74px; /* um pouco abaixo do header */
    left: 0;
    width: 100%;
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 1rem;
    background: var(--color-text);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 20px;
    padding: 20px 0;
    
    /* Efeito de transição suave */
    transform: translateY(-100%);
    opacity: 0;
    visibility: hidden;
    transition: transform 0.3s ease, opacity 0.3s ease, visibility 0.3s ease;
  }
  .nav-links.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .nav-links a {
    font-size: 20px;
    margin: 0;
  }
  
  .nav-links a:hover {
    color: #b8860b; /* Tom dourado para hover */
  }
  .menu-toggle {
    display: block;
    z-index: 1001; /* acima do nav-links */
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    
    font-size: 18px;
    z-index: 101;
  }

  .menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--pure-white);
    margin: 5px 0;
    transition: all 0.3s ease;
  }
  
}

/* Footer Styles */
.footer {
  position: relative;
  background: var(--space-black);
  padding: 4rem 0 0;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: 
    radial-gradient(circle at top right, 
      rgba(0, 240, 255, 0.03),
      transparent 70%),
    radial-gradient(circle at bottom left, 
      rgba(138, 43, 226, 0.03),
      transparent 70%);
  pointer-events: none;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 3rem;
  position: relative;
  z-index: 1;
  padding-bottom: 3rem;
}

.footer-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-logo {
  margin-bottom: 1rem;
}

.footer-slogan {
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer h4 {
  color: var(--pure-white);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 1rem;
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.footer-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer-nav a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-nav a:hover {
  color: var(--neon-blue);
  transform: translateX(5px);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: all 0.3s ease;
}

.footer-contact-item:hover {
  color: var(--neon-blue);
}

.footer-icon {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.social-links {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
}

.social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-link svg {
  width: 20px;
  height: 20px;
  fill: rgba(255, 255, 255, 0.7);
  transition: all 0.3s ease;
}

.social-link:hover {
  background: var(--neon-blue);
  transform: translateY(-3px);
}

.social-link:hover svg {
  fill: var(--pure-white);
}

.copyright-container {
  width: 100%;
  padding: 2rem 0;
  text-align: center;
  position: relative;
  margin-top: 2rem;
}

.copyright-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--neon-blue),
    var(--electric-purple),
    transparent
  );
}

.copyright {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.legal-links {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  align-items: center;
}

.legal-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
  font-size: 0.85rem;
}

.legal-links a:hover {
  color: var(--neon-blue);
}

.separator {
  color: rgba(255, 255, 255, 0.3);
}

/* Responsive Footer */
@media (max-width: 1200px) {
  .footer-container {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 3rem 1.5rem 0;
  }

  .footer-container {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding-bottom: 2rem;
  }

  .copyright-container {
    padding: 1.5rem 0;
    margin-top: 1.5rem;
  }

  .legal-links {
    flex-direction: column;
    gap: 0.75rem;
  }

  .separator {
    display: none;
  }
}

@media (max-width: 480px) {
  .legal-links {
    flex-direction: column;
    gap: 0.5rem;
  }

  .separator {
    display: none;
  }
}

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--neon-blue), var(--electric-purple));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 5px 15px rgba(0, 240, 255, 0.3);
  transition: all 0.3s ease;
  z-index: 1000;
}

.whatsapp-float svg {
  width: 30px;
  height: 30px;
  fill: var(--pure-white);
}

.whatsapp-float:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 240, 255, 0.4);
}

h1, h2, h3 {
  max-width: 100%;
  word-wrap: break-word;
}