/* ═══ SRXTeK — Shared Styles ══════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #F5C518; --gold-dim: #c99a10;
  --cyan: #00D4FF;
  --white: #ffffff; --gray: #9ca3af;
  --dark: #060810; --dark-2: #0a0e18; --dark-3: #0f1421;
  --card: rgba(255,255,255,0.04); --border: rgba(255,255,255,0.08);
}
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background: var(--dark); color: var(--white); overflow-x: hidden; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--dark); }
::-webkit-scrollbar-thumb { background: linear-gradient(var(--cyan), var(--gold)); border-radius: 3px; }

/* ══════════════════════════════════════════════════════════
   NAV  —  bulletproof CSS-only dropdown
   ══════════════════════════════════════════════════════════ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 9999;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 48px; height: 70px;
  transition: background 0.35s, box-shadow 0.35s;
}
nav.scrolled {
  background: rgba(6,8,16,0.97);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 30px rgba(0,0,0,0.5);
}
.nav-logo { display: flex; align-items: center; text-decoration: none; flex-shrink: 0; }
.nav-logo img { height: 36px; object-fit: contain; filter: brightness(0) invert(1); }

/* link list */
.nav-links { display: flex; align-items: stretch; gap: 0; list-style: none; height: 70px; }
.nav-links > li {
  position: relative;
  display: flex; align-items: center;
}
.nav-links > li > a {
  display: flex; align-items: center; gap: 5px;
  text-decoration: none; color: rgba(255,255,255,0.75);
  font-size: 11px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
  padding: 0 12px; height: 70px;            /* full nav height = no gap to dropdown */
  white-space: nowrap;
  transition: color 0.2s, background 0.2s;
}
.nav-links > li > a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.nav-links > li > a .arrow { font-size: 7px; opacity: 0.4; transition: transform 0.2s; }
.nav-links > li.has-dropdown:hover > a .arrow { transform: rotate(180deg); opacity: 1; }

/* CTA */
.nav-cta {
  background: linear-gradient(135deg, var(--cyan), #005d96) !important;
  color: #000 !important; font-weight: 700 !important;
  height: auto !important; padding: 8px 18px !important;
  border-radius: 7px !important; margin: 0 0 0 8px;
  align-self: center;
  box-shadow: 0 0 18px rgba(0,212,255,0.2);
}
.nav-cta:hover { box-shadow: 0 0 30px rgba(0,212,255,0.45) !important; }

/* ── Dropdown ── */
.dropdown-menu {
  display: none;
  position: absolute;
  top: 70px;
  left: 0;
  background: #0c1020;
  border: 1px solid rgba(255,255,255,0.1);
  border-top: 2px solid var(--cyan);
  border-radius: 0 0 12px 12px;
  padding: 8px 8px 12px;
  min-width: 220px;
  z-index: 9999;
  box-shadow: 0 16px 48px rgba(0,0,0,0.7);
}
/* Shown ONLY by JS adding .open — no CSS hover fighting */
.has-dropdown.open > .dropdown-menu { display: block; }

.dropdown-label {
  font-size: 9px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  color: rgba(255,255,255,0.3); padding: 10px 14px 4px; display: block;
}
.dropdown-menu a {
  display: flex; align-items: center; gap: 10px;
  text-decoration: none; color: rgba(255,255,255,0.7);
  font-size: 12.5px; font-weight: 500;
  padding: 10px 14px; border-radius: 8px;
  transition: color 0.15s, background 0.15s; white-space: nowrap;
}
.dropdown-menu a:hover { color: #fff; background: rgba(255,255,255,0.07); }
.dropdown-menu a .dm-icon { font-size: 15px; width: 22px; text-align: center; flex-shrink: 0; }

/* ── Hamburger ── */
.ham {
  display: none; flex-direction: column; justify-content: center;
  gap: 5px; cursor: pointer; background: none; border: none;
  padding: 8px; z-index: 9999;
}
.ham span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.25s; }
.ham.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ham.open span:nth-child(2) { opacity: 0; }
.ham.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── Mobile drawer ── */
.mobile-nav {
  display: none;
  position: fixed; top: 70px; left: 0; right: 0; bottom: 0;
  background: #060810; z-index: 9998;
  overflow-y: auto; padding: 16px 16px 40px;
  flex-direction: column; gap: 2px;
}
.mobile-nav.open { display: flex; }
.mob-link {
  display: block; text-decoration: none;
  color: rgba(255,255,255,0.75); font-size: 16px; font-weight: 600;
  padding: 14px 16px; border-radius: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: color 0.2s, background 0.2s;
}
.mob-link:last-of-type { border-bottom: none; }
.mob-link:hover { color: #fff; background: rgba(255,255,255,0.07); }
.mob-section { font-size: 9px; font-weight: 700; letter-spacing: 3px; text-transform: uppercase; color: var(--cyan); padding: 18px 16px 6px; }
.mob-sub-link {
  display: block; text-decoration: none;
  color: rgba(255,255,255,0.55); font-size: 14px; font-weight: 500;
  padding: 11px 16px 11px 30px; border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}
.mob-sub-link:hover { color: #fff; background: rgba(255,255,255,0.06); }
.mob-cta {
  display: block; text-align: center; text-decoration: none;
  background: linear-gradient(135deg, var(--cyan), #005d96);
  color: #000; font-weight: 700; font-size: 15px;
  padding: 16px; border-radius: 10px; margin-top: 20px;
}

/* ══════════════════════════════════════════════════════════
   WHATSAPP FLOAT
   ══════════════════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 1800;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45);
  transition: transform 0.3s, box-shadow 0.3s;
  animation: waPop 0.5s cubic-bezier(.34,1.56,.64,1) 1.5s both;
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 6px 32px rgba(37,211,102,0.65); }
.whatsapp-float svg { width: 28px; height: 28px; }
@keyframes waPop { from{transform:scale(0);opacity:0} to{transform:scale(1);opacity:1} }
.wa-pulse {
  position: absolute; inset: -5px; border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.45);
  animation: waPulse 2s ease infinite;
}
@keyframes waPulse { 0%{transform:scale(1);opacity:1} 100%{transform:scale(1.55);opacity:0} }

/* ══════════════════════════════════════════════════════════
   PAGE HERO (sub-pages)
   ══════════════════════════════════════════════════════════ */
.page-hero {
  height: 56vh; min-height: 400px; position: relative;
  display: flex; align-items: flex-end; overflow: hidden;
  padding-top: 70px;
}
.page-hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: brightness(0.42) saturate(0.75);
  transform: scale(1.04);
}
.page-hero-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(6,8,16,0.35) 0%, rgba(6,8,16,0.1) 35%, rgba(6,8,16,0.88) 75%, #060810 100%),
    linear-gradient(90deg, rgba(6,8,16,0.55) 0%, transparent 65%);
}
.page-hero-content { position: relative; z-index: 2; padding: 0 56px 52px; }
.page-hero-tag {
  font-size: 10px; font-weight: 700; letter-spacing: 4px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 10px; display: block;
}
.page-hero-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(42px, 7vw, 88px); letter-spacing: 4px; line-height: 0.95;
}
.page-hero-title .grad {
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.page-breadcrumb {
  display: flex; align-items: center; gap: 8px; margin-top: 14px;
  font-size: 12px; color: var(--gray); flex-wrap: wrap;
}
.page-breadcrumb a { color: var(--gray); text-decoration: none; transition: color 0.2s; }
.page-breadcrumb a:hover { color: #fff; }
.page-breadcrumb span { color: #fff; }
.page-breadcrumb .sep { opacity: 0.35; }

/* ══════════════════════════════════════════════════════════
   SHARED SECTIONS
   ══════════════════════════════════════════════════════════ */
section { padding: 92px 60px; position: relative; }

.section-tag {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 10px; font-weight: 800; letter-spacing: 4px; text-transform: uppercase;
  color: var(--cyan); margin-bottom: 12px;
}
.section-tag::before { content: ''; width: 14px; height: 1px; background: var(--cyan); flex-shrink: 0; }

.section-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(36px, 5vw, 66px); letter-spacing: 2px; line-height: 0.95;
}
.section-title .grad {
  background: linear-gradient(90deg, var(--cyan), var(--gold));
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.section-desc { font-size: 15px; color: var(--gray); line-height: 1.8; max-width: 540px; margin-top: 14px; }

/* Two-column layout helper — stacks on mobile */
.two-col {
  display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center;
}

/* ══════════════════════════════════════════════════════════
   OFFER CARDS (sub-pages)
   ══════════════════════════════════════════════════════════ */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.offer-card {
  background: var(--card); border: 1px solid var(--border); border-radius: 14px;
  padding: 34px 26px; position: relative; overflow: hidden;
  transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
}
.offer-card:hover { border-color: rgba(0,212,255,0.3); transform: translateY(-4px); box-shadow: 0 16px 40px rgba(0,0,0,0.4); }
.offer-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, var(--cyan), var(--gold)); opacity: 0; transition: opacity 0.3s;
}
.offer-card:hover::before { opacity: 1; }
.offer-icon { font-size: 30px; margin-bottom: 18px; display: block; }
.offer-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; color: #fff; }
.offer-desc { font-size: 13px; color: var(--gray); line-height: 1.7; }

/* ══════════════════════════════════════════════════════════
   BUTTONS
   ══════════════════════════════════════════════════════════ */
.btn-glow {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--cyan), #005fa3);
  color: #000; font-weight: 800; font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  padding: 13px 28px; border-radius: 8px; text-decoration: none;
  box-shadow: 0 0 28px rgba(0,212,255,0.25); transition: transform 0.2s, box-shadow 0.3s;
}
.btn-glow:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(0,212,255,0.5); }

.btn-ghost {
  display: inline-flex; align-items: center; gap: 9px;
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.15);
  color: #fff; font-weight: 600; font-size: 12px; letter-spacing: 0.5px;
  padding: 13px 26px; border-radius: 8px; text-decoration: none;
  transition: border-color 0.2s, background 0.2s, transform 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.35); background: rgba(255,255,255,0.1); transform: translateY(-2px); }

.btn-gold {
  display: inline-flex; align-items: center; gap: 9px;
  background: linear-gradient(135deg, var(--gold), #c99a10);
  color: #000; font-weight: 800; font-size: 12px; letter-spacing: 1px; text-transform: uppercase;
  padding: 13px 28px; border-radius: 8px; text-decoration: none;
  box-shadow: 0 0 28px rgba(245,197,24,0.2); transition: transform 0.2s, box-shadow 0.3s;
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 36px rgba(245,197,24,0.45); }

.btn-wa {
  display: inline-flex; align-items: center; gap: 9px;
  background: #25D366; color: #000; font-weight: 700; font-size: 12px;
  padding: 13px 26px; border-radius: 8px; text-decoration: none;
  box-shadow: 0 0 18px rgba(37,211,102,0.25); transition: transform 0.2s, box-shadow 0.3s;
}
.btn-wa:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(37,211,102,0.5); }

/* ══════════════════════════════════════════════════════════
   CTA STRIP
   ══════════════════════════════════════════════════════════ */
.cta-strip {
  background: linear-gradient(135deg, rgba(0,212,255,0.05), rgba(245,197,24,0.03));
  border-top: 1px solid rgba(0,212,255,0.1); border-bottom: 1px solid rgba(0,212,255,0.1);
  padding: 80px 60px; text-align: center; position: relative; overflow: hidden;
}
.cta-strip::before {
  content: ''; position: absolute; width: 480px; height: 480px; border-radius: 50%;
  background: radial-gradient(circle, rgba(0,212,255,0.07) 0%, transparent 70%);
  top: 50%; left: 50%; transform: translate(-50%,-50%); pointer-events: none;
}
.cta-strip-title { font-family:'Bebas Neue',sans-serif; font-size:clamp(34px,5vw,62px); letter-spacing:3px; position:relative; }
.cta-strip-title .grad { background:linear-gradient(90deg,var(--cyan),var(--gold)); -webkit-background-clip:text; -webkit-text-fill-color:transparent; }
.cta-strip-desc { font-size:15px; color:var(--gray); margin:12px 0 32px; position:relative; max-width:540px; margin-left:auto; margin-right:auto; }
.cta-strip-btns { display:flex; gap:12px; justify-content:center; flex-wrap:wrap; position:relative; }

/* ══════════════════════════════════════════════════════════
   MARQUEE
   ══════════════════════════════════════════════════════════ */
.marquee-strip { background:linear-gradient(90deg,var(--cyan),var(--gold),var(--cyan)); padding:12px 0; overflow:hidden; position:relative; z-index:10; }
.marquee-track { display:flex; white-space:nowrap; animation:marquee 25s linear infinite; }
.marquee-track span { font-family:'Bebas Neue',sans-serif; font-size:13px; letter-spacing:4px; color:#000; padding:0 32px; }
.marquee-track span::before { content:'✦  '; }
@keyframes marquee { from{transform:translateX(0)} to{transform:translateX(-50%)} }

/* ══════════════════════════════════════════════════════════
   FOOTER
   ══════════════════════════════════════════════════════════ */
footer { background:var(--dark); border-top:1px solid var(--border); padding:60px 60px 30px; }
.footer-top { display:grid; grid-template-columns:2fr 1fr 1fr 1fr; gap:44px; margin-bottom:44px; }
.footer-logo img { height:40px; object-fit:contain; filter:brightness(0) invert(1); margin-bottom:14px; display:block; }
.footer-desc { font-size:13px; color:var(--gray); line-height:1.7; margin-bottom:22px; max-width:250px; }
.social-row { display:flex; gap:10px; }
.soc { width:35px; height:35px; border-radius:8px; background:var(--card); border:1px solid var(--border); display:flex; align-items:center; justify-content:center; text-decoration:none; font-size:13px; color:var(--gray); transition:border-color 0.2s,color 0.2s,transform 0.2s; }
.soc:hover { border-color:var(--cyan); color:var(--cyan); transform:translateY(-2px); }
.footer-col h5 { font-size:10px; font-weight:700; letter-spacing:3px; text-transform:uppercase; color:#fff; margin-bottom:18px; }
.footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
.footer-col ul a { text-decoration:none; font-size:13px; color:var(--gray); display:inline-block; transition:color 0.2s, padding-left 0.2s; }
.footer-col ul a:hover { color:#fff; padding-left:4px; }
.footer-bottom { display:flex; align-items:center; justify-content:space-between; padding-top:26px; border-top:1px solid var(--border); flex-wrap:wrap; gap:10px; }
.footer-bottom p { font-size:12px; color:var(--gray); }
.footer-bottom a { color:var(--cyan); text-decoration:none; }

/* ── Grid helpers used in subpages ── */
.four-col { display:grid; grid-template-columns:repeat(4,1fr); gap:16px; }
.three-col { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; }
@media(max-width:900px){
  .four-col { grid-template-columns:1fr 1fr; }
  .three-col { grid-template-columns:1fr 1fr; }
}
@media(max-width:500px){
  .four-col { grid-template-columns:1fr; }
  .three-col { grid-template-columns:1fr; }
}

/* ══════════════════════════════════════════════════════════
   REVEAL ANIMATIONS
   ══════════════════════════════════════════════════════════ */
.reveal   { opacity:0; transform:translateY(26px);   transition:opacity 0.6s ease, transform 0.6s ease; }
.reveal-l { opacity:0; transform:translateX(-32px);  transition:opacity 0.6s ease, transform 0.6s ease; }
.reveal-r { opacity:0; transform:translateX(32px);   transition:opacity 0.6s ease, transform 0.6s ease; }
.reveal-s { opacity:0; transform:scale(0.93);        transition:opacity 0.6s ease, transform 0.6s ease; }
.reveal.in, .reveal-l.in, .reveal-r.in, .reveal-s.in { opacity:1; transform:none; }
.d1{transition-delay:.08s!important} .d2{transition-delay:.16s!important} .d3{transition-delay:.24s!important}
.d4{transition-delay:.32s!important} .d5{transition-delay:.40s!important} .d6{transition-delay:.48s!important}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 1100px tablet
   ══════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  nav { padding: 0 24px; }
  .nav-links > li > a { padding: 0 9px; font-size: 10.5px; }
  section { padding: 72px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  footer { padding: 48px 32px 26px; }
  .offer-grid { grid-template-columns: 1fr 1fr; }
  .cta-strip { padding: 60px 32px; }
  .page-hero-content { padding: 0 32px 44px; }
  .two-col { gap: 40px; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 900px  ➜  hamburger takes over
   ══════════════════════════════════════════════════════════ */
@media (max-width: 900px) {
  .nav-links { display: none !important; }
  .ham { display: flex !important; }

  .two-col { grid-template-columns: 1fr !important; gap: 32px !important; }
  .two-col .reveal-l { transform: translateY(20px); }
  .two-col .reveal-l.in { transform: none; }
  .two-col .reveal-r { transform: translateY(20px); }
  .two-col .reveal-r.in { transform: none; }
}

/* ══════════════════════════════════════════════════════════
   RESPONSIVE — 600px mobile
   ══════════════════════════════════════════════════════════ */
@media (max-width: 600px) {
  nav { padding: 0 14px; height: 60px; }
  nav.scrolled { height: 60px; }
  .nav-logo img { height: 28px; }
  .mobile-nav { top: 60px; }

  section { padding: 52px 16px; }
  .page-hero { min-height: 320px; }
  .page-hero-content { padding: 0 16px 32px; }
  .page-hero-title { font-size: clamp(34px, 10vw, 60px); }

  .offer-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  footer { padding: 36px 16px 20px; }
  .cta-strip { padding: 44px 16px; }
  .cta-strip-btns { flex-direction: column; align-items: center; }
  .cta-strip-btns a { width: 100%; max-width: 300px; justify-content: center; }
  .btn-glow, .btn-ghost, .btn-gold, .btn-wa { padding: 12px 18px; font-size: 11px; }
}
