/* =========================
   HARBE — style.css (FULL)
   Dark + Light theme + responsive
   Includes: nav, hero, services, gallery grid, slider gallery, lightbox, packages, contact, tally embed
========================= */

/* -------------------------
   Theme variables
------------------------- */
:root{
  /* Layout */
  --max: 1200px;
  --nav-h: 72px;
  --radius: 14px;
  --radius-lg: 20px;
  --border: rgba(255,255,255,.10);
  --shadow: 0 22px 60px rgba(0,0,0,.50);

  /* Brand */
  --brand: #7c3aed;
  --brand-2: #9b5cff;
  --accent: #f6b021;

  /* Dark theme (default) */
  --bg: #070709;
  --panel: #101014;
  --card: #15151a;
  --text: #ffffff;           /* Requested: dark -> white text */
  --muted: rgba(255,255,255,.78);

  /* Nav */
  --nav-bg: rgba(10,10,12,.86);
  --nav-text: var(--text);
  --menu: rgba(255,255,255,.82);
  --menu-active: #ffffff;

  /* Background glows */
  --bg-glow: rgba(124,58,237,.18);
  --bg-glow2: rgba(246,176,33,.10);

  /* Social */
  --fb:#1877F2;
  --tg:#229ED9;
  --ig:#E4405F;
  --yt:#FF0000;
}

/* Light theme override
   Note: keeping text dark on light backgrounds for real visibility. */
html[data-theme="light"]{
  --bg:#f6f7fb;
  --panel:#ffffff;
  --card:#ffffff;

  --text:#0b1220;
  --muted: rgba(15,23,42,.70);

  --border: rgba(15,23,42,.12);
  --shadow: 0 18px 50px rgba(2,6,23,.10);

  --nav-bg: rgba(255,255,255,.86);
  --nav-text:#0f172a;
  --menu:#334155;
  --menu-active:#0f172a;

  --bg-glow: rgba(124,58,237,.10);
  --bg-glow2: rgba(246,176,33,.12);
}

/* -------------------------
   Base
------------------------- */
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:
    radial-gradient(1200px 700px at 20% 10%, var(--bg-glow), transparent 55%),
    radial-gradient(900px 600px at 80% 20%, var(--bg-glow2), transparent 60%),
    var(--bg);
  color:var(--text);
  font-family:Poppins,system-ui,Segoe UI,Roboto,Arial;
  line-height:1.6;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{max-width:var(--max);margin:0 auto;padding:0 22px}

::selection{background:rgba(124,58,237,.28)}
/* Improve default text rendering */
body,button,input,textarea{ -webkit-font-smoothing:antialiased; -moz-osx-font-smoothing:grayscale; }

/* -------------------------
   Theme toggle button
------------------------- */
.theme-toggle{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  width:44px;
  height:44px;
  border-radius:999px;
  border:1px solid var(--border);
  background:linear-gradient(180deg, rgba(255,255,255,.08), rgba(255,255,255,.03));
  color:var(--menu);
  cursor:pointer;
  box-shadow:var(--shadow);
  transition:transform .15s ease, opacity .15s ease, background .15s ease;
  opacity:.95;
}
.theme-toggle:hover{transform:translateY(-1px); opacity:1}
.theme-toggle:focus{outline:none}
.theme-toggle:focus-visible{box-shadow:0 0 0 3px rgba(124,58,237,.35), var(--shadow)}
.theme-toggle svg{width:20px;height:20px;display:block}

/* Show the correct icon for each theme */
html[data-theme="dark"]  .theme-toggle .icon-moon{display:block}
html[data-theme="dark"]  .theme-toggle .icon-sun{display:none}
html[data-theme="light"] .theme-toggle .icon-sun{display:block}
html[data-theme="light"] .theme-toggle .icon-moon{display:none}

/* Mobile theme button (inside mobile menu) */
.mobile-theme{
  width:calc(100% - 44px);
  margin:12px 22px 18px;
  justify-content:space-between;
  padding:12px 14px;
  height:auto;
  border-radius:14px;
}
.mobile-theme .theme-text{
  font-weight:800;
  font-size:13px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

/* -------------------------
   NAV
------------------------- */
.nav{
  position:sticky;
  top:0;
  z-index:50;
  background:var(--nav-bg);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
}
.nav-inner{
  height:var(--nav-h);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
}
/* ===== Header colored shape overlays ===== */
.nav{
  position: sticky;
  top: 0;
  overflow: hidden;            /* important: hides shape edges */
}

.nav::before{
  content:"";
  position:absolute;
  inset:-120px -140px auto auto;
  width:420px;
  height:260px;
  background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.55), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(246,176,33,.45), transparent 65%);
  filter: blur(2px);
  transform: rotate(-12deg);
  pointer-events:none;
  z-index:0;
}

.nav::after{
  content:"";
  position:absolute;
  left:-120px;
  top:-140px;
  width:420px;
  height:260px;
  background: radial-gradient(circle at 60% 40%, rgba(246,176,33,.40), transparent 60%),
              radial-gradient(circle at 30% 70%, rgba(124,58,237,.40), transparent 65%);
  transform: rotate(10deg);
  pointer-events:none;
  z-index:0;
}

/* Keep header content above the shapes */
.nav-inner{ position: relative; z-index: 1; }
/* ===== Social icon colored shapes ===== */
.social a{
  position: relative;
  border-radius: 12px;
  overflow: visible;
}

/* soft blob behind icon */
.social a::before{
  content:"";
  position:absolute;
  inset:-10px;
  border-radius: 14px;
  background: radial-gradient(circle at 30% 30%, rgba(124,58,237,.45), transparent 60%),
              radial-gradient(circle at 70% 70%, rgba(246,176,33,.35), transparent 65%);
  opacity: 0;
  transform: scale(.92);
  transition: opacity .2s ease, transform .2s ease;
  z-index: -1;
}

/* turn on glow when hover */
.social a:hover::before{
  opacity: 1;
  transform: scale(1);
}

/* give each platform its own color glow */
.social a.brand-telegram::before{ background: radial-gradient(circle, rgba(34,158,217,.55), transparent 65%); }
.social a.brand-instagram::before{ background: radial-gradient(circle, rgba(228,64,95,.55), transparent 65%); }
.social a.brand-youtube::before{ background: radial-gradient(circle, rgba(255,0,0,.45), transparent 65%); }
.social a.brand-facebook::before{ background: radial-gradient(circle, rgba(24,119,242,.50), transparent 65%); }
/* ===== HARD YELLOW underline overlay ===== */
.menu a{
  position: relative;
  padding: 10px 8px;
}

.menu a::after{
  content:"";
  position:absolute;
  left: 10px;
  right: 10px;
  bottom: 6px;
  height: 6px;
  border-radius: 999px;
  background: #FFD400;       /* hard yellow */
  opacity: 0;
  transform: scaleX(.2);
  transform-origin: left;
  transition: opacity .15s ease, transform .18s ease;
}

.menu a:hover::after,
.menu a.active::after{
  opacity: 1;
  transform: scaleX(1);
}

/* optional: yellow text */
.menu a:hover,
.menu a.active{
  color: #FFD400;
}

/* Brand + logo */
.brand-logo{display:flex;align-items:center;gap:10px;min-width:0}
.logo{
  width:40px;height:40px;
  object-fit:contain;
  border-radius:12px;
  padding:6px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
}
.brand{
  font-weight:900;
  font-size:20px;
  color:var(--brand);
  letter-spacing:.03em;
  white-space:nowrap;
}

/* Menu */
.menu{display:flex;gap:22px;align-items:center}
.menu a{
  font-weight:800;
  font-size:13px;
  letter-spacing:.02em;
  color:var(--menu);
  opacity:.95;
}
.menu a.active,
.menu a:hover{
  color:var(--menu-active);
}

/* Right side */
.right-nav{display:flex;align-items:center;gap:14px}

/* Social icons */
.social{display:flex;align-items:center;gap:14px}
.social a{
  width:28px;height:28px;
  display:grid;place-items:center;
  color:var(--menu);
  opacity:.92;
  transition:transform .2s ease, opacity .2s ease, color .2s ease;
}
.social a:hover{opacity:1;transform:translateY(-1px)}
.social svg{width:20px;height:20px;display:block}
.brand-facebook{color:var(--fb)}
.brand-telegram{color:var(--tg)}
.brand-instagram{color:var(--ig)}
.brand-youtube{color:var(--yt)}

/* Burger */
.burger{
  display:none;
  flex-direction:column;
  gap:5px;
  cursor:pointer;
  padding:10px;
  border-radius:12px;
  border:1px solid transparent;
}
.burger:hover{border-color:var(--border);background:rgba(255,255,255,.04)}
.burger span{width:26px;height:2px;background:rgba(255,255,255,.80);border-radius:2px}
html[data-theme="light"] .burger span{background:rgba(15,23,42,.75)}

/* Mobile menu (fixed, not clipped by header overlays) */
.mobile{
  display:none;
  position:fixed;
  left:0;
  right:0;
  top:var(--nav-h);
  max-height:calc(100dvh - var(--nav-h));
  overflow:auto;
  background:rgba(15, 15, 18, 0.98);
  border-bottom:1px solid var(--border);
  z-index:60;
}
.mobile.show{display:block}
.mobile a{
  display:block;
  padding:14px 22px;
  border-top:1px solid var(--border);
  font-weight:800;
  color:rgba(255,255,255,0.88);
}
.mobile a:hover{background:rgba(255,255,255,0.05);color:#fff}

.mobile-backdrop{
  display:none;
  position:fixed;
  inset:var(--nav-h) 0 0 0;
  background:rgba(0,0,0,0.40);
  z-index:55;
}
.mobile-backdrop.show{display:block}

html[data-theme="light"] .mobile-backdrop{background:rgba(2,6,23,0.35)}


/* -------------------------
   HERO
------------------------- */
.hero{padding:84px 0 46px}
.hero-grid{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:44px;
  align-items:center;
}
.eyebrow{
  color:rgba(246,176,33,.95);
  font-weight:900;
  letter-spacing:.16em;
  font-size:14px;
  text-transform:uppercase;
}
.title{
  margin:10px 0 14px;
  font-size:56px;
  line-height:1.03;
  font-weight:900;
}
.title .accent{color:var(--brand)}
.sub{
  color:var(--muted);
  max-width:640px;
  font-size:15px;
}
.hero-actions{
  margin-top:22px;
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  align-items:center;
}
.cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:14px 24px;
  border-radius:999px;
  font-weight:900;
  letter-spacing:.02em;
  background:linear-gradient(180deg,var(--brand),var(--brand-2));
  color:#fff;
  box-shadow:0 18px 48px rgba(124,58,237,.35);
  border:0;
  cursor:pointer;
}
.cta:hover{transform:translateY(-1px)}
.cta.ghost{
  background:transparent;
  color:var(--text);
  border:1px solid var(--border);
  box-shadow:none;
}
.cta.ghost:hover{background:rgba(255,255,255,.05)}
.cta.small{padding:12px 18px; font-size:13px}

.hero-badges{
  margin-top:18px;
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.pill{
  padding:9px 12px;
  border-radius:999px;
  font-weight:800;
  font-size:12px;
  letter-spacing:.02em;
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  color:var(--text);
}

.hero-media{
  position:relative;
  border-radius:22px;
  overflow:hidden;
  background:rgba(255,255,255,.04);
  box-shadow:var(--shadow);
  border:1px solid var(--border);
}
.frame{
  position:absolute;
  inset:10px;
  border-radius:20px;
  border:1px solid var(--border);
  pointer-events:none;
}

/* Hero card inside hero-media */
.hero-card{padding:18px}
.hero-card-top{
  display:flex;gap:8px;
  margin-bottom:14px;
}
.dot{
  width:10px;height:10px;border-radius:50%;
  background:rgba(255,255,255,.22);
  border:1px solid var(--border);
}
html[data-theme="light"] .dot{background:rgba(15,23,42,.12)}
.hero-card-body{
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
}
.hero-media-title{
  font-weight:900;
  font-size:18px;
  margin:0 0 6px;
}
.hero-media-sub{
  margin:0 0 14px;
  color:var(--muted);
  font-size:14px;
}
.hero-metrics{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.metric{
  background:rgba(0,0,0,.18);
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px;
}
.metric b{display:block;font-size:20px;color:var(--accent)}
.metric span{display:block;color:var(--muted);font-weight:700;font-size:12px;margin-top:2px}

html[data-theme="light"] .metric{background:rgba(255,255,255,.75)}

/* -------------------------
   Sections
------------------------- */
section{padding:66px 0}
.section-title{
  text-align:center;
  font-size:40px;
  font-weight:900;
  margin:0 0 10px;
}
.section-note{
  color:var(--muted);
  text-align:center;
  margin:0 auto 24px;
  max-width:860px;
  font-size:15px;
}

/* -------------------------
   ABOUT hero overlay
------------------------- */
.about-hero{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid var(--border);
  background:rgba(255,255,255,.04);
  margin-top:18px;
}
.about-hero.centered{width:min(100%,980px);margin:18px auto}
.about-hero img{width:100%;height:auto;display:block}
.about-overlay{
  position:absolute;
  inset:0;
  display:grid;
  align-content:end;
  gap:8px;
  padding:clamp(16px,3vw,34px);
  background:linear-gradient(180deg, rgba(0,0,0,.06) 25%, rgba(0,0,0,.75) 100%);
}
.about-kicker{
  color:rgba(255,255,255,.80);
  font-weight:900;
  letter-spacing:.16em;
  text-transform:uppercase;
  opacity:0;
  transform:translateY(8px);
  animation:aboutFadeUp .6s ease .05s forwards;
}
.about-headline{
  margin:0;
  font-size:clamp(26px,4vw,48px);
  font-weight:900;
  line-height:1.05;
  background:linear-gradient(90deg,var(--brand),var(--brand-2),var(--brand));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
  background-size:200% 100%;
  opacity:0;
  transform:translateY(8px);
  animation:aboutFadeUp .6s ease .18s forwards, aboutShine 6s linear .9s infinite;
}
.about-sub{
  margin:0;
  max-width:820px;
  color:rgba(255,255,255,.92);
  opacity:0;
  transform:translateY(8px);
  animation:aboutFadeUp .6s ease .28s forwards;
}
@keyframes aboutFadeUp{to{opacity:1;transform:translateY(0)}}
@keyframes aboutShine{0%{background-position:0% 0}100%{background-position:200% 0}}
@media (prefers-reduced-motion: reduce){
  .about-headline{animation:none;background-position:0 0}
  .about-kicker,.about-sub{animation:none;opacity:1;transform:none}
}

/* -------------------------
   Feature grid
------------------------- */
.feature-grid{
  margin-top:26px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.feature{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:var(--radius);
  padding:22px;
  box-shadow:var(--shadow);
  position:relative;
  overflow:hidden;
}
.f-badge{
  position:absolute;
  top:14px; right:14px;
  width:34px;height:34px;
  border-radius:12px;
  display:grid;place-items:center;
  background:rgba(124,58,237,.22);
  border:1px solid rgba(124,58,237,.35);
  font-weight:900;
  color:#fff;
}
.feature h4{margin:0 0 6px;font-size:18px}
.feature p{margin:0;color:var(--muted);font-size:14px}

/* -------------------------
   SERVICES
------------------------- */
.services-grid{
  margin-top:20px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:20px;
}
.services-block{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow);
}
.block-head h3{margin:0 0 4px;font-weight:900}
.block-head p{margin:0;color:var(--muted);font-weight:600}

.list-grid{
  margin-top:14px;
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:10px;
}
.list-item{
  background:rgba(0,0,0,.18);
  border:1px solid var(--border);
  border-radius:14px;
  padding:12px 12px;
  font-weight:800;
  color:var(--text);
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:10px;
  min-height:48px;
}
.list-item span{
  font-weight:700;
  font-size:12px;
  color:var(--muted);
}
html[data-theme="light"] .list-item{background:rgba(2,6,23,.04)}

/* Callout */
.callout{
  margin-top:18px;
  background:linear-gradient(90deg, rgba(124,58,237,.18), rgba(246,176,33,.10));
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px 18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  box-shadow:var(--shadow);
}
.callout h3{margin:0 0 6px;font-weight:900}
.callout p{margin:0;color:rgba(255,255,255,.92);max-width:860px}
html[data-theme="light"] .callout p{color:#0f172a}

/* -------------------------
   PORTFOLIO — Grid gallery (images + video embeds)
------------------------- */
.gallery-grid{
  margin-top:20px;
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:18px;
}

/* clickable image items */
.gallery-item{
  display:block;
}

/* shared card container (used by <article class="card ..."> in portfolio too) */
.gallery-item,
.card{
  position:relative;
  border-radius:18px;
  overflow:hidden;
  background:rgba(255,255,255,0.04);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

/* media (images/iframes) */
.gallery-item img,
.card img{
  width:100%;
  height:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
  transition:transform .25s ease;
}
.gallery-item:hover img,
.card:hover img{transform:scale(1.03)}

/* video embeds */
.card{
  aspect-ratio:16/9;
}
.card iframe{
  width:100%;
  height:100%;
  border:0;
  display:block;
}

/* caption bar */
.gallery-caption{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  padding:10px 12px;
  font-size:14px;
  background:rgba(0,0,0,0.65);
  color:#fff;
  text-align:center;
  font-weight:900;
}
html[data-theme="light"] .gallery-caption{background:rgba(15,23,42,0.70)}


/* -------------------------
   SLIDER GALLERY
   (Horizontal scroll + buttons)
------------------------- */
.slider{
  margin-top:18px;
  position:relative;
  border-radius:18px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.03);
  box-shadow:var(--shadow);
  overflow:hidden;
  padding:16px 54px;
}
.slides{
  display:flex;
  gap:14px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  scroll-behavior:smooth;
  padding-bottom:10px;
  -webkit-overflow-scrolling:touch;
}
.slides::-webkit-scrollbar{height:10px}
.slides::-webkit-scrollbar-thumb{background:rgba(255,255,255,.12);border-radius:999px}
html[data-theme="light"] .slides::-webkit-scrollbar-thumb{background:rgba(15,23,42,.18)}

.slide{
  flex:0 0 auto;
  width:min(520px, 86vw);
  scroll-snap-align:center;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);
  background:#0e0e10;
  cursor:pointer;
}
html[data-theme="light"] .slide{background:#ffffff}
.slide img{
  width:100%;
  height:auto;
  aspect-ratio:16/9;
  object-fit:cover;
  display:block;
  transition:transform .25s ease;
}
.slide:hover img{transform:scale(1.02)}

.slide-btn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(0,0,0,.55);
  color:#fff;
  font-size:26px;
  font-weight:900;
  cursor:pointer;
  display:grid;
  place-items:center;
  z-index:2;
  user-select:none;
}
.slide-btn:hover{background:rgba(0,0,0,.70)}
.slide-btn.prev{left:10px}
.slide-btn.next{right:10px}
html[data-theme="light"] .slide-btn{background:rgba(15,23,42,.72)}

/* Optional: dots (if you add in HTML) */
.slide-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:10px;
}
.slide-dot{
  width:10px;height:10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,.18);
}
.slide-dot.active{background:rgba(124,58,237,.55); border-color:rgba(124,58,237,.65)}

/* Dots container used by the JS (#dots) */
.dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top:12px;
}
.dots .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  border:1px solid var(--border);
  background:rgba(255,255,255,0.18);
  cursor:pointer;
}
.dots .dot.active{
  background:rgba(124,58,237,0.55);
  border-color:rgba(124,58,237,0.65);
}
html[data-theme="light"] .dots .dot{background:rgba(15,23,42,0.18)}

/* -------------------------
   Generic cards (optional)
------------------------- */
.cards{margin-top:20px;display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.card{
  background:rgba(255,255,255,.04);
  border:1px solid var(--border);
  border-radius:18px;
  overflow:hidden;
  box-shadow:var(--shadow);
}

/* Video embed rows like your other site (optional) */
.cards.youtube-row,
.cards.tiktok-row{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(325px, 1fr));
  gap:1.5rem;
}
.cards.youtube-row iframe{
  width:100%;
  aspect-ratio:16/9;
  height:auto;
  border:0;
}
.cards.tiktok-row iframe{
  width:100%;
  max-width:325px;
  height:580px;
  border:0;
}

/* -------------------------
   PACKAGES
------------------------- */
.pkg-grid{
  margin-top:24px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.pkg{
  position:relative;
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:18px;
  padding:26px;
  box-shadow:var(--shadow);
}
.pkg.popular{
  border-color:rgba(124,58,237,.55);
  box-shadow:0 18px 60px rgba(124,58,237,.25);
}
.badge{
  position:absolute;
  top:-12px;
  right:16px;
  background:linear-gradient(180deg,var(--brand),var(--brand-2));
  color:#fff;
  font-size:12px;
  font-weight:900;
  padding:6px 10px;
  border-radius:999px;
}
.price{font-size:34px;font-weight:900;margin:8px 0}
.period{font-size:12px;color:var(--muted);margin-left:6px}
.feat{display:grid;gap:8px;margin:12px 0 16px;color:var(--muted);font-size:14px}
.feat span{display:flex;gap:8px;align-items:center}
.check{color:#8f8ff5}
.btn-buy{
  display:inline-block;
  width:100%;
  text-align:center;
  padding:12px 16px;
  border-radius:12px;
  font-weight:900;
  background:linear-gradient(180deg,var(--brand),var(--brand-2));
  color:#fff;
  border:0;
  cursor:pointer;
  box-shadow:0 16px 40px rgba(124,58,237,.35);
}

/* -------------------------
   TRUST / TESTIMONIALS
------------------------- */
.t-grid{
  margin-top:24px;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}
.t-card{
  background:linear-gradient(180deg, rgba(124,58,237,.90), rgba(246,176,33,.88) 70%, rgba(246,176,33,.82));
  color:#0b1020;
  border-radius:18px;
  padding:26px;
  min-height:210px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  box-shadow:var(--shadow);
}
.t-top{display:flex;align-items:center;gap:12px}
.avatar{
  width:36px;height:36px;
  border-radius:50%;
  background:rgba(0,0,0,.18);
  display:grid;
  place-items:center;
  font-weight:900;
}
.name{margin:0;font-weight:900}
.role{font-size:12px;margin-top:-2px;opacity:.9;font-weight:800}
.t-msg{margin-top:12px;font-weight:700}
.stars{letter-spacing:2px;font-weight:900}

/* -------------------------
   CONTACT
------------------------- */
.contact-grid{
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:22px;
  align-items:start;
  margin-top:10px;
}
.panel{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border:1px solid var(--border);
  border-radius:18px;
  padding:22px;
  box-shadow:var(--shadow);
}
.contact-list{display:grid;gap:10px;color:var(--muted);font-weight:700}
.hint{opacity:.75;font-weight:700}

.stat-grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:12px;
  margin-top:14px;
}
.stat{
  background:rgba(0,0,0,.18);
  border:1px solid var(--border);
  border-radius:14px;
  padding:16px;
}
.stat b{font-size:26px;color:var(--accent)}
.stat div{color:var(--muted);font-weight:800}
html[data-theme="light"] .stat{background:rgba(2,6,23,.04)}

.tally-embed{
  margin-top:10px;
  border-radius:16px;
  overflow:hidden;
  border:1px solid var(--border);
  background:rgba(0,0,0,.12);
}
.tally-embed iframe{
  display:block;
  width:100%;
  height:520px;
  border:0;
}
.form-note{margin:10px 0 0; color:var(--muted); font-weight:700; font-size:13px}

/* -------------------------
   FOOTER
------------------------- */
footer{
  padding:26px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  background:rgba(0,0,0,.18);
}
.footer-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
}
.foot-brand{
  color:var(--text);
  font-weight:900;
  letter-spacing:.02em;
}
.foot-logo{
  display:flex;
  align-items:center;
  gap:10px;
}
.footer-logo{
  width:34px;height:34px;
  object-fit:contain;
  border-radius:12px;
  padding:6px;
  background:rgba(255,255,255,.06);
  border:1px solid var(--border);
}

/* -------------------------
   LIGHTBOX (click image -> full screen)
------------------------- */
.lightbox{
  position:fixed;
  inset:0;
  background:rgba(0,0,0,.78);
  display:none;
  place-items:center;
  z-index:100;
  padding:20px;
  opacity:0;
  transition:opacity .25s ease;
}
.lightbox.open{display:grid;opacity:1}
.lightbox img{
  max-width:min(96vw,var(--max));
  max-height:90vh;
  border-radius:14px;
  box-shadow:var(--shadow);
  opacity:0;
  transform:translateY(8px) scale(.98);
  will-change:transform,opacity;
}
.lightbox img.anim{
  animation:lbPopIn .35s cubic-bezier(.2,.7,.3,1) forwards;
}
.lightbox button{
  position:absolute;
  top:16px;
  right:16px;
  background:rgba(0,0,0,.65);
  color:#fff;
  border:1px solid var(--border);
  border-radius:999px;
  padding:8px 12px;
  font-weight:900;
  cursor:pointer;
}
.lightbox button:hover{background:rgba(0,0,0,.80)}
@keyframes lbPopIn{
  from{opacity:0;transform:translateY(8px) scale(.98)}
  to{opacity:1;transform:translateY(0) scale(1)}
}
html[data-theme="light"] .lightbox{background:rgba(2,6,23,.78)}

/* -------------------------
   Utilities
------------------------- */
.sr-only{
  position:absolute;
  width:1px;height:1px;
  padding:0;margin:-1px;
  overflow:hidden;clip:rect(0,0,0,0);
  white-space:nowrap;border:0;
}

/* -------------------------
   Responsive
------------------------- */
@media (max-width:1100px){
  .hero-grid,
  .contact-grid{grid-template-columns:1fr}
  .hero-metrics{grid-template-columns:repeat(3,1fr)}
}
@media (max-width:980px){
  .feature-grid{grid-template-columns:1fr 1fr}
  .services-grid{grid-template-columns:1fr}
  .gallery-grid{grid-template-columns:1fr 1fr}
  .pkg-grid,
  .t-grid{grid-template-columns:1fr 1fr}
  .title{font-size:46px}
}
@media (max-width:700px){
  .title{font-size:38px}
  .menu{display:none}
  .burger{display:flex}
  .gallery-grid{grid-template-columns:1fr}
  .pkg-grid,
  .t-grid{grid-template-columns:1fr}
  .feature-grid{grid-template-columns:1fr}
  .hero-metrics{grid-template-columns:1fr}
  .slider{padding:14px 46px}
  .slide-btn{width:36px;height:36px;font-size:24px}
  .tally-embed iframe{height:620px}
}

/* Light theme fine-tuning */
html[data-theme="light"] .cta.ghost{color:#0f172a}
html[data-theme="light"] .pill{
  background:rgba(124,58,237,.10);
  border-color:rgba(15,23,42,.12);
  color:#0f172a;
}
html[data-theme="light"] footer{background:rgba(255,255,255,.80)}


/* Prevent background scroll when mobile menu is open */
body.menu-open{overflow:hidden}
