@charset "utf-8";

/* =====================================================
   ROOT VARIABLES
===================================================== */
:root {
  --bg: #0a0a0a;
  --glass: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.12);
  --accent: #00f5ff;
  --text-dim: rgba(255,255,255,0.75);
}

/* =====================================================
   BASE RESET
===================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'Inter', system-ui, sans-serif;
  color: #fff;
  background: var(--bg);
  overflow-x: hidden;
}

/* =====================================================
   VIDEO BACKGROUND
===================================================== */
#bg-video {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: brightness(0.35);
}

/* =====================================================
   HEADER / NAV
===================================================== */
.header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.2rem 2rem;
  background: rgba(0,0,0,0.6);
  backdrop-filter: blur(14px);
}

.logo {
  font-family: 'Orbitron', sans-serif;
  font-size: 1.6rem;
}

.logo span {
  color: var(--accent);
}

.nav a {
  margin-left: 1.5rem;
  text-decoration: none;
  color: #fff;
  opacity: 0.85;
  transition: color 0.25s ease;
}

.nav a:hover,
.nav a.active {
  color: var(--accent);
}

/* =====================================================
   HERO
===================================================== */
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 1rem 2rem;
}

.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  margin-bottom: 1rem;
}

.hero .tagline {
  color: var(--accent);
  text-shadow: 0 0 25px rgba(0,245,255,0.6);
}

.hero-desc {
  max-width: 700px;
  color: var(--text-dim);
  margin-bottom: 2.5rem;
  line-height: 1.6;
}

/* =====================================================
   BUTTONS
===================================================== */
.btn {
  padding: 0.8rem 2.2rem;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s ease;
  display: inline-block;
}

.btn.primary {
  background: var(--accent);
  color: #000;
  box-shadow: 0 0 20px rgba(0,245,255,0.5);
}

.btn.primary:hover {
  box-shadow: 0 0 35px rgba(0,245,255,0.8);
}

.btn.ghost {
  border: 1px solid var(--accent);
  color: var(--accent);
  margin-left: 1rem;
}

/* =====================================================
   PAGE HERO (INNER PAGES)
===================================================== */
.page-hero {
  padding: 3rem 2rem;
  text-align: center;
}

.page-hero h1 {
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 0.6rem;
}

.hero-sub {
  color: var(--text-dim);
}

/* =====================================================
   SERVICES (FIXED & STABLE)
===================================================== */
.home-services {
  padding: 1rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.home-services h2 {
  text-align: center;
  margin-bottom: 3rem;
  font-family: 'Orbitron', sans-serif;
}

/* Grid */
.service-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
  align-items: stretch;
}

/* Card */
.service-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.2rem;

  display: flex;
  flex-direction: column;

  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 18px 36px rgba(0,245,255,0.18);
}

/* Icon container */
.service-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(0,245,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.4rem;
}

/* Icon */
.service-card .icon svg {
  width: 22px;
  height: 22px;
  stroke: var(--accent);
  stroke-width: 1.6;
  fill: none;
}

/* Card text */
.service-card h3 {
  margin: 0 0 0.6rem;
  font-size: 1.15rem;
}

.service-card p {
  margin: 0;
  color: var(--text-dim);
  line-height: 1.5;
}

/* =====================================================
   CTA
===================================================== */
.cta {
  text-align: center;
  padding: 5rem 2rem 7rem;
}

.cta h2 {
  font-family: 'Orbitron', sans-serif;
  margin-bottom: 0.5rem;
}

.cta p {
  color: var(--text-dim);
  margin-bottom: 2rem;
}

/* =====================================================
   CONTACT FORM
===================================================== */
.contact-section {
  max-width: 900px;
  margin: 0 auto;
  padding: 4rem 2rem 6rem;
}

.contact-card {
  background: var(--glass);
  border: 1px solid var(--border);
  border-radius: 24px;
  padding: 3rem;
  backdrop-filter: blur(14px);
}

.form-group {
  display: flex;
  flex-direction: column;
  margin-bottom: 1.4rem;
}

.form-group label {
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  opacity: 0.85;
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.2);
  background: rgba(0,0,0,0.4);
  color: #fff;
  font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--accent);
}

.form-note {
  margin-top: 1.2rem;
  font-size: 0.8rem;
  opacity: 0.6;
}

/* =====================================================
   FORM STATUS (AJAX)
===================================================== */
.form-status {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  color: rgba(255,255,255,0.9);
  display: none;
}

.form-status.success,
.form-status.error,
.form-status.info {
  display: block;
}

.form-status.success {
  border-color: rgba(0,245,255,0.45);
  box-shadow: 0 0 22px rgba(0,245,255,0.12);
}

.form-status.error {
  border-color: rgba(255,80,80,0.45);
  box-shadow: 0 0 22px rgba(255,80,80,0.08);
}

/* Honeypot */
.hp {
  display: none;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media (max-width: 768px) {
 

  .btn.ghost {
    margin-left: 0;
    margin-top: 1rem;
  }
}
/* =====================================================
   RESPONSIVE NAVIGATION
===================================================== */

/* Hamburger button */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  width: 26px;
  height: 2px;
  background: #fff;
  margin: 5px 0;
  transition: 0.3s ease;
}

/* Mobile nav container */
.nav-mobile {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: rgba(0,0,0,0.92);
  backdrop-filter: blur(16px);
  z-index: 9;
  padding: 1.5rem 2rem;
}

.nav-mobile a {
  display: block;
  padding: 0.9rem 0;
  text-decoration: none;
  color: #fff;
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-mobile a:last-child {
  border-bottom: none;
}

.nav-mobile a.active {
  color: var(--accent);
}

/* Active state */
.nav-mobile.open {
  display: block;
}

/* =====================================================
   MOBILE BREAKPOINT
===================================================== */

@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .nav-toggle {
    display: block;
  }
}
.logo img {
  display: block;
  height: 50px;
  width: auto;
}
.hero-logo {
  margin-bottom: 1rem;
}

.hero-logo img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
@media (max-width: 600px) {
  .hero-logo img {
    width: 220px;
  }
}
/* =====================================================
   FOOTER
===================================================== */

.site-footer {
  margin-top: 6rem;
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}

/* Brand */
.footer-brand img {
  display: block;
  margin-bottom: 0.6rem;
}

.footer-brand p {
  font-size: 0.85rem;
  color: var(--text-dim);
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 1.2rem;
}

.footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: 0.25s ease;
}

.footer-social a:hover {
  border-color: var(--accent);
  box-shadow: 0 0 18px rgba(0,245,255,0.4);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.6;
}

/* Bottom line */
.footer-bottom {
  text-align: center;
  padding: 1.5rem 2rem 2.5rem;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
}

/* =====================================================
   FOOTER RESPONSIVE
===================================================== */

@media (max-width: 768px) {
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }
}
