:root {
  --bg-color: #0a0a0a;
  --text-color: #ffffff;
  --text-secondary: #a0a0a0;
  --primary-accent: #00ff88; /* Neon Green */
  --secondary-accent: #7000ff; /* Deep Purple */
  --glass-bg: rgba(255, 255, 255, 0.05);
  --glass-border: rgba(255, 255, 255, 0.1);
  --glass-blur: 10px;
  --font-main: "Outfit", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  background-color: var(--bg-color);
  color: var(--text-color);
  font-family: var(--font-main);
  overflow-x: hidden;
  line-height: 1.6;
}

/* Background Effects */
.background-globes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  overflow: hidden;
}

.globe {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.4;
}

.globe-1 {
  width: 300px;
  height: 300px;
  background: var(--primary-accent);
  top: -50px;
  left: -50px;
  animation: float 10s infinite ease-in-out;
}

.globe-2 {
  width: 400px;
  height: 400px;
  background: var(--secondary-accent);
  bottom: -100px;
  right: -100px;
  animation: float 15s infinite ease-in-out reverse;
}

.globe-3 {
  width: 200px;
  height: 200px;
  background: #00ccff;
  top: 40%;
  left: 40%;
  animation: pulse 8s infinite ease-in-out;
}

@keyframes float {
  0%,
  100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(30px, 50px);
  }
}

@keyframes pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.3;
  }
  50% {
    transform: scale(1.2);
    opacity: 0.5;
  }
}

/* Container */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3 {
  font-weight: 700;
  line-height: 1.2;
}

.gradient-text {
  background: linear-gradient(90deg, var(--primary-accent), #00ccff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.section-title {
  font-size: 2.5rem;
  text-align: center;
  margin-bottom: 3rem;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 20%;
  width: 60%;
  height: 3px;
  background: var(--primary-accent);
  border-radius: 2px;
}

/* Buttons */
.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.btn-primary {
  background: var(--primary-accent);
  color: #000;
  box-shadow: 0 0 15px rgba(0, 255, 136, 0.3);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 25px rgba(0, 255, 136, 0.5);
}

.btn-secondary {
  background: transparent;
  border: 2px solid var(--text-color);
  color: var(--text-color);
  margin-left: 15px;
}

.btn-secondary:hover {
  background: var(--text-color);
  color: #000;
}

/* Header */
.glass-header {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 10, 10, 0.7);
  backdrop-filter: blur(var(--glass-blur));
  border-bottom: 1px solid var(--glass-border);
  padding: 15px 0;
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-color);
  font-size: 1.5rem;
  font-weight: 700;
  gap: 10px;
}

.logo img {
  height: 40px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 30px;
  align-items: center;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-secondary);
  font-weight: 500;
  transition: color 0.3s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary-accent);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--text-color);
  border-radius: 2px;
}

/* Sections */
section {
  min-height: 100vh; /* Changed from 100vh to min-height for content flexibility */
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-padding {
  padding: 100px 0;
}

/* Hero */
.hero-content {
  text-align: center;
  max-width: 800px;
}

.hero h1 {
  font-size: 4rem;
  margin-bottom: 20px;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-secondary);
  margin-bottom: 40px;
}

/* Glass Card */
.glass-card {
  background: var(--glass-bg);
  backdrop-filter: blur(var(--glass-blur));
  border: 1px solid var(--glass-border);
  border-radius: 20px;
  padding: 30px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
  border-color: rgba(255, 255, 255, 0.2);
}

/* Services Grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
}

.icon-box {
  font-size: 3rem;
  margin-bottom: 20px;
}

.card h3 {
  margin-bottom: 15px;
  color: var(--primary-accent);
}

.card p {
  color: var(--text-secondary);
}

/* About */
.split-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}

.code-snippet {
  background: rgba(0, 0, 0, 0.5);
  padding: 20px;
  border-radius: 10px;
  font-family: "Fira Code", monospace;
  font-size: 0.9rem;
  color: #a5b3ce;
  border-left: 3px solid var(--secondary-accent);
}

/* Policies */
.accordion {
  margin-top: 30px;
}

.accordion-item {
  margin-bottom: 15px;
  border-bottom: 1px solid var(--glass-border);
}

.accordion-header {
  width: 100%;
  background: none;
  border: none;
  text-align: left;
  color: var(--text-color);
  font-size: 1.1rem;
  font-weight: 600;
  padding: 15px 0;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  font-family: var(--font-main);
}

.accordion-header::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--primary-accent);
}

.accordion-header.active::after {
  content: "-";
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  color: var(--text-secondary);
}

.accordion-body p {
  padding-bottom: 20px;
}

.policy-footer {
  margin-top: 20px;
  font-size: 0.9rem;
  color: var(--text-secondary);
  text-align: center;
  font-style: italic;
}

/* Contact */
.contact-form-wrapper {
  max-width: 600px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.glass-input {
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--glass-border);
  padding: 15px;
  border-radius: 10px;
  color: var(--text-color);
  font-family: var(--font-main);
  font-size: 1rem;
  transition: border-color 0.3s;
}

.glass-input:focus {
  outline: none;
  border-color: var(--primary-accent);
}

.full-width {
  width: 100%;
}

/* Contact Page Specific Styles */
.contact-subtitle {
  text-align: center;
  color: var(--text-secondary);
  margin-bottom: 50px;
  font-size: 1.1rem;
}

.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.contact-methods .glass-card {
  display: flex;
  flex-direction: column;
}

.contact-methods h3 {
  color: var(--primary-accent);
  margin-bottom: 20px;
  font-size: 1.3rem;
}

/* WhatsApp Contact Card */
.whatsapp-contact {
  text-align: center;
  justify-content: space-between;
}

.whatsapp-contact p {
  color: var(--text-secondary);
  margin-bottom: 30px;
  line-height: 1.6;
}

.btn-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 35px;
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: #ffffff;
  text-decoration: none;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1.1rem;
  transition: all 0.3s ease;
  box-shadow: 0 5px 20px rgba(37, 211, 102, 0.3);
  margin: 20px 0;
}

.btn-whatsapp:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.btn-whatsapp svg {
  width: 24px;
  height: 24px;
}

.whatsapp-number {
  font-size: 1.2rem;
  color: var(--primary-accent);
  font-weight: 600;
  margin-top: 20px;
}

/* Form Message */
.form-message {
  margin-top: 20px;
  padding: 15px;
  border-radius: 10px;
  text-align: center;
  font-weight: 500;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.form-message.success {
  background: rgba(0, 255, 136, 0.1);
  color: var(--primary-accent);
  border: 1px solid var(--primary-accent);
  opacity: 1;
}

.form-message.error {
  background: rgba(255, 68, 68, 0.1);
  color: #ff4444;
  border: 1px solid #ff4444;
  opacity: 1;
}

/* Footer Location */
.footer-location {
  color: var(--text-secondary);
  font-size: 0.95rem;
}


/* Footer */
footer {
  border-top: 1px solid var(--glass-border);
  padding: 40px 0;
  margin-top: 50px;
  background: rgba(0, 0, 0, 0.8);
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
}

.footer-logo img {
  height: 30px;
}

.social-links a {
  color: var(--text-secondary);
  margin: 0 10px;
  text-decoration: none;
  transition: color 0.3s;
}

.social-links a:hover {
  color: var(--primary-accent);
}

/* Animations */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.fade-in.appear {
  opacity: 1;
  transform: translateY(0);
}

/* Media Queries */
@media (max-width: 768px) {
  .nav-links {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero h1 {
    font-size: 2.5rem;
  }

  .split-layout {
    grid-template-columns: 1fr;
  }

  .section-padding {
    padding: 60px 0;
  }
}
