:root{
  --navy-950:#081522;
  --navy-900:#0d1f33;
  --navy-800:#123252;
  --navy-700:#1a4470;
  --gold:#c9a961;
  --gold-light:#f0e2b6;
  --gold-dark:#a3803f;
  --bg-light:#f6f7f9;
  --bg-soft:#eef1f5;
  --text-dark:#182634;
  --text-muted:#5b6b7c;
  --radius:16px;
  --shadow:0 15px 40px rgba(13,31,51,.10);
  --shadow-lg:0 25px 60px rgba(13,31,51,.18);
  --maxw:1180px;
}
*{box-sizing:border-box; margin:0; padding:0;}
html{scroll-behavior:smooth;}
body{
  background:var(--bg-light);
  color:var(--text-dark);
  overflow-x:hidden;
  transition:background .3s;
}
html[lang="ar"] body{font-family:'Cairo',sans-serif;}
html[lang="en"] body{font-family:'Poppins',sans-serif;}
html[lang="ur"] body{font-family:'Noto Nastaliq Urdu',serif; line-height:2.15;}
html[lang="ur"] .eyebrow, html[lang="ur"] .btn, html[lang="ur"] .navlink, html[lang="ur"] .lang-switch button{line-height:1.9;}

img,svg{display:block; max-width:100%;}
a{text-decoration:none; color:inherit;}
ul{list-style:none;}
.container{max-width:var(--maxw); margin:0 auto; padding:0 24px;}
section{padding:100px 0;}
.eyebrow{
  display:inline-flex; align-items:center; gap:10px;
  color:var(--gold-dark); font-weight:700; letter-spacing:.12em;
  text-transform:uppercase; font-size:13px; margin-bottom:18px;
}
html[lang="ur"] .eyebrow{letter-spacing:0; text-transform:none;}
.eyebrow::before{content:""; width:28px; height:2px; background:var(--gold); display:inline-block;}
.sec-title{font-size:clamp(28px,4vw,42px); font-weight:800; color:var(--navy-900); margin-bottom:16px; line-height:1.25;}
.sec-sub{color:var(--text-muted); font-size:17px; max-width:680px; margin-bottom:50px; line-height:1.9;}
.center{text-align:center; margin-left:auto; margin-right:auto;}

/* ---------- HEADER ---------- */
header{
  position:fixed; top:0; left:0; right:0; z-index:1000;
  background:rgba(8,21,34,.72); backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(201,169,97,.18);
  transition:background .3s;
}
.nav-wrap{display:flex; align-items:center; justify-content:space-between; padding:14px 24px; max-width:var(--maxw); margin:0 auto;}
.brand{display:flex; align-items:center; gap:12px;}
.brand .mark{width:46px; height:46px; flex-shrink:0; object-fit:contain; border-radius:10px;}
.brand-text{display:flex; flex-direction:column; line-height:1.15;}
.brand-text b{color:#fff; font-size:16px; font-weight:800; letter-spacing:.02em;}
.brand-text span{color:var(--gold-light); font-size:11px; letter-spacing:.08em; text-transform:uppercase;}
html[lang="ur"] .brand-text span{text-transform:none; letter-spacing:0;}

nav.navlinks{display:flex; align-items:center; gap:32px;}
.navlink{color:#dfe6ee; font-size:14.5px; font-weight:500; opacity:.9; position:relative; padding:4px 0;}
.navlink:hover{opacity:1; color:var(--gold-light);}
.navlink.active{opacity:1; color:var(--gold-light);}
.navlink.active::after{content:""; position:absolute; bottom:-6px; inset-inline-start:0; width:100%; height:2px; background:var(--gold);}

.lang-switch{display:flex; align-items:center; gap:6px; background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.15); border-radius:30px; padding:4px;}
.lang-switch button{
  border:none; background:transparent; color:#cfd8e2; font-size:12.5px; font-weight:700;
  padding:7px 13px; border-radius:24px; cursor:pointer; transition:.25s;
}
.lang-switch button.active{background:linear-gradient(135deg,var(--gold-light),var(--gold-dark)); color:#1a1204;}

.burger{
  display:none; width:40px; height:40px; border-radius:10px; border:1px solid rgba(255,255,255,.18);
  background:rgba(255,255,255,.06); cursor:pointer; flex-direction:column; align-items:center; justify-content:center; gap:5px;
}
.burger span{display:block; width:20px; height:2px; background:#fff; border-radius:2px; transition:.3s;}
.burger.open span:nth-child(1){transform:translateY(7px) rotate(45deg);}
.burger.open span:nth-child(2){opacity:0;}
.burger.open span:nth-child(3){transform:translateY(-7px) rotate(-45deg);}

/* ---------- HERO ---------- */
.hero{
  position:relative; min-height:100vh; display:flex; align-items:center;
  background:radial-gradient(1200px 700px at 20% 15%, var(--navy-800), var(--navy-950) 70%);
  overflow:hidden;
}
.hero-net{position:absolute; inset:0; opacity:.35; pointer-events:none;}
.hero-net .hn-shape{transform-origin:center; animation:hnDrift 14s ease-in-out infinite;}
.hero-net .hn-shape.hn-2{animation-duration:18s; animation-delay:-4s;}
.hero-net .hn-shape.hn-3{animation-duration:22s; animation-delay:-9s;}
.hero-net .hn-dot{animation:hnTwinkle 3.2s ease-in-out infinite;}
@keyframes hnDrift{
  0%,100%{transform:translateY(0) rotate(0deg);}
  50%{transform:translateY(-14px) rotate(2.5deg);}
}
@keyframes hnTwinkle{
  0%,100%{opacity:.35; r:4;}
  50%{opacity:1; r:5.5;}
}
@media (prefers-reduced-motion: reduce){
  .hero-net .hn-shape, .hero-net .hn-dot{animation:none !important;}
}
.hero::after{
  content:""; position:absolute; inset:0;
  background:linear-gradient(180deg, rgba(8,21,34,0) 40%, var(--bg-light) 100%);
}
.hero-inner{position:relative; z-index:2; padding-top:110px; padding-bottom:90px;}
.hero-badge{
  display:inline-flex; align-items:center; gap:8px; padding:8px 18px; border-radius:30px;
  border:1px solid rgba(201,169,97,.4); background:rgba(201,169,97,.08); color:var(--gold-light);
  font-size:12.5px; font-weight:700; letter-spacing:.12em; text-transform:uppercase; margin-bottom:28px;
}
html[lang="ur"] .hero-badge{text-transform:none; letter-spacing:0;}
.hero h1{
  color:#fff; font-size:clamp(38px,6vw,72px); font-weight:800; line-height:1.1; margin-bottom:12px;
  background:linear-gradient(120deg,#fff 40%, var(--gold-light) 100%);
  -webkit-background-clip:text; background-clip:text; -webkit-text-fill-color:transparent;
}
.hero h2{color:var(--gold-light); font-weight:600; font-size:clamp(18px,2.4vw,26px); margin-bottom:26px;}
.hero p{color:#c3ccd6; font-size:17.5px; max-width:640px; line-height:2; margin-bottom:40px;}
.hero-ctas{display:flex; gap:18px; flex-wrap:wrap;}

.btn{
  display:inline-flex; align-items:center; gap:10px; padding:15px 32px; border-radius:12px;
  font-weight:700; font-size:15px; cursor:pointer; border:none; transition:.3s; white-space:nowrap;
}
.btn-gold{background:linear-gradient(135deg,var(--gold-light),var(--gold-dark)); color:#241c07; box-shadow:0 12px 28px rgba(163,128,63,.35);}
.btn-gold:hover{transform:translateY(-3px); box-shadow:0 16px 34px rgba(163,128,63,.45);}
.btn-outline{background:transparent; border:1.5px solid rgba(255,255,255,.35); color:#fff;}
.btn-outline:hover{background:rgba(255,255,255,.08); border-color:#fff;}

.scroll-cue{position:absolute; bottom:32px; left:50%; transform:translateX(-50%); z-index:2; color:var(--gold-light); opacity:.7; animation:bob 2.2s infinite;}
@keyframes bob{0%,100%{transform:translate(-50%,0);}50%{transform:translate(-50%,8px);}}

/* ---------- PHILOSOPHY ---------- */
.philosophy{background:var(--bg-light);}
.quote-card{
  background:linear-gradient(135deg,var(--navy-900),var(--navy-800)); border-radius:22px; padding:56px;
  color:#fff; position:relative; overflow:hidden; margin-bottom:56px;
}
.quote-card::before{content:"\201C"; position:absolute; top:-10px; inset-inline-start:24px; font-size:180px; color:rgba(201,169,97,.18); font-family:Georgia,serif; line-height:1;}
.quote-card p{position:relative; font-size:clamp(18px,2.2vw,24px); font-weight:500; line-height:1.85; max-width:820px;}
.quote-card .qtitle{color:var(--gold-light); font-weight:700; font-size:13px; letter-spacing:.14em; text-transform:uppercase; margin-bottom:18px; display:block;}
html[lang="ur"] .quote-card .qtitle{text-transform:none; letter-spacing:0;}

.mvg-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px;}
.mvg-card{
  background:#fff; border-radius:var(--radius); padding:36px 28px; box-shadow:var(--shadow);
  border-top:4px solid var(--gold); transition:.3s;
}
.mvg-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-lg);}
.mvg-card .icon-wrap{margin-bottom:20px;}
.mvg-card h3{font-size:19px; font-weight:800; color:var(--navy-900); margin-bottom:10px;}
.mvg-card p{color:var(--text-muted); font-size:15px; line-height:1.85;}

.closing-line{text-align:center; max-width:760px; margin:56px auto 0; font-size:17px; color:var(--text-muted); font-weight:500; line-height:2;}

/* icon circle */
.icon-circ{
  width:56px; height:56px; border-radius:16px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,rgba(201,169,97,.16),rgba(201,169,97,.05)); color:var(--gold-dark);
}
.icon-circ svg{width:26px; height:26px; stroke:var(--gold-dark); transition:transform .4s ease;}
.card:hover .icon-circ svg, .mvg-card:hover .icon-circ svg, .os-item:hover .icon-circ svg, .pkg-card:hover .icon-circ svg{
  transform:scale(1.15) rotate(-6deg);
}

/* ---------- ABOUT ---------- */
.about{background:#fff;}
.about-grid{display:grid; grid-template-columns:1.1fr .9fr; gap:70px; align-items:center;}
.about-text p{color:var(--text-muted); font-size:16.5px; line-height:2.05; margin-bottom:22px;}
.about-visual{
  position:relative; background:linear-gradient(160deg,var(--navy-900),var(--navy-950));
  border-radius:24px; padding:46px 34px; color:#fff; min-height:380px;
  display:flex; flex-direction:column; justify-content:center; gap:26px;
  box-shadow:var(--shadow-lg);
}
.stat-row{display:flex; align-items:center; gap:18px; padding-bottom:22px; border-bottom:1px solid rgba(255,255,255,.12);}
.stat-row:last-child{border-bottom:none; padding-bottom:0;}
.stat-row .num{font-size:30px; font-weight:800; color:var(--gold-light); min-width:70px;}
.stat-row .lbl{font-size:14.5px; color:#cdd6df; line-height:1.6;}

/* ---------- WHY / ACTIVITIES / PRODUCTS grids ---------- */
.grid-4{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
.grid-3{display:grid; grid-template-columns:repeat(3,1fr); gap:24px;}
.grid-2{display:grid; grid-template-columns:repeat(2,1fr); gap:24px;}
.card{
  background:#fff; border-radius:var(--radius); padding:32px 26px; box-shadow:var(--shadow); transition:.3s;
  border:1px solid rgba(13,31,51,.05);
}
.card:hover{transform:translateY(-6px); box-shadow:var(--shadow-lg); border-color:transparent;}
.card h3{font-size:17.5px; font-weight:800; color:var(--navy-900); margin:18px 0 10px;}
.card p{font-size:14.5px; color:var(--text-muted); line-height:1.85;}
.card .idx{font-size:12px; font-weight:800; color:var(--gold-dark); letter-spacing:.08em;}

.section-alt{background:var(--bg-soft);}

/* other services list */
.os-grid{display:grid; grid-template-columns:repeat(2,1fr); gap:20px;}
.os-item{
  display:flex; align-items:center; gap:18px; background:#fff; border-radius:14px; padding:22px 24px;
  box-shadow:var(--shadow); transition:.3s;
}
.os-item:hover{transform:translateY(-4px); box-shadow:var(--shadow-lg);}
.os-item .icon-circ{flex-shrink:0; width:48px; height:48px; border-radius:12px;}
.os-item span{font-weight:700; font-size:15.5px; color:var(--navy-900);}

/* partnerships */
.partner-grid{display:grid; grid-template-columns:repeat(4,1fr); gap:24px;}
.partner-card{
  background:#fff; border-radius:var(--radius); padding:34px 22px; text-align:center; box-shadow:var(--shadow);
  transition:.3s;
}
.partner-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-lg);}
.partner-badge{
  width:64px; height:64px; border-radius:50%; margin:0 auto 18px; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,var(--navy-800),var(--navy-950)); color:var(--gold-light); font-weight:800; font-size:20px;
}
.partner-card h4{font-size:15.5px; font-weight:800; color:var(--navy-900); margin-bottom:8px; line-height:1.5;}
.partner-card p{font-size:13.5px; color:var(--text-muted); line-height:1.7;}

/* gov platforms */
.plat-grid{display:grid; grid-template-columns:repeat(5,1fr); gap:18px;}
.plat-item{
  background:#fff; border:1px solid rgba(13,31,51,.06); border-radius:14px; padding:22px 12px; text-align:center;
  font-weight:700; font-size:13.5px; color:var(--navy-900); transition:.3s; box-shadow:0 4px 14px rgba(13,31,51,.05);
  display:flex; flex-direction:column; align-items:center; gap:12px;
}
.plat-item:hover{border-color:var(--gold); color:var(--gold-dark); transform:translateY(-4px);}
.plat-logo{width:40px; height:40px; object-fit:contain; border-radius:8px;}
.plat-logo-fallback{
  width:40px; height:40px; border-radius:50%; display:flex; align-items:center; justify-content:center;
  background:linear-gradient(135deg,var(--navy-800),var(--navy-950)); color:var(--gold-light); font-weight:800; font-size:16px;
}

/* ---------- PACKAGES ---------- */
.pkg-grid{display:grid; grid-template-columns:repeat(3,1fr); gap:26px; align-items:stretch;}
.pkg-card{
  background:#fff; border-radius:var(--radius); padding:38px 30px; box-shadow:var(--shadow); transition:.3s;
  border:1px solid rgba(13,31,51,.06); position:relative; display:flex; flex-direction:column;
}
.pkg-card:hover{transform:translateY(-6px); box-shadow:var(--shadow-lg);}
.pkg-card.pkg-featured{border:2px solid var(--gold); background:linear-gradient(180deg,#fff, #fffdf6);}
.pkg-tag{
  position:absolute; top:-14px; inset-inline-start:30px; background:linear-gradient(135deg,var(--gold-light),var(--gold-dark));
  color:#241c07; font-size:12px; font-weight:800; padding:6px 16px; border-radius:20px; box-shadow:0 6px 16px rgba(163,128,63,.35);
}
.pkg-icon{margin-bottom:18px;}
.pkg-card h3{font-size:21px; font-weight:800; color:var(--navy-900); margin-bottom:6px;}
.pkg-audience{color:var(--text-muted); font-size:14px; margin-bottom:22px; line-height:1.7;}
.pkg-features{list-style:none; display:flex; flex-direction:column; gap:12px; margin-bottom:28px; flex:1;}
.pkg-features li{
  font-size:14.5px; color:var(--text-dark); line-height:1.7; padding-inline-start:26px; position:relative;
}
.pkg-features li::before{
  content:"\2713"; position:absolute; inset-inline-start:0; top:0; color:var(--gold-dark); font-weight:800;
}
.pkg-card .pkg-cta{justify-content:center; width:100%;}
.pkg-card .btn-outline.pkg-cta{background:transparent; border:1.5px solid var(--navy-900); color:var(--navy-900);}
.pkg-card .btn-outline.pkg-cta:hover{background:var(--navy-900); color:#fff;}

/* ---------- CUSTOM PACKAGE BUILDER ---------- */
.custom-pkg-card{
  background:#fff; border-radius:22px; padding:46px 40px; box-shadow:var(--shadow-lg);
  border:1px solid rgba(13,31,51,.06);
}
.custom-services{display:grid; grid-template-columns:repeat(3,1fr); gap:14px; margin:30px 0 34px;}
.custom-service-item{
  display:flex; align-items:center; gap:12px; background:var(--bg-light); border:1.5px solid transparent;
  border-radius:12px; padding:14px 16px; cursor:pointer; transition:.25s; font-size:14.5px; font-weight:600; color:var(--text-dark);
}
.custom-service-item:hover{border-color:rgba(201,169,97,.4);}
.custom-service-item input{position:absolute; opacity:0; width:0; height:0;}
.custom-check{
  width:22px; height:22px; border-radius:7px; border:2px solid rgba(13,31,51,.18); flex-shrink:0;
  display:flex; align-items:center; justify-content:center; transition:.25s; background:#fff;
}
.custom-check .check-icon{width:13px; height:13px; stroke:#fff; opacity:0; transform:scale(.5); transition:.2s;}
.custom-service-item input:checked ~ .custom-check{background:var(--gold); border-color:var(--gold);}
.custom-service-item input:checked ~ .custom-check .check-icon{opacity:1; transform:scale(1);}
.custom-service-item:has(input:checked){background:rgba(201,169,97,.1); border-color:var(--gold);}
.custom-form-row{display:grid; grid-template-columns:1fr 1fr; gap:20px; margin-bottom:10px;}
.custom-form-row .form-row label{color:var(--navy-900);}
.custom-form-row .form-row input{
  background:var(--bg-light); border:1px solid rgba(13,31,51,.14); color:var(--text-dark);
}
.custom-form-row .form-row input::placeholder{color:var(--text-muted);}
.custom-form-row .form-row input:focus{border-color:var(--gold); outline:none;}
.custom-warning{display:none; color:#b3261e; font-size:13.5px; font-weight:700; margin-bottom:16px;}
#customSubmit{width:100%; justify-content:center;}

@media(max-width:980px){
  .custom-services{grid-template-columns:repeat(2,1fr);}
  .custom-form-row{grid-template-columns:1fr;}
}
@media(max-width:600px){
  .custom-pkg-card{padding:32px 22px;}
  .custom-services{grid-template-columns:1fr;}
}

/* ---------- PAGE HEADER (inner pages) ---------- */
.page-hero{
  position:relative; padding:170px 0 90px; text-align:center;
  background:radial-gradient(1200px 500px at 50% 0%, var(--navy-800), var(--navy-950) 75%);
  color:#fff; overflow:hidden;
}
.page-hero .eyebrow{color:var(--gold-light); justify-content:center;}
.page-hero h1{font-size:clamp(30px,5vw,50px); font-weight:800; color:#fff; margin-bottom:14px;}
.page-hero p{color:#c3ccd6; font-size:16.5px; max-width:640px; margin:0 auto; line-height:1.9;}
.breadcrumb{display:flex; gap:8px; justify-content:center; align-items:center; font-size:13px; color:#9fb0c0; margin-top:18px;}
.breadcrumb a{color:var(--gold-light);}

/* ---------- CONTACT ---------- */
.contact{background:linear-gradient(160deg,var(--navy-950),var(--navy-800)); color:#fff; position:relative; overflow:hidden;}
.contact-grid{display:grid; grid-template-columns:1fr 1fr; gap:60px; align-items:start; position:relative; z-index:2;}
.contact .eyebrow{color:var(--gold-light);}
.contact h2{color:#fff;}
.contact p.lead{color:#c3ccd6; font-size:16.5px; line-height:2; margin-bottom:36px; max-width:520px;}
.contact-item{display:flex; align-items:flex-start; gap:18px; margin-bottom:26px;}
.contact-item .icon-circ{background:rgba(201,169,97,.14); color:var(--gold-light); flex-shrink:0;}
.contact-item .icon-circ svg{stroke:var(--gold-light);}
.contact-item .clabel{font-size:12.5px; color:var(--gold-light); font-weight:700; text-transform:uppercase; letter-spacing:.1em; margin-bottom:4px;}
html[lang="ur"] .contact-item .clabel{text-transform:none; letter-spacing:0;}
.contact-item .cval{font-size:16px; font-weight:600; color:#fff;}

.social-row{display:flex; gap:14px; margin-top:10px;}
.social-btn{
  width:52px; height:52px; border-radius:14px; display:flex; align-items:center; justify-content:center;
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.15); transition:.3s;
}
.social-btn:hover{background:var(--gold); border-color:var(--gold);}
.social-btn svg{width:22px; height:22px; stroke:#fff;}
.social-btn:hover svg{stroke:#1a1204;}

.contact-card{
  background:rgba(255,255,255,.06); border:1px solid rgba(255,255,255,.14); border-radius:22px; padding:44px 36px;
  backdrop-filter:blur(6px);
}
.contact-card h3{font-size:22px; font-weight:800; margin-bottom:26px; color:#fff;}
.contact-card .btn-gold{width:100%; justify-content:center; margin-top:10px;}

/* contact form */
.form-row{display:flex; flex-direction:column; gap:8px; margin-bottom:18px;}
.form-row label{font-size:13.5px; font-weight:700; color:var(--gold-light);}
.form-row input, .form-row textarea{
  background:rgba(255,255,255,.08); border:1px solid rgba(255,255,255,.18); border-radius:10px;
  padding:13px 16px; color:#fff; font-size:14.5px; font-family:inherit; resize:vertical;
}
.form-row input::placeholder, .form-row textarea::placeholder{color:#8a99a8;}
.form-row input:focus, .form-row textarea:focus{outline:none; border-color:var(--gold);}
.form-note{font-size:12.5px; color:#9fb0c0; margin-top:6px; line-height:1.7;}

footer{background:var(--navy-950); color:#9aa8b6; padding:40px 0; text-align:center; font-size:13.5px;}
footer .fbrand{color:var(--gold-light); font-weight:800; margin-bottom:8px; display:block; font-size:15px;}

/* ---------- ANIMATIONS ---------- */
.reveal{opacity:0; transform:translateY(28px); transition:opacity .7s ease, transform .7s ease;}
.reveal.in-view{opacity:1; transform:translateY(0);}
.reveal-stagger.in-view > *{animation:fadeUp .6s ease both;}
.reveal-stagger.in-view > *:nth-child(1){animation-delay:.05s;}
.reveal-stagger.in-view > *:nth-child(2){animation-delay:.12s;}
.reveal-stagger.in-view > *:nth-child(3){animation-delay:.19s;}
.reveal-stagger.in-view > *:nth-child(4){animation-delay:.26s;}
.reveal-stagger.in-view > *:nth-child(5){animation-delay:.33s;}
.reveal-stagger.in-view > *:nth-child(6){animation-delay:.4s;}
.reveal-stagger.in-view > *:nth-child(n+7){animation-delay:.46s;}
@keyframes fadeUp{from{opacity:0; transform:translateY(22px);} to{opacity:1; transform:translateY(0);}}

.hero-badge, .hero h1, .hero h2, .hero p, .hero-ctas{
  opacity:0; animation:fadeUp .8s ease forwards;
}
.hero-badge{animation-delay:.1s;}
.hero h1{animation-delay:.22s;}
.hero h2{animation-delay:.34s;}
.hero p{animation-delay:.46s;}
.hero-ctas{animation-delay:.58s;}

.page-hero h1, .page-hero p, .page-hero .eyebrow{opacity:0; animation:fadeUp .8s ease forwards;}
.page-hero .eyebrow{animation-delay:.05s;}
.page-hero h1{animation-delay:.16s;}
.page-hero p{animation-delay:.28s;}

@media (prefers-reduced-motion: reduce){
  .reveal, .reveal-stagger > *, .hero-badge, .hero h1, .hero h2, .hero p, .hero-ctas,
  .page-hero h1, .page-hero p, .page-hero .eyebrow{animation:none !important; transition:none !important; opacity:1 !important; transform:none !important;}
}

/* ---------- ASSISTANT WIDGET ---------- */
.assistant-toggle{
  position:fixed; bottom:26px; inset-inline-end:26px; z-index:1200;
  width:62px; height:62px; border-radius:50%; border:none; cursor:pointer;
  background:linear-gradient(135deg,var(--gold-light),var(--gold-dark)); color:#241c07;
  box-shadow:0 14px 32px rgba(163,128,63,.4); display:flex; align-items:center; justify-content:center;
  transition:transform .25s;
}
.assistant-toggle:hover{transform:scale(1.06);}
.assistant-toggle svg{width:28px; height:28px;}
.assistant-toggle .badge-dot{
  position:absolute; top:6px; inset-inline-end:6px; width:12px; height:12px; border-radius:50%;
  background:#2fbf5f; border:2px solid #fff; animation:pulse 2s infinite;
}
@keyframes pulse{0%{box-shadow:0 0 0 0 rgba(47,191,95,.6);}70%{box-shadow:0 0 0 8px rgba(47,191,95,0);}100%{box-shadow:0 0 0 0 rgba(47,191,95,0);}}

.assistant-panel{
  position:fixed; bottom:100px; inset-inline-end:26px; z-index:1200; width:min(370px,90vw);
  max-height:70vh; background:#fff; border-radius:20px; box-shadow:var(--shadow-lg);
  display:flex; flex-direction:column; overflow:hidden; transform:translateY(16px) scale(.97); opacity:0;
  pointer-events:none; transition:transform .25s ease, opacity .25s ease;
}
.assistant-panel.open{transform:translateY(0) scale(1); opacity:1; pointer-events:auto;}
.assistant-head{
  background:linear-gradient(135deg,var(--navy-900),var(--navy-800)); color:#fff; padding:18px 20px;
  display:flex; align-items:center; gap:12px;
}
.assistant-head .aic{width:38px; height:38px; border-radius:50%; background:rgba(201,169,97,.2); display:flex; align-items:center; justify-content:center; flex-shrink:0;}
.assistant-head .aic svg{width:20px; height:20px; stroke:var(--gold-light);}
.assistant-head .atitle{font-weight:800; font-size:15px;}
.assistant-head .asub{font-size:12px; color:#cdd6df; display:flex; align-items:center; gap:6px;}
.assistant-head .asub::before{content:""; width:7px; height:7px; border-radius:50%; background:#2fbf5f; display:inline-block;}
.assistant-close{margin-inline-start:auto; background:rgba(255,255,255,.1); border:none; color:#fff; width:30px; height:30px; border-radius:50%; cursor:pointer; font-size:16px; line-height:1;}
.assistant-close:hover{background:rgba(255,255,255,.2);}

.assistant-body{flex:1; overflow-y:auto; padding:18px; display:flex; flex-direction:column; gap:12px; background:var(--bg-light);}
.msg{max-width:85%; padding:11px 15px; border-radius:14px; font-size:14px; line-height:1.75; animation:fadeUp .3s ease;}
.msg.bot{background:#fff; color:var(--text-dark); box-shadow:var(--shadow); align-self:flex-start; border-start-start-radius:4px;}
.msg.user{background:linear-gradient(135deg,var(--gold-light),var(--gold-dark)); color:#241c07; align-self:flex-end; border-start-end-radius:4px; font-weight:600;}
.msg.bot a{color:var(--gold-dark); font-weight:700; text-decoration:underline;}

.quick-replies{display:flex; flex-wrap:wrap; gap:8px; padding:0 18px 14px; background:var(--bg-light);}
.qr-btn{
  background:#fff; border:1px solid rgba(13,31,51,.12); color:var(--navy-900); font-size:12.5px; font-weight:700;
  padding:8px 14px; border-radius:20px; cursor:pointer; transition:.2s;
}
.qr-btn:hover{background:var(--gold); border-color:var(--gold); color:#241c07;}

.assistant-input{display:flex; gap:8px; padding:14px; border-top:1px solid rgba(13,31,51,.08); background:#fff;}
.assistant-input input{
  flex:1; border:1px solid rgba(13,31,51,.14); border-radius:24px; padding:11px 18px; font-size:14px;
  font-family:inherit; outline:none;
}
.assistant-input input:focus{border-color:var(--gold);}
.assistant-input button{
  width:42px; height:42px; border-radius:50%; border:none; cursor:pointer; flex-shrink:0;
  background:linear-gradient(135deg,var(--gold-light),var(--gold-dark)); color:#241c07; display:flex; align-items:center; justify-content:center;
}
.assistant-input button svg{width:18px; height:18px; transform:scaleX(-1);}
html[lang="en"] .assistant-input button svg{transform:none;}
.typing-dots{display:flex; gap:4px; align-self:flex-start; background:#fff; padding:13px 16px; border-radius:14px; box-shadow:var(--shadow);}
.typing-dots span{width:6px; height:6px; border-radius:50%; background:var(--text-muted); animation:blink 1.2s infinite;}
.typing-dots span:nth-child(2){animation-delay:.2s;}
.typing-dots span:nth-child(3){animation-delay:.4s;}
@keyframes blink{0%,80%,100%{opacity:.3;}40%{opacity:1;}}

@media(max-width:480px){
  .assistant-panel{inset-inline-end:12px; bottom:92px; width:calc(100vw - 24px);}
  .assistant-toggle{inset-inline-end:16px; bottom:16px;}
}

/* ---------- RESPONSIVE ---------- */
@media(max-width:980px){
  nav.navlinks{
    position:fixed; top:74px; inset-inline-start:0; inset-inline-end:0; background:var(--navy-950);
    flex-direction:column; align-items:stretch; gap:0; padding:10px 0; border-bottom:1px solid rgba(201,169,97,.18);
    max-height:0; overflow:hidden; transition:max-height .35s ease;
  }
  nav.navlinks.open{max-height:400px;}
  nav.navlinks .navlink{padding:14px 24px; border-bottom:1px solid rgba(255,255,255,.06);}
  .burger{display:flex;}
  .about-grid, .contact-grid{grid-template-columns:1fr; gap:40px;}
  .mvg-grid, .grid-4{grid-template-columns:repeat(2,1fr);}
  .grid-3{grid-template-columns:repeat(2,1fr);}
  .partner-grid{grid-template-columns:repeat(2,1fr);}
  .plat-grid{grid-template-columns:repeat(3,1fr);}
  .os-grid{grid-template-columns:1fr;}
  .pkg-grid{grid-template-columns:1fr; max-width:460px; margin:0 auto;}
}
@media(max-width:600px){
  section{padding:70px 0;}
  .mvg-grid,.grid-4,.grid-3,.grid-2,.partner-grid{grid-template-columns:1fr;}
  .plat-grid{grid-template-columns:repeat(2,1fr);}
  .hero-ctas{flex-direction:column; align-items:stretch;}
  .quote-card{padding:34px 24px;}
  .nav-wrap{padding:12px 16px;}
  .brand .mark{width:38px; height:38px;}
  .brand-text b{font-size:13.5px;}
  .brand-text span{font-size:9px;}
  .lang-switch button{padding:6px 10px; font-size:11.5px;}
}
