/* =========================================================
   Gurgaon Gas Stove Repair — Stylesheet
========================================================= */

:root{
  --navy: #0b1f4d;
  --navy-dark: #081537;
  --orange: #f5711b;
  --orange-dark: #e05f0c;
  --cream: #fafaf9;
  --gray-50: #f6f7fb;
  --gray-100: #eef0f6;
  --gray-500: #6b7280;
  --gray-700: #374151;
  --white: #ffffff;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 2px 10px rgba(11,31,77,.06);
  --shadow-md: 0 10px 30px rgba(11,31,77,.10);
  --shadow-lg: 0 20px 50px rgba(11,31,77,.18);
  --ff-display: 'Poppins', sans-serif;
  --ff-body: 'Inter', sans-serif;
}

*,*::before,*::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
body{
  margin:0;
  font-family: var(--ff-body);
  color: var(--gray-700);
  background: var(--white);
  line-height:1.6;
  -webkit-font-smoothing: antialiased;
}
h1,h2,h3,h4{
  font-family: var(--ff-display);
  color: var(--navy);
  margin:0 0 .5em;
  line-height:1.2;
}
p{ margin:0 0 1em; }
a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }
ul{ list-style:none; margin:0; padding:0; }
button{ font-family:inherit; cursor:pointer; }

.container{
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:0 24px;
}

.accent{ color: var(--orange); }

/* -------- Buttons -------- */
.btn{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:14px 26px;
  border-radius: var(--radius-sm);
  font-weight:600;
  font-size:.95rem;
  border:2px solid transparent;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, color .18s ease;
  white-space:nowrap;
}
.btn-primary{
  background: var(--orange);
  color:#fff;
  box-shadow: 0 8px 20px rgba(245,113,27,.32);
}
.btn-primary:hover{ background: var(--orange-dark); transform: translateY(-2px); }
.btn-outline{
  background:#fff;
  color: var(--navy);
  border-color: var(--gray-100);
}
.btn-outline:hover{ border-color: var(--navy); transform: translateY(-2px); }
.btn-call-header{
  background: var(--navy);
  color:#fff;
  padding:10px 18px;
  border-radius: 10px;
  font-size:.8rem;
  line-height:1.3;
}
.btn-call-header strong{ font-size:.95rem; }
.btn-call-header:hover{ background: var(--navy-dark); }

/* =========================================================
   HEADER
========================================================= */
.site-header{
  position: sticky;
  top:0;
  z-index: 500;
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--gray-100);
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 24px;
  padding-top:12px;
  padding-bottom:12px;
}
.logo img{ height:43px; width:auto; display:block; }

.main-nav ul{ display:flex; align-items:center; gap: 30px; }
.main-nav a{
  font-weight:500;
  font-size:.95rem;
  color: var(--navy);
  position:relative;
  padding: 6px 2px;
}
.main-nav a.active,
.main-nav a:hover{ color: var(--orange); }
.main-nav a.active::after{
  content:"";
  position:absolute;
  left:0; right:0; bottom:-4px;
  height:2px;
  background: var(--orange);
}
.has-dropdown{ position:relative; }
.caret{ font-size:.7em; }
.dropdown{
  position:absolute;
  top: calc(100% + 14px);
  left:0;
  background:#fff;
  min-width: 220px;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  padding:8px;
  opacity:0;
  visibility:hidden;
  transform: translateY(8px);
  transition: all .2s ease;
}
.has-dropdown:hover .dropdown{
  opacity:1; visibility:visible; transform: translateY(0);
}
.dropdown li a{ display:block; padding:9px 12px; border-radius:6px; font-size:.9rem; }
.dropdown li a:hover{ background: var(--gray-50); }

.hamburger{
  display:none;
  flex-direction:column;
  gap:5px;
  background:none;
  border:none;
  padding:6px;
}
.hamburger span{
  width:24px; height:2px; background: var(--navy); border-radius:2px;
  transition: all .25s ease;
}
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity:0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

/* =========================================================
   FLOATING BUTTONS
========================================================= */
.whatsapp-fab, .call-fab{
  position: fixed;
  z-index: 400;
  width:56px; height:56px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-lg);
  transition: transform .2s ease;
}
.whatsapp-fab{
  right:24px; bottom:24px;
  background:#25D366;
}
.call-fab{
  left:24px; bottom:24px;
  background: var(--navy);
}
.whatsapp-fab:hover, .call-fab:hover{ transform: scale(1.08); }
.whatsapp-tooltip{
  position:absolute;
  right: 66px;
  background: var(--navy);
  color:#fff;
  font-size:.75rem;
  padding:6px 10px;
  border-radius:6px;
  white-space:nowrap;
  opacity:0;
  pointer-events:none;
  transition: opacity .2s ease;
}
.whatsapp-fab:hover .whatsapp-tooltip{ opacity:1; }

/* =========================================================
   HERO
========================================================= */
.hero{
  padding: 72px 0 96px;
  background:
    radial-gradient(circle at 85% 12%, rgba(245,113,27,.10), transparent 45%),
    linear-gradient(180deg, var(--gray-50), #fff 70%);
  overflow:hidden;
}
.hero-inner{
  display:grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 56px;
  align-items:center;
}
.hero h1{
  font-size: clamp(2.1rem, 4vw, 3.1rem);
  font-weight:800;
  letter-spacing:-.01em;
}
.hero-text > p{
  font-size:1.05rem;
  color: var(--gray-500);
  max-width: 480px;
}
.hero-buttons{ display:flex; gap:16px; margin: 28px 0 36px; flex-wrap:wrap; }

.hero-badges{
  display:grid;
  grid-template-columns: repeat(4, auto);
  gap: 22px;
}
.hero-badges li{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  text-align:center;
  font-size:.78rem;
  font-weight:600;
  color: var(--navy);
  max-width:110px;
}
.badge-icon{
  width:52px; height:52px;
  border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  background:#fff;
  color: var(--orange);
  box-shadow: var(--shadow-sm);
}

.hero-image{
  position:relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3.2;
}
.hero-image img{
  width:100%; height:100%; object-fit:cover;
}

/* =========================================================
   SECTION HEAD
========================================================= */
.section-head{
  text-align:center;
  max-width: 640px;
  margin: 0 auto 48px;
}
.eyebrow{
  display:inline-block;
  font-family: var(--ff-display);
  font-weight:700;
  font-size:1.5rem;
  color: var(--navy);
  position:relative;
  margin-bottom:8px;
  padding: 0 28px;
}
.eyebrow::before, .eyebrow::after{
  content:"";
  position:absolute;
  top:50%;
  width:20px;
  height:2px;
  background: var(--orange);
}
.eyebrow::before{ left:0; }
.eyebrow::after{ right:0; }
.section-sub{ color: var(--gray-500); margin:0; }

/* =========================================================
   SERVICES
========================================================= */
.services{ padding: 90px 0; }
.services-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.service-card{
  background:#fff;
  border:1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 30px 24px;
  text-align:center;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}
.service-card:hover{
  transform: translateY(-6px);
  box-shadow: var(--shadow-md);
  border-color: transparent;
}
.service-icon{
  width:64px; height:64px;
  margin:0 auto 16px;
  border-radius:16px;
  background: linear-gradient(135deg, #fff1e6, #ffe1cc);
  display:flex; align-items:center; justify-content:center;
  font-size:1.7rem;
}
.service-card h3{ font-size:1.05rem; margin-bottom:8px; }
.service-card p{ font-size:.88rem; color: var(--gray-500); margin:0; }

/* =========================================================
   GALLERY
========================================================= */
.gallery{ padding: 90px 0; background: var(--gray-50); }
.gallery-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.gallery-item{
  position:relative;
  border-radius: var(--radius-sm);
  overflow:hidden;
  aspect-ratio: 1/1;
  box-shadow: var(--shadow-sm);
  border:none;
  padding:0;
  background:none;
  cursor: zoom-in;
  display:block;
  width:100%;
}
.gallery-item img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .35s ease;
}
.gallery-item:hover img{ transform: scale(1.08); }
.gallery-item:focus-visible{ outline: 3px solid var(--orange); outline-offset:2px; }

.zoom-hint{
  position:absolute;
  inset:0;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:1.6rem;
  background: rgba(11,31,77,0);
  opacity:0;
  transition: opacity .25s ease, background .25s ease;
}
.gallery-item:hover .zoom-hint,
.gallery-item:focus-visible .zoom-hint{
  opacity:1;
  background: rgba(11,31,77,.35);
}

/* -------- Lightbox -------- */
.lightbox{
  position: fixed;
  inset:0;
  z-index: 900;
  background: rgba(6,14,36,.92);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  visibility:hidden;
  transition: opacity .25s ease;
  padding: 24px;
}
.lightbox.open{ opacity:1; visibility:visible; }
.lightbox img{
  max-width: min(900px, 92vw);
  max-height: 86vh;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}
.lightbox-close{
  position:absolute;
  top: 22px; right: 26px;
  width:44px; height:44px;
  border-radius:50%;
  background: rgba(255,255,255,.12);
  color:#fff;
  border:none;
  font-size:1.2rem;
  display:flex; align-items:center; justify-content:center;
  transition: background .2s ease;
}
.lightbox-close:hover{ background: rgba(255,255,255,.25); }
.lightbox-nav{
  position:absolute;
  top:50%;
  transform: translateY(-50%);
  width:52px; height:52px;
  border-radius:50%;
  background: rgba(255,255,255,.12);
  color:#fff;
  border:none;
  font-size:1.8rem;
  line-height:1;
  display:flex; align-items:center; justify-content:center;
  transition: background .2s ease;
}
.lightbox-nav:hover{ background: rgba(255,255,255,.25); }
.lightbox-prev{ left: 22px; }
.lightbox-next{ right: 22px; }

/* =========================================================
   CTA BANNER
========================================================= */
.cta-banner{
  background: linear-gradient(120deg, var(--navy), var(--navy-dark));
  padding: 64px 0;
  position:relative;
  overflow:hidden;
}
.cta-banner::after{
  content:"";
  position:absolute;
  right:-80px; top:-80px;
  width:320px; height:320px;
  border-radius:50%;
  background: radial-gradient(circle, rgba(245,113,27,.25), transparent 70%);
}
.cta-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 40px;
  flex-wrap:wrap;
  position:relative;
}
.cta-text h2{ color:#fff; font-size: clamp(1.6rem, 3vw, 2.1rem); }
.cta-text p{ color:#c9d3ea; max-width: 420px; }
.cta-points{
  display:grid;
  grid-template-columns: repeat(2, auto);
  gap: 16px 32px;
}
.cta-points li{
  display:flex; align-items:center; gap:10px;
  color:#fff;
  font-weight:500;
  font-size:.92rem;
}
.cta-points svg{ color: var(--orange); flex-shrink:0; }

/* =========================================================
   TESTIMONIALS
========================================================= */
.testimonials{ padding: 90px 0; }

.testimonial-carousel{
  position:relative;
  display:flex;
  align-items:center;
  gap: 14px;
}
.testimonial-track{
  display:flex;
  gap: 20px;
  overflow-x:auto;
  scroll-snap-type: x mandatory;
  scroll-behavior:smooth;
  padding: 4px 4px 12px;
  scrollbar-width: none;
}
.testimonial-track::-webkit-scrollbar{ display:none; }

.testimonial-arrow{
  flex-shrink:0;
  width:44px; height:44px;
  border-radius:50%;
  background:#fff;
  border:1px solid var(--gray-100);
  color: var(--navy);
  font-size:1.5rem;
  line-height:1;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-sm);
  transition: background .2s ease, color .2s ease, transform .2s ease;
  z-index:2;
}
.testimonial-arrow:hover{ background: var(--orange); color:#fff; transform: scale(1.06); }
.testimonial-arrow:disabled{ opacity:.35; cursor:default; transform:none; background:#fff; color: var(--navy); }

.testimonial-card{
  background:#fff;
  border:1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 28px 22px;
  box-shadow: var(--shadow-sm);
  flex: 0 0 calc(25% - 15px);
  scroll-snap-align: start;
}
.quote-icon{
  font-family: Georgia, serif;
  font-size:2.4rem;
  color: var(--orange);
  line-height:.5;
  margin-bottom:10px;
}
.stars{ color:#f5b301; letter-spacing:2px; margin-bottom:10px; }
.testimonial-card p{ font-size:.9rem; color: var(--gray-700); min-height:70px; }
.testimonial-author{ display:flex; align-items:center; gap:12px; margin-top:16px; }
.testimonial-author img{ width:42px; height:42px; border-radius:50%; object-fit:cover; }
.testimonial-author strong{ display:block; font-size:.88rem; color: var(--navy); }
.testimonial-author span{ font-size:.76rem; color: var(--gray-500); }

.testimonial-dots{
  display:flex;
  justify-content:center;
  gap:8px;
  margin-top: 28px;
}
.testimonial-dots span{
  width:8px; height:8px; border-radius:50%;
  background: var(--gray-100);
  cursor:pointer;
}
.testimonial-dots span.active{ background: var(--orange); width:22px; border-radius:4px; }

/* =========================================================
   FAQ
========================================================= */
.faq{ padding: 90px 0; background: var(--gray-50); }
.faq-list{ max-width: 780px; margin:0 auto; display:flex; flex-direction:column; gap:12px; }
.faq-item{
  background:#fff;
  border:1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  overflow:hidden;
}
.faq-question{
  width:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  background:none;
  border:none;
  text-align:left;
  padding: 18px 22px;
  font-family: var(--ff-display);
  font-weight:600;
  font-size:.98rem;
  color: var(--navy);
}
.faq-toggle{
  flex-shrink:0;
  width:26px; height:26px;
  border-radius:50%;
  background: var(--gray-50);
  color: var(--orange);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
}
.faq-answer{
  max-height:0;
  overflow:hidden;
  transition: max-height .3s ease, padding .3s ease;
  padding: 0 22px;
}
.faq-answer p{ color: var(--gray-500); font-size:.9rem; margin:0 0 18px; }
.faq-item.open .faq-answer{ max-height: 220px; }
.faq-item.open .faq-toggle{ background: var(--orange); color:#fff; }

/* =========================================================
   CONTACT / FORM
========================================================= */
.contact{ padding: 90px 0; }
.contact-form{
  max-width: 720px;
  margin: 0 auto;
  background:#fff;
  border:1px solid var(--gray-100);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
}
.form-row{ display:grid; grid-template-columns: 1fr 1fr; gap:16px; margin-bottom:16px; }
.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  padding: 13px 16px;
  border:1px solid var(--gray-100);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size:.92rem;
  color: var(--gray-700);
  background: var(--gray-50);
  transition: border-color .2s ease, background .2s ease;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus{
  outline:none;
  border-color: var(--orange);
  background:#fff;
}
.contact-form textarea{ resize: vertical; margin-bottom:20px; }
.form-note{ margin-top:14px; font-size:.88rem; color: var(--orange-dark); font-weight:600; min-height:1.2em; }

/* =========================================================
   FOOTER
========================================================= */
.site-footer{ background: var(--navy-dark); color:#c9d3ea; padding-top: 64px; }
.footer-grid{
  display:grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 36px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.footer-logo{ height:48px; width:auto; margin-bottom:16px; display:block; }
.footer-brand p{ font-size:.88rem; color:#9fb0d6; }
.social-icons{ display:flex; gap:10px; margin-top:18px; }
.social-icons a{
  width:36px; height:36px;
  border-radius:50%;
  background: rgba(255,255,255,.08);
  display:flex; align-items:center; justify-content:center;
  font-size:.85rem;
  font-weight:700;
  transition: background .2s ease;
}
.social-icons a:hover{ background: var(--orange); }

.footer-col h4{ color:#fff; font-size:1rem; margin-bottom:18px; }
.footer-col ul li{ margin-bottom:11px; }
.footer-col ul li a{ font-size:.88rem; color:#9fb0d6; transition: color .2s ease; }
.footer-col ul li a:hover{ color: var(--orange); }
.footer-contact li{ font-size:.88rem; color:#9fb0d6; }

.footer-bottom{
  display:flex;
  align-items:center;
  justify-content:space-between;
  flex-wrap:wrap;
  gap:8px;
  padding: 22px 24px;
  max-width:1200px;
  margin:0 auto;
  font-size:.8rem;
  color:#8091b8;
}

/* =========================================================
   SCROLL TOP
========================================================= */
.scroll-top{
  position:fixed;
  right:24px; bottom:92px;
  width:42px; height:42px;
  border-radius:50%;
  background: var(--navy);
  color:#fff;
  border:none;
  font-size:1.1rem;
  display:flex; align-items:center; justify-content:center;
  opacity:0;
  visibility:hidden;
  transform: translateY(10px);
  transition: all .25s ease;
  z-index:400;
}
.scroll-top.visible{ opacity:1; visibility:visible; transform: translateY(0); }
.scroll-top:hover{ background: var(--orange); }

/* =========================================================
   ANIMATIONS
========================================================= */
[data-animate]{ opacity:0; transition: opacity .6s ease, transform .6s ease; }
[data-animate="fade-up"]{ transform: translateY(28px); }
[data-animate="fade-in"]{ transform: scale(.97); }
[data-animate].in-view{ opacity:1; transform: none; }

/* =========================================================
   RESPONSIVE
========================================================= */
@media (max-width: 980px){
  .hero-inner{ grid-template-columns:1fr; }
  .hero-image{ order:-1; }
  .services-grid{ grid-template-columns: repeat(2,1fr); }
  .gallery-grid{ grid-template-columns: repeat(3,1fr); }
  .testimonial-card{ flex-basis: calc(50% - 10px); }
  .footer-grid{ grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px){
  .main-nav{
    position:fixed;
    top:72px; left:0; right:0;
    background:#fff;
    box-shadow: var(--shadow-md);
    max-height:0;
    overflow:hidden;
    transition: max-height .3s ease;
  }
  .main-nav.open{ max-height:520px; }
  .main-nav ul{ flex-direction:column; align-items:flex-start; padding: 12px 24px 24px; gap:0; }
  .main-nav ul li{ width:100%; border-bottom:1px solid var(--gray-100); }
  .main-nav ul li a{ display:block; padding:14px 0; }
  .dropdown{ position:static; opacity:1; visibility:visible; transform:none; box-shadow:none; display:none; padding-left:12px; }
  .has-dropdown.open .dropdown{ display:block; }
  .hamburger{ display:flex; }
  .btn-call-header span{ display:none; }
  .btn-call-header{ padding:10px; }

  .hero{ padding: 40px 0 64px; }
  .hero-badges{ grid-template-columns: repeat(2, auto); }
  .services-grid{ grid-template-columns: 1fr 1fr; }
  .gallery-grid{ grid-template-columns: repeat(2,1fr); }
  .testimonial-card{ flex-basis: 88%; }
  .testimonial-arrow{ width:38px; height:38px; font-size:1.2rem; }
  .cta-points{ grid-template-columns: 1fr; }
  .form-row{ grid-template-columns: 1fr; }
  .footer-grid{ grid-template-columns: 1fr; }
  .call-fab{ width:48px; height:48px; }
  .whatsapp-fab{ width:48px; height:48px; }
}

@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior:auto; }
  [data-animate]{ opacity:1; transform:none; transition:none; }
}
