*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0D1B2A;
  --navy-mid: #1A2E45;
  --electric: #00C2FF;
  --electric-dim: #0098CC;
  --white: #FFFFFF;
  --off-white: #F4F7FA;
  --text: #1A2E45;
  --muted: #5A7085;
  --border: #DDE6EE;
  --green: #00B37A;
  --font-display: 'Space Grotesk', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
}

/* =========================================
   NAVIGATION (Always Hamburger)
   ========================================= */
nav {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 5%;
  height: 64px;
  border-bottom: 1px solid rgba(0,194,255,0.15);
}

.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-logo span {
  color: var(--electric);
}

.nav-dot {
  width: 8px;
  height: 8px;
  background: var(--electric);
  border-radius: 50%;
  display: inline-block;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.5; transform: scale(0.7); }
}

/* --- Hamburger Icon --- */
.hamburger {
  display: flex; /* Always visible */
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 1100; /* Stays above the slide-out menu */
}

.hamburger .bar {
  width: 25px;
  height: 3px;
  background-color: var(--white);
  border-radius: 3px;
  transition: all 0.3s ease-in-out;
}

/* --- Slide-out Menu Styles --- */
.nav-links {
  position: fixed;
  top: 0;
  right: -100%; /* Hidden off-screen by default */
  height: 100vh;
  width: 250px; 
  background-color: var(--navy-mid);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  box-shadow: -5px 0 15px rgba(0, 0, 0, 0.5);
  transition: right 0.3s ease-in-out;
  z-index: 1050;
  list-style: none;
}

.nav-links.active {
  right: 0; /* Slides in when active */
}

.nav-links a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover { 
  color: var(--electric); 
}

.nav-cta {
  background: var(--electric);
  color: var(--navy) !important;
  padding: 8px 18px;
  border-radius: 6px;
  font-weight: 600 !important;
}

.nav-cta:hover { 
  background: #33CEFF; 
  color: var(--navy) !important; 
}

/* Animate Hamburger lines into an 'X' */
.hamburger.active .bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.hamburger.active .bar:nth-child(2) {
  opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}


/* =========================================
   PAGE SECTIONS
   ========================================= */

/* HERO */
.hero {
  background: var(--navy);
  padding: 80px 5% 90px;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(0,194,255,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  max-width: 680px;
  position: relative;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(0,194,255,0.1);
  border: 1px solid rgba(0,194,255,0.25);
  color: var(--electric);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 5px 12px;
  border-radius: 20px;
  margin-bottom: 24px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 20px;
}

.hero h1 em {
  font-style: normal;
  color: var(--electric);
}

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.65);
  max-width: 520px;
  margin-bottom: 36px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-primary {
  display: inline-block;
  background: var(--electric);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s, transform 0.1s;
}

.btn-primary:hover { background: #33CEFF; transform: translateY(-1px); }

.btn-outline {
  display: inline-block;
  background: transparent;
  color: rgba(255,255,255,0.8);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.2);
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
}

.btn-outline:hover { border-color: rgba(255,255,255,0.5); color: var(--white); }

.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 56px;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
  flex-wrap: wrap;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 700;
  color: var(--electric);
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
  margin-top: 2px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* SERVICES */
.services {
  padding: 80px 5%;
  background: var(--off-white);
}

.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--electric-dim);
  margin-bottom: 12px;
}

.section-header h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 12px;
}

.section-header p {
  font-size: 1rem;
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(13,27,42,0.08);
  border-color: var(--electric);
}

.service-icon {
  width: 56px;
  height: 56px;
  background: rgba(0,194,255,0.08);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
}

.service-card p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.6;
}

/* WHY US */
.why {
  padding: 80px 5%;
  background: var(--white);
}

.why-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why-text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 16px;
}

.why-text p {
  font-size: 1rem;
  color: var(--muted);
  margin-bottom: 32px;
  line-height: 1.7;
}

.reasons {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.reason {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.reason-icon {
  width: 36px;
  height: 36px;
  background: rgba(0,179,122,0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
  margin-top: 2px;
}

.reason h4 {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}

.reason p {
  font-size: 0.87rem;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

.why-visual {
  background: var(--navy);
  border-radius: 16px;
  padding: 36px 32px;
  color: white;
}

.why-visual h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.78rem;
}

.repair-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.repair-item:last-child { border-bottom: none; }

.repair-name {
  font-size: 0.95rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
}

.repair-time {
  font-size: 0.82rem;
  color: var(--electric);
  font-weight: 600;
  background: rgba(0,194,255,0.1);
  padding: 3px 10px;
  border-radius: 20px;
}

/* CONTACT */
.contact {
  padding: 80px 5%;
  background: var(--navy);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact h2 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  font-weight: 700;
  color: var(--white);
  margin-bottom: 12px;
}

.contact > .contact-inner > div > p {
  color: rgba(255,255,255,0.55);
  margin-bottom: 36px;
  line-height: 1.7;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.contact-detail-icon {
  width: 40px;
  height: 40px;
  background: rgba(0,194,255,0.1);
  border: 1px solid rgba(0,194,255,0.2);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-detail-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 3px;
}

.contact-detail-value {
  font-size: 0.98rem;
  color: var(--white);
  font-weight: 500;
}

.contact-form {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 32px;
}

.form-group {
  margin-bottom: 18px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  margin-bottom: 7px;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 11px 14px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

.form-group select option { background: var(--navy-mid); color: var(--white); }

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--electric);
  background: rgba(0,194,255,0.04);
}

.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.25); }

.form-group textarea { resize: vertical; min-height: 110px; }

.form-submit {
  width: 100%;
  background: var(--electric);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 13px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 6px;
}

.form-submit:hover { background: #33CEFF; }

/* FOOTER */
footer {
  background: #080F17;
  padding: 28px 5%;
  text-align: center;
  color: rgba(255,255,255,0.3);
  font-size: 0.85rem;
  border-top: 1px solid rgba(255,255,255,0.05);
}

footer a { color: var(--electric); text-decoration: none; }

/* RESPONSIVE */
@media (max-width: 768px) {
  .why-inner, .contact-inner { grid-template-columns: 1fr; gap: 36px; }
  .hero-stats { gap: 24px; }
}

@media (max-width: 480px) {
  nav { padding: 0 4%; }
  .hero, .services, .why, .contact { padding-left: 4%; padding-right: 4%; }
}