/* ===== TOKENS ===== */
:root {
  --ink: #080E18;
  --ink2: #0D1525;
  --ink3: #111D32;
  --glass: rgba(255,255,255,.04);
  --glass2: rgba(255,255,255,.07);
  --border: rgba(255,255,255,.08);
  --accent: #7C6FE0;
  --accent2: #A89FF5;
  --sky: #3B6FE0;
  --plume: #7B2C8C;
  --parch: #F7F5F0;
  --gray-1: rgba(255,255,255,.85);
  --gray-2: rgba(255,255,255,.55);
  --gray-3: rgba(255,255,255,.32);
  --gray-4: rgba(255,255,255,.12);
  --dm: 'Montserrat', -apple-system, sans-serif;
  --db: 'Poppins', -apple-system, sans-serif;
  --ds: 'DM Serif Display', Georgia, serif;
  --ease: cubic-bezier(.22,.61,.36,1);
  --ease2: cubic-bezier(.16,1,.3,1);
  --r: 16px;
  --r2: 24px;
  --container: 1260px;
}

/* ===== RESET ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--db); background: var(--ink); color: var(--gray-1); -webkit-font-smoothing: antialiased; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
@media (max-width: 768px) { .container { padding: 0 20px; } }

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 4px; } ::-webkit-scrollbar-track { background: var(--ink); } ::-webkit-scrollbar-thumb { background: #C9A24B; border-radius: 4px; }

/* ===== NAV ===== */
.nav-wrap { position: fixed; top: 0; left: 0; right: 0; z-index: 99999; display: flex; flex-direction: column; align-items: center; padding: 20px 20px 0; pointer-events: none; }
.nav {
  pointer-events: auto;
  display: flex; align-items: center; gap: 0;
  background: rgba(8,14,24,.6);
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 6px 8px 6px 8px;
  box-shadow: 0 8px 40px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.06);
  transition: backdrop-filter .4s, background .4s, box-shadow .4s, transform .4s var(--ease);
  max-width: 100%;
}
.nav.scrolled { background: rgba(8,14,24,.85); box-shadow: 0 12px 50px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08); }
.nav-logo { display: flex; align-items: center; gap: 10px; flex-shrink: 0; padding-right: 12px; }
.logo-ring { width: 38px; height: 38px; border-radius: 50%; background: var(--parch); display: flex; align-items: center; justify-content: center; overflow: hidden; flex-shrink: 0; transition: transform .4s var(--ease); }
.nav:hover .logo-ring { transform: rotate(-6deg) scale(1.06); }
.logo-ring img { width: 68%; height: 68%; object-fit: contain; }
.logo-text { font-family: var(--dm); font-weight: 700; font-size: .88rem; letter-spacing: .06em; color: #fff; line-height: 1.1; }
.logo-text em { display: block; font-family: var(--ds); font-style: italic; font-weight: 400; font-size: .82rem; color: var(--accent2); letter-spacing: .04em; }
.nav-links { display: none; align-items: center; gap: .25rem; padding: 0 8px; }
.nav-links a { font-family: var(--dm); font-size: .82rem; font-weight: 600; color: var(--gray-2); padding: .55rem .9rem; border-radius: 999px; transition: color .2s, background .2s; letter-spacing: .02em; }
.nav-links a:hover { color: #fff; background: var(--glass2); }
.nav-cta {
  display: none; font-family: var(--dm); font-size: .82rem; font-weight: 700;
  padding: .6rem 1.4rem; border-radius: 999px; letter-spacing: .04em; text-transform: uppercase;
  white-space: nowrap; cursor: pointer; border: none; color: #fff;
  background: linear-gradient(135deg, #7B2C8C 0%, #5B4AE0 50%, #ec4899 100%);
  box-shadow: 0 0 14px rgba(139,92,246,.45), inset 0 1px 0 rgba(255,255,255,.15);
  transition: filter .25s, transform .2s, box-shadow .25s;
}
.nav-cta:hover { filter: brightness(1.15); transform: translateY(-1px); box-shadow: 0 0 24px rgba(139,92,246,.65); }
.hamburger { background: var(--glass2); border: none; width: 40px; height: 40px; border-radius: 50%; cursor: pointer; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 5px; margin-left: 8px; transition: background .2s; }
.hamburger:hover { background: var(--glass); }
.hamburger span { display: block; width: 16px; height: 1.5px; background: #fff; border-radius: 1px; transition: transform .3s var(--ease), opacity .3s; }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
.mobile-menu { pointer-events: auto; position: relative; width: 100%; max-width: 640px; background: rgba(8,14,24,.97); backdrop-filter: blur(24px); border: 1px solid var(--border); border-radius: 20px; padding: 0; display: flex; flex-direction: column; gap: .2rem; max-height: 0; overflow: hidden; opacity: 0; transform: translateY(-8px); transition: max-height .45s cubic-bezier(.16,1,.3,1), opacity .3s, transform .4s cubic-bezier(.16,1,.3,1), padding .3s; margin-top: 8px; }
.mobile-menu.open { max-height: 440px; opacity: 1; transform: translateY(0); padding: 1rem; }
.mobile-menu a { padding: .8rem 1rem; border-radius: 12px; font-weight: 500; font-size: .95rem; color: var(--gray-2); transition: background .2s, color .2s; }
.mobile-menu a:hover { background: var(--glass2); color: #fff; }
.mm-cta { margin-top: .5rem; background: linear-gradient(135deg, #7B2C8C 0%, #5B4AE0 50%, #ec4899 100%); color: #fff; font-weight: 700; text-align: center; border-radius: 999px; box-shadow: 0 0 18px rgba(139,92,246,.4); }
.mm-cta:hover { filter: brightness(1.12); color: #fff; }
@media (min-width: 860px) { .nav-links { display: flex; } .nav-cta { display: inline-flex; } .hamburger { display: none; } .mobile-menu { display: none; } }

/* ===== HERO ===== */
.hero { position: relative; height: 100vh; min-height: 680px; display: flex; align-items: center; justify-content: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-video { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(170deg, rgba(8,14,24,.72) 0%, rgba(8,14,24,.45) 50%, rgba(8,14,24,.82) 100%); }
.hero-particles { position: absolute; inset: 0; pointer-events: none; }
.particle { position: absolute; border-radius: 50%; background: rgba(124,111,224,.25); animation: float-particle linear infinite; }
@keyframes float-particle { 0% { transform: translateY(100vh) scale(0); opacity: 0; } 10% { opacity: 1; } 90% { opacity: .6; } 100% { transform: translateY(-20px) scale(1); opacity: 0; } }
.hero-content { position: relative; z-index: 2; text-align: center; max-width: 920px; padding: 0 24px; }
.hero-eyebrow { font-family: var(--dm); font-size: .72rem; font-weight: 700; letter-spacing: .28em; text-transform: uppercase; color: rgba(255,255,255,.7); margin-bottom: 1.8rem; opacity: 0; animation: up .8s var(--ease2) .3s forwards; }
.hero-h1 { font-family: var(--dm); line-height: 1.0; letter-spacing: -.03em; margin-bottom: 1.4rem; }
.h1-serif { display: block; font-family: var(--ds); font-style: italic; font-weight: 400; font-size: clamp(2.2rem, 5vw, 4rem); color: rgba(255,255,255,.65); opacity: 0; animation: up .9s var(--ease2) .5s forwards; }
.h1-bold { display: block; font-weight: 900; font-size: clamp(2.8rem, 7.5vw, 6rem); color: #fff; opacity: 0; animation: up .9s var(--ease2) .65s forwards; }
.h1-accent { display: block; font-weight: 900; font-size: clamp(2.8rem, 7.5vw, 6rem); color: #fff; opacity: 0; animation: up .9s var(--ease2) .8s forwards; }
.hero-sub { font-size: clamp(1rem, 1.8vw, 1.2rem); color: rgba(255,255,255,.65); max-width: 620px; margin: 0 auto 1.8rem; font-weight: 300; line-height: 1.7; opacity: 0; animation: up .8s var(--ease2) 1s forwards; }
.hero-sub strong { color: #fff; font-weight: 600; }
.hero-badges { display: flex; flex-wrap: wrap; justify-content: center; gap: .6rem .9rem; margin-bottom: 2.4rem; opacity: 0; animation: up .8s var(--ease2) 1.1s forwards; }
.hero-badges span { font-family: var(--dm); font-size: .72rem; font-weight: 700; letter-spacing: .1em; color: rgba(255,255,255,.85); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.18); padding: .4rem .9rem; border-radius: 999px; backdrop-filter: blur(8px); }
.hero-actions { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; opacity: 0; animation: up .8s var(--ease2) 1.25s forwards; }
.hero-scroll-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-line { width: 1px; height: 56px; background: linear-gradient(180deg, rgba(201,162,75,.6), transparent); animation: scroll-cue 2s ease-in-out infinite; }
@keyframes scroll-cue { 0%, 100% { opacity: 1; transform: scaleY(1); } 50% { opacity: .4; transform: scaleY(.5); } }
@keyframes up { to { opacity: 1; transform: translateY(0); } from { opacity: 0; transform: translateY(22px); } }

/* ===== BUTTONS ===== */
/* ===== BUTTONS — neon glow pill ===== */
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--dm); font-weight: 700; font-size: .88rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: 1rem 2.2rem; color: #fff; border-radius: 999px; border: none; cursor: pointer;
  background: linear-gradient(135deg, #7B2C8C 0%, #5B4AE0 50%, #ec4899 100%);
  box-shadow: 0 0 18px rgba(139,92,246,.45), 0 0 40px rgba(139,92,246,.2), inset 0 1px 0 rgba(255,255,255,.15);
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s;
}
.btn-primary::before {
  content: ''; position: absolute; inset: -2px; border-radius: 999px;
  background: linear-gradient(135deg, #a855f7, #ec4899, #7C6FE0);
  z-index: -1; opacity: 0;
  transition: opacity .3s;
}
.btn-primary::after {
  content: ''; position: absolute; inset: 0; border-radius: 999px;
  border: 1.5px solid rgba(255,255,255,.25);
  box-shadow: 0 0 12px rgba(168,85,247,.6), inset 0 0 12px rgba(168,85,247,.15);
  pointer-events: none;
}
.btn-primary:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.12); box-shadow: 0 0 28px rgba(139,92,246,.65), 0 0 60px rgba(139,92,246,.3), inset 0 1px 0 rgba(255,255,255,.2); }
.btn-primary:hover::before { opacity: 1; }
.btn-primary:active { transform: scale(.97); }
.btn-primary.full { width: 100%; margin-top: .4rem; }

.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  font-family: var(--dm); font-weight: 700; font-size: .88rem;
  letter-spacing: .08em; text-transform: uppercase;
  padding: .95rem 2rem; color: #fff; border-radius: 999px; cursor: pointer;
  background: rgba(255,255,255,.06);
  border: 1.5px solid rgba(255,255,255,.3);
  box-shadow: 0 0 14px rgba(255,255,255,.05), inset 0 1px 0 rgba(255,255,255,.1);
  backdrop-filter: blur(10px);
  transition: transform .25s var(--ease), box-shadow .25s, background .25s, border-color .25s;
}
.btn-secondary:hover {
  transform: translateY(-2px);
  background: rgba(255,255,255,.12);
  border-color: rgba(255,255,255,.5);
  box-shadow: 0 0 22px rgba(255,255,255,.12), inset 0 1px 0 rgba(255,255,255,.18);
}
.btn-secondary:active { transform: scale(.97); }

.btn-whatsapp {
  display: inline-flex; align-items: center; gap: .7rem;
  font-family: var(--dm); font-weight: 700; font-size: .88rem;
  letter-spacing: .06em; text-transform: uppercase;
  padding: 1rem 2rem; color: #fff; border-radius: 999px; cursor: pointer; border: none;
  background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
  box-shadow: 0 0 18px rgba(37,211,102,.35), 0 0 40px rgba(37,211,102,.15), inset 0 1px 0 rgba(255,255,255,.2);
  position: relative; overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s, filter .25s;
  margin-top: 1.6rem;
}
.btn-whatsapp:hover { transform: translateY(-2px) scale(1.02); filter: brightness(1.1); box-shadow: 0 0 28px rgba(37,211,102,.55), 0 0 60px rgba(37,211,102,.25); }
.btn-whatsapp:active { transform: scale(.97); }


/* ===== TRUST BAR ===== */
.trust-bar {
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(24px) saturate(160%);
  -webkit-backdrop-filter: blur(24px) saturate(160%);
  border-top: 1px solid rgba(255,255,255,.1);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 2.2rem 0;
  position: relative;
}
.trust-bar::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(59,111,224,.06) 0%, rgba(123,44,140,.06) 50%, rgba(201,162,75,.06) 100%);
  pointer-events: none;
}
.tb-grid { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 1rem; position: relative; }
.tb-stat { display: flex; flex-direction: column; align-items: center; gap: .35rem; padding: .5rem 2.5rem; text-align: center; }
.tb-num, .tb-num-static { font-family: var(--dm); font-weight: 900; font-size: clamp(1.8rem, 4vw, 2.6rem); line-height: 1; background: linear-gradient(135deg, #7C6FE0, #a855f7, #ec4899); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: #a855f7; background-size: 200% auto; animation: grad-shift 4s ease infinite alternate; } @keyframes grad-shift { 0% { background-position: 0% 50%; } 100% { background-position: 100% 50%; } }
.tb-label { font-family: var(--dm); font-size: .7rem; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.45); font-weight: 600; }
.tb-div { width: 1px; height: 48px; background: rgba(255,255,255,.12); flex-shrink: 0; }
@media (max-width: 640px) { .tb-div { display: none; } .tb-stat { padding: .5rem 1.2rem; flex: 1 1 45%; } }

/* ===== SECTIONS ===== */
.section { padding: 7rem 0; }
.section-label { font-family: var(--dm); font-size: .68rem; font-weight: 800; letter-spacing: .28em; text-transform: uppercase; color: var(--sky); margin-bottom: 1.2rem; }
.section-h2 { font-family: var(--dm); font-weight: 900; font-size: clamp(2.4rem, 5.5vw, 4rem); line-height: 1.08; letter-spacing: -.03em; color: var(--ink); margin-bottom: 1.2rem; }
.section-h2 em { font-family: var(--ds); font-style: italic; font-weight: 400; }
.section-h2.light { color: #fff; }
.section-sub { font-size: 1rem; line-height: 1.7; color: var(--gray-2); max-width: 600px; margin: 0 auto 3.5rem; text-align: center; }
.section-sub strong { color: var(--accent2); }

/* ===== SERVICES ===== */
.services-section { background: var(--parch); }
.services-section .section-label { color: var(--sky); }
.services-section .section-h2 { text-align: left; margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; }
.service-card { background: #fff; border: 1px solid rgba(14,26,43,.08); border-radius: var(--r2); padding: 2.2rem; display: flex; flex-direction: column; gap: .8rem; transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s; }
.service-card:hover { transform: translateY(-6px); box-shadow: 0 24px 60px rgba(14,26,43,.12); border-color: rgba(123,44,140,.3); }
.sc-icon { width: 52px; height: 52px; border-radius: 14px; background: linear-gradient(135deg, rgba(59,111,224,.1), rgba(123,44,140,.1)); display: flex; align-items: center; justify-content: center; color: var(--plume); }
.sc-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-family: var(--dm); font-weight: 800; font-size: 1.1rem; color: var(--ink); letter-spacing: -.01em; }
.service-card p { font-size: .88rem; line-height: 1.65; color: #4b5563; flex-grow: 1; }
.sc-link { font-family: var(--dm); font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; color: var(--plume); transition: gap .2s; display: inline-flex; align-items: center; gap: .3rem; }
.sc-link:hover { color: var(--sky); }
@media (max-width: 900px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 580px) { .services-grid { grid-template-columns: 1fr; } }

/* ===== PACKAGES ===== */
.packages-section { background: var(--ink); }
.packages-section .section-h2 { text-align: center; margin-bottom: .8rem; }
.packages-section .section-sub { color: var(--gray-3); }
.pkg-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.2rem; margin-top: 3.5rem; }
.pkg-card { position: relative; background: var(--glass); border: 1px solid var(--border); border-radius: var(--r2); padding: 1.8rem; display: flex; flex-direction: column; gap: .9rem; transition: transform .4s var(--ease), border-color .35s, box-shadow .35s; }
.pkg-card:hover { transform: translateY(-8px); border-color: rgba(124,111,224,.3); box-shadow: 0 20px 60px rgba(0,0,0,.5); }
.pkg-card.featured { background: linear-gradient(160deg, rgba(59,111,224,.12), rgba(123,44,140,.1)); border-color: rgba(124,111,224,.4); box-shadow: 0 0 0 1px rgba(124,111,224,.15), 0 24px 80px rgba(0,0,0,.5); }
.pkg-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--accent); color: #fff; font-family: var(--dm); font-size: .65rem; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; padding: .32rem .85rem; border-radius: 999px; white-space: nowrap; }
.pkg-num { font-family: var(--dm); font-weight: 900; font-size: 2rem; background: linear-gradient(135deg, #7C6FE0, #a855f7, #ec4899); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--accent); line-height: 1; }
.pkg-card h3 { font-family: var(--dm); font-weight: 800; font-size: 1.1rem; color: #fff; letter-spacing: -.01em; }
.pkg-hotels { display: flex; flex-direction: column; gap: .5rem; }
.ph { display: flex; flex-direction: column; padding: .6rem .8rem; background: rgba(255,255,255,.04); border-radius: 10px; border: 1px solid var(--border); }
.ph-city { font-family: var(--dm); font-size: .58rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); }
.ph-name { font-weight: 600; font-size: .88rem; color: #fff; }
.ph-note { font-size: .72rem; color: var(--gray-3); }
.pkg-rates { display: flex; flex-direction: column; gap: .3rem; margin: .3rem 0; }
.pr { display: flex; justify-content: space-between; align-items: center; padding: .4rem .6rem; border-radius: 8px; }
.pr:hover { background: var(--glass2); }
.pr span { font-size: .78rem; color: var(--gray-3); font-weight: 500; text-transform: uppercase; letter-spacing: .06em; font-family: var(--dm); }
.pr strong { font-family: var(--dm); font-weight: 800; font-size: .95rem; background: linear-gradient(135deg, #a855f7, #ec4899); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: #a855f7; }
.pr strong::after { content: ' PKR'; font-size: .58rem; font-weight: 600; color: var(--gray-3); font-family: var(--db); }
.pkg-btn {
  display: flex; align-items: center; justify-content: center; padding: .8rem;
  border-radius: 999px; font-family: var(--dm); font-weight: 700; font-size: .75rem;
  letter-spacing: .08em; text-transform: uppercase; color: #fff;
  background: rgba(255,255,255,.05);
  border: 1.5px solid rgba(255,255,255,.18);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.08);
  transition: transform .25s var(--ease), background .25s, border-color .25s, box-shadow .25s;
  margin-top: auto; cursor: pointer;
}
.pkg-btn:hover { background: rgba(255,255,255,.1); border-color: rgba(255,255,255,.3); transform: translateY(-2px); box-shadow: 0 0 16px rgba(255,255,255,.08); }
.featured-btn {
  background: linear-gradient(135deg, #7B2C8C 0%, #5B4AE0 50%, #ec4899 100%);
  border-color: transparent;
  box-shadow: 0 0 18px rgba(139,92,246,.45), inset 0 1px 0 rgba(255,255,255,.15);
}
.featured-btn:hover { filter: brightness(1.12); transform: translateY(-2px); box-shadow: 0 0 28px rgba(139,92,246,.65); border-color: transparent; color: #fff; }
@media (max-width: 1100px) { .pkg-grid { grid-template-columns: repeat(2, 1fr); } .pkg-card.featured { order: -1; } }
@media (max-width: 580px) { .pkg-grid { grid-template-columns: minmax(0,420px); justify-content: center; } }

/* ===== DESTINATIONS ===== */
.dest-section { background: var(--ink2); }
.dest-section .section-h2 { margin-bottom: 3rem; }
.dest-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.dest-card { position: relative; border-radius: var(--r2); overflow: hidden; aspect-ratio: 4/5; background-image: var(--img); background-size: cover; background-position: center; transition: transform .5s var(--ease); cursor: pointer; }
.dest-card:hover { transform: scale(1.02); }
.dest-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(8,14,24,0) 30%, rgba(8,14,24,.92) 100%); transition: background .4s; }
.dest-card:hover .dest-overlay { background: linear-gradient(180deg, rgba(8,14,24,.1) 0%, rgba(8,14,24,.95) 100%); }
.dest-body { position: absolute; left: 0; right: 0; bottom: 0; padding: 1.5rem; }
.dest-tag { display: inline-block; font-family: var(--dm); font-size: .6rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--accent); margin-bottom: .4rem; }
.dest-body h3 { font-family: var(--dm); font-weight: 900; font-size: 1.35rem; letter-spacing: -.01em; margin-bottom: .2rem; }
.dest-body p { font-size: .8rem; color: var(--gray-3); }
@media (max-width: 900px) { .dest-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .dest-grid { grid-template-columns: 1fr; } .dest-card { aspect-ratio: 16/9; } }

/* ===== TESTIMONIALS ===== */
.testimonials-section { background: var(--ink); }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.4rem; margin-top: 3rem; }
.testi-card { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r2); padding: 2rem; display: flex; flex-direction: column; gap: 1rem; transition: transform .35s var(--ease), border-color .35s, box-shadow .35s; }
.testi-card:hover { transform: translateY(-5px); border-color: rgba(124,111,224,.3); box-shadow: 0 20px 60px rgba(0,0,0,.4); }
.testi-stars { background: linear-gradient(90deg, #a855f7, #ec4899); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: #a855f7; letter-spacing: .1em; font-size: .88rem; }
.testi-card blockquote { font-family: var(--db); font-style: italic; font-size: 1rem; line-height: 1.72; color: rgba(255,255,255,.88); flex-grow: 1; font-weight: 300; }
.testi-author { display: flex; align-items: center; gap: .8rem; }
.ta-avatar { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--dm); font-weight: 800; color: #fff; flex-shrink: 0; font-size: .9rem; line-height: 1; text-transform: uppercase; }
.testi-author strong { display: block; font-family: var(--dm); font-size: .88rem; font-weight: 700; color: #fff; }
.testi-author span { display: block; font-size: .72rem; color: var(--gray-3); }
@media (max-width: 900px) { .testi-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; } }

/* ===== ABOUT ===== */
.about-section { background: var(--parch); }
.about-inner { display: grid; grid-template-columns: 1.1fr .9fr; gap: 5rem; align-items: center; }
.about-copy .section-h2 { margin-bottom: 1.4rem; }
.about-copy p { font-size: .97rem; line-height: 1.75; color: #374151; margin-bottom: 1rem; }
.about-certs { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.8rem; }
.cert { display: flex; align-items: center; gap: .5rem; font-family: var(--dm); font-size: .75rem; font-weight: 700; color: var(--ink); letter-spacing: .06em; background: rgba(14,26,43,.06); border: 1px solid rgba(14,26,43,.12); padding: .5rem 1rem; border-radius: 999px; }
.cert-icon { color: var(--accent); font-size: .9rem; }
.about-visual { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.av-card { border-radius: var(--r2); padding: 2rem; display: flex; align-items: center; justify-content: center; transition: transform .4s var(--ease); }
.av-card:hover { transform: translateY(-4px); }
.av-card-1 { grid-column: 1 / -1; background: linear-gradient(135deg, var(--ink), var(--ink3)); }
.av-card-2 { background: linear-gradient(135deg, #1a0f30, #2d1545); }
.av-card-3 { background: linear-gradient(135deg, #0a1f14, #1a3a2a); }
.avc-inner { text-align: center; }
.avc-big { display: block; font-family: var(--dm); font-weight: 900; font-size: 3rem; background: linear-gradient(135deg, #7C6FE0, #a855f7, #ec4899); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: var(--accent); line-height: 1; }
.avc-label { display: block; font-family: var(--dm); font-size: .7rem; font-weight: 700; letter-spacing: .2em; text-transform: uppercase; color: var(--gray-3); margin-top: .5rem; }
@media (max-width: 900px) { .about-inner { grid-template-columns: 1fr; gap: 3rem; } }

/* ===== CONTACT ===== */
.contact-section { background: var(--ink); }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; }
.contact-copy .section-h2.light { margin-bottom: 1.2rem; }
.contact-copy p.light { color: var(--gray-2); line-height: 1.7; margin-bottom: 0; }
.contact-details { margin-top: 2rem; display: flex; flex-direction: column; gap: .8rem; }
.cd-row { display: flex; gap: .8rem; align-items: flex-start; font-size: .9rem; color: var(--gray-2); line-height: 1.6; }
.cd-icon { flex-shrink: 0; font-size: 1rem; margin-top: .05rem; }
.contact-form { background: var(--glass); border: 1px solid var(--border); border-radius: var(--r2); padding: 2.4rem; display: flex; flex-direction: column; gap: 1.2rem; }
.cf-field { display: flex; flex-direction: column; gap: .5rem; }
.cf-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.cf-field label { font-family: var(--dm); font-size: .68rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: var(--gray-3); }
.cf-field input, .cf-field textarea { background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: 12px; padding: .85rem 1rem; color: #fff; font-family: var(--db); font-size: .92rem; transition: border-color .25s, background .25s; }
.cf-field input::placeholder, .cf-field textarea::placeholder { color: var(--gray-3); }
.cf-field input:focus, .cf-field textarea:focus { outline: none; border-color: var(--accent); background: rgba(255,255,255,.07); }
.cf-field textarea { resize: vertical; min-height: 100px; }
.cf-note { font-size: .82rem; color: var(--accent2); text-align: center; min-height: 1.2em; margin: 0; }
@media (max-width: 900px) { .contact-inner { grid-template-columns: 1fr; gap: 3rem; } .cf-row { grid-template-columns: 1fr; } }

/* ===== FOOTER ===== */
.footer {
  position: relative;
  margin: 0 12px 12px;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,.04);
  backdrop-filter: blur(32px) saturate(180%);
  -webkit-backdrop-filter: blur(32px) saturate(180%);
  border: 1px solid rgba(255,255,255,.1);
  box-shadow: 0 -4px 60px rgba(59,111,224,.08), 0 20px 80px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.08);
}
.footer::before {
  content: '';
  position: absolute;
  top: -60px; left: -60px; width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(59,111,224,.12) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: footer-orb1 8s ease-in-out infinite alternate;
}
.footer::after {
  content: '';
  position: absolute;
  bottom: -40px; right: -40px; width: 180px; height: 180px;
  background: radial-gradient(circle, rgba(124,111,224,.1) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
  animation: footer-orb2 10s ease-in-out infinite alternate;
}
@keyframes footer-orb1 { from { transform: translate(0,0) scale(1); } to { transform: translate(30px,20px) scale(1.15); } }
@keyframes footer-orb2 { from { transform: translate(0,0) scale(1); } to { transform: translate(-20px,-15px) scale(1.2); } }
.footer-inner { display: grid; grid-template-columns: 1.3fr 2fr; gap: 3rem; padding: 3.5rem 2.5rem 2rem; position: relative; z-index: 1; }
.footer-brand { display: flex; flex-direction: column; gap: 1rem; }
.footer-logo { width: 72px; object-fit: contain; }
.footer-brand p { font-size: .82rem; color: rgba(255,255,255,.45); line-height: 1.6; }
.footer-socials { display: flex; gap: .6rem; margin-top: .5rem; }
.footer-socials a { width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,.6); font-size: .85rem; transition: background .2s, color .2s, transform .2s; }
.footer-socials a:hover { background: var(--accent); color: #fff; transform: translateY(-2px); }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.footer-cols h4 { font-family: var(--dm); font-size: .68rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; background: linear-gradient(135deg, #7C6FE0, #a855f7); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; color: #a855f7; margin-bottom: 1rem; }
.footer-cols a, .footer-cols span { display: block; font-size: .8rem; color: rgba(255,255,255,.4); margin-bottom: .5rem; transition: color .2s; }
.footer-cols a:hover { color: var(--accent2); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 1.2rem 2.5rem; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: .5rem; font-size: .7rem; font-family: var(--dm); color: rgba(255,255,255,.3); letter-spacing: .04em; position: relative; z-index: 1; }
@media (max-width: 900px) { .footer { margin: 0 8px 8px; } .footer-inner { grid-template-columns: 1fr; gap: 2rem; padding: 2.5rem 1.5rem 1.5rem; } .footer-cols { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; } .footer-bottom { padding: 1rem 1.5rem; flex-direction: column; text-align: center; } }
@media (max-width: 480px) { .footer { margin: 0 6px 6px; border-radius: 18px; } .footer-cols { grid-template-columns: 1fr 1fr; gap: 1.2rem; } .footer-inner { padding: 2rem 1.2rem 1.2rem; } }

/* ===== WA FAB ===== */
.wa-fab { position: fixed; bottom: 1.5rem; right: 1.5rem; z-index: 300; width: 56px; height: 56px; border-radius: 50%; background: #25D366; box-shadow: 0 8px 30px rgba(37,211,102,.4); display: flex; align-items: center; justify-content: center; color: #fff; transition: transform .3s var(--ease), box-shadow .3s; }
.wa-fab:hover { transform: scale(1.12); box-shadow: 0 12px 40px rgba(37,211,102,.6); }

/* ===== MOBILE FIXES ===== */
@media (max-width: 640px) {
  .hero-h1 { letter-spacing: -.02em; }
  .h1-bold, .h1-accent { font-size: clamp(2.2rem, 11vw, 3.4rem); }
  .h1-serif { font-size: clamp(1.5rem, 7vw, 2.2rem); }
  .hero-sub { font-size: .95rem; }
  .hero-badges { gap: .4rem .5rem; }
  .hero-badges span { font-size: .65rem; padding: .35rem .7rem; }
  .hero-actions { gap: .7rem; }
  .hero-actions .btn-primary, .hero-actions .btn-secondary { padding: .85rem 1.4rem; font-size: .82rem; }
  .section { padding: 4.5rem 0; }
  .section-h2 { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .tb-grid { gap: 0; }
  .pkg-rates { display: grid; grid-template-columns: 1fr 1fr; gap: .25rem; }
  .testi-grid { max-width: 100%; }
  .about-visual { grid-template-columns: 1fr; }
  .av-card-1, .av-card-2, .av-card-3 { grid-column: auto; }
  .avc-big { font-size: 2.4rem; }
  .contact-form { padding: 1.5rem; }
  .footer-bottom { font-size: .65rem; }
}

/* ===== SCROLL REVEAL ===== */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity .8s var(--ease2), transform .8s var(--ease2); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ===== COOKIE BANNER ===== */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%) translateY(120px);
  z-index: 500;
  width: calc(100% - 32px);
  max-width: 780px;
  background: rgba(13, 21, 37, 0.75);
  backdrop-filter: blur(28px) saturate(180%);
  -webkit-backdrop-filter: blur(28px) saturate(180%);
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 20px;
  box-shadow: 0 8px 60px rgba(0,0,0,.5), inset 0 1px 0 rgba(255,255,255,.08), 0 0 0 1px rgba(124,111,224,.08);
  padding: 1.4rem 1.6rem;
  opacity: 0;
  transition: transform .6s cubic-bezier(.22,.61,.36,1), opacity .5s ease;
  pointer-events: none;
}
.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  pointer-events: auto;
}
.cookie-banner.hide {
  transform: translateX(-50%) translateY(140px);
  opacity: 0;
  pointer-events: none;
}
.cookie-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}
.cookie-icon {
  font-size: 2rem;
  flex-shrink: 0;
  filter: drop-shadow(0 2px 8px rgba(124,111,224,.4));
}
.cookie-text {
  flex: 1;
  min-width: 200px;
}
.cookie-text strong {
  display: block;
  font-family: var(--dm);
  font-weight: 800;
  font-size: .92rem;
  color: #fff;
  margin-bottom: .3rem;
  letter-spacing: .01em;
}
.cookie-text p {
  font-size: .78rem;
  color: rgba(255,255,255,.5);
  line-height: 1.55;
  margin: 0;
}
.cookie-actions {
  display: flex;
  gap: .6rem;
  flex-shrink: 0;
  flex-wrap: wrap;
}
.cookie-btn {
  font-family: var(--dm);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .6rem 1.15rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform .2s, background .2s, box-shadow .2s;
  white-space: nowrap;
}
.cookie-btn:hover { transform: translateY(-2px); }
.cookie-btn.accept {
  background: linear-gradient(135deg, #7B2C8C 0%, #5B4AE0 100%);
  color: #fff;
  box-shadow: 0 0 16px rgba(139,92,246,.4);
}
.cookie-btn.accept:hover { filter: brightness(1.12); color: #fff; box-shadow: 0 0 24px rgba(139,92,246,.6); }
.cookie-btn.personalise {
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.8);
  border: 1px solid rgba(255,255,255,.15);
}
.cookie-btn.personalise:hover { background: rgba(255,255,255,.14); }
.cookie-btn.reject {
  background: transparent;
  color: rgba(255,255,255,.4);
  border: 1px solid rgba(255,255,255,.08);
}
.cookie-btn.reject:hover { color: rgba(255,255,255,.7); border-color: rgba(255,255,255,.2); }
@media (max-width: 580px) {
  .cookie-banner { bottom: 16px; padding: 1.1rem 1.2rem; }
  .cookie-inner { gap: .9rem; }
  .cookie-actions { width: 100%; justify-content: stretch; }
  .cookie-btn { flex: 1; text-align: center; font-size: .72rem; padding: .6rem .8rem; }
}

/* ===== FOCUS ===== */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 4px; }

/* ===== REDUCED MOTION ===== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .hero-h1 .h1-serif, .hero-h1 .h1-bold, .hero-h1 .h1-accent, .hero-eyebrow, .hero-sub, .hero-badges, .hero-actions { opacity: 1 !important; transform: none !important; }
}

/* ===== GRADIENT LABEL ===== */
.grad-label { background: linear-gradient(135deg, #7C6FE0, #a855f7, #ec4899) !important; -webkit-background-clip: text !important; background-clip: text !important; -webkit-text-fill-color: transparent !important; color: #a855f7 !important; }

/* ===== NEWSLETTER ===== */
.newsletter { padding: 3.5rem 0; }
.nl-card {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: 0;
  background: rgba(255,255,255,.04); backdrop-filter: blur(24px);
  border: 1px solid rgba(255,255,255,.09); border-radius: 24px; overflow: hidden;
  box-shadow: 0 8px 60px rgba(0,0,0,.4), inset 0 1px 0 rgba(255,255,255,.06);
  position: relative;
}
.nl-card::before {
  content: ''; position: absolute; bottom: -60px; left: -60px; width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(123,44,140,.22), transparent 70%);
  border-radius: 50%; pointer-events: none;
}
.nl-left { padding: 2.8rem 3rem; position: relative; z-index: 1; }
.nl-badge {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--dm); font-size: .68rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase;
  color: #a855f7; background: rgba(168,85,247,.1); border: 1px solid rgba(168,85,247,.25);
  padding: .35rem .9rem; border-radius: 999px; margin-bottom: 1.4rem;
}
.nl-badge svg { color: #a855f7; }
.nl-h { font-family: var(--dm); font-weight: 900; font-size: clamp(1.6rem,3.5vw,2.6rem); color: #fff; letter-spacing: -.02em; line-height: 1.1; margin: 0 0 .9rem; }
.nl-sub { font-size: .9rem; color: rgba(255,255,255,.5); line-height: 1.65; margin: 0 0 1.8rem; }
.nl-form { display: flex; gap: .6rem; flex-wrap: wrap; }
.nl-input {
  flex: 1; min-width: 200px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px; padding: .85rem 1.4rem; color: #fff; font-family: var(--db); font-size: .92rem;
  transition: border-color .25s, background .25s;
}
.nl-input::placeholder { color: rgba(255,255,255,.3); }
.nl-input:focus { outline: none; border-color: #a855f7; background: rgba(255,255,255,.09); }
.nl-btn {
  display: inline-flex; align-items: center; gap: .5rem;
  font-family: var(--dm); font-weight: 700; font-size: .88rem; letter-spacing: .04em;
  padding: .85rem 1.6rem; border-radius: 999px; border: none; cursor: pointer; color: #fff;
  background: linear-gradient(135deg, #a855f7 0%, #ec4899 100%);
  box-shadow: 0 0 20px rgba(168,85,247,.4), inset 0 1px 0 rgba(255,255,255,.15);
  transition: filter .25s, transform .2s; white-space: nowrap;
}
.nl-btn:hover { filter: brightness(1.12); transform: translateY(-2px); }
.nl-btn svg { flex-shrink: 0; }

.nl-right {
  background: rgba(0,0,0,.2); border-left: 1px solid rgba(255,255,255,.06);
  padding: 2.8rem 2.2rem; display: flex; flex-direction: column; justify-content: center;
  position: relative; overflow: hidden;
}
.nl-right::after {
  content: ''; position: absolute; top: -40px; right: -40px; width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(59,111,224,.18), transparent 70%); border-radius: 50%;
}
.nl-logo { display: flex; align-items: center; gap: .7rem; margin-bottom: 1.8rem; position: relative; z-index: 1; }
.nl-logo img { width: 36px; height: 36px; object-fit: contain; }
.nl-logo-text { font-family: var(--dm); font-weight: 800; font-size: .95rem; color: #fff; letter-spacing: .04em; }
.nl-stats { display: grid; grid-template-columns: repeat(3,1fr); gap: .8rem; position: relative; z-index: 1; }
.nl-stat { background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.08); border-radius: 14px; padding: 1rem .8rem; text-align: center; }
.nl-stat-num { font-family: var(--dm); font-weight: 900; font-size: 1.4rem; color: #fff; display: block; letter-spacing: -.02em; }
.nl-stat-label { font-family: var(--dm); font-size: .65rem; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; color: rgba(255,255,255,.4); display: block; margin-top: .2rem; }

@media (max-width: 860px) {
  .nl-card { grid-template-columns: 1fr; overflow: hidden; }
  .nl-right { border-left: none; border-top: 1px solid rgba(255,255,255,.06); padding: 1.8rem 1.5rem; }
  .nl-left { padding: 2rem 1.5rem; }
  .newsletter { padding: 2rem 1rem; }
}
@media (max-width: 480px) {
  .newsletter { padding: 1.5rem .75rem; }
  .nl-card { border-radius: 18px; }
  .nl-left { padding: 1.4rem 1.2rem; }
  .nl-right { padding: 1.4rem 1.2rem; }
  .nl-badge { font-size: .58rem; padding: .3rem .75rem; }
  .nl-h { font-size: 1.5rem; margin-bottom: .7rem; }
  .nl-sub { font-size: .82rem; margin-bottom: 1.2rem; }
  .nl-form { flex-direction: column; gap: .5rem; }
  .nl-input { min-width: 0; width: 100%; }
  .nl-btn { width: 100%; justify-content: center; }
  .nl-stats { grid-template-columns: repeat(3,1fr); gap: .4rem; }
  .nl-stat { padding: .7rem .4rem; }
  .nl-stat-num { font-size: 1.1rem; }
  .nl-stat-label { font-size: .55rem; letter-spacing: .08em; }
  .nl-logo-text { font-size: .82rem; }
}

/* ===================== TEAM SECTION ===================== */
.team-section { background: #06060e; padding: 7rem 0; position: relative; overflow: hidden; }
.team-section::before {
  content: ''; position: absolute; top: -200px; left: 50%; transform: translateX(-50%);
  width: 800px; height: 600px;
  background: radial-gradient(ellipse, rgba(108,63,255,.12) 0%, transparent 70%);
  pointer-events: none;
}
.team-section .section-sub { color: rgba(255,255,255,.55); margin-top: .8rem; margin-bottom: 3.5rem; font-size: 1.05rem; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  margin-top: 3rem;
}

/* CARD */
.team-card {
  position: relative;
  border-radius: 24px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.08);
  overflow: hidden;
  cursor: default;
  transition: transform .45s cubic-bezier(.16,1,.3,1), border-color .35s, box-shadow .45s;
}
.team-card:hover {
  transform: translateY(-12px) scale(1.02);
  border-color: rgba(108,63,255,.5);
  box-shadow: 0 30px 80px rgba(108,63,255,.25), 0 0 0 1px rgba(108,63,255,.2);
}

.team-card-inner { padding: 2rem 1.5rem 1.8rem; position: relative; z-index: 2; }

/* AVATAR */
.team-img-wrap { position: relative; margin-bottom: 1.5rem; display: flex; justify-content: center; }
.team-avatar {
  width: 120px; height: 120px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,.4);
  animation: floatAvatar 4s ease-in-out infinite;
}
.team-card:nth-child(2) .team-avatar { animation-delay: -.8s; }
.team-card:nth-child(3) .team-avatar { animation-delay: -1.6s; }
.team-card:nth-child(4) .team-avatar { animation-delay: -2.4s; }

@keyframes floatAvatar {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.avatar-svg { width: 90px; height: 90px; }

.team-glow {
  position: absolute; inset: -20px;
  border-radius: 50%;
  opacity: 0;
  transition: opacity .4s;
  filter: blur(20px);
  background: inherit;
  z-index: -1;
}
.team-card:hover .team-glow { opacity: .35; }

/* INFO */
.team-info { text-align: center; }
.team-name {
  font-family: var(--dm); font-weight: 800; font-size: 1.15rem;
  color: #fff; letter-spacing: -.02em; margin-bottom: .3rem;
}
.team-role {
  font-family: var(--dm); font-size: .7rem; font-weight: 700;
  letter-spacing: .14em; text-transform: uppercase;
  background: linear-gradient(90deg, #6c3fff, #a855f7);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent;
  background-clip: text;
}
.team-divider {
  width: 36px; height: 2px; margin: 1rem auto;
  background: linear-gradient(90deg, #6c3fff, #a855f7);
  border-radius: 999px;
  transition: width .4s;
}
.team-card:hover .team-divider { width: 70px; }
.team-bio {
  font-size: .82rem; color: rgba(255,255,255,.5); line-height: 1.6;
  margin-bottom: 1.2rem; font-family: var(--dm);
}
.team-tags { display: flex; gap: .4rem; flex-wrap: wrap; justify-content: center; }
.team-tags span {
  font-family: var(--dm); font-size: .62rem; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: .3rem .7rem; border-radius: 999px;
  background: rgba(108,63,255,.12); border: 1px solid rgba(108,63,255,.25);
  color: rgba(255,255,255,.65);
  transition: background .3s, color .3s;
}
.team-card:hover .team-tags span {
  background: rgba(108,63,255,.25); color: #fff;
}

/* SHINE EFFECT */
.card-shine {
  position: absolute; inset: 0; border-radius: 24px; z-index: 1; pointer-events: none;
  background: linear-gradient(135deg, rgba(255,255,255,.06) 0%, transparent 50%, rgba(255,255,255,.03) 100%);
  opacity: 0; transition: opacity .4s;
}
.team-card:hover .card-shine { opacity: 1; }

/* ANIMATED NUMBER BORDER */
.team-card::after {
  content: '';
  position: absolute; inset: 0; border-radius: 24px;
  background: conic-gradient(from var(--angle, 0deg), transparent 70%, rgba(108,63,255,.6) 80%, rgba(168,85,247,.8) 90%, transparent 100%);
  opacity: 0; transition: opacity .4s;
  z-index: 0;
}
.team-card:hover::after { opacity: 1; animation: borderSpin 2s linear infinite; }
@property --angle { syntax: '<angle>'; initial-value: 0deg; inherits: false; }
@keyframes borderSpin { to { --angle: 360deg; } }

/* RESPONSIVE */
@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .team-grid { grid-template-columns: 1fr; } }
/* ===================== END TEAM ===================== */

/* ===== COMPREHENSIVE MOBILE FIX ===== */
@media (max-width: 600px) {
  /* General */
  .container { padding: 0 16px; }
  .section { padding: 3.5rem 0; }
  .section-h2 { font-size: clamp(1.8rem,8vw,2.4rem); }

  /* Hero */
  .hero-section { min-height: 100svh; padding: 0 16px; }
  .hero-title { font-size: clamp(2.2rem,10vw,3rem); }
  .hero-sub { font-size: .9rem; }
  .hero-cta-group { flex-direction: column; align-items: center; gap: .8rem; }
  .hero-cta-group a { width: 100%; max-width: 300px; text-align: center; justify-content: center; }

  /* Trust bar */
  .trust-bar { padding: .8rem 0; gap: 0; }
  .tb-stat { padding: .5rem 1rem; font-size: .72rem; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 1rem; }

  /* Packages */
  .pkg-grid { grid-template-columns: 1fr; gap: 1.2rem; justify-items: center; }
  .pkg-card { width: 100%; max-width: 400px; }
  .pkg-prices { flex-wrap: wrap; gap: .4rem; }

  /* About */
  .about-inner { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { display: none; }

  /* Contact */
  .contact-inner { grid-template-columns: 1fr; gap: 2rem; }
  .cf-row { grid-template-columns: 1fr; }

  /* Footer */
  .footer-cols { grid-template-columns: 1fr 1fr; gap: 1rem; }
  .footer-inner { padding: 1.8rem 1rem 1.2rem; gap: 1.5rem; }
  .footer-bottom { flex-direction: column; text-align: center; padding: 1rem; gap: .4rem; }
}

@media (max-width: 400px) {
  .hero-title { font-size: 2rem; }
  .pkg-card { padding: 1.3rem; }
  .footer-cols { grid-template-columns: 1fr; }
}
/* ===== END MOBILE FIX ===== */
