/* ═══════════════════════════════════════════════════════════════
   MVY IT-Support — Main Stylesheet
   Theme: Dark (deep navy / black) + Neon Cyan accent
   ═══════════════════════════════════════════════════════════════ */

/* ─── CSS Variables ─────────────────────────────────────────── */
:root {
  --bg-deep:      #040d1a;
  --bg-card:      #071428;
  --bg-card2:     #0a1a30;
  --border:       rgba(0, 212, 255, 0.15);
  --border-hover: rgba(0, 212, 255, 0.55);
  --cyan:         #00d4ff;
  --cyan-dim:     rgba(0, 212, 255, 0.12);
  --cyan-glow:    rgba(0, 212, 255, 0.35);
  --white:        #f0f6ff;
  --muted:        #8aa0b8;
  --font-head:    'Exo 2', sans-serif;
  --font-body:    'Inter', sans-serif;
  --nav-h:        72px;
  --radius:       14px;
  --transition:   0.3s ease;
}

/* ─── Reset / Base ──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-body);
  background: var(--bg-deep);
  color: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img, video { display: block; max-width: 100%; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ─── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-deep); }
::-webkit-scrollbar-thumb { background: var(--cyan-glow); border-radius: 3px; }

/* ─── Typography ────────────────────────────────────────────── */
h1,h2,h3,h4 { font-family: var(--font-head); line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); font-weight: 700; }
h3 { font-size: 1.15rem; font-weight: 600; }

/* ─── Container ─────────────────────────────────────────────── */
.container {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

/* ─── Section ───────────────────────────────────────────────── */
.section {
  padding: 100px 0;
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}
.section-label {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--cyan);
  border: 1px solid var(--border);
  background: var(--cyan-dim);
  padding: 6px 16px;
  border-radius: 99px;
  margin-bottom: 16px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p  { color: var(--muted); max-width: 560px; margin: 0 auto; }

/* ─── Buttons ───────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 30px;
  background: var(--cyan);
  color: var(--bg-deep);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0.15);
  opacity: 0;
  transition: opacity 0.2s;
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 30px var(--cyan-glow); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 28px;
  border: 1px solid var(--border-hover);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 8px;
  transition: var(--transition);
}
.btn-ghost:hover {
  background: var(--cyan-dim);
  border-color: var(--cyan);
  color: var(--cyan);
}

.btn-full { width: 100%; justify-content: center; }

/* ══════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--nav-h);
  transition: background 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}
#navbar.scrolled {
  background: rgba(4, 13, 26, 0.92);
  backdrop-filter: blur(16px);
  border-color: var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
  width: min(1200px, 92vw);
  margin: 0 auto;
  gap: 24px;
}

.nav-logo {
  font-family: var(--font-head);
  font-size: 1.4rem;
  font-weight: 900;
  white-space: nowrap;
}
.logo-mvy  { color: var(--cyan); }
.logo-it   { color: var(--white); }

.nav-links {
  display: flex;
  gap: 36px;
}
.nav-links a {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--muted);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 2px;
  background: var(--cyan);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--white); }
.nav-links a:hover::after { width: 100%; }

.nav-right {
  display: flex;
  align-items: center;
  gap: 20px;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--muted);
}
.lang-btn {
  padding: 4px 8px;
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 4px;
  transition: var(--transition);
}
.lang-btn:hover, .lang-btn.active {
  color: var(--cyan);
  background: var(--cyan-dim);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════ */
#hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* Static background */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: url('assets/images/Slide1.gif') center center / cover no-repeat;
  filter: blur(2px) brightness(0.35);
  transform: scale(1.05);
}
.hero-bg-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(4,13,26,0.55) 0%,
    rgba(4,13,26,0.45) 60%,
    rgba(4,13,26,0.75) 100%
  );
}

/* Particle canvas */
#particleCanvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Boxed slider wrapper */
.hero-box-wrap {
  position: relative;
  z-index: 2;
  width: min(900px, 88vw);
  margin-top: var(--nav-h);
}

.hero-swiper {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 80px rgba(0,0,0,0.7), 0 0 0 1px rgba(0,212,255,0.15);
}

.hero-swiper .swiper-slide {
  position: relative;
  line-height: 0;
}

.hero-swiper .swiper-slide img {
  width: 100%;
  height: auto;
  max-height: 70vh;
  object-fit: cover;
  display: block;
}

/* Caption bar */
.slide-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 20px 28px;
  background: linear-gradient(0deg, rgba(4,13,26,0.92) 0%, transparent 100%);
  line-height: 1.4;
}
.slide-caption span {
  font-family: var(--font-head);
  font-size: clamp(0.95rem, 2vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.8);
}

/* Swiper arrows — hero */
.hero-prev,
.hero-next {
  color: #fff !important;
  background: rgba(0,0,0,0.45);
  width: 44px !important;
  height: 44px !important;
  border-radius: 50%;
  top: 50% !important;
  transform: translateY(-50%);
}
.hero-prev { left: 14px; }
.hero-next { right: 14px; }
.hero-prev::after,
.hero-next::after { font-size: 0.9rem !important; font-weight: 900; }
.hero-prev:hover,
.hero-next:hover { background: rgba(0,212,255,0.3); }

/* Scroll hint */
.hero-scroll-hint {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: var(--muted);
  font-size: 1.1rem;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}

/* ══════════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 28px;
  transition: border-color var(--transition), box-shadow var(--transition), transform var(--transition);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--cyan), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}
.service-card:hover {
  border-color: var(--border-hover);
  box-shadow: 0 0 40px rgba(0,212,255,0.08);
  transform: translateY(-4px);
}
.service-card:hover::before { opacity: 1; }

.service-icon {
  width: 56px; height: 56px;
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--cyan);
  margin-bottom: 20px;
  transition: background var(--transition);
}
.service-card:hover .service-icon { background: rgba(0,212,255,0.2); }

.service-card h3 { margin-bottom: 12px; }
.service-card p  { color: var(--muted); font-size: 0.9rem; line-height: 1.7; }

/* ══════════════════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════════════════ */
.stats-section {
  background: linear-gradient(135deg, #050f1e 0%, #071428 100%);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 80px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.stat-row {
  display: flex;
  align-items: baseline;
  gap: 2px;
}
.stat-number {
  font-family: var(--font-head);
  font-size: clamp(2.4rem, 4vw, 3.5rem);
  font-weight: 900;
  color: var(--cyan);
  line-height: 1;
}
.stat-plus, .stat-slash {
  font-family: var(--font-head);
  font-size: clamp(1.6rem, 2.5vw, 2.4rem);
  font-weight: 700;
  color: var(--cyan);
}
.stat-label {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 500;
}

/* ══════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════ */
.testimonials-swiper {
  padding-bottom: 60px !important;
}

.testimonial-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 36px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.testimonial-stars { color: #f5a623; font-size: 0.9rem; letter-spacing: 2px; }

.testimonial-text {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
  flex: 1;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--border);
}

.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cyan), #0080aa);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--bg-deep);
  flex-shrink: 0;
}

.testimonial-author strong { display: block; font-size: 0.95rem; }
.testimonial-author span   { font-size: 0.8rem; color: var(--muted); }

/* Swiper overrides */
.swiper-pagination-bullet { background: var(--muted) !important; }
.swiper-pagination-bullet-active { background: var(--cyan) !important; }
.swiper-button-prev,
.swiper-button-next {
  color: var(--cyan) !important;
}
.swiper-button-prev::after,
.swiper-button-next::after { font-size: 1.1rem !important; }

/* ══════════════════════════════════════════════════════════════
   WHY US
═══════════════════════════════════════════════════════════════ */
.whyus-section {
  background: var(--bg-card);
}

.whyus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.whyus-card {
  text-align: center;
  padding: 48px 32px;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--bg-deep);
  transition: border-color var(--transition), transform var(--transition);
}
.whyus-card:hover {
  border-color: var(--border-hover);
  transform: translateY(-4px);
}

.whyus-icon {
  width: 68px; height: 68px;
  margin: 0 auto 22px;
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--cyan);
  transition: background var(--transition);
}
.whyus-card:hover .whyus-icon { background: rgba(0,212,255,0.22); }

.whyus-card h3 { margin-bottom: 12px; }
.whyus-card p  { color: var(--muted); font-size: 0.9rem; }

/* ══════════════════════════════════════════════════════════════
   HOURS
═══════════════════════════════════════════════════════════════ */
.hours-section {
  background: linear-gradient(180deg, var(--bg-deep) 0%, #050f20 100%);
}

.hours-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  align-items: stretch;
}

.hours-card, .hotline-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 48px 40px;
}

.hours-header {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 32px;
  font-size: 1.3rem;
  color: var(--cyan);
}
.hours-header h3 { color: var(--white); font-size: 1.3rem; }

.hours-list { display: flex; flex-direction: column; gap: 14px; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  background: var(--bg-deep);
  border-radius: 8px;
  font-size: 0.93rem;
}
.hours-list li span:last-child { color: var(--cyan); font-weight: 600; font-family: var(--font-head); }

/* Hotline card */
.hotline-card {
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  border-color: rgba(0,212,255,0.25);
}
.hotline-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at center, rgba(0,212,255,0.05) 0%, transparent 70%);
  pointer-events: none;
}

.hotline-pulse {
  position: absolute;
  top: -40px; right: -40px;
  width: 200px; height: 200px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.08) 0%, transparent 70%);
  animation: pulse 3s ease-in-out infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 0.5; }
  50%      { transform: scale(1.2); opacity: 1; }
}

.hotline-icon {
  font-size: 2.4rem;
  color: var(--cyan);
  filter: drop-shadow(0 0 16px var(--cyan-glow));
  position: relative;
  z-index: 1;
}

.hotline-card h3 {
  font-size: 1.4rem;
  position: relative;
  z-index: 1;
}

.hotline-badge {
  font-family: var(--font-head);
  font-size: 3rem;
  font-weight: 900;
  color: var(--cyan);
  text-shadow: 0 0 30px var(--cyan-glow);
  line-height: 1;
  position: relative;
  z-index: 1;
}

.hotline-card p {
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 260px;
  position: relative;
  z-index: 1;
}

.hotline-card .btn-primary {
  position: relative;
  z-index: 1;
  margin-top: 8px;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.contact-info-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}
.contact-info-item > i {
  width: 44px; height: 44px;
  background: var(--cyan-dim);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--cyan);
  flex-shrink: 0;
  padding: 0;
  text-align: center;
  line-height: 44px;
}
.contact-info-item div { display: flex; flex-direction: column; gap: 4px; }
.contact-info-item strong { font-size: 0.8rem; color: var(--muted); text-transform: uppercase; letter-spacing: 0.06em; }
.contact-info-item span,
.contact-info-item a { font-size: 0.95rem; color: var(--white); transition: color var(--transition); }
.contact-info-item a:hover { color: var(--cyan); }

/* Form */
form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.form-group label {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.form-group input,
.form-group textarea {
  background: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 12px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 0.95rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  resize: vertical;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(138,160,184,0.5); }
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--cyan);
  box-shadow: 0 0 0 3px rgba(0,212,255,0.1);
}

.form-message {
  font-size: 0.9rem;
  padding: 10px 16px;
  border-radius: 8px;
  display: none;
}
.form-message.success {
  display: block;
  background: rgba(0,255,136,0.1);
  border: 1px solid rgba(0,255,136,0.3);
  color: #00ff88;
}
.form-message.error {
  display: block;
  background: rgba(255,80,80,0.1);
  border: 1px solid rgba(255,80,80,0.3);
  color: #ff5050;
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════ */
#footer {
  background: #020913;
  border-top: 1px solid var(--border);
  padding: 60px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer-brand p {
  margin-top: 14px;
  color: var(--muted);
  font-size: 0.9rem;
  max-width: 260px;
  line-height: 1.6;
}

.footer-links h4,
.footer-contact h4 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
  margin-bottom: 18px;
}

.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  font-size: 0.9rem;
  color: var(--muted);
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--cyan); }

.footer-contact {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.footer-contact p,
.footer-contact a {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--cyan); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  font-size: 0.82rem;
  color: var(--muted);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a { color: var(--muted); transition: color var(--transition); }
.footer-legal a:hover { color: var(--cyan); }

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .services-grid      { grid-template-columns: repeat(2, 1fr); }
  .stats-grid         { grid-template-columns: repeat(2, 1fr); }
  .footer-grid        { grid-template-columns: 1fr 1fr; }
  .footer-brand       { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --nav-h: 64px; }

  .nav-links {
    position: fixed;
    top: var(--nav-h);
    left: 0; right: 0;
    background: rgba(4,13,26,0.97);
    backdrop-filter: blur(16px);
    flex-direction: column;
    gap: 0;
    border-bottom: 1px solid var(--border);
    transform: translateY(-120%);
    transition: transform 0.35s cubic-bezier(.4,0,.2,1);
    padding: 16px 0;
    z-index: 999;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a { display: block; padding: 14px 24px; font-size: 1rem; }

  .hamburger { display: flex; }

  .services-grid  { grid-template-columns: 1fr; }
  .whyus-grid     { grid-template-columns: 1fr; }
  .hours-grid     { grid-template-columns: 1fr; }
  .contact-grid   { grid-template-columns: 1fr; }
  .form-row       { grid-template-columns: 1fr; }
  .footer-grid    { grid-template-columns: 1fr; }

  .stats-grid     { grid-template-columns: repeat(2,1fr); gap: 24px; }

  .hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.4rem); }

  form { padding: 28px 20px; }
}

@media (max-width: 480px) {
  .section { padding: 70px 0; }
  .stats-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
  .hero-cta-row { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; justify-content: center; }
}
