
/* ══════════════════════════════════════
   RESET & TOKENS
══════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --orange: #E8420A;
  --bg:     #F7F4F0;
  --bg2:    #EDEAE4;
  --white:  #FFFFFF;
  --text:   #1A1A1A;
  --muted:  #6B6560;
  --border: #DDD8D0;
  --nav-h:  64px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Barlow', 'Helvetica Neue', Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }

/* ══════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════ */
h1, h2, h3 {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  letter-spacing: 0.02em;
}
.section-label {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: .8rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: .4rem;
}
.divider {
  height: 3px;
  background: var(--orange);
  width: 56px;
  margin-bottom: 1.25rem;
  border-radius: 2px;
}
.accent { color: var(--orange); }

/* ══════════════════════════════════════
   LAYOUT
══════════════════════════════════════ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.25rem;
}
@media (min-width: 640px)  { .container { padding: 0 1.75rem; } }
@media (min-width: 1024px) { .container { padding: 0 2.5rem; } }

.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.mt-10 { margin-top: 2.5rem; }
.text-center { text-align: center; }

/* Two-column hero grid */
.hero-grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}
@media (min-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* Service cards grid */
.grid-3 {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-3 { grid-template-columns: repeat(3, 1fr); } }

/* Why us grid */
.grid-4 {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px)  { .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .grid-4 { grid-template-columns: repeat(4, 1fr); } }

/* Videos grid */
.grid-videos {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 640px) { .grid-videos { grid-template-columns: repeat(3, 1fr); } }

/* Gallery grid */
.grid-gallery {
  display: grid;
  gap: 12px;
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 640px)  { .grid-gallery { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px) { .grid-gallery { grid-template-columns: repeat(4, 1fr); } }

/* Contact grid */
.grid-contact {
  display: grid;
  gap: 3rem;
  align-items: start;
}
@media (min-width: 1024px) {
  .grid-contact { grid-template-columns: 1fr 1fr; gap: 4rem; }
}

/* Footer grid */
.grid-footer {
  display: grid;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
@media (min-width: 768px) { .grid-footer { grid-template-columns: repeat(3, 1fr); } }

/* ══════════════════════════════════════
   BUTTONS
══════════════════════════════════════ */
.btn-primary {
  background: var(--orange);
  color: #fff;
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .875rem 2rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background .2s, transform .15s, box-shadow .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(232,66,10,.25);
  white-space: nowrap;
}
.btn-primary:hover {
  background: #c93408;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,66,10,.35);
}
.btn-primary.sm  { padding: .5rem 1.25rem; font-size: .9rem; }
.btn-primary.full { width: 100%; justify-content: center; margin-top: .5rem; }

.btn-outline {
  background: transparent;
  border: 2px solid var(--orange);
  color: var(--orange);
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .75rem 1.75rem;
  border-radius: 4px;
  cursor: pointer;
  transition: all .2s;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  text-decoration: none;
  white-space: nowrap;
}
.btn-outline:hover {
  background: var(--orange);
  color: #fff;
  box-shadow: 0 4px 16px rgba(232,66,10,.25);
}

/* ══════════════════════════════════════
   NAV
══════════════════════════════════════ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(12px);
  border-bottom: 3px solid var(--orange);
  box-shadow: 0 2px 20px rgba(0,0,0,.08);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--nav-h);
}
.nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  text-decoration: none;
  color: inherit;
  flex-shrink: 0;
}
.nav-icon {
  width: 38px; height: 38px;
  background: var(--orange);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 2px 8px rgba(232,66,10,.3);
  flex-shrink: 0;
}
.nav-name {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: 1.45rem; line-height: 1; letter-spacing: .04em;
}
.nav-sub {
  font-size: .6rem; letter-spacing: .2em;
  text-transform: uppercase; color: var(--muted);
}
.nav-links {
  display: none;
  align-items: center;
  gap: 1.75rem;
}
@media (min-width: 768px) { .nav-links { display: flex; } }

.nav-link {
  font-family: 'Barlow Condensed', 'Arial Narrow', sans-serif;
  font-weight: 700; font-size: 1rem;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--text); text-decoration: none;
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}
.nav-link:hover { color: var(--orange); border-bottom-color: var(--orange); }

.nav-hamburger {
  display: flex;
  background: none; border: none;
  color: var(--text); cursor: pointer; padding: .25rem;
}
@media (min-width: 768px) { .nav-hamburger { display: none; } }

.mobile-menu {
  display: none;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-top: 1px solid var(--border);
}
.mobile-menu.open { display: block; }
.mobile-menu .nav-link {
  display: block;
  padding: .65rem 0;
  border-bottom: 1px solid var(--border);
}
.mobile-menu .nav-link:last-child { border-bottom: none; }

/* ══════════════════════════════════════
   HERO
══════════════════════════════════════ */
.hero {
  min-height: 100vh;
  background: linear-gradient(140deg, #fff 0%, #fdf0e8 55%, #fde0cc 100%);
  position: relative;
  overflow: hidden;
  padding-top: var(--nav-h);
  display: flex;
  align-items: center;
}
.hero::before {
  content: 'DHASARA';
  position: absolute;
  bottom: -60px; right: -30px;
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: clamp(100px, 18vw, 260px);
  color: rgba(232,66,10,.06);
  line-height: 1;
  pointer-events: none; user-select: none;
}
.hero-stripe {
  position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 58%, rgba(232,66,10,.07) 58%);
  pointer-events: none;
}
.hero-body {
  position: relative; z-index: 10;
  width: 100%; padding: 4rem 25px;
}

.hero h1 {
  font-size: clamp(3rem, 8vw, 7rem);
  line-height: .93;
  margin-bottom: 1.25rem;
}
.hero-desc {
  font-size: 1.05rem; line-height: 1.7;
  color: var(--muted);
  max-width: 460px;
  margin-bottom: 2rem;
}
.hero-btns {
  display: flex; flex-wrap: wrap;
  gap: 1rem; margin-bottom: 2.5rem;
}
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap; align-items: flex-start;
}
.stat-divider { width: 1px; background: var(--border); align-self: stretch; }
.stat-num {
  font-family: 'Bebas Neue', 'Arial Black', sans-serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--orange); line-height: 1;
}
.stat-label {
  font-size: .75rem; color: var(--muted);
  text-transform: uppercase; letter-spacing: .12em;
  margin-top: .2rem;
}

/* Hero image */
.hero-img-col { display: none; }
@media (min-width: 1024px) { .hero-img-col { display: block; } }

.hero-img-wrap {
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,.18);
  aspect-ratio: 4/3;
}
.hero-img-wrap img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}

/* Mobile hero image strip below the hero section */
.hero-img-mobile {
  background: var(--bg2);
  padding: 1.5rem 1.25rem 2rem;
}
.hero-img-mobile .hero-img-wrap {
  max-height: 260px;
  border-radius: 10px;
}
@media (min-width: 1024px) { .hero-img-mobile { display: none; } }

/* ══════════════════════════════════════
   SERVICES
══════════════════════════════════════ */
.services-section { background: var(--bg2); }
.services-intro { margin-bottom: 3rem; }
.services-intro h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: .75rem; }
.services-intro p { color: var(--muted); max-width: 560px; font-size: 1rem; line-height: 1.7; }

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-left: 4px solid var(--orange);
  border-radius: 6px; padding: 1.5rem;
  transition: transform .2s, box-shadow .2s;
  box-shadow: 0 2px 8px rgba(0,0,0,.05);
}
.service-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(232,66,10,.12);
}
.service-card .icon { font-size: 2rem; margin-bottom: .75rem; }
.service-card h3 { font-size: 1.4rem; margin-bottom: .5rem; }
.service-card p { color: var(--muted); font-size: .95rem; line-height: 1.6; }

/* ══════════════════════════════════════
   VIDEOS  — canvas thumbnail
══════════════════════════════════════ */
.videos-section { background: var(--bg); }
.videos-header { text-align: center; margin-bottom: 2.5rem; }
.videos-header .divider { margin: .5rem auto 1.25rem; }
.videos-header h2 { font-size: clamp(2.4rem, 5vw, 4rem); }
.videos-header p { color: var(--muted); max-width: 500px; margin: .75rem auto 0; }

.video-card {
  border-radius: 10px;
  overflow: hidden;
  background: #111;
  box-shadow: 0 4px 20px rgba(0,0,0,.2);
  position: relative;
  cursor: pointer;
  aspect-ratio: 16/9;
}
.video-card video {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
}
.video-card canvas {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: opacity .3s;
  z-index: 1;
}
.play-overlay {
  position: absolute; inset: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(0,0,0,.25);
  transition: background .25s;
  z-index: 2;
}
.video-card:hover .play-overlay { background: rgba(0,0,0,.42); }
.play-btn {
  width: 62px; height: 62px;
  background: var(--orange); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(232,66,10,.55);
  transition: transform .2s, box-shadow .2s;
  flex-shrink: 0;
}
.play-btn svg { margin-left: 4px; }
.video-card:hover .play-btn {
  transform: scale(1.1);
  box-shadow: 0 8px 32px rgba(232,66,10,.65);
}
/* When playing: hide canvas + overlay */
.video-card.playing .play-overlay,
.video-card.playing canvas { opacity: 0; pointer-events: none; }

/* ══════════════════════════════════════
   GALLERY
══════════════════════════════════════ */
.gallery-section { background: var(--bg2); }
.gallery-header { margin-bottom: 2.5rem; }
.gallery-header h2 { font-size: clamp(2.2rem, 4.5vw, 3.5rem); margin-bottom: .5rem; }
.gallery-header p { color: var(--muted); }

.gallery-item {
  aspect-ratio: 4/3; border-radius: 8px;
  overflow: hidden; cursor: pointer; position: relative;
  border: 2px solid var(--border);
  transition: border-color .2s, transform .2s, box-shadow .2s;
  background: var(--bg2);
}
.gallery-item:hover {
  border-color: var(--orange);
  transform: scale(1.02);
  box-shadow: 0 8px 24px rgba(232,66,10,.15);
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(232,66,10,.18);
  opacity: 0; transition: opacity .2s;
  display: flex; align-items: center; justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-placeholder {
  width: 100%; height: 100%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--bg2), var(--bg));
  font-size: 2.5rem;
}
.gallery-placeholder span { font-size: .7rem; color: var(--muted); }

/* ══════════════════════════════════════
   WHY US
══════════════════════════════════════ */
.why-section { background: var(--bg); }
.why-header { text-align: center; margin-bottom: 2.5rem; }
.why-header .divider { margin: .5rem auto 1.25rem; }
.why-header h2 { font-size: clamp(2.4rem, 5vw, 4rem); }

.why-card {
  background: var(--white);
  border-top: 4px solid var(--orange);
  border-radius: 0 0 6px 6px;
  padding: 1.5rem;
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
  transition: transform .2s, box-shadow .2s;
}
.why-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 32px rgba(232,66,10,.12);
}
.why-card .icon { font-size: 2.5rem; margin-bottom: 1rem; }
.why-card h3 { font-size: 1.35rem; margin-bottom: .5rem; }
.why-card p { font-size: .92rem; color: var(--muted); line-height: 1.6; }

/* ══════════════════════════════════════
   CONTACT
══════════════════════════════════════ */
.contact-section { background: var(--bg2); }
.contact-left h2 { font-size: clamp(2.4rem, 5vw, 4rem); margin-bottom: 1rem; }
.contact-left > p { color: var(--muted); margin-bottom: 2rem; font-size: 1rem; line-height: 1.7; }

.contact-info { display: flex; flex-direction: column; gap: 1.25rem; }
.contact-row { display: flex; align-items: center; gap: 1rem; text-decoration: none; }
.cicon {
  width: 52px; height: 52px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.cicon.orange { background: var(--orange); box-shadow: 0 4px 16px rgba(232,66,10,.3); }
.cicon.green  { background: #25D366; box-shadow: 0 4px 16px rgba(37,211,102,.3); }
.cicon.grey   { background: var(--bg); border: 1.5px solid var(--border); }
.c-sub  { font-size: .72rem; letter-spacing: .15em; text-transform: uppercase; color: var(--muted); }
.c-val  { font-family: 'Barlow Condensed',sans-serif; font-size: 1.4rem; font-weight: 700; }
.c-val.orange { color: var(--orange); }
.c-val.green  { color: #25D366; font-size: 1.2rem; }
.c-addr { font-family: 'Barlow Condensed',sans-serif; font-size: 1.05rem; font-weight: 700; }

.form-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 10px; padding: 2rem;
  box-shadow: 0 8px 40px rgba(0,0,0,.07);
}
.form-card h3 { font-size: 1.8rem; margin-bottom: 1.5rem; }
.form-fields { display: flex; flex-direction: column; gap: 1rem; }
.field-label {
  display: block;
  font-size: .78rem; letter-spacing: .12em;
  text-transform: uppercase; color: var(--muted);
  margin-bottom: .4rem; font-weight: 600;
}
.form-input {
  width: 100%;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 5px; padding: .75rem 1rem;
  color: var(--text);
  font-family: 'Barlow', sans-serif; font-size: 1rem;
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus {
  border-color: var(--orange);
  box-shadow: 0 0 0 3px rgba(232,66,10,.12);
}
.form-input::placeholder { color: #aaa8a5; }
.two-col { display: grid; gap: 1rem; }
@media (min-width: 560px) { .two-col { grid-template-columns: 1fr 1fr; } }

.success-msg {
  display: none; background: #ecfdf5;
  border: 1px solid #6ee7b7; border-radius: 5px;
  padding: 1rem; color: #047857; text-align: center; font-weight: 600;
}
.error-msg {
  display: none; background: #fef2f2;
  border: 1px solid #fca5a5; border-radius: 5px;
  padding: 1rem; color: #dc2626; text-align: center; font-weight: 600;
}
.form-note { font-size: .75rem; color: #bbb; text-align: center; }

/* ══════════════════════════════════════
   STICKY SIDE (desktop)
══════════════════════════════════════ */
.sticky-buttons {
  position: fixed; right: 0; top: 50%;
  transform: translateY(-50%); z-index: 200;
  display: flex; flex-direction: column;
}
.sticky-btn {
  writing-mode: vertical-rl;
  padding: 1rem .65rem;
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: .82rem;
  letter-spacing: .12em; text-transform: uppercase;
  color: #fff; text-decoration: none;
  display: flex; align-items: center; gap: .4rem;
  transition: padding-right .2s;
}
.sticky-btn:hover { padding-right: 1rem; }
.sticky-phone { background: var(--orange); border-radius: 4px 0 0 0; }
.sticky-wa    { background: #25D366; border-radius: 0 0 0 4px; }

/* ══════════════════════════════════════
   MOBILE BOTTOM CTA
══════════════════════════════════════ */
.mobile-cta {
  position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
  display: none;
  background: var(--white);
  border-top: 2px solid var(--border);
  padding: .75rem 1rem; gap: .75rem;
  box-shadow: 0 -4px 20px rgba(0,0,0,.1);
}
.mobile-cta .btn-primary { flex: 1; justify-content: center; }
@media (max-width: 767px) {
  .sticky-buttons { display: none; }
  .mobile-cta { display: flex; }
  body { padding-bottom: 72px; }
}

/* ══════════════════════════════════════
   FOOTER
══════════════════════════════════════ */
footer { background: #1A1A1A; color: #e0ddd8; }
.footer-brand {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 2rem; letter-spacing: .04em;
  margin-bottom: .5rem; color: #fff;
}
.footer-desc { color: rgba(224,221,216,.5); font-size: .95rem; line-height: 1.7; }
.footer-col-title {
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700; font-size: 1rem;
  letter-spacing: .12em; text-transform: uppercase;
  margin-bottom: 1rem; color: #fff;
}
.footer-services { display: flex; flex-direction: column; gap: .5rem; color: rgba(224,221,216,.5); font-size: .9rem; }
.footer-links { display: flex; flex-direction: column; gap: .75rem; }
.f-phone { color: var(--orange); text-decoration: none; font-size: 1.1rem; font-weight: 600; }
.f-wa    { color: #25D366; text-decoration: none; font-size: .95rem; }
.f-addr  { color: rgba(224,221,216,.5); font-size: .9rem; line-height: 1.5; }
.f-hours { color: rgba(224,221,216,.5); font-size: .9rem; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 1.5rem;
  display: flex; flex-wrap: wrap;
  justify-content: space-between; align-items: center; gap: 1rem;
}
.f-copy    { color: rgba(224,221,216,.3); font-size: .85rem; }
.f-serving { color: rgba(224,221,216,.2); font-size: .8rem; }

/* ══════════════════════════════════════
   LIGHTBOX
══════════════════════════════════════ */
#lightbox {
  display: none; position: fixed; inset: 0; z-index: 600;
  background: rgba(0,0,0,.92);
  align-items: center; justify-content: center;
}
#lightbox.open { display: flex; }
#lb-img { max-width: 90vw; max-height: 85vh; border-radius: 6px; object-fit: contain; }
#lb-close {
  position: absolute; top: 1.25rem; right: 1.25rem;
  background: rgba(255,255,255,.15); border: none;
  color: #fff; font-size: 1.5rem;
  width: 40px; height: 40px; border-radius: 50%;
  cursor: pointer; display: flex; align-items: center; justify-content: center;
}

/* ══════════════════════════════════════
   SCROLL FADE
══════════════════════════════════════ */
.fade-up {
  opacity: 0; transform: translateY(28px);
  transition: opacity .55s ease, transform .55s ease;
  will-change: opacity, transform;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }