/* -----------------------------------------------------
   1. Root Tokens (GLOBAL)
----------------------------------------------------- */
:root{
  --bg: #ffffff;
  --panel: #f8fafc;
  --muted: #64748b;
  --text: #0f172a;
  --accent: #06b6d4;
  --accent-dark: #0891b2;
  --success: #22c55e;
  --glass-border: rgba(15,23,42,0.06);
  --shadow-1: 0 6px 20px rgba(16,24,40,0.06);
  --radius: 10px;
  --maxw: 1180px;
  --focus: 3px solid rgba(6,182,212,0.12);
  --btn-padding: 10px 14px;
  --fw-strong: 700;
  --fw-medium: 600;
  --fz-base: 16px;
}

/* -----------------------------------------------------
   2. Base Reset & Typography (GLOBAL)
----------------------------------------------------- */
*{box-sizing:border-box}
html,body{
  height:100%;
  margin:0;
  font-family:Inter,system-ui,-apple-system,"Segoe UI",Roboto,Arial,sans-serif;
  color:var(--text);
  background:var(--bg);
  -webkit-font-smoothing:antialiased;
}
img{max-width:100%;display:block;border-radius:8px}
a{color:inherit;text-decoration:none}

h1{font-size:1.6rem;margin:6px 0;line-height:1.1}
h2{font-size:1.2rem;margin:0 0 8px}
h3{font-size:1rem;margin:0 0 6px}
p{margin:0 0 10px;color:var(--muted);font-size:0.95rem}
.muted{color:var(--muted);font-size:0.95rem}

small, .small { font-size:0.85rem; color:var(--muted) }

/* -----------------------------------------------------
   3. Layout containers (GLOBAL)
----------------------------------------------------- */
.container{
  max-width:var(--maxw);
  margin:0 auto;
  padding:0 16px;
}

/* -----------------------------------------------------
   4. HEADER (header.php-specific)
----------------------------------------------------- */
.site-header{
  position:fixed;top:0;left:0;right:0;
  background: rgba(255,255,255,0.72);
  backdrop-filter: blur(12px) saturate(160%);
  -webkit-backdrop-filter: blur(12px) saturate(160%);
  border-bottom:1px solid rgba(0,0,0,0.04);
  z-index:9999;
}

.header-inner{
  height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:0 16px;
  max-width:var(--maxw);
  margin:0 auto;
}

.header-spacer{height:92px}

/* Brand */
.brand{display:flex;align-items:center;gap:12px}
.brand img{
  width:56px;height:56px;object-fit:cover;
  border-radius:10px;border:1px solid rgba(0,0,0,0.06)
}
.brand-title{font-weight:700;font-size:1.15rem}
.brand-sub{font-size:0.78rem;color:var(--muted)}

/* Desktop Nav */
.nav-desktop{display:flex;gap:20px;align-items:center}
.nav-desktop a{
  font-weight:var(--fw-medium);
  color:#334155;
  padding:8px 4px;
  border-radius:6px;
  transition:all .18s;
}
.nav-desktop a:hover{
  color:var(--text);
  background:rgba(6,182,212,0.06);
}

/* Desktop CTA */
.header-cta{display:flex;gap:10px;align-items:center}

/* Buttons */
.btn-call, .btn-wa, .pill{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:var(--btn-padding);
  border-radius:10px;
  font-weight:var(--fw-strong);
  cursor:pointer;
  border:0;
}
.btn-call{
  background:linear-gradient(90deg,var(--accent),var(--accent-dark));
  color:#002229;
  box-shadow:0 8px 24px rgba(6,182,212,0.08);
}
.btn-wa{
  background:linear-gradient(90deg,var(--success),#16a34a);
  color:#032012;
  box-shadow:0 8px 24px rgba(34,197,94,0.08);
}
.pill{
  background:#fff;
  border:1px solid var(--glass-border);
  color:var(--text);
}

/* Mobile button */
.mobile-btn{
  display:none;
  background:none;
  border:0;
  font-size:26px;
  cursor:pointer;
}

/* -----------------------------------------------------
   5. MOBILE MENU (header.php-specific)
----------------------------------------------------- */
.mobile-menu{
  position:fixed;
  top:0;right:-100%;
  width:78%;max-width:360px;
  height:100vh;
  background:rgba(255,255,255,0.96);
  backdrop-filter:blur(12px);
  transition:right .28s;
  z-index:10000;
  padding:18px;
}
.mobile-menu.show{right:0}

.mobile-menu a{
  display:block;
  padding:12px 0;
  border-bottom:1px solid rgba(0,0,0,0.03);
  color:var(--text);
}

/* Mini brand inside menu */
.brand-mini{
  display:flex;
  align-items:center;
  gap:10px;
  padding:10px 0;
}
.brand-mini img{
  width:42px;height:42px;
  border-radius:8px;
  border:1px solid var(--glass-border);
}


.section{padding:18px 16px}

/* cards, grids, gallery, faq, projects */
.services-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
}
.service-card{
  background:var(--panel);
  padding:14px;
  border-radius:10px;
  border:1px solid var(--glass-border);
  box-shadow:var(--shadow-1);
}
.service-actions{margin-top:8px;display:flex;gap:8px;flex-wrap:wrap}

.trust-row{display:flex;gap:12px;flex-wrap:wrap;margin-top:12px}
.trust-item{
  background:var(--panel);
  padding:8px 10px;
  border-radius:8px;
  border:1px solid var(--glass-border);
  font-weight:700;
}

.gallery-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(140px,1fr));
  gap:10px;
}
.gallery-grid img{
  width:100%;height:120px;
  object-fit:cover;border-radius:8px;
}

.faq{
  background:var(--panel);
  padding:12px;
  border-radius:8px;
  border:1px solid var(--glass-border);
  margin-bottom:8px;
}

.project-card{
  background:var(--panel);
  padding:12px;
  border-radius:10px;
  border:1px solid var(--glass-border);
  box-shadow:var(--shadow-1);
}


/* -----------------------------------------------------
   8. UTILITIES (GLOBAL)
----------------------------------------------------- */
.hidden{display:none}
.center{text-align:center}
.flex{display:flex}
.grid{display:grid}
.center-grid{display:grid;place-items:center}

/* focus */
a:focus, button:focus, .pill:focus{
  outline:none;
  box-shadow:var(--focus);
  border-radius:8px;
}

/* Increase touch target */
.pill, .btn-call, .btn-wa, .cta-call, .cta-wa {
  min-height:44px;
  padding-left:16px;
  padding-right:16px;
}

/* -----------------------------------------------------
   9. RESPONSIVE (GLOBAL)
----------------------------------------------------- */
@media(min-width:720px){
  .page-hero-inner{grid-template-columns:1fr 420px}
}
@media(min-width:1024px){
  h1{font-size:2rem}
  .brand img{width:64px;height:64px}
  .mobile-btn{display:none}
  .nav-desktop{display:flex}
  .header-cta{display:flex}
}
@media(max-width:719px){
  .header-inner{height:76px}
  .header-spacer{height:76px}
  .brand-title{font-size:1.05rem}
  .nav-desktop{display:none}
  .header-cta{display:none}
  .mobile-btn{display:inline-block}

  .footer-inner{grid-template-columns:1fr;gap:16px}
  .footer-bottom{flex-direction:column;align-items:flex-start}
}


/* ----------------------------------------------------
   FOOTER STYLES — Gurgaon Plumbing
   clean • glassy • premium • mobile-friendly
----------------------------------------------------*/

/* ------------------------------
   FOOTER – Modern Professional
------------------------------ */

.footer {
  background: #0f172a; /* dark slate */
  color: #dbeafe;
  padding: 60px 20px 20px;
  margin-top: 60px;
  font-family: system-ui, sans-serif;
}

.footer-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 40px;
}

/* ABOUT SECTION */
.footer-about h3 {
  color: #fff;
  font-size: 22px;
  margin-bottom: 10px;
}

.footer-about p {
  color: #cbd5e1;
  line-height: 1.6;
}

/* LINKS */
.footer-links h4,
.footer-contact h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.footer-links ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links ul li {
  margin-bottom: 8px;
}

.footer-links ul li a {
  color: #cbd5e1;
  text-decoration: none;
  transition: 0.2s ease;
  font-size: 15px;
}

.footer-links ul li a:hover {
  color: #fff;
  padding-left: 4px;
}

/* CONTACT */
.footer-contact p {
  margin-bottom: 8px;
  color: #cbd5e1;
  font-size: 15px;
}

.footer-contact a {
  color: #93c5fd;
  text-decoration: none;
}

.footer-contact a:hover {
  color: #fff;
}

/* FOOTER BOTTOM */
.footer-bottom {
  text-align: center;
  padding-top: 25px;
  margin-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer-bottom p {
  color: #94a3b8;
  font-size: 14px;
}

/* RESPONSIVE TWEAKS */
@media (max-width: 600px) {
  .footer {
    padding: 40px 20px 10px;
  }
}


/* ----------------------------------------------------
   BOTTOM FIXED CTA (mobile)
----------------------------------------------------*/

.bottom-cta {
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  padding: 8px 14px;
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  display: flex;
  gap: 12px;
  z-index: 9999;
}

.bottom-cta a,
.bottom-cta button {
  display: inline-block;
  padding: 8px 14px;
  background: #0f172a;
  color: #fff;
  border-radius: 10px;
  font-size: 0.95rem;
  text-decoration: none;
}

.bottom-cta .cta-wa {
  background: #25d366;
}

.bottom-cta .cta-expand {
  background: #334155;
  cursor: pointer;
  border: none;
}

.cta-menu {
  display: none;
  flex-direction: column;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  position: absolute;
  bottom: 55px;
  left: 50%;
  transform: translateX(-50%);
  padding: 12px;
  gap: 8px;
  z-index: 9999;
}

.cta-item {
  padding: 8px 12px;
  background: #0f172a;
  color: #fff;
  border-radius: 10px;
  text-decoration: none;
}

/* Show CTA on tablets + mobile only */
@media (min-width: 900px) {
  .bottom-cta {
    display: none !important;
  }
}


.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  margin: 2rem 0;
}

.price-card {
  background: white;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  position: relative;
}

.price-card.featured {
  border: 2px solid #3b82f6;
  transform: scale(1.05);
}

.price-card .badge {
  position: absolute;
  top: -12px;
  right: 1rem;
  background: #ef4444;
  color: white;
  font-size: 0.75rem;
  padding: 4px 8px;
  border-radius: 4px;
}

.price-card h3 { margin: 0 0 0.5rem; }
.price-card .price { font-size: 1.8rem; font-weight: bold; color: #1e40af; margin: 0.5rem 0; }
.price-card .price small { font-size: 1rem; color: #64748b; }
.price-card ul { list-style: none; padding: 0; margin: 1rem 0; text-align: left; }
.price-card ul li { margin: 0.5rem 0; font-size: 0.95rem; }
.price-card ul li::before { content: "✓ "; color: #10b981; }
.price-card .pill.wa.invert { background: #3b82f6; color: white; }

.bg-light { background: #f8fafc; }
.note { font-size: 0.85rem; text-align: center; margin-top: 1rem; }



/* -----------------------------------------------------
   HERO – RESPONSIVE & SYMMETRIC
----------------------------------------------------- */
.page-hero {
  padding: clamp(2rem, 5vw, 4rem) 1rem;               /* fluid top/bottom */
  background: linear-gradient(180deg, rgba(6,182,212,.04), transparent);
}
.hero-flex {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 3rem);                     /* fluid gap */
  max-width: var(--maxw);
  margin: 0 auto;
}

/* Text side */
.hero-text   { flex: 1 1 340px; min-width: 0; }
.hero-kicker { 
  display: inline-block;
  background: #e6fffb; color: #004b4b;
  padding: .4rem .75rem; border-radius: 999px;
  font-weight: 700; font-size: .82rem;
}
.hero-cta {
  display: flex; flex-wrap: wrap; gap: .75rem;
  margin-top: 1rem;
}

/* Image side */
.hero-image  { flex: 1 1 340px; min-width: 0; }
.hero-image picture,
.hero-image img {
  display: block; width: 100%; height: auto;
  border-radius: 12px;
  box-shadow: var(--shadow-1);
  object-fit: cover;
}

/* ----------  MOBILE – stack & center  ---------- */
@media (max-width: 719px) {
  .hero-flex { flex-direction: column; text-align: center; }
  .hero-cta  { justify-content: center; }
}

/* ----------  TABLET – tighter spacing  ---------- */
@media (min-width: 720px) and (max-width: 1023px) {
  .hero-flex { gap: 2rem; }
}

/* ----------  LARGE DESKTOP – max width & bigger type  ---------- */
@media (min-width: 1024px) {
  .hero-text h1 { font-size: 2.25rem; }
}p