/* ===== RESET & BASE ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy: #0A0F2C;
  --blue: #007BFF;
  --cyan: #00F0FF;
  --purple: #7B2FFF;
  --grad: linear-gradient(135deg, #007BFF, #7B2FFF, #00F0FF);
  --grad2: linear-gradient(90deg, #007BFF, #00F0FF);
  --glass: rgba(255,255,255,0.05);
  --glass-border: rgba(0,240,255,0.15);
  --text: #e0e8ff;
  --text-dim: #8899bb;
  --glow: 0 0 20px rgba(0,240,255,0.4);
  --glow-blue: 0 0 20px rgba(0,123,255,0.5);
}
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--navy);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img { max-width: 100%; }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--grad); border-radius: 3px; }

/* ===== CURSOR ===== */
#cursor-glow {
  position: fixed; width: 24px; height: 24px;
  border-radius: 50%; pointer-events: none; z-index: 9999;
  background: radial-gradient(circle, rgba(0,240,255,0.6), transparent 70%);
  transform: translate(-50%, -50%);
  transition: transform 0.1s ease;
  mix-blend-mode: screen;
}

/* ===== PARTICLES ===== */
#particles {
  position: fixed; top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 0; pointer-events: none;
}

/* ===== LOADER ===== */
#loader {
  position: fixed; inset: 0; z-index: 10000;
  background: var(--navy);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
#loader.hidden { opacity: 0; visibility: hidden; }
.loader-inner { text-align: center; position: relative; }
.signal-rings { position: relative; width: 120px; height: 120px; margin: 0 auto 20px; }
.ring {
  position: absolute; border-radius: 50%;
  border: 2px solid var(--cyan);
  animation: pulse-ring 2s ease-out infinite;
}
.r1 { width: 40px; height: 40px; top: 40px; left: 40px; animation-delay: 0s; }
.r2 { width: 80px; height: 80px; top: 20px; left: 20px; animation-delay: 0.4s; opacity: 0.6; }
.r3 { width: 120px; height: 120px; top: 0; left: 0; animation-delay: 0.8s; opacity: 0.3; }
@keyframes pulse-ring {
  0% { transform: scale(0.8); opacity: 1; }
  100% { transform: scale(1.2); opacity: 0; }
}
.loader-logo {
  width: 100px;
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  filter: drop-shadow(0 0 16px rgba(0,240,255,0.9));
}
.loader-text { font-family: 'Orbitron', sans-serif; font-size: 0.75rem; color: var(--cyan); letter-spacing: 2px; animation: blink 1.5s infinite; }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0.3} }

/* ===== NAVBAR ===== */
#navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 10px 0;
  transition: all 0.3s ease;
}
#navbar.scrolled {
  background: rgba(10,15,44,0.85);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--glass-border);
  padding: 10px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
}
.nav-container {
  max-width: 1280px; margin: 0 auto;
  padding: 0 24px;
  display: flex; align-items: center; gap: 32px;
  justify-content: space-between;
}
.nav-logo {
  display: flex; align-items: center; gap: 10px;
  font-family: 'Orbitron', sans-serif; font-size: 1.1rem; font-weight: 700;
}
.nav-logo img {
  width: 120px;
  height: 60px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0,240,255,0.8));
  transition: filter 0.3s, transform 0.3s;
}
.nav-logo:hover img {
  filter: drop-shadow(0 0 18px rgba(0,240,255,1));
  transform: scale(1.08);
}
.nav-links { display: flex; gap: 32px; margin-left: auto; }
.nav-links a {
  font-size: 0.9rem; font-weight: 500; color: var(--text-dim);
  transition: color 0.3s; position: relative; padding-bottom: 4px;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0;
  width: 0; height: 2px; background: var(--grad2);
  transition: width 0.3s;
}
.nav-links a:hover, .nav-links a.active { color: var(--cyan); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 16px; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 4px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--cyan); transition: all 0.3s; }
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

/* ===== BUTTONS ===== */
.btn-glow {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  background: var(--grad); color: #fff;
  font-weight: 600; font-size: 0.9rem;
  border: none; cursor: pointer;
  box-shadow: 0 0 20px rgba(0,123,255,0.4);
  transition: all 0.3s ease; position: relative; overflow: hidden;
}
.btn-glow::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(135deg, #00F0FF, #007BFF, #7B2FFF);
  opacity: 0; transition: opacity 0.3s;
}
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 0 35px rgba(0,240,255,0.6); }
.btn-glow:hover::before { opacity: 1; }
.btn-glow span, .btn-glow i { position: relative; z-index: 1; }
.btn-glow.small { padding: 8px 20px; font-size: 0.8rem; }
.btn-outline {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 12px 28px; border-radius: 50px;
  border: 1px solid var(--cyan); color: var(--cyan);
  font-weight: 600; font-size: 0.9rem; cursor: pointer;
  transition: all 0.3s ease;
  background: rgba(0,240,255,0.05);
}
.btn-outline:hover { background: rgba(0,240,255,0.15); box-shadow: var(--glow); transform: translateY(-2px); }

/* ===== GLASS CARD ===== */
.glass-card {
  background: var(--glass);
  border: 1px solid var(--glass-border);
  backdrop-filter: blur(12px);
  border-radius: 16px;
  transition: all 0.3s ease;
}
.glass-card:hover { border-color: rgba(0,240,255,0.4); box-shadow: 0 8px 40px rgba(0,240,255,0.1); transform: translateY(-4px); }

/* ===== SECTION ===== */
.section { padding: 100px 24px; max-width: 1280px; margin: 0 auto; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 60px; }
.section-header h2 { font-family: 'Orbitron', sans-serif; font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 12px; }
.section-header p { color: var(--text-dim); font-size: 1rem; }
.neon-line { width: 60px; height: 3px; background: var(--grad2); margin: 0 auto 20px; border-radius: 2px; box-shadow: var(--glow); }
.gradient-text { background: var(--grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.accent { color: var(--cyan); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  padding: 120px 24px 80px;
  max-width: 1280px; margin: 0 auto;
  gap: 60px; position: relative; z-index: 1;
}
.hero-content { flex: 1; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px; border-radius: 50px;
  border: 1px solid var(--cyan); color: var(--cyan);
  font-size: 0.8rem; font-weight: 600; letter-spacing: 1px;
  margin-bottom: 24px; background: rgba(0,240,255,0.05);
}
.hero h1 {
  font-family: 'Orbitron', sans-serif;
  font-size: clamp(2.5rem, 6vw, 5rem);
  font-weight: 900; line-height: 1.1;
  margin-bottom: 20px;
}
.hero-sub { font-size: 1.1rem; color: var(--text-dim); margin-bottom: 32px; max-width: 500px; line-height: 1.7; }
.hero-highlights { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 40px; }
.hero-highlights span {
  display: flex; align-items: center; gap: 8px;
  padding: 8px 16px; border-radius: 8px;
  background: rgba(0,123,255,0.1); border: 1px solid rgba(0,123,255,0.3);
  font-size: 0.85rem; font-weight: 500;
}
.hero-highlights i { color: var(--cyan); }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-visual { flex: 1; display: flex; justify-content: center; align-items: center; position: relative; }
.hero-orb {
  width: 400px; height: 400px; border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(0,123,255,0.3), rgba(123,47,255,0.2), transparent 70%);
  filter: blur(40px); animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-20px)} }
.speed-card {
  position: absolute; padding: 24px 32px; text-align: center;
  border-radius: 20px;
}
.speed-num { font-family: 'Orbitron', sans-serif; font-size: 4rem; font-weight: 900; color: var(--cyan); line-height: 1; }
.speed-unit { font-size: 1.2rem; color: var(--blue); font-weight: 600; }
.speed-label { font-size: 0.8rem; color: var(--text-dim); margin-top: 4px; }

/* ===== STATS BAR ===== */
.stats-bar {
  display: flex; justify-content: center; flex-wrap: wrap; gap: 0;
  background: rgba(0,123,255,0.05);
  border-top: 1px solid var(--glass-border);
  border-bottom: 1px solid var(--glass-border);
  position: relative; z-index: 1;
}
.stat-item {
  flex: 1; min-width: 160px; padding: 32px 24px; text-align: center;
  border-right: 1px solid var(--glass-border);
}
.stat-item:last-child { border-right: none; }
.stat-item .counter, .stat-item span:first-child { font-family: 'Orbitron', sans-serif; font-size: 2.2rem; font-weight: 700; color: var(--cyan); }
.stat-item p { font-size: 0.85rem; color: var(--text-dim); margin-top: 4px; }

/* ===== PLANS ===== */
.plans-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; margin-bottom: 40px; }
.plan-card { padding: 36px 28px; text-align: center; position: relative; }
.plan-card.featured { border-color: var(--cyan); box-shadow: 0 0 40px rgba(0,240,255,0.15); }
.plan-badge {
  display: inline-block; padding: 4px 14px; border-radius: 50px;
  background: rgba(0,123,255,0.2); border: 1px solid var(--blue);
  font-size: 0.75rem; font-weight: 600; color: var(--blue);
  margin-bottom: 20px; letter-spacing: 1px; text-transform: uppercase;
}
.plan-badge.popular { background: rgba(0,240,255,0.15); border-color: var(--cyan); color: var(--cyan); }
.plan-price { font-family: 'Orbitron', sans-serif; font-size: 3rem; font-weight: 900; color: #fff; }
.plan-price span { font-size: 1rem; color: var(--text-dim); }
.plan-speed { color: var(--cyan); font-weight: 600; margin: 8px 0 24px; font-size: 1rem; }
.plan-features { text-align: left; margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.plan-features li { display: flex; align-items: center; gap: 10px; font-size: 0.9rem; color: var(--text-dim); }
.plan-features i { color: var(--cyan); font-size: 0.8rem; }
.offer-banner {
  display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap;
  padding: 20px 32px; border-radius: 16px;
  background: linear-gradient(135deg, rgba(0,123,255,0.15), rgba(123,47,255,0.15));
  border: 1px solid rgba(0,240,255,0.3);
  box-shadow: 0 0 30px rgba(0,240,255,0.1);
  font-size: 1rem;
}
.offer-banner i { color: var(--cyan); font-size: 1.4rem; animation: bounce 1s infinite; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-5px)} }

/* ===== OTT ===== */
.ott-section { background: rgba(0,0,0,0.2); border-radius: 24px; }
.ott-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; }
.ott-card {
  padding: 24px 16px; text-align: center; cursor: default;
  display: flex; flex-direction: column; align-items: center; gap: 10px;
}
.ott-card i { font-size: 2rem; color: var(--cyan); transition: all 0.3s; }
.ott-card span { font-size: 0.85rem; font-weight: 500; color: var(--text-dim); }
.ott-card:hover i { color: #fff; text-shadow: 0 0 20px var(--cyan); transform: scale(1.2); }
.ott-card:hover span { color: var(--text); }

/* ===== COVERAGE ===== */
.coverage-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 20px; }
.coverage-card { padding: 28px 20px; text-align: center; }
.coverage-card i { font-size: 1.8rem; color: var(--cyan); margin-bottom: 12px; display: block; }
.coverage-card h3 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.coverage-card p { font-size: 0.8rem; color: var(--text-dim); }

/* ===== TESTIMONIALS ===== */
.testimonials-section { overflow: hidden; }
.testimonial-slider { position: relative; }
.testimonial-track { display: flex; gap: 24px; transition: transform 0.5s ease; }
.testimonial-card { min-width: 320px; padding: 32px; flex-shrink: 0; }
.stars { color: #FFD700; font-size: 1.1rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p { color: var(--text-dim); line-height: 1.7; margin-bottom: 20px; font-style: italic; }
.customer { display: flex; align-items: center; gap: 12px; }
.avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad); display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 1.1rem; flex-shrink: 0;
}
.customer strong { display: block; font-size: 0.9rem; }
.customer span { font-size: 0.8rem; color: var(--text-dim); }
.slider-controls { display: flex; align-items: center; justify-content: center; gap: 16px; margin-top: 32px; }
.slider-btn {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--glass-border);
  color: var(--cyan); cursor: pointer; font-size: 1rem;
  transition: all 0.3s; display: flex; align-items: center; justify-content: center;
}
.slider-btn:hover { background: rgba(0,240,255,0.15); box-shadow: var(--glow); }
.slider-dots { display: flex; gap: 8px; }
.dot { width: 8px; height: 8px; border-radius: 50%; background: var(--glass-border); cursor: pointer; transition: all 0.3s; }
.dot.active { background: var(--cyan); box-shadow: 0 0 8px var(--cyan); width: 24px; border-radius: 4px; }

/* ===== FAQ ===== */
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { padding: 0; overflow: hidden; cursor: pointer; }
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; font-weight: 600; font-size: 0.95rem;
  transition: color 0.3s;
}
.faq-q i { color: var(--cyan); transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-q { color: var(--cyan); }
.faq-item.open .faq-q i { transform: rotate(45deg); }
.faq-a {
  max-height: 0; overflow: hidden;
  padding: 0 24px; color: var(--text-dim); line-height: 1.7; font-size: 0.9rem;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-item.open .faq-a { max-height: 200px; padding: 0 24px 20px; }

/* ===== FOOTER ===== */
.footer { background: rgba(0,0,0,0.4); border-top: 1px solid var(--glass-border); padding: 60px 24px 24px; position: relative; z-index: 1; }
.footer-grid { max-width: 1280px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 2fr; gap: 48px; margin-bottom: 40px; }
.footer-brand img {
  width: 100px;
  margin-bottom: 12px;
  filter: drop-shadow(0 0 10px rgba(0,240,255,0.6));
}
.footer-brand h3 { font-family: 'Orbitron', sans-serif; font-size: 1rem; margin-bottom: 12px; }
.footer-brand p { color: var(--text-dim); font-size: 0.85rem; line-height: 1.7; margin-bottom: 20px; }
.social-links { display: flex; gap: 12px; }
.social-links a {
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--glass); border: 1px solid var(--glass-border);
  display: flex; align-items: center; justify-content: center;
  color: var(--text-dim); font-size: 0.85rem; transition: all 0.3s;
}
.social-links a:hover { color: var(--cyan); border-color: var(--cyan); box-shadow: var(--glow); }
.footer-links h4, .footer-contact h4 { font-size: 0.9rem; font-weight: 600; color: var(--cyan); margin-bottom: 16px; letter-spacing: 1px; text-transform: uppercase; }
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: var(--text-dim); font-size: 0.85rem; transition: color 0.3s; }
.footer-links a:hover { color: var(--cyan); }
.footer-contact p { display: flex; align-items: flex-start; gap: 10px; color: var(--text-dim); font-size: 0.85rem; margin-bottom: 10px; line-height: 1.5; }
.footer-contact i { color: var(--cyan); margin-top: 2px; flex-shrink: 0; }
.footer-contact a { color: var(--text-dim); transition: color 0.3s; }
.footer-contact a:hover { color: var(--cyan); }
.footer-bottom { max-width: 1280px; margin: 0 auto; padding-top: 24px; border-top: 1px solid var(--glass-border); text-align: center; color: var(--text-dim); font-size: 0.8rem; }

/* ===== FLOATING BUTTONS ===== */
.whatsapp-float, .call-float {
  position: fixed; bottom: 24px; width: 54px; height: 54px;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem; z-index: 999; transition: all 0.3s;
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.whatsapp-float { right: 24px; background: #25D366; color: #fff; }
.call-float { right: 88px; background: var(--grad); color: #fff; }
.whatsapp-float:hover, .call-float:hover { transform: scale(1.1) translateY(-3px); }

/* ===== REVEAL ANIMATION ===== */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  min-height: 40vh; display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 140px 24px 80px;
  background: radial-gradient(ellipse at center, rgba(0,123,255,0.15) 0%, transparent 70%);
  position: relative; z-index: 1;
}
.page-hero h1 { font-family: 'Orbitron', sans-serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 900; margin-bottom: 16px; }
.page-hero p { color: var(--text-dim); font-size: 1rem; max-width: 500px; margin: 0 auto; }
.breadcrumb { display: flex; align-items: center; justify-content: center; gap: 8px; margin-bottom: 16px; font-size: 0.85rem; color: var(--text-dim); }
.breadcrumb a { color: var(--cyan); }
.breadcrumb span { color: var(--text-dim); }

/* ===== ABOUT PAGE ===== */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-text h2 { font-family: 'Orbitron', sans-serif; font-size: clamp(1.5rem, 3vw, 2.2rem); margin-bottom: 20px; }
.about-text p { color: var(--text-dim); line-height: 1.8; margin-bottom: 16px; }
.about-visual { position: relative; }
.about-orb {
  width: 100%; aspect-ratio: 1; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,123,255,0.2), rgba(123,47,255,0.1), transparent 70%);
  filter: blur(20px);
}
.about-stats { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 32px; }
.about-stat { padding: 20px; text-align: center; }
.about-stat .num { font-family: 'Orbitron', sans-serif; font-size: 2rem; font-weight: 700; color: var(--cyan); }
.about-stat p { font-size: 0.8rem; color: var(--text-dim); margin-top: 4px; }
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 60px; }
.mv-card { padding: 32px; }
.mv-card i { font-size: 2rem; color: var(--cyan); margin-bottom: 16px; display: block; }
.mv-card h3 { font-family: 'Orbitron', sans-serif; font-size: 1rem; margin-bottom: 12px; color: var(--cyan); }
.mv-card p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.7; }

/* ===== SERVICES PAGE ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 24px; }
.service-card { padding: 36px 28px; position: relative; overflow: hidden; }
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--grad); opacity: 0; transition: opacity 0.3s;
}
.service-card:hover::before { opacity: 1; }
.service-icon { width: 60px; height: 60px; border-radius: 16px; background: rgba(0,123,255,0.1); border: 1px solid rgba(0,123,255,0.3); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon i { font-size: 1.6rem; color: var(--cyan); }
.service-card h3 { font-size: 1.1rem; font-weight: 600; margin-bottom: 12px; }
.service-card p { color: var(--text-dim); font-size: 0.9rem; line-height: 1.7; }
.service-card ul { margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.service-card ul li { display: flex; align-items: center; gap: 8px; font-size: 0.85rem; color: var(--text-dim); }
.service-card ul li i { color: var(--cyan); font-size: 0.75rem; }

/* ===== GALLERY PAGE ===== */
.gallery-filters { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; margin-bottom: 40px; }
.filter-btn {
  padding: 8px 20px; border-radius: 50px; border: 1px solid var(--glass-border);
  background: var(--glass); color: var(--text-dim); cursor: pointer; font-size: 0.85rem;
  transition: all 0.3s;
}
.filter-btn.active, .filter-btn:hover { border-color: var(--cyan); color: var(--cyan); background: rgba(0,240,255,0.08); }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 16px; }
.gallery-item {
  border-radius: 12px; overflow: hidden; position: relative; cursor: pointer;
  aspect-ratio: 4/3; background: rgba(0,123,255,0.1);
  border: 1px solid var(--glass-border); transition: all 0.3s;
}
.gallery-item:hover { transform: scale(1.02); box-shadow: 0 8px 40px rgba(0,240,255,0.2); border-color: var(--cyan); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(10,15,44,0.7);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay i { font-size: 2rem; color: var(--cyan); }
.gallery-placeholder { width: 100%; height: 100%; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 12px; color: var(--text-dim); }
.gallery-placeholder i { font-size: 2.5rem; color: rgba(0,240,255,0.3); }
.gallery-placeholder span { font-size: 0.8rem; }

/* Lightbox */
#lightbox {
  position: fixed; inset: 0; z-index: 9000;
  background: rgba(0,0,0,0.9); display: none;
  align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 12px; border: 1px solid var(--glass-border); }
#lightbox-close { position: absolute; top: 24px; right: 24px; font-size: 2rem; color: var(--cyan); cursor: pointer; background: none; border: none; }

/* ===== CONTACT PAGE ===== */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 48px; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 20px; }
.contact-info-card { padding: 24px; display: flex; align-items: flex-start; gap: 16px; }
.contact-info-card .icon { width: 48px; height: 48px; border-radius: 12px; background: rgba(0,123,255,0.1); border: 1px solid rgba(0,123,255,0.3); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-info-card .icon i { color: var(--cyan); font-size: 1.2rem; }
.contact-info-card h4 { font-size: 0.85rem; color: var(--text-dim); margin-bottom: 4px; text-transform: uppercase; letter-spacing: 1px; }
.contact-info-card p, .contact-info-card a { font-size: 0.9rem; color: var(--text); line-height: 1.6; }
.contact-info-card a:hover { color: var(--cyan); }
.contact-form-wrap { padding: 40px; }
.contact-form-wrap h3 { font-family: 'Orbitron', sans-serif; font-size: 1.3rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 0.85rem; color: var(--text-dim); margin-bottom: 8px; font-weight: 500; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%; padding: 12px 16px; border-radius: 10px;
  background: rgba(255,255,255,0.04); border: 1px solid var(--glass-border);
  color: var(--text); font-size: 0.9rem; font-family: 'Inter', sans-serif;
  transition: border-color 0.3s, box-shadow 0.3s; outline: none;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--cyan); box-shadow: 0 0 0 3px rgba(0,240,255,0.1);
}
.form-group select option { background: #0A0F2C; }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-error { color: #ff4d6d; font-size: 0.78rem; margin-top: 4px; display: none; }
.form-group.error .form-error { display: block; }
.form-group.error input, .form-group.error select, .form-group.error textarea { border-color: #ff4d6d; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .about-grid, .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: rgba(10,15,44,0.97); padding: 24px; gap: 16px; border-bottom: 1px solid var(--glass-border); }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero { flex-direction: column; text-align: center; padding-top: 100px; }
  .hero-highlights { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-visual { display: none; }
  .stats-bar { flex-direction: column; }
  .stat-item { border-right: none; border-bottom: 1px solid var(--glass-border); }
  .mv-grid, .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .testimonial-card { min-width: 280px; }
}
@media (max-width: 480px) {
  .section { padding: 60px 16px; }
  .plans-grid { grid-template-columns: 1fr; }
  .offer-banner { flex-direction: column; text-align: center; }
}
