/* ============================================
   TOKENS
   ============================================ */
:root{
  --charcoal:     #16130F;
  --charcoal-2:   #1E1A14;
  --panel:        #211C16;
  --border:       rgba(255,196,105,0.12);

  --amber:        #FFB84D;
  --amber-dim:    #8A6528;
  --gold-glow:    #FFD98E;
  --blue-led:     #6FD8F2;
  --blue-dim:     #2F5A66;

  --cream:        #F5EFE3;
  --cream-dim:    #C9BFA9;
  --muted:        #8E8676;

  --font-display: 'Sora', sans-serif;
  --font-shout:   'Bebas Neue', sans-serif;
  --font-body:    'Inter', sans-serif;

  --pad: clamp(20px, 6vw, 90px);
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior: smooth; }

body{
  background: var(--charcoal);
  color: var(--cream);
  font-family: var(--font-body);
  overflow-x: hidden;
}

::selection{ background: var(--amber); color: var(--charcoal); }
a{ color: inherit; text-decoration: none; }
button{ font-family: inherit; cursor: pointer; border: none; }
.glow-text{ color: var(--amber); font-style: italic; font-weight: 400; text-shadow: 0 0 24px rgba(255,184,77,0.45); }

a:focus-visible, button:focus-visible{ outline: 1px solid var(--amber); outline-offset: 3px; }

/* ============================================
   BACKGROUND
   ============================================ */
#spotlight-canvas{
  position: fixed;
  inset: 0;
  z-index: 0;
  background: var(--charcoal);
}
.grain{
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='100'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

@media (max-width: 768px){
  #spotlight-canvas{ opacity: 0.6; }
}

/* ============================================
   LOADER
   ============================================ */
.loader{
  position: fixed; inset: 0; z-index: 999;
  background: var(--charcoal);
  display: flex; align-items: center; justify-content: center;
  transition: opacity .8s ease, visibility .8s ease;
}
.loader.hide{ opacity: 0; visibility: hidden; }
.loader-inner{ display: flex; flex-direction: column; align-items: center; gap: 18px; }
.loader-logo{
  font-family: var(--font-shout);
  font-size: 30px;
  letter-spacing: 0.1em;
  color: var(--amber);
  text-shadow: 0 0 30px rgba(255,184,77,0.6);
}
.loader-bar{ width: 220px; height: 2px; background: rgba(255,255,255,0.08); }
.loader-fill{ height: 100%; width: 0%; background: linear-gradient(90deg, var(--amber), var(--gold-glow)); box-shadow: 0 0 12px var(--amber); }
.loader-label{ font-family: var(--font-body); font-size: 10.5px; letter-spacing: 0.25em; color: var(--muted); }

/* ============================================
   NAV
   ============================================ */
.nav{
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px clamp(20px, 4vw, 48px);
  background: rgba(22,19,15,0.75);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.nav-logo{
  font-family: var(--font-shout);
  font-size: 20px;
  letter-spacing: 0.06em;
  color: var(--cream);
}
.nav-logo span{ color: var(--amber); }
.nav-links{ display: flex; gap: clamp(16px, 2.5vw, 34px); }
.nav-links a{
  font-size: 13.5px;
  font-weight: 500;
  color: var(--cream-dim);
  position: relative;
  padding-bottom: 3px;
  transition: color .25s ease;
}
.nav-links a::after{
  content:''; position: absolute; left:0; bottom:0; width:0%; height:1px;
  background: var(--amber); transition: width .3s ease;
}
.nav-links a:hover{ color: var(--cream); }
.nav-links a:hover::after{ width: 100%; }

.nav-cta-wrap{ display: flex; align-items: center; gap: 18px; }
.nav-phone{ font-size: 13px; color: var(--cream-dim); white-space: nowrap; }
.nav-cta{
  background: var(--amber);
  color: var(--charcoal);
  font-weight: 700;
  font-size: 13px;
  padding: 10px 20px;
  border-radius: 100px;
  box-shadow: 0 0 20px rgba(255,184,77,0.35);
  transition: transform .25s ease, box-shadow .25s ease;
}
.nav-cta:hover{ transform: translateY(-2px); box-shadow: 0 4px 26px rgba(255,184,77,0.5); }

.nav-burger{
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
}
.nav-burger span{ width: 22px; height: 2px; background: var(--cream); display: block; }

@media (max-width: 860px){
  .nav-links, .nav-phone{ display: none; }
  .nav-burger{ display: flex; }
}

.mobile-menu{
  position: fixed;
  top: 62px; left: 0; right: 0;
  z-index: 49;
  background: var(--charcoal-2);
  border-bottom: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  padding: 10px clamp(20px, 4vw, 48px) 20px;
  gap: 4px;
  transform: translateY(-120%);
  transition: transform .35s ease;
}
.mobile-menu.open{ transform: translateY(0); }
.mobile-menu a{ padding: 12px 0; font-size: 15px; color: var(--cream-dim); border-bottom: 1px solid var(--border); }
.mm-phone{ color: var(--amber) !important; font-weight: 600; }

/* ============================================
   HERO
   ============================================ */
main{ position: relative; z-index: 3; }

.hero{
  padding: 150px var(--pad) 60px;
  min-height: 92vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.eyebrow{
  font-family: var(--font-body);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--blue-led);
  margin-bottom: 22px;
}
.hero-title{
  font-family: var(--font-shout);
  font-weight: 400;
  line-height: 0.98;
  font-size: clamp(38px, 7.2vw, 92px);
  letter-spacing: 0.01em;
  margin-bottom: 26px;
  max-width: 20ch;
}
.line{ display: block; overflow: hidden; }
.line-glow{ color: var(--amber); text-shadow: 0 0 40px rgba(255,184,77,0.4); }
.hero-sub{
  font-family: var(--font-body);
  font-size: clamp(15px, 1.5vw, 18px);
  line-height: 1.7;
  color: var(--cream-dim);
  max-width: 56ch;
  margin-bottom: 34px;
}
.hero-cta{ display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 50px; }

.btn-glow{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 15px 28px;
  border-radius: 100px;
  background: var(--amber);
  color: var(--charcoal);
  box-shadow: 0 0 24px rgba(255,184,77,0.4);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn-glow:hover{ transform: translateY(-2px); box-shadow: 0 6px 32px rgba(255,184,77,0.55); }

.btn-outline{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 15px 26px;
  border-radius: 100px;
  border: 1px solid rgba(245,239,227,0.25);
  color: var(--cream);
  transition: border-color .25s ease, color .25s ease;
}
.btn-outline:hover{ border-color: var(--amber); color: var(--amber); }

.btn-whatsapp{
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  padding: 15px 24px;
  border-radius: 100px;
  background: #25D366;
  color: #0B1F14;
}
.btn-whatsapp:hover{ filter: brightness(1.08); }

/* marquee */
.marquee-strip{
  overflow: hidden;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 16px 0;
  white-space: nowrap;
}
.marquee-track{
  display: inline-flex;
  gap: 20px;
  font-family: var(--font-shout);
  font-size: 18px;
  letter-spacing: 0.08em;
  color: var(--muted);
  animation: scrollMarquee 28s linear infinite;
}
.marquee-track span:nth-child(odd){ color: var(--amber); }
@keyframes scrollMarquee{
  from{ transform: translateX(0); }
  to{ transform: translateX(-50%); }
}

/* ============================================
   STATS BAR
   ============================================ */
.stats-bar{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 50px var(--pad);
  border-bottom: 1px solid var(--border);
  background: var(--charcoal-2);
}
.stat{ display: flex; flex-direction: column; gap: 8px; text-align: center; }
.stat-num{
  font-family: var(--font-shout);
  font-size: clamp(34px, 4vw, 50px);
  color: var(--amber);
  text-shadow: 0 0 20px rgba(255,184,77,0.3);
}
.stat-label{
  font-size: 11.5px;
  letter-spacing: 0.03em;
  color: var(--muted);
  line-height: 1.5;
}
@media (max-width: 760px){
  .stats-bar{ grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   SECTION BASE
   ============================================ */
.section{ padding: 110px var(--pad); scroll-margin-top: 70px; }
.section-tag{
  font-family: var(--font-body);
  font-size: 11px;
  letter-spacing: 0.22em;
  color: var(--blue-led);
  margin-bottom: 22px;
}
.section-title{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 4.4vw, 48px);
  line-height: 1.25;
  margin-bottom: 20px;
  max-width: 18ch;
}
.section-text{
  font-size: clamp(14.5px, 1.3vw, 16.5px);
  line-height: 1.75;
  color: var(--cream-dim);
  max-width: 62ch;
  margin-bottom: 16px;
}
.services-intro{ margin-bottom: 44px; }

/* ============================================
   ABOUT
   ============================================ */
.about-grid{
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(30px, 5vw, 70px);
  align-items: center;
}
@media (max-width: 880px){ .about-grid{ grid-template-columns: 1fr; } }

.glow-frame{
  position: relative;
  border-radius: 16px;
  padding: 2px;
  background: linear-gradient(135deg, rgba(255,184,77,0.5), rgba(111,216,242,0.25));
}
.glow-frame::after{
  content: '';
  position: absolute; inset: -14px;
  border-radius: 22px;
  background: radial-gradient(ellipse at center, rgba(255,184,77,0.12), transparent 70%);
  z-index: -1;
}
.frame-placeholder{
  background: var(--panel);
  border-radius: 14px;
  min-height: 320px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 30px;
  text-align: center;
}
.frame-placeholder span{ font-size: 36px; opacity: 0.6; }
.frame-placeholder p{
  font-size: 12.5px;
  color: var(--muted);
  max-width: 22ch;
  line-height: 1.5;
}

.glow-frame.small .frame-placeholder{ min-height: 160px; padding: 20px; }
.glow-frame.small .frame-placeholder span{ font-size: 26px; }

/* ============================================
   SERVICES
   ============================================ */
.service-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
@media (max-width: 1000px){ .service-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px){ .service-grid{ grid-template-columns: 1fr; } }

.service-card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 28px 22px;
  transition: border-color .3s ease, transform .3s ease, box-shadow .3s ease;
}
.service-card:hover{
  border-color: rgba(255,184,77,0.5);
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.35);
}
.service-icon{ font-size: 26px; display: block; margin-bottom: 14px; }
.service-card h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 10px;
}
.service-card p{ font-size: 13px; line-height: 1.6; color: var(--muted); }

/* ============================================
   WORK
   ============================================ */
.work-category{ margin-bottom: 46px; }
.work-cat-title{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 18px;
  color: var(--amber);
  margin-bottom: 18px;
}
.work-row{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
@media (max-width: 760px){ .work-row{ grid-template-columns: 1fr; } }

/* ============================================
   PROCESS
   ============================================ */
.process-rail{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 4px;
  position: relative;
}
@media (max-width: 900px){ .process-rail{ grid-template-columns: 1fr; gap: 24px; } }

.process-step{
  padding: 26px 22px;
  border-top: 2px solid var(--border);
  position: relative;
}
.process-step-glow{ border-top-color: var(--amber); }
.process-num{
  font-family: var(--font-shout);
  font-size: 30px;
  color: var(--muted);
  display: block;
  margin-bottom: 10px;
}
.process-step-glow .process-num{ color: var(--amber); text-shadow: 0 0 18px rgba(255,184,77,0.5); }
.process-step h3{
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  margin-bottom: 10px;
}
.process-step p{ font-size: 13.5px; line-height: 1.6; color: var(--muted); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testi-grid{
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
@media (max-width: 860px){ .testi-grid{ grid-template-columns: 1fr; } }

.testi-card{
  background: var(--panel);
  border: 1px solid var(--border);
  border-left: 3px solid var(--amber);
  border-radius: 10px;
  padding: 26px;
}
.testi-card p{ font-size: 14.5px; line-height: 1.7; color: var(--cream-dim); margin-bottom: 14px; font-style: italic; }
.testi-card span{ font-family: var(--font-display); font-size: 13px; color: var(--amber); font-weight: 600; }

/* ============================================
   CTA BAND
   ============================================ */
.cta-band{
  padding: 90px var(--pad);
  text-align: center;
  background: radial-gradient(ellipse at 50% 50%, rgba(255,184,77,0.08), transparent 65%), var(--charcoal-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.cta-band h2{
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 4vw, 42px);
  margin-bottom: 14px;
}
.cta-band p{
  font-size: 15px;
  color: var(--cream-dim);
  margin-bottom: 30px;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid{
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(30px, 5vw, 60px);
  margin-top: 20px;
}
@media (max-width: 900px){ .contact-grid{ grid-template-columns: 1fr; } }

.contact-links{ display: flex; flex-direction: column; gap: 22px; }
.contact-item{ display: flex; flex-direction: column; gap: 5px; }
.contact-label{ font-size: 11px; letter-spacing: 0.15em; color: var(--muted); text-transform: uppercase; }
.contact-value{
  font-family: var(--font-display);
  font-size: 19px;
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: color .3s ease, border-color .3s ease;
}
.contact-item:hover .contact-value{ color: var(--amber); border-color: var(--amber); }

.contact-form, .modal-form{
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.contact-form input, .contact-form select, .contact-form textarea,
.modal-form input, .modal-form select, .modal-form textarea{
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 16px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
}
.contact-form input::placeholder, .contact-form textarea::placeholder,
.modal-form input::placeholder, .modal-form textarea::placeholder{ color: var(--muted); }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus,
.modal-form input:focus, .modal-form select:focus, .modal-form textarea:focus{
  outline: none;
  border-color: var(--amber);
}
.contact-form select, .modal-form select{ color: var(--cream-dim); }
.full-width{ width: 100%; }

.footer{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 70px;
  border-top: 1px solid var(--border);
  padding-top: 24px;
  font-size: 12px;
  color: var(--muted);
}

/* ============================================
   QUOTE MODAL
   ============================================ */
.modal-overlay{
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(10,8,6,0.75);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility .3s ease;
}
.modal-overlay.open{ opacity: 1; visibility: visible; }

.modal{
  background: var(--charcoal-2);
  border: 1px solid var(--border);
  border-radius: 16px;
  width: 100%;
  max-width: 460px;
  padding: 28px;
  transform: translateY(20px) scale(0.97);
  transition: transform .35s ease;
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal{ transform: translateY(0) scale(1); }

.modal-head{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.modal-head h3{ font-family: var(--font-display); font-size: 20px; color: var(--amber); }
.modal-close{
  background: none;
  color: var(--cream-dim);
  font-size: 16px;
  width: 30px; height: 30px;
  border-radius: 50%;
  transition: background .25s ease;
}
.modal-close:hover{ background: rgba(255,255,255,0.08); }
.modal-actions{ display: flex; gap: 12px; justify-content: flex-end; margin-top: 6px; }

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.wa-float{
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 60;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37,211,102,0.4);
  transition: transform .25s ease;
}
.wa-float:hover{ transform: scale(1.08); }

/* ============================================
   REVEAL
   ============================================ */
[data-reveal]{ opacity: 0; transform: translateY(22px); }

@media (prefers-reduced-motion: reduce){
  *{ animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
  [data-reveal]{ opacity: 1; transform: none; }
}
.glow-frame {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  border: 2px solid #ccc;   /* optional border */
  border-radius: 8px;
  overflow: hidden;
}

.glow-frame img {
  width: 100%;          /* frame ki width ke hisaab se */
  height: 180px;        /* fix height, tu adjust kar sakta hai */
  object-fit: cover;    /* image crop hogi aur neatly fit hogi */
  border-radius: 6px;   /* thoda rounded look */
  display: block;
}

.glow-frame p {
  margin-top: 8px;
  font-size: 14px;
  text-align: center;
}
