/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --bg:        #08111f;
  --bg-card:   #111c2f;
  --bg-deep:   #060e1a;
  --accent:    #00d4ff;
  --accent-lo: rgba(0,212,255,0.12);
  --gold:      #facc15;
  --gold-dk:   #f59e0b;
  --text:      #ffffff;
  --muted:     #94a3b8;
  --border:    rgba(0,212,255,0.13);
  --border-h:  rgba(0,212,255,0.38);
  --hh:        84px;
  --r:         12px;
  --t:         0.3s ease;
}

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Segoe UI', system-ui, -apple-system, 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

::selection { background: rgba(0,212,255,.22); color: #fff; }
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0,212,255,.28); border-radius: 3px; }

/* ===== LAYOUT ===== */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.section    { padding: 96px 0; }

.sec-label {
  display: inline-block;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--accent); margin-bottom: 10px;
}
.sec-title {
  font-size: clamp(1.55rem, 3vw, 2.4rem);
  font-weight: 800; line-height: 1.18; margin-bottom: 14px;
}
.sec-sub {
  font-size: 1.02rem; color: var(--muted); max-width: 600px; line-height: 1.7;
}
.sec-head { text-align: center; margin-bottom: 58px; }
.sec-head .sec-sub { margin: 0 auto; }

.accent { color: var(--accent); }

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex; align-items: center; gap: 7px;
  padding: 12px 26px; border-radius: 8px;
  font-size: .92rem; font-weight: 700; cursor: pointer;
  border: none; transition: var(--t); white-space: nowrap;
  font-family: inherit;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #090909;
}
.btn-gold:hover  { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(250,204,21,.32); }
.btn-outline {
  background: transparent; color: var(--accent);
  border: 1.5px solid var(--accent);
}
.btn-outline:hover { background: rgba(0,212,255,.09); transform: translateY(-2px); }

/* ===== HEADER ===== */
#hdr {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  height: var(--hh);
  background: rgba(8,17,31,.91);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  transition: var(--t);
}
.hdr-inner {
  display: flex; align-items: center;
  justify-content: space-between; height: 100%;
}
.logo {
  display: flex; align-items: center; gap: 9px;
  font-size: 1.18rem; font-weight: 800; letter-spacing: -.02em;
}
.logo-ic {
  width: 34px; height: 34px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--accent), #0055ff);
  border-radius: 8px; display: flex; align-items: center; justify-content: center;
}
.logo span { color: var(--accent); }
.site-logo {
  height: 72px; width: auto; max-width: 280px;
  display: block; object-fit: contain;
}
.footer-logo {
  height: 64px; width: auto; max-width: 240px;
  display: block; object-fit: contain; margin-bottom: 22px;
}
@media (max-width: 768px) {
  .footer-logo { height: 52px; max-width: 210px; }
}
.logo-desktop { display: block; }
.logo-mobile  { display: none; }
@media (max-width: 600px) {
  .logo-desktop { display: none; }
  .logo-mobile  { display: block; height: 48px; width: auto; object-fit: contain; }
}

nav { display: flex; align-items: center; gap: 28px; }
nav a {
  font-size: .88rem; font-weight: 500; color: var(--muted);
  transition: var(--t); position: relative;
}
nav a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--accent); transition: var(--t);
}
nav a:hover { color: var(--text); }
nav a:hover::after { width: 100%; }

.lang-box {
  display: flex; gap: 3px; padding: 4px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--border); border-radius: 8px;
}
.lb {
  padding: 5px 9px; border-radius: 5px;
  font-size: .73rem; font-weight: 800; letter-spacing: .04em;
  cursor: pointer; border: none; background: transparent;
  color: var(--muted); transition: var(--t); font-family: inherit;
}
.lb.on, .lb:hover { background: var(--accent); color: #000; }

.hdr-r { display: flex; align-items: center; gap: 16px; }

.nav-cta {
  padding: 8px 18px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #000; border-radius: 7px;
  font-size: .82rem; font-weight: 700; transition: var(--t);
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 6px 18px rgba(250,204,21,.28); }

.hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 6px; background: none; border: none;
}
.hamburger span {
  display: block; width: 22px; height: 2px;
  background: var(--text); border-radius: 2px; transition: var(--t);
}

/* mobile nav */
@media(max-width:860px) {
  nav, .nav-cta { display: none; }
  .hamburger { display: flex; }
  nav.open {
    display: flex; flex-direction: column;
    position: fixed; top: var(--hh); left: 0; right: 0;
    background: #0c1626; padding: 24px; gap: 22px;
    border-bottom: 1px solid var(--border); z-index: 999;
  }
  nav.open a { font-size: .98rem; color: var(--text); }
}

/* ===== HERO ===== */
#hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: url('https://images.unsplash.com/photo-1540575467063-178a50c2df87?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
}
.hero-ov {
  position: absolute; inset: 0;
  background: linear-gradient(130deg, rgba(8,17,31,.87) 0%, rgba(8,17,31,.62) 55%, rgba(8,17,31,.72) 100%);
}
.hero-con {
  position: relative; z-index: 2;
  padding-top: var(--hh); max-width: 760px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 16px;
  background: rgba(0,212,255,.1); border: 1px solid rgba(0,212,255,.28);
  border-radius: 100px; font-size: .76rem; font-weight: 700;
  color: var(--accent); margin-bottom: 22px;
  letter-spacing: .06em; text-transform: uppercase;
}
.hero-badge::before {
  content: ''; width: 6px; height: 6px;
  background: var(--accent); border-radius: 50%;
  animation: blink 2s infinite;
}
@keyframes blink { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:.4;transform:scale(.75)} }

.hero-h1 {
  font-size: clamp(1.9rem, 5vw, 3.4rem);
  font-weight: 800; line-height: 1.11;
  letter-spacing: -.025em; margin-bottom: 18px;
}
.hero-sub {
  font-size: clamp(.92rem, 1.7vw, 1.12rem);
  color: rgba(255,255,255,.73);
  max-width: 580px; line-height: 1.72; margin-bottom: 36px;
}
.hero-btns { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

.hero-stats {
  display: flex; align-items: center; gap: 28px;
  margin-top: 56px; padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,.1); flex-wrap: wrap;
}
.hs-num { font-size: 1.75rem; font-weight: 800; color: var(--accent); display: block; }
.hs-lbl { font-size: .77rem; color: var(--muted); }

/* scroll cue */
.scroll-cue {
  position: absolute; bottom: 30px; left: 50%;
  transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center;
  gap: 6px; opacity: .45;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob { 0%,100%{transform:translateX(-50%) translateY(0)} 50%{transform:translateX(-50%) translateY(-8px)} }
.scroll-cue i {
  display: flex; width: 24px; height: 38px;
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 12px; justify-content: center; padding-top: 6px;
}
.scroll-cue i::before {
  content: ''; width: 4px; height: 8px;
  background: #fff; border-radius: 2px;
  animation: drp 2s infinite;
}
@keyframes drp { 0%{transform:translateY(0);opacity:1} 100%{transform:translateY(10px);opacity:0} }

/* ===== SERVICES ===== */
#services { background: var(--bg); }
.srv-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(205px,1fr));
  gap: 22px;
}
.srv-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: var(--r); padding: 30px 22px;
  transition: var(--t); position: relative; overflow: hidden;
}
.srv-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 2px; background: linear-gradient(90deg,var(--accent),#0044ee);
  opacity: 0; transition: var(--t);
}
.srv-card:hover { border-color: var(--border-h); transform: translateY(-7px); box-shadow: 0 22px 44px rgba(0,0,0,.32); }
.srv-card:hover::before { opacity: 1; }
.srv-ico {
  width: 50px; height: 50px;
  background: var(--accent-lo); border-radius: 11px;
  display: flex; align-items: center; justify-content: center;
  color: var(--accent); margin-bottom: 18px;
}
.srv-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 9px; }
.srv-desc  { font-size: .85rem; color: var(--muted); line-height: 1.62; }

/* ===== ABOUT ===== */
#about { background: linear-gradient(180deg, var(--bg) 0%, #0a1520 100%); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: center;
}
@media(max-width:768px) { .about-grid { grid-template-columns: 1fr; } }

.about-img-wrap { position: relative; border-radius: 16px; overflow: visible; }
.about-img-wrap img {
  width: 100%; height: 460px; object-fit: cover;
  border-radius: 16px;
  box-shadow: 0 24px 60px rgba(0,0,0,.45);
}
.about-badge {
  position: absolute; bottom: 20px; right: -12px;
  background: rgba(8,17,31,.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: 12px; padding: 14px 18px; text-align: center;
  box-shadow: 0 8px 30px rgba(0,0,0,.4);
}
.about-badge strong { font-size: 1.7rem; font-weight: 800; color: var(--accent); display: block; }
.about-badge span   { font-size: .72rem; color: var(--muted); }

.about-content .sec-sub { margin-bottom: 28px; }
.feat-list { display: flex; flex-direction: column; gap: 13px; }
.feat-item { display: flex; align-items: flex-start; gap: 12px; }
.feat-ic {
  width: 26px; height: 26px; flex-shrink: 0; margin-top: 1px;
  background: var(--accent-lo); border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
}
.feat-txt { font-size: .9rem; color: var(--muted); }

/* ===== PACKAGES ===== */
#packages { background: var(--bg); }
.pkg-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(256px,1fr));
  gap: 22px;
}
.pkg-card {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 34px 26px;
  transition: var(--t); position: relative;
  display: flex; flex-direction: column;
}
.pkg-card.feat { border-color: var(--accent); background: linear-gradient(148deg,#121e35,#0e2040); }
.pkg-card:hover { transform: translateY(-7px); box-shadow: 0 26px 52px rgba(0,0,0,.36); }
.pkg-badge {
  position: absolute; top: -11px; left: 26px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dk));
  color: #000; font-size: .7rem; font-weight: 800;
  padding: 4px 12px; border-radius: 100px; letter-spacing: .08em; text-transform: uppercase;
}
.pkg-name  { font-size: 1.15rem; font-weight: 800; margin-bottom: 8px; }
.pkg-desc  { font-size: .84rem; color: var(--muted); margin-bottom: 22px; line-height: 1.62; }
.pkg-price { font-size: 1.35rem; font-weight: 800; color: var(--gold); margin-bottom: 22px; }
.pkg-feats { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; flex: 1; }
.pkg-feats li { display: flex; align-items: flex-start; gap: 9px; font-size: .86rem; color: var(--muted); }
.pkg-feats li svg { color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.pkg-cta { width: 100%; text-align: center; padding: 12px; }

/* ===== CONTACT ===== */
#contact { background: #080f1c; }
.ct-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 60px; align-items: start; }
@media(max-width:860px) { .ct-grid { grid-template-columns: 1fr; } }

.ct-info .sec-title { font-size: clamp(1.35rem, 2.5vw, 1.95rem); }
.ct-info p { font-size: .93rem; color: var(--muted); margin-bottom: 32px; line-height: 1.72; }

.ct-items { display: flex; flex-direction: column; gap: 18px; margin-bottom: 32px; }
.ct-item  { display: flex; align-items: center; gap: 14px; }
.ct-ic {
  width: 42px; height: 42px; flex-shrink: 0;
  background: var(--accent-lo); border-radius: 10px;
  display: flex; align-items: center; justify-content: center; color: var(--accent);
}
.ct-lbl   { font-size: .75rem; color: var(--muted); display: block; }
.ct-val   { font-size: .92rem; font-weight: 600; }

.ct-socials { display: flex; gap: 9px; flex-wrap: wrap; }
.soc-sm {
  width: 38px; height: 38px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.soc-sm:hover { transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0,0,0,.3); }

/* Form */
.ct-form {
  background: var(--bg-card); border: 1px solid var(--border);
  border-radius: 16px; padding: 36px 32px;
}
@media(max-width:540px) { .ct-form { padding: 22px 18px; } }
.ct-form h3 { font-size: 1.15rem; font-weight: 700; margin-bottom: 22px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
@media(max-width:540px) { .form-grid { grid-template-columns: 1fr; } }

.fg { display: flex; flex-direction: column; gap: 5px; }
.fg.full { grid-column: 1/-1; }
.flbl { font-size: .77rem; font-weight: 600; color: var(--muted); letter-spacing: .03em; }
.finput, .fsel, .ftxt {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px; padding: 11px 14px;
  color: var(--text); font-size: .9rem; font-family: inherit;
  outline: none; width: 100%; transition: var(--t);
}
.finput:focus, .fsel:focus, .ftxt:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(0,212,255,.1);
}
.fsel {
  cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7' viewBox='0 0 11 7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 34px;
}
.fsel option { background: #111c2f; color: #fff; }
.ftxt { resize: vertical; min-height: 110px; }

/* ===== FOOTER ===== */
footer {
  background: var(--bg-deep);
  border-top: 1px solid var(--border);
  padding: 52px 0 28px;
}
.ft-grid {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 36px; margin-bottom: 40px;
}
@media(max-width:860px) { .ft-grid { grid-template-columns: 1fr 1fr; } }
@media(max-width:480px) { .ft-grid { grid-template-columns: 1fr; } }

.ft-brand p { font-size: .85rem; color: var(--muted); margin-top: 10px; line-height: 1.68; max-width: 248px; }
.ft-col h4 {
  font-size: .78rem; font-weight: 700; text-transform: uppercase;
  letter-spacing: .09em; color: var(--muted); margin-bottom: 14px;
}
.ft-col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.ft-col ul li a { font-size: .85rem; color: var(--muted); transition: var(--t); }
.ft-col ul li a:hover { color: var(--accent); }

.ft-bot {
  border-top: 1px solid rgba(255,255,255,.06);
  padding-top: 22px; display: flex;
  justify-content: space-between; flex-wrap: wrap; gap: 10px;
}
.ft-bot p { font-size: .79rem; color: rgba(255,255,255,.27); }

/* ===== FLOATING BUTTONS ===== */
.float-wrap {
  position: fixed; bottom: 26px; right: 26px;
  display: flex; flex-direction: column; gap: 9px; z-index: 900;
}
.fb {
  width: 48px; height: 48px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  text-decoration: none; transition: all .3s cubic-bezier(.34,1.56,.64,1);
  box-shadow: 0 4px 18px rgba(0,0,0,.38);
}
.fb:hover { transform: scale(1.14) translateY(-2px); box-shadow: 0 9px 26px rgba(0,0,0,.48); }
.fb svg { width: 22px; height: 22px; }
.fb-ph  { background: #2563eb; }
.fb-wa  { background: #25D366; }
.fb-tg  { background: #229ED9; }
.fb-ig  { background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045); }
.fb-fb  { background: #1877F2; }

/* ===== POPUP ===== */
.pop-ov {
  position: fixed; inset: 0;
  background: rgba(0,0,0,.75);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  padding: 18px;
  opacity: 0; visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.pop-ov.open { opacity: 1; visibility: visible; }

.pop {
  background: #0c1828;
  border: 1px solid rgba(0,212,255,.2);
  border-radius: 18px; padding: 36px 32px;
  width: 100%; max-width: 510px;
  max-height: 92vh; overflow-y: auto;
  position: relative;
  transform: translateY(28px) scale(.96);
  transition: transform .4s cubic-bezier(.34,1.56,.64,1);
}
.pop-ov.open .pop { transform: translateY(0) scale(1); }

.pop-close {
  position: absolute; top: 14px; right: 14px;
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.07); border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); transition: var(--t);
}
.pop-close:hover { background: rgba(255,255,255,.13); color: var(--text); }

.pop-lang { display: flex; gap: 3px; margin-bottom: 18px; }

.pop-lbl  { font-size: .72rem; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--accent); margin-bottom: 8px; }
.pop-ttl  { font-size: 1.45rem; font-weight: 800; margin-bottom: 8px; }
.pop-desc { font-size: .88rem; color: var(--muted); margin-bottom: 22px; line-height: 1.62; }

.pop-form .fg { margin-bottom: 12px; }
.pop-form .finput, .pop-form .fsel, .pop-form .ftxt { padding: 10px 13px; }
.pop-form .ftxt { min-height: 90px; }

.pop-actions { display: flex; align-items: center; gap: 10px; margin-top: 18px; flex-wrap: wrap; }
.pop-submit  { flex: 1; min-width: 140px; justify-content: center; }
.pop-c-btns  { display: flex; gap: 8px; }
.pop-cb {
  width: 44px; height: 44px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: var(--t);
}
.pop-cb:hover { transform: scale(1.1); }

.pop-ok {
  text-align: center; padding: 12px;
  display: none;
}
.pop-ok.show { display: block; }
.pop-ok-ic {
  width: 60px; height: 60px; border-radius: 50%;
  background: var(--accent-lo);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px; color: var(--accent);
}
.pop-ok h3 { font-size: 1.25rem; font-weight: 700; margin-bottom: 8px; }
.pop-ok p  { font-size: .88rem; color: var(--muted); }

/* ===== FORM NOTICES ===== */
.form-notice {
  padding: 14px 18px; border-radius: 8px;
  font-size: .88rem; margin-bottom: 16px; display: none;
}
.form-notice.success { background: rgba(0,212,255,.1); border: 1px solid rgba(0,212,255,.3); color: var(--accent); display: block; }
.form-notice.error   { background: rgba(255,80,80,.1);  border: 1px solid rgba(255,80,80,.3);  color: #ff7070; display: block; }

/* ===== ANIMATIONS ===== */
.fade-up {
  opacity: 0; transform: translateY(22px);
  transition: opacity .65s ease, transform .65s ease;
}
.fade-up.in { opacity: 1; transform: translateY(0); }

/* ===== UTILS ===== */
.hidden { display: none !important; }
@media(max-width:640px) {
  .section { padding: 64px 0; }
  .float-wrap { bottom: 18px; right: 14px; gap: 7px; }
  .fb { width: 42px; height: 42px; }
  .fb svg { width: 19px; height: 19px; }
  .pop { padding: 26px 18px; }
}
