/* =========================
   GLOBAL RESET & TRANSITIONS
========================= */
html {
  background-color: #000; /* Pre-emptively fills the "void" with black */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background: #000;
  color: #fff;
  font-family: "Inter", system-ui, sans-serif;
  
  /* Global Smooth Fix */
  opacity: 0; 
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  overflow-x: hidden;
}

/* Class added via JS to trigger entry */
body.page-loaded {
  opacity: 1;
  transform: translateY(0);
}

/* =========================
   SERVICES SECTION
========================= */
.services {
  padding: 4rem 1.5rem;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
}

/* Title */
.services h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 0.5rem;
}

.services h1 span {
  color: #00ffe1;
}

.services p.subtitle {
  color: #aaa;
  font-size: 1rem;
  margin-bottom: 3rem;
}

/* =========================
   CARD WRAPPER
========================= */
.services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}

/* =========================
   SERVICE CARD
========================= */
.service-card {
  width: 100%;
  max-width: 700px;
  background: linear-gradient(180deg, #0c0c0c, #050505);
  border-radius: 28px;
  padding: 2.5rem;
  position: relative;

  border: 1px solid rgba(0,255,225,0.35);
  box-shadow:
    0 0 14px rgba(0,255,225,0.22),
    0 0 30px rgba(0,255,225,0.15);

  transition: 
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow:
    0 0 25px rgba(0,255,225,0.35),
    0 0 55px rgba(0,255,225,0.25);
}

.service-card:active {
  border-color: #00ffe1;
  box-shadow: 
    0 0 35px rgba(0,255,225,0.85),
    0 0 90px rgba(0,255,225,0.65),
    0 0 150px rgba(0,255,225,0.35);
  transform: scale(0.985);
}

.service-card:has(.btn-start:active) {
  transform: none;
  border-color: rgba(0,255,225,0.35);
  box-shadow:
    0 0 14px rgba(0,255,225,0.22),
    0 0 30px rgba(0,255,225,0.15);
}

/* =========================
   CARD ICON
========================= */
.service-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: rgba(0,255,225,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: #00ffe1;
}

/* =========================
   CARD TITLE
========================= */
.service-card h2 {
  font-size: 1.6rem;
  margin-bottom: 0.5rem;
}

.service-card p.desc {
  color: #aaa;
  font-size: 0.95rem;
  margin-bottom: 2rem;
}

/* =========================
   LIST SECTIONS
========================= */
.list-section {
  text-align: left;
  margin-bottom: 1.5rem;
}

.list-title {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  margin-bottom: 0.8rem;
}

.list-title.green, .list-title.cyan { color: #00ffe1; }
.list-title.red { color: #ff5a5a; }

.list {
  padding-left: 1.8rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.list li {
  list-style: none;
  color: #bbb;
  font-size: 0.9rem;
  position: relative;
}

.list li::before {
  content: "•";
  position: absolute;
  left: -1.2rem;
  color: #00ffe1;
}

/* =========================
   DIVIDER
========================= */
.divider {
  width: 100%;
  height: 1px;
  background: linear-gradient(
    to right,
    transparent,
    rgba(255,255,255,0.2),
    transparent
  );
  margin: 2rem 0;
}

/* =========================
   PRICE & BUTTON
========================= */
.price {
  text-align: center;
  margin-bottom: 1.5rem;
}

.price strong {
  font-size: 2.2rem;
  font-weight: 800;
}

.btn-start {
  width: 100%;
  padding: 1rem;
  border-radius: 14px;
  border: none;
  background: linear-gradient(135deg, #00ffe1, #00cbb5);
  color: #000;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 0 16px rgba(0,255,225,0.55);
  transition: 0.25s ease;
}

/* =========================
   FOOTER (MATCHED TO SITE)
========================= */
.location-tag { 
  text-align: center;
  color: #888; 
  font-size: 0.85rem; 
  margin-top: 50px; 
}

.main-footer {
    border-top: 1px solid #111;
    padding: 60px 0;
    margin-top: 100px;
    background: #000;
    width: 100%;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between; /* FIXED: Pins logo left, icons right */
    align-items: center;
    color: #444;
    font-size: 0.85rem;
}

.footer-icons { 
    display: flex; 
    align-items: center; 
    gap: 20px; 
}

.invert { 
    filter: invert(0.5); 
    width: 20px; 
    transition: 0.3s ease; 
}

.invert:hover {
    filter: invert(1) drop-shadow(0 0 5px #00ffe1);
}

.ori-host { 
    font-size: 1.1rem;
    font-weight: 800; 
    color: #fff; 
    text-decoration: none;
}

.ori-host span { 
    color: #00ffe1; 
}

/* =========================
   NAVBAR & HAMBURGER (Add this)
========================= */
.nav {
  position: sticky;
  top: 0;
  z-index: 1100; /* Higher than service cards */
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 8vw;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid #111;
}

.logo { font-size: 1.6rem; font-weight: 800; color: #fff; text-decoration: none; }
.logo span { color: #00ffe1; }

/* The 3-line icon */
.hamburger {
  display: none; /* Hidden on Desktop */
  cursor: pointer;
  flex-direction: column;
  gap: 6px;
  z-index: 1200;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 2px;
  background-color: #fff;
  transition: 0.3s ease;
}

/* Original Nav Links for Desktop */
.nav-links { 
  display: flex; 
  gap: 25px; 
  list-style: none; 
}

.nav-links a {
  text-decoration: none;
  color: #888;
  font-weight: 500;
  transition: 0.3s;
}

.nav-links a:hover, .nav-links a.active {
  color: #00ffe1;
}

/* =========================
   RESPONSIVE (Updated)
========================= */
@media (max-width: 768px) {
    /* Show Hamburger */
    .hamburger { 
        display: flex; 
    }

    /* Mobile Dropdown */
    .nav-links { 
        display: none; /* Hidden initially */
        flex-direction: column;
        position: absolute;
        top: 100%; /* Sits right under nav */
        left: 0;
        width: 100%;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        padding: 40px 0;
        gap: 25px;
        text-align: center;
        border-bottom: 1px solid rgba(0, 255, 225, 0.2);
        z-index: 1000;
    }

    /* Toggle Class via JS */
    .nav-links.active {
        display: flex;
    }

    /* Animation for Hamburger to X */
    .hamburger.active span:nth-child(1) { transform: translateY(8px) rotate(45deg); background: #00ffe1; }
    .hamburger.active span:nth-child(2) { opacity: 0; }
    .hamburger.active span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); background: #00ffe1; }

    /* Service Section Adjustments */
    .services h1 { font-size: 2.4rem; }
    .service-card { padding: 1.5rem; }
    
    .footer-bottom { 
        flex-direction: column; 
        gap: 25px; 
        text-align: center; 
    }
}
