:root{
  --bg0:#070402;
  --bg1:#0e0704;
  --bg2:#1a0f09;
  --card:#120a06cc;
  --stroke:#2c1b12;
  --text:#f4eee7;
  --muted:#cdbfb2;
  --accent:#f6c343;
  --accent2:#ffd773;

  --shadow: 0 18px 60px rgba(0,0,0,.55);
  --radius: 18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Manrope, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: radial-gradient(1200px 600px at 20% 10%, #20130b 0%, var(--bg0) 55%),
              radial-gradient(900px 500px at 90% 20%, #2a190f 0%, var(--bg0) 55%),
              linear-gradient(180deg, var(--bg1), var(--bg0));
  color:var(--text);
  overflow-x:hidden;

  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a{ color:inherit; text-decoration:none; }
p{ line-height:1.7; margin:0; }
h1,h2,h3{ line-height:1.1; margin:0; letter-spacing:-0.02em; }
h1{ font-size: clamp(34px, 4.2vw, 58px); }
h2{ font-size: clamp(26px, 3vw, 40px); }
h3{ font-size: 18px; }

.muted{ color:var(--muted); }
.container{
  width:min(1120px, calc(100% - 40px));
  margin:0 auto;
}

/* Better anchor scrolling under sticky nav */
section[id]{ scroll-margin-top: 86px; }

#bg{
  position:fixed;
  inset:0;
  width:100%;
  height:100%;
  z-index:-3;
  transform: translateZ(0);
}

.noise{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-2;
  opacity:0.10;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='220' height='220'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='220' height='220' filter='url(%23n)' opacity='.35'/%3E%3C/svg%3E");
  mix-blend-mode: overlay;
}

.vignette{
  position:fixed;
  inset:-20%;
  pointer-events:none;
  z-index:-1;
  background: radial-gradient(circle at 50% 30%, transparent 30%, rgba(0,0,0,.50) 70%, rgba(0,0,0,.75) 100%);
}

/* =========================
   Text hover "sweep" effect
   ========================= */
:where(.menu a, .footer__col a, .footer__bottomLinks a, .faq__item summary, .service h3, .step h3, .work__meta h3){
  --sweep-base: var(--text);
  --sweep-from: var(--accent2);
  --sweep-mid: var(--accent);

  display: inline-block;
  background-image: linear-gradient(90deg,
    var(--sweep-from) 0%,
    var(--sweep-mid) 35%,
    var(--sweep-base) 72%
  );
  background-size: 220% 100%;
  background-position: 100% 0;
  transition: background-position .45s ease, filter .25s ease;
  color: var(--sweep-base);
}

.menu a{ --sweep-base: rgba(244,238,231,.85); }
.faq__item summary{ --sweep-base: rgba(244,238,231,.92); display:block; }

:where(.menu a:hover, .footer__col a:hover, .footer__bottomLinks a:hover, .faq__item summary:hover, .service:hover h3, .step:hover h3, .work:hover .work__meta h3){
  background-position: 0 0;
  filter: drop-shadow(0 0 14px rgba(246,195,67,.16));
}

/* Use gradient as text color (supports) */
@supports (-webkit-background-clip: text) or (background-clip: text){
  :where(.menu a, .footer__col a, .footer__bottomLinks a, .faq__item summary, .service h3, .step h3, .work__meta h3){
    color: transparent;
    -webkit-text-fill-color: transparent;
    -webkit-background-clip: text;
    background-clip: text;
  }
}

/* Nav */
.nav{
  position:sticky;
  top:0;
  z-index:50;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  background: linear-gradient(180deg, rgba(8,4,2,.72), rgba(8,4,2,.35));
  border-bottom: 1px solid rgba(246,195,67,.10);
  transform: translateZ(0);
}
.nav__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap:14px;
}

/* Brand + logo */
.brand{
  font-weight:800;
  letter-spacing:-0.03em;
  font-size:18px;
}
.brand span{ color:var(--accent); }

.menu{
  display:flex;
  gap:18px;
  align-items:center;
}

.menu a{
  position: relative;
  isolation:isolate;
  font-weight:600;
  font-size:14px;
  padding:8px 10px;
  border-radius:10px;
}
.menu a::before{
  content:"";
  position:absolute;
  inset:0;
  border-radius:10px;
  background: rgba(246,195,67,.08);
  opacity:0;
  transition: opacity .18s ease;
  z-index:-1;
}
.menu a:hover::before{ opacity:1; }

/* Buttons */
.btn{
  position: relative;
  overflow: hidden;

  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(246,195,67,.38);

  background: linear-gradient(90deg,
    rgba(246,195,67,1),
    rgba(255,215,115,1),
    rgba(246,195,67,1)
  );
  background-size: 220% 100%;
  background-position: 0 0;

  color:#241407;
  font-weight:800;
  box-shadow: 0 10px 28px rgba(246,195,67,.18);
  cursor:pointer;
  transition: transform .18s ease, box-shadow .18s ease, filter .18s ease, background-position .35s ease;
}
.btn::after{
  content:"";
  position:absolute;
  inset:-40% -60%;
  background: linear-gradient(120deg,
    transparent 0%,
    rgba(255,255,255,.40) 50%,
    transparent 100%
  );
  transform: translateX(-120%) skewX(-18deg);
  transition: transform .65s ease;
  pointer-events:none;
  opacity:.9;
}
.btn:hover{
  transform: translateY(-1px);
  background-position: 100% 0;
  filter: brightness(1.02);
  box-shadow: 0 14px 34px rgba(246,195,67,.25);
}
.btn:hover::after{ transform: translateX(120%) skewX(-18deg); }
.btn:active{ transform: translateY(0px); }

.btn--ghost{
  background: rgba(18,10,6,.45);
  color: var(--text);
  border: 1px solid rgba(246,195,67,.26);
  box-shadow: none;
}
.btn--ghost::after{ display:none; }
.btn--ghost:hover{
  background: rgba(246,195,67,.10);
  filter:none;
}
.btn--small{ padding: 10px 12px; border-radius: 12px; font-size: 14px; }

/* Hero */
.hero{ padding: 54px 0 22px; }
.hero__grid{
  display:grid;
  grid-template-columns: 1.45fr .95fr;
  gap: 24px;
  align-items: start;
}
.eyebrow{
  display:inline-flex;
  gap:10px;
  align-items:center;
  color: rgba(255,215,115,.95);
  font-weight:800;
  letter-spacing:.08em;
  text-transform: uppercase;
  font-size: 12px;
}
.lead{ margin-top: 14px; font-size: 16px; color: rgba(244,238,231,.9); }

.hero__cta{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top: 18px;
}

.stats{
  display:flex;
  gap:18px;
  margin-top: 22px;
  flex-wrap:wrap;
}
.stat{
  border: 1px solid rgba(246,195,67,.16);
  background: rgba(18,10,6,.35);
  padding: 12px 14px;
  border-radius: 16px;
  min-width: 140px;
  box-shadow: var(--shadow);
}
.stat__num{
  font-weight: 900;
  letter-spacing:-0.02em;
  color: var(--accent2);
  font-size: 20px;
}
.stat__label{ color: rgba(244,238,231,.75); font-weight:600; font-size: 13px; margin-top:6px; }

.rotate-wrap{ display:inline-block; position:relative; margin-left: 6px; }
.rotate{
  display:inline-block;
  padding: 6px 10px;
  border-radius: 14px;
  background: rgba(246,195,67,.08);
  border: 1px solid rgba(246,195,67,.22);
}
.neon{
  text-shadow:
    0 0 10px rgba(246,195,67,.18),
    0 0 24px rgba(246,195,67,.18),
    0 0 50px rgba(255,215,115,.10);
}
/* Fix: heading line spacing so rotating line doesn't collide */
.hero h1{ line-height: 1.22; }
.h1-line2{ display: inline-block; padding-top: 10px; }
.rotate-wrap{ margin-left: 0; }
.rotate{ line-height: 1.2; }

.hero__card .card{
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(18,10,6,.70), rgba(10,6,4,.30));
  border: 1px solid rgba(246,195,67,.18);
  box-shadow: var(--shadow);
  padding: 18px;
}
.card__title{ color: rgba(255,215,115,.92); font-weight:900; letter-spacing:.08em; text-transform:uppercase; font-size:12px; margin-bottom:10px; }
.checklist{ margin:0; padding-left: 18px; color: rgba(244,238,231,.88); }
.checklist li{ margin: 10px 0; }
.card__divider{
  height:1px;
  margin: 16px 0 12px;
  background: linear-gradient(90deg, rgba(246,195,67,.0), rgba(246,195,67,.35), rgba(246,195,67,.0));
}
.card__mini{
  display:flex; gap:10px; align-items:center;
  color: rgba(244,238,231,.78);
  font-weight:600;
}
.dot{
  width:10px; height:10px; border-radius:99px;
  background: var(--accent);
  box-shadow: 0 0 24px rgba(246,195,67,.35);
}

/* Sections */
.section{ padding: 54px 0; }
.section__head{
  display:grid;
  gap:10px;
  margin-bottom: 22px;
  max-width: 760px;
}

.grid{ display:grid; gap: 14px; }
.grid--4{ grid-template-columns: repeat(4, 1fr); }
.grid--3{ grid-template-columns: repeat(3, 1fr); }

.service, .step{
  border-radius: var(--radius);
  background: rgba(18,10,6,.38);
  border: 1px solid rgba(246,195,67,.14);
  padding: 16px;
  box-shadow: var(--shadow);
  transition: transform .18s ease, border-color .18s ease, background .18s ease;
  will-change: transform;
}
.service:hover, .step:hover{
  transform: translateY(-2px);
  border-color: rgba(246,195,67,.30);
  background: rgba(246,195,67,.06);
}
.service p, .step p{ color: rgba(244,238,231,.82); margin-top: 8px; }

.step__num{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 44px; height:44px;
  border-radius: 14px;
  background: rgba(246,195,67,.10);
  border: 1px solid rgba(246,195,67,.22);
  color: var(--accent2);
  font-weight:900;
  margin-bottom: 10px;
}

/* Work cards */
.work{
  border-radius: var(--radius);
  overflow:hidden;
  border: 1px solid rgba(246,195,67,.14);
  background: rgba(18,10,6,.34);
  box-shadow: var(--shadow);
  transition: transform .18s ease, border-color .18s ease;
  will-change: transform;
}
.work:hover{ transform: translateY(-2px); border-color: rgba(246,195,67,.30); }
.work__thumb{
  height: 220px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(600px 240px at 20% 20%, rgba(246,195,67,.22), transparent 55%),
    radial-gradient(500px 200px at 80% 10%, rgba(255,215,115,.18), transparent 55%),
    linear-gradient(180deg, rgba(24,14,9,.9), rgba(10,6,4,.25));
}

.work__thumb img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: top center;
  transition: transform .35s ease, filter .35s ease;
}

.work__thumb::after{
  content:"";
  position:absolute;
  inset:0;
  pointer-events:none;
  background:
    linear-gradient(180deg, rgba(0,0,0,0) 45%, rgba(7,4,2,.45) 100%),
    radial-gradient(600px 220px at 50% 0%, rgba(246,195,67,.14), transparent 55%);
}

.work:hover .work__thumb img{
  transform: scale(1.045);
  filter: brightness(1.06) contrast(1.05);
}
.work__meta{ padding: 14px; }
.work__meta p{ margin-top: 6px; color: rgba(244,238,231,.78); }

/* Reviews */
.review{
  border-radius: var(--radius);
  background: rgba(18,10,6,.38);
  border: 1px solid rgba(246,195,67,.14);
  padding: 16px;
  box-shadow: var(--shadow);
}
.review__top{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-bottom: 10px;
}
.review__text{ color: rgba(244,238,231,.86); }
.review__meta{ margin-top: 12px; font-weight: 700; }

.stars{
  width: 92px;
  height: 16px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 20'%3E%3Cpath fill='black' d='M10 1.5l2.6 5.6 6.1.8-4.5 4.3 1.1 6.1L10 15.7 4.7 18.3 5.8 12.2 1.3 7.9l6.1-.8L10 1.5zm24 0l2.6 5.6 6.1.8-4.5 4.3 1.1 6.1L34 15.7l-5.3 2.6 1.1-6.1-4.5-4.3 6.1-.8L34 1.5zm24 0l2.6 5.6 6.1.8-4.5 4.3 1.1 6.1L58 15.7l-5.3 2.6 1.1-6.1-4.5-4.3 6.1-.8L58 1.5zm24 0l2.6 5.6 6.1.8-4.5 4.3 1.1 6.1L82 15.7l-5.3 2.6 1.1-6.1-4.5-4.3 6.1-.8L82 1.5zm24 0l2.6 5.6 6.1.8-4.5 4.3 1.1 6.1L106 15.7l-5.3 2.6 1.1-6.1-4.5-4.3 6.1-.8L106 1.5z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 120 20'%3E%3Cpath fill='black' d='M10 1.5l2.6 5.6 6.1.8-4.5 4.3 1.1 6.1L10 15.7 4.7 18.3 5.8 12.2 1.3 7.9l6.1-.8L10 1.5zm24 0l2.6 5.6 6.1.8-4.5 4.3 1.1 6.1L34 15.7l-5.3 2.6 1.1-6.1-4.5-4.3 6.1-.8L34 1.5zm24 0l2.6 5.6 6.1.8-4.5 4.3 1.1 6.1L58 15.7l-5.3 2.6 1.1-6.1-4.5-4.3 6.1-.8L58 1.5zm24 0l2.6 5.6 6.1.8-4.5 4.3 1.1 6.1L82 15.7l-5.3 2.6 1.1-6.1-4.5-4.3 6.1-.8L82 1.5zm24 0l2.6 5.6 6.1.8-4.5 4.3 1.1 6.1L106 15.7l-5.3 2.6 1.1-6.1-4.5-4.3 6.1-.8L106 1.5z'/%3E%3C/svg%3E") center / contain no-repeat;
  filter: drop-shadow(0 0 18px rgba(246,195,67,.22));
}
.pill{
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(246,195,67,.10);
  border: 1px solid rgba(246,195,67,.20);
  color: rgba(255,215,115,.92);
}

/* FAQ */
.faq{
  display:grid;
  gap: 12px;
  max-width: 920px;
}
.faq__item{
  border-radius: var(--radius);
  background: rgba(18,10,6,.38);
  border: 1px solid rgba(246,195,67,.14);
  padding: 12px 14px;
  box-shadow: var(--shadow);
}
.faq__item summary{
  cursor:pointer;
  list-style:none;
  font-weight: 800;
}
.faq__item summary::-webkit-details-marker{ display:none; }
.faq__item summary::after{
  content:"+";
  float:right;
  color: rgba(255,215,115,.92);
  font-weight: 900;
}
.faq__item[open] summary::after{ content:"—"; }
.faq__content{ margin-top: 10px; }

/* NEW: Ticker / Marquee section */
.ticker{
  padding: 10px 0 44px; /* between FAQ and Contact */
}
.ticker__wrap{
  position: relative;
  border-radius: 999px;
  border: 1px solid rgba(246,195,67,.16);
  background: rgba(18,10,6,.35);
  box-shadow: var(--shadow);
  overflow: hidden;
  padding: 12px 0;
}
.ticker__wrap::before,
.ticker__wrap::after{
  content:"";
  position:absolute;
  top:0; bottom:0;
  width: 90px;
  pointer-events:none;
  z-index: 2;
}
.ticker__wrap::before{
  left:0;
  background: linear-gradient(90deg, rgba(7,4,2,.95), rgba(7,4,2,0));
}
.ticker__wrap::after{
  right:0;
  background: linear-gradient(270deg, rgba(7,4,2,.95), rgba(7,4,2,0));
}
.ticker__track{
  display:flex;
  align-items:center;
  gap: 18px;
  width: max-content;
  padding: 6px 18px;
  animation: tickerMove 22s linear infinite;
  will-change: transform;
}
.ticker__track span{
  white-space: nowrap;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  color: rgba(244,238,231,.84);
}
.ticker__sep{
  color: rgba(255,215,115,.92);
  opacity: .95;
}

@keyframes tickerMove{
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Contact */
.contact{
  display:grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 18px;
  align-items:start;
}
.contact__info{
  display:grid;
  gap:10px;
  margin-top: 16px;
  padding: 14px;
  border-radius: var(--radius);
  border: 1px solid rgba(246,195,67,.14);
  background: rgba(18,10,6,.35);
  box-shadow: var(--shadow);
}
.label{
  display:inline-block;
  min-width: 88px;
  color: rgba(255,215,115,.92);
  font-weight:800;
  font-size: 12px;
  letter-spacing:.08em;
  text-transform: uppercase;
  margin-right: 8px;
}

/* Form */
.form{
  border-radius: var(--radius);
  background: rgba(18,10,6,.45);
  border: 1px solid rgba(246,195,67,.16);
  padding: 16px;
  box-shadow: var(--shadow);
}
.form__row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
label span{
  display:block;
  font-size: 12px;
  font-weight:800;
  letter-spacing:.08em;
  text-transform: uppercase;
  color: rgba(255,215,115,.92);
  margin-bottom: 6px;
}
input, select, textarea{
  width:100%;
  border-radius: 14px;
  border: 1px solid rgba(246,195,67,.14);
  background: rgba(9,5,3,.55);
  color: var(--text);
  padding: 12px 12px;
  outline:none;
}
input:focus, select:focus, textarea:focus{
  border-color: rgba(246,195,67,.36);
  box-shadow: 0 0 0 3px rgba(246,195,67,.10);
}
textarea{ resize: vertical; min-height: 120px; }
.form__actions{ display:flex; align-items:center; justify-content:space-between; gap: 12px; margin-top: 12px; flex-wrap:wrap; }
.form__note{ font-size: 13px; }

/* Footer upgrade */
.footer{
  padding: 38px 0 26px;
  border-top: 1px solid rgba(246,195,67,.10);
  background: linear-gradient(180deg, rgba(8,4,2,.15), rgba(8,4,2,.35));
}
.footer__grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 18px;
}
.footer__title{
  color: rgba(255,215,115,.92);
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
  font-size: 12px;
  margin-bottom: 10px;
}
.footer__col{
  display:flex;
  flex-direction: column;
  gap: 10px;
}
.footer__name{ font-weight: 900; letter-spacing: -0.02em; }
.footer__tag{ font-size: 13px; }
.footer__about{ margin-top: 12px; max-width: 420px; }
.footer__small{ margin: 0; font-size: 13px; }
.footer__owners{ margin-top: 10px; }

/* Footer links: underline + nicer hover */
.footer__col a,
.footer__bottomLinks a{
  position: relative;
  width: fit-content;
}
.footer__col a::after,
.footer__bottomLinks a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-3px;
  width:100%;
  height:2px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .22s ease;
  opacity:.95;
}
.footer__col a:hover::after,
.footer__bottomLinks a:hover::after{
  transform: scaleX(1);
}

.footer__bottom{
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid rgba(246,195,67,.10);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  color: rgba(244,238,231,.75);
  font-weight:600;
}

/* Floating WhatsApp */
.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 12px 14px;
  border-radius: 999px;
  background: rgba(18,10,6,.55);
  border: 1px solid rgba(246,195,67,.22);
  box-shadow: var(--shadow);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transform: translateZ(0);
  transition: transform .18s ease, background .18s ease;
}
.whatsapp-float:hover{ transform: translateY(-2px); background: rgba(246,195,67,.08); }
.whatsapp-icon{
  width: 18px; height:18px; border-radius: 6px;
  background:
    radial-gradient(circle at 30% 30%, rgba(255,215,115,.95), rgba(246,195,67,.25)),
    linear-gradient(180deg, rgba(246,195,67,.65), rgba(246,195,67,.25));
  box-shadow: 0 0 24px rgba(246,195,67,.22);
}
.whatsapp-text{ font-weight:800; color: rgba(244,238,231,.92); }

/* Reveal base (GSAP will animate) */
.reveal{ opacity: 0; transform: translateY(12px); will-change: transform, opacity; }

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .grid--4{ grid-template-columns: repeat(2, 1fr); }
  .grid--3{ grid-template-columns: repeat(2, 1fr); }
  .menu{ display:none; }
  .footer__grid{ grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px){
  .grid--4, .grid--3{ grid-template-columns: 1fr; }
  .form__row{ grid-template-columns: 1fr; }
  .footer__grid{ grid-template-columns: 1fr; }
}

/* Custom Cursor styles */
.cursor-dot, .cursor-ring {
  position: fixed;
  top: 0;
  left: 0;
  pointer-events: none;
  z-index: 9999;
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}

.cursor-dot {
  width: 8px;
  height: 8px;
  background-color: var(--accent);
}

.cursor-ring {
  width: 20px;
  height: 20px;
  border: 2px solid var(--accent);
  transition: transform 0.1s ease-out;
}

/* Mobile par cursor hata dein */
@media (max-width: 768px) {
  .cursor-dot, .cursor-ring { display: none; }
}

/* Reduced motion: stop heavy motion */
@media (prefers-reduced-motion: reduce){
  html,body{ scroll-behavior:auto; }
  .ticker__track{ animation:none; transform:none; }
}