/* ------------------------------
   RESET & BASE
--------------------------------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  font-family: 'Inter', sans-serif;
  background: #E6E8EB;
  color: #2D3436;
  scroll-behavior: smooth;
}

/* ------------------------------
   COLORS
--------------------------------- */
:root {
  --primary: #00E5FF;        /* Neon Ocean Blue */
  --secondary: #0F1A2F;      /* Deep Navy */
  --background: #E6E8EB;     /* Light Silver */
  --surface: #FFFFFF;
  --text: #2D3436;
  --text-on-dark: #FFFFFF;
}

/* ------------------------------
   NAVIGATION
--------------------------------- */
.main-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--surface);
  z-index: 100;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  padding: 1rem 5%;
}

.menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
}

.logo-img {
  width: 200px;
  height: auto;
  border: 2px solid var(--primary);
  border-radius: 0;
  box-shadow: 
    0 0 8px rgba(0, 229, 255, 0.4),
    0 0 16px rgba(0, 229, 255, 0.2);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.logo-img:hover {
  transform: scale(1.03);
  box-shadow: 
    0 0 10px rgba(0, 229, 255, 0.6),
    0 0 20px rgba(0, 229, 255, 0.3);
}

/* Responsive: Smaller on mobile */
@media (max-width: 768px) {
  .logo-img {
    width: 160px;
  }
}

.menu-links {
  display: flex;
  gap: 2rem;
}

.menu-links a {
  color: var(--secondary);
  text-decoration: none;
  font-weight: 500;
  font-size: 1.1rem;
  transition: color 0.3s;
}

.menu-links a:hover {
  color: var(--primary);
}

/* ------------------------------
   HERO VIDEO - FULL FRAME, NO CROP
--------------------------------- */
.hero {
  position: relative;
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000; /* Ensures video edges are visible */
}

.hero video {
  width: 100%;
  height: 100%;
  object-fit: contain; /* Shows full video, no cropping */
  outline: none;
}

/* ------------------------------
   HERO OVERLAY (Text)
--------------------------------- */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 2rem;
  z-index: 3;
  color: white;
  text-shadow: 0 2px 10px rgba(0,0,0,0.8);
  pointer-events: none;
}

.hero-overlay * {
  pointer-events: auto;
}

.hero-overlay h1 {
  font-size: 2.4rem;
  font-weight: 700;
  margin: 0.5rem 0;
}

.hero-overlay h2 {
  font-size: 1.8rem;
  margin: 1rem 0;
  max-width: 800px;
}

.hero-overlay p {
  font-size: 1.2rem;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.6;
}

/* ------------------------------
   PULSE DIVIDER
--------------------------------- */
.pulse-divider {
  width: 100%;
  height: 2px;
  position: relative;
  margin: 3rem 0;
  overflow: hidden;
}

.pulse-bar {
  position: absolute;
  top: 0;
  left: -100%;
  width: 50%;
  height: 100%;
  background: var(--primary);
  box-shadow: 
    0 0 10px rgba(0, 229, 255, 0.5),
    0 0 20px rgba(0, 229, 255, 0.3);
  border-radius: 1px;
  animation: pulseMove 3s infinite ease-in-out;
}

@keyframes pulseMove {
  0% { left: -100%; width: 30%; }
  50% { left: 100%; width: 60%; }
  100% { left: 100%; width: 30%; }
}

/* ------------------------------
   MAIN CONTENT
--------------------------------- */
.main-content {
  width: 100%;
  padding: 5rem 5%;
  max-width: 1200px;
  margin: 0 auto;
  background: var(--surface);
  min-height: 100vh;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
  position: relative;
  z-index: 5;
}

.section-title {
  font-size: 2.2rem;
  margin: 4rem 0 2rem;
  text-align: center;
  color: var(--secondary);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.card {
  padding: 1.8rem;
  background: var(--surface);
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.05);
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s forwards;
  transition: transform 0.3s;
}

.card:hover {
  transform: translateY(-6px);
}

.card h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.card p {
  line-height: 1.6;
  color: #4a5568;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ------------------------------
   CTA
--------------------------------- */
.cta-final {
  text-align: center;
  margin: 6rem 0 4rem;
}

.cta-final h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
  color: var(--secondary);
}

.signature {
  font-weight: 600;
  color: var(--primary);
}

.tagline {
  font-size: 1.1rem;
  opacity: 0.8;
  display: block;
  margin-top: 1rem;
  color: var(--text);
}

/* ------------------------------
   RESPONSIVE
--------------------------------- */
@media (max-width: 768px) {
  .hero-overlay h1 { font-size: 2.2rem; }
  .hero-overlay h2 { font-size: 1.4rem; }
  .services-grid { grid-template-columns: 1fr; }
  .menu-container { flex-direction: column; gap: 1rem; }
}