/* =========================================================
   SHOURYA WATERPROOFING SOLUTIONS - Static HTML
   Brand colors kept from old site: yellow #efdf02 / black / white
   ========================================================= */

:root {
  --yellow: #efdf02;
  --yellow-dark: #c9bd00;
  --yellow-soft: #fbf8d9;
  --black: #0d0d0d;
  --ink: #1c1c1c;
  --white: #ffffff;
  --gray: #66625a;
  --light: #f7f6ef;
  --line: #e9e6d8;
  --shadow: 0 14px 40px rgba(20, 20, 0, 0.12);
  --radius: 14px;
  --font-body: "Open Sans", Arial, sans-serif;
  --font-brand: "Righteous", "Open Sans", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.7;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1200px, 92%); margin: 0 auto; }

h1, h2, h3, h4 { font-family: var(--font-brand); font-weight: 400; line-height: 1.2; letter-spacing: .3px; }

p { margin-bottom: 1rem; }

.section { padding: 84px 0; }
.section-soft { background: var(--light); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--black);
  background: var(--yellow);
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 18px;
}

.section-title { font-size: clamp(28px, 4vw, 42px); margin-bottom: 18px; line-height: 1.15; }
.section-lead { color: var(--gray); max-width: 720px; margin-bottom: 40px; }

.center { text-align: center; }
.center .section-lead { margin-left: auto; margin-right: auto; }
.center .eyebrow { margin-left: auto; margin-right: auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 15px;
  border: 2px solid var(--yellow);
  background: var(--yellow);
  color: var(--black);
  transition: transform .18s ease, background .18s ease, color .18s ease, box-shadow .18s ease;
  cursor: pointer;
}
.btn:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.btn-dark { background: var(--black); border-color: var(--black); color: var(--white); }
.btn-dark:hover { background: var(--ink); }
.btn-outline { background: transparent; border-color: currentColor; }
.btn-outline:hover { background: var(--black); border-color: var(--black); color: var(--white); }
.btn-white { background: var(--white); border-color: var(--white); color: var(--black); }
.btn-white:hover { background: var(--yellow); border-color: var(--yellow); }
.btn-outline-light { background: transparent; border-color: var(--white); color: var(--white); }
.btn-outline-light:hover { background: var(--white); border-color: var(--white); color: var(--black); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--black);
  color: var(--white);
  font-size: 13.5px;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; padding: 9px 0; gap: 14px; flex-wrap: wrap; }
.topbar a { display: inline-flex; align-items: center; gap: 7px; transition: color .15s; }
.topbar a:hover { color: var(--yellow); }
.topbar-left, .topbar-right { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar svg { width: 15px; height: 15px; color: var(--yellow); }
.topbar .socials a { opacity: .9; }
.topbar .socials a:hover { opacity: 1; color: var(--yellow); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 4px 18px rgba(0,0,0,.04);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; padding: 14px 0; gap: 20px; }
.logo { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.logo img.logo-img { display: block; height: 48px; width: auto; }
.logo-icon {
  width: 46px; height: 46px;
  background: var(--yellow);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex: none;
}
.logo-icon svg { width: 26px; height: 26px; fill: var(--black); }
.logo-text { font-family: var(--font-brand); font-size: 19px; line-height: 1.05; color: var(--black); letter-spacing: .4px; }
.logo-text span { color: var(--gray); font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 1.6px; text-transform: uppercase; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav > ul { display: flex; align-items: center; gap: 26px; }
.nav a { font-weight: 600; font-size: 15px; color: var(--ink); position: relative; padding: 6px 0; }
.nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 0; height: 2px; background: var(--yellow);
  transition: width .22s ease;
}
.nav a:hover { color: var(--black); }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.nav a.active { color: var(--black); }

.nav .has-dropdown { position: relative; }
.nav .has-dropdown::before {
  content: "";
  position: absolute;
  left: 0; right: 0; top: 100%;
  height: 12px;
}
.nav .dropdown {
  position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);
  background: var(--white);
  border: 1px solid var(--line);
  border-top: 3px solid var(--yellow);
  border-radius: 10px;
  min-width: 330px;
  padding: 10px;
  box-shadow: var(--shadow);
  opacity: 0; visibility: hidden; pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
  z-index: 60;
}
.nav .has-dropdown:hover .dropdown, .nav .has-dropdown.open .dropdown { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); pointer-events: auto; }
.dropdown a { display: flex; gap: 10px; align-items: center; padding: 9px 12px; border-radius: 7px; font-size: 13.5px; font-weight: 600; }
.dropdown a::after { display: none; }
.dropdown a:hover { background: var(--light); color: var(--black); }
.dropdown .caret { display: none; }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav .btn { padding: 11px 22px; font-size: 14px; }

.hamburger {
  display: none;
  background: none; border: 0;
  width: 42px; height: 42px;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  align-items: center;
}
.hamburger span { display: block; width: 24px; height: 2.5px; background: var(--black); transition: .25s; }
.hamburger.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: linear-gradient(120deg, #101010 0%, #262626 55%, #3a3503 130%);
  color: var(--white);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ""; position: absolute; right: -120px; top: -120px;
  width: 380px; height: 380px; border-radius: 50%;
  background: radial-gradient(circle, rgba(239,223,2,.28), transparent 70%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero h1 { font-size: clamp(28px, 4.4vw, 46px); margin-bottom: 10px; }
.breadcrumb { display: flex; align-items: center; gap: 9px; font-size: 13.5px; color: #cfcfcf; }
.breadcrumb a:hover { color: var(--yellow); }
.breadcrumb .sep { color: var(--yellow); }

/* ---------- Hero (home) ---------- */
.hero {
  background: linear-gradient(115deg, #101010 0%, #1d1d1d 60%, #3a3403 100%);
  color: var(--white);
  overflow: hidden;
  position: relative;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background-image: radial-gradient(rgba(239,223,2,.16) 1px, transparent 1px);
  background-size: 26px 26px;
  opacity: .55;
}
.hero-grid { position: relative; z-index: 2; display: grid; grid-template-columns: 1.12fr .88fr; gap: 60px; align-items: center; padding: 88px 0 96px; }
.hero h1 { font-size: clamp(34px, 5vw, 60px); line-height: 1.08; margin-bottom: 22px; }
.hero h1 em { font-style: normal; color: var(--yellow); }
.hero .hero-sub { font-size: 18px; color: #d9d6c8; max-width: 560px; margin-bottom: 30px; }
.hero-badges { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.14); padding: 8px 15px; border-radius: 100px; font-size: 13px; color: #efead0; }
.hero-badge svg { width: 15px; height: 15px; color: var(--yellow); flex: none; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 15px; }

.hero-visual { position: relative; }
.hero-visual .hero-img-wrap {
  position: relative; z-index: 2;
  border-radius: 26px;
  overflow: hidden;
  border: 6px solid #2c2c2c;
  box-shadow: 0 30px 70px rgba(0,0,0,.5);
}
.hero-visual::before {
  content: ""; position: absolute; z-index: 1;
  width: 100%; height: 100%;
  border-radius: 26px;
  transform: rotate(-7deg) scale(1.02);
  background: var(--yellow);
}
.hero-float {
  position: absolute; z-index: 3;
  background: var(--white); color: var(--black);
  border-radius: 14px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex; align-items: center; gap: 12px;
}
.hero-float .num { font-family: var(--font-brand); font-size: 26px; color: var(--black); }
.hero-float .lbl { font-size: 12px; font-weight: 600; color: var(--gray); line-height: 1.25; }
.hero-float img { width: 34px; height: 34px; }
.hero-float.year { top: -18px; right: -10px; }
.hero-float.rating { bottom: 24px; left: -26px; }
.stars { color: var(--black); font-size: 14px; letter-spacing: 2px; }

/* ---------- Presence bar ---------- */
.presence { background: var(--yellow); color: var(--black); padding: 22px 0; }
.presence .container { display: flex; gap: 14px; align-items: flex-start; }
.presence .p-icon { flex: none; }
.presence .p-icon svg { width: 34px; height: 34px; color: var(--black); }
.presence h3 { font-size: 20px; margin-bottom: 4px; }
.presence p { margin: 0; font-size: 14px; font-weight: 500; line-height: 1.6; }

/* ---------- About / generic split ---------- */
.split { display: grid; grid-template-columns: .92fr 1.08fr; gap: 64px; align-items: center; }
.split-media { position: relative; }
.split-media img { border-radius: var(--radius); box-shadow: var(--shadow); }
.split-media .tick {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--black); color: var(--white);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex; align-items: center; gap: 12px;
  box-shadow: var(--shadow);
  font-family: var(--font-brand);
}
.split-media .tick .big { font-size: 30px; color: var(--yellow); }
.split-body .list-check li { display: flex; gap: 12px; margin-bottom: 12px; font-weight: 600; align-items: flex-start; }
.split-body .list-check svg { width: 20px; height: 20px; color: var(--black); flex: none; margin-top: 4px; }

/* ---------- Services ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  position: relative;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 5px;
  background: var(--yellow); transform: scaleX(0); transform-origin: left;
  transition: transform .25s ease;
}
.service-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); border-color: var(--yellow); }
.service-card:hover::before { transform: scaleX(1); }
.service-icon {
  width: 62px; height: 62px; border-radius: 14px;
  background: var(--yellow);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 20px;
}
.service-icon.dark { background: var(--black); }
.service-icon svg { width: 30px; height: 30px; color: var(--black); }
.service-icon.dark svg { color: var(--yellow); }
.service-card h3 { font-size: 21px; margin-bottom: 12px; }
.service-card h3 a:hover { color: var(--yellow-dark); }
.service-card p { color: var(--gray); font-size: 14.5px; margin: 0; }

.services-more { margin-top: 46px; text-align: center; }

.service-intro-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 60px; align-items: center; }
.service-intro-grid ol, .service-intro-grid ul { margin: 8px 0 8px 18px; list-style: disc; color: var(--ink); }
.service-intro-grid li { margin-bottom: 8px; }

/* ---------- Why choose ---------- */
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.why-card {
  border: 1px solid var(--line); border-radius: var(--radius);
  background: var(--white);
  padding: 30px 24px;
  transition: transform .2s ease, box-shadow .2s ease;
  position: relative;
}
.why-card .corner {
  position: absolute; top: 0; right: 0;
  width: 44px; height: 44px;
  background: var(--yellow);
  clip-path: polygon(100% 0, 100% 100%, 0 0);
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.why-num { font-family: var(--font-brand); font-size: 15px; color: var(--yellow-dark); margin-bottom: 10px; letter-spacing: 2px; }
.why-card h3 { font-size: 18px; margin-bottom: 10px; }
.why-card p { color: var(--gray); font-size: 14.5px; margin: 0; }

/* ---------- Feature list (stands out) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.feature {
  display: flex; gap: 16px; align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: var(--radius);
}
.feature .f-icon { width: 48px; height: 48px; border-radius: 12px; background: var(--yellow); display: flex; align-items: center; justify-content: center; flex: none; }
.feature .f-icon svg { width: 24px; height: 24px; color: var(--black); }
.feature h3 { font-size: 17.5px; margin-bottom: 6px; }
.feature p { color: var(--gray); font-size: 14px; margin: 0; }

/* ---------- Stats ---------- */
.stats-band { background: var(--black); color: var(--white); }
.stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.stat { text-align: center; padding: 20px; }
.stat .num { font-family: var(--font-brand); font-size: clamp(40px, 5vw, 58px); color: var(--yellow); line-height: 1; }
.stat .lbl { margin-top: 10px; color: #d8d5c8; font-size: 14px; font-weight: 600; letter-spacing: 1.4px; text-transform: uppercase; }

/* ---------- Testimonials ---------- */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testi {
  background: var(--white); border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  position: relative;
}
.testi .quote-mark { font-family: var(--font-brand); font-size: 60px; line-height: 1; color: var(--yellow); position: absolute; top: 14px; right: 22px; }
.testi .stars { color: var(--yellow-dark); margin-bottom: 16px; font-size: 15px; letter-spacing: 3px; }
.testi p { color: var(--ink); font-size: 15px; }
.testi .who { margin-top: 20px; display: flex; align-items: center; gap: 12px; }
.testi .avatar { width: 46px; height: 46px; border-radius: 50%; background: var(--black); color: var(--yellow); display: flex; align-items: center; justify-content: center; font-family: var(--font-brand); font-size: 18px; }
.testi .name { font-weight: 700; font-size: 15.5px; }
.testi .role { font-size: 13px; color: var(--gray); }

/* ---------- Guarantee ---------- */
.guarantee { background: var(--light); }
.guarantee-card {
  background: var(--white); border: 1px solid var(--line);
  border-top: 5px solid var(--yellow);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.guarantee-card h3 { font-size: 18px; margin-bottom: 8px; display: flex; align-items: center; gap: 10px; }
.guarantee-card h3 svg { width: 22px; height: 22px; color: var(--black); }
.guarantee-card p { color: var(--gray); font-size: 14.5px; margin: 0; }
.guarantee-badges { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.warranty-box {
  margin-top: 34px;
  background: var(--black);
  color: var(--white);
  border-radius: var(--radius);
  padding: 26px 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap;
}
.warranty-box .w-wrap { display: flex; align-items: center; gap: 18px; }
.warranty-box svg { width: 52px; height: 52px; color: var(--yellow); flex: none; }
.warranty-box h3 { color: var(--yellow); font-size: 24px; }
.warranty-box p { color: #d8d5c8; margin: 0; }

/* ---------- Projects / gallery ---------- */
.projects-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.project-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.project-item img { transition: transform .35s ease; width: 100%; height: 260px; object-fit: cover; }
.project-item:hover img { transform: scale(1.06); }
.project-item .cap {
  position: absolute; inset: auto 0 0 0;
  padding: 34px 16px 14px;
  background: linear-gradient(transparent, rgba(0,0,0,.75));
  color: var(--white);
  font-size: 13.5px; font-weight: 600;
  opacity: 0; transition: opacity .25s;
}
.project-item:hover .cap { opacity: 1; }

/* ---------- Clients ---------- */
.clients-band { background: var(--black); }
.clients-band .section-title { text-align: center; color: var(--white); }
.clients-row { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 22px; }
.client-logo {
  background: var(--white);
  border-radius: 12px;
  padding: 14px 22px;
  display: flex; align-items: center; justify-content: center;
  min-height: 76px;
  flex: 0 1 auto;
  max-width: 210px;
}
.client-logo img { max-height: 48px; width: auto; object-fit: contain; filter: grayscale(.4); transition: .2s; }
.client-logo:hover img { filter: grayscale(0); transform: scale(1.04); }

/* ---------- CTA / Get in touch ---------- */
.cta-section {
  background-size: cover; background-position: center;
  position: relative;
  color: var(--white);
}
.cta-section::before { content: ""; position: absolute; inset: 0; background: rgba(13,13,13,.86); }
.cta-section::after { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 80% 10%, rgba(239,223,2,.18), transparent 55%); }
.cta-section .container { position: relative; z-index: 2; text-align: center; }
.cta-section h2 { font-size: clamp(28px, 4vw, 44px); margin-bottom: 14px; color: var(--white); }
.cta-section p { max-width: 640px; margin: 0 auto 34px; color: #d8d5c8; }
.cta-actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.cta-actions svg { width: 17px; height: 17px; color: currentColor; }

/* ---------- Overview band ---------- */
.overview-band { background: var(--light); }
.overview-box {
  background: var(--white);
  border-left: 6px solid var(--yellow);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 34px 38px;
  box-shadow: var(--shadow);
  position: relative;
}
.overview-box h3 { color: var(--black); margin-bottom: 10px; }
.overview-box p { color: var(--gray); margin: 0; }

/* ---------- Contact page ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.15fr; gap: 50px; }
.info-box {
  display: flex; gap: 16px; align-items: flex-start;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px;
  margin-bottom: 16px;
  background: var(--white);
  transition: border-color .2s, transform .2s;
}
.info-box:hover { border-color: var(--yellow); transform: translateX(4px); }
.info-box .i-icon { width: 50px; height: 50px; border-radius: 12px; background: var(--yellow); display: flex; align-items: center; justify-content: center; flex: none; }
.info-box .i-icon svg { width: 24px; height: 24px; color: var(--black); }
.info-box h3 { font-size: 17px; margin-bottom: 4px; }
.info-box a, .info-box p { color: var(--gray); font-size: 14.5px; margin: 0; word-break: break-word; }
.info-box a:hover { color: var(--black); }

.contact-form-shell { background: var(--light); border: 1px solid var(--line); border-radius: var(--radius); padding: 34px; }
.contact-form-shell h3 { margin-bottom: 20px; font-size: 24px; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field.full { grid-column: 1 / -1; }
.field label { font-size: 13.5px; font-weight: 700; letter-spacing: .3px; }
.field input, .field textarea {
  border: 1.5px solid var(--line);
  border-radius: 9px;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
  transition: border-color .15s, box-shadow .15s;
  width: 100%;
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--yellow); box-shadow: 0 0 0 3px rgba(239,223,2,.25); }
.field textarea { resize: vertical; min-height: 130px; }
.form-note { font-size: 13px; color: var(--gray); margin-top: 12px; }

.map-shell { margin-top: 60px; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); }
.map-shell iframe { width: 100%; height: 380px; border: 0; display: block; }

/* ---------- FAQs ---------- */
.faq-list { max-width: 860px; margin: 0 auto; }
.faq-item { border: 1px solid var(--line); border-radius: var(--radius); margin-bottom: 14px; background: var(--white); overflow: hidden; }
.faq-item.open { border-color: var(--yellow); }
.faq-q {
  width: 100%; text-align: left;
  background: none; border: 0;
  padding: 20px 22px;
  font-family: var(--font-brand); font-size: 17px; color: var(--black);
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  cursor: pointer;
}
.faq-q .chev { width: 30px; height: 30px; border-radius: 50%; background: var(--yellow); display: flex; align-items: center; justify-content: center; flex: none; transition: transform .2s; }
.faq-q .chev svg { width: 15px; height: 15px; color: var(--black); }
.faq-item.open .chev { transform: rotate(180deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a p { padding: 0 22px 22px; color: var(--gray); margin: 0; }

/* ---------- About (mission / vision) ---------- */
.mission-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mission-card { border-radius: var(--radius); padding: 38px 32px; }
.mission-card .m-icon { width: 54px; height: 54px; border-radius: 14px; display: flex; align-items: center; justify-content: center; margin-bottom: 18px; background: rgba(0,0,0,.08); }
.mission-card .m-icon svg { width: 26px; height: 26px; }
.mission-card.dark { background: var(--black); color: var(--white); }
.mission-card.dark .m-icon { background: rgba(255,255,255,.1); }
.mission-card.dark .m-icon svg { color: var(--yellow); }
.mission-card.yellow { background: var(--yellow); color: var(--black); }
.mission-card.yellow .m-icon svg { color: var(--black); }
.mission-card h3 { font-size: 21px; margin-bottom: 12px; }
.mission-card p { margin: 0; font-size: 15px; line-height: 1.75; opacity: .95; }

/* ---------- Gallery ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-grid .g-item { position: relative; border-radius: var(--radius); overflow: hidden; cursor: pointer; }
.gallery-grid .g-item img { width: 100%; height: 260px; object-fit: cover; transition: transform .35s; }
.gallery-grid .g-item:hover img { transform: scale(1.05); }
.gallery-grid .g-item::after { content: "🔍"; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; font-size: 28px; background: rgba(13,13,13,.35); opacity: 0; transition: .25s; }
.gallery-grid .g-item:hover::after { opacity: 1; }
.video-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 40px; }
.video-grid iframe { width: 100%; height: 300px; border-radius: var(--radius); border: 0; }

/* Lightbox */
.lightbox { position: fixed; inset: 0; background: rgba(0,0,0,.92); z-index: 300; display: none; align-items: center; justify-content: center; padding: 30px; }
.lightbox.open { display: flex; }
.lightbox img { max-width: 92%; max-height: 86%; border-radius: 10px; }
.lightbox .close { position: absolute; top: 22px; right: 26px; background: none; border: 0; color: var(--white); font-size: 40px; cursor: pointer; line-height: 1; }

/* ---------- Blog ---------- */
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.blog-card { border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: var(--white); transition: transform .2s, box-shadow .2s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.blog-card img { height: 230px; width: 100%; object-fit: cover; }
.blog-card .body { padding: 26px; display: flex; flex-direction: column; flex: 1; }
.blog-card .meta { font-size: 13px; color: var(--gray); display: flex; gap: 14px; margin-bottom: 10px; }
.blog-card .meta span { display: inline-flex; align-items: center; gap: 6px; }
.blog-card h3 { font-size: 20px; margin-bottom: 12px; line-height: 1.35; }
.blog-card h3 a:hover { color: var(--yellow-dark); }
.blog-card p { color: var(--gray); font-size: 14.5px; }
.blog-card .more { margin-top: auto; padding-top: 16px; font-weight: 700; color: var(--black); display: inline-flex; align-items: center; gap: 8px; }
.blog-card .more svg { width: 16px; height: 16px; color: var(--black); transition: transform .2s; }
.blog-card:hover .more svg { transform: translateX(5px); }

.article { max-width: 840px; margin: 0 auto; }
.article .featured { border-radius: var(--radius); margin: 30px 0; box-shadow: var(--shadow); }
.article .meta { color: var(--gray); font-size: 14px; margin-bottom: 30px; display: flex; flex-wrap: wrap; gap: 18px; }
.article .meta span { display: inline-flex; align-items: center; gap: 7px; }
.article p { color: #3b3b36; font-size: 16.5px; }
.article h2 { font-size: clamp(22px, 3vw, 30px); margin: 34px 0 14px; }
.article h3 { font-size: 21px; margin: 28px 0 12px; }
.article ul, .article ol { margin: 0 0 18px 24px; list-style: disc; color: #3b3b36; }
.article li { margin-bottom: 9px; }
.article blockquote { border-left: 4px solid var(--yellow); background: var(--light); padding: 20px 24px; border-radius: 0 var(--radius) var(--radius) 0; margin: 24px 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--black); color: #c9c6ba; }
.footer-top { padding: 70px 0 46px; display: grid; grid-template-columns: 1.25fr 1fr 1fr 1.2fr; gap: 40px; }
.footer-top h4 { color: var(--white); font-size: 16px; margin-bottom: 20px; letter-spacing: 1px; }
.footer .logo { margin-bottom: 18px; display: flex; align-items: center; gap: 12px; color: var(--white); }
.footer .logo .footer-logo-img { height: 200px!important; width: auto; background: var(--white); padding: 14px 26px; border-radius: 12px; }
.footer .logo .logo-icon { background: var(--yellow); }
.footer .logo .logo-icon svg { fill: var(--black); }
.footer p.foot-about { font-size: 14px; line-height: 1.75; }
.footer-links li { margin-bottom: 11px; }
.footer-links a { font-size: 14px; display: inline-flex; align-items: center; gap: 9px; transition: color .15s, padding-left .15s; }
.footer-links a::before { content: "›"; color: var(--yellow); font-weight: 700; }
.footer-links a:hover { color: var(--yellow); padding-left: 5px; }
.foot-contact li { display: flex; gap: 12px; margin-bottom: 15px; font-size: 14px; align-items: flex-start; }
.foot-contact svg { width: 18px; height: 18px; color: var(--yellow); flex: none; margin-top: 3px; }
.foot-contact a:hover { color: var(--yellow); }
.foot-social { display: flex; gap: 12px; margin-top: 22px; }
.foot-social a { width: 42px; height: 42px; border-radius: 50%; background: #1f1f1f; display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s; }
.foot-social a:hover { background: var(--yellow); transform: translateY(-3px); }
.foot-social svg { width: 18px; height: 18px; color: var(--white); }
.foot-social a:hover svg { color: var(--black); }

.footer-bottom { border-top: 1px solid #262626; padding: 20px 0; font-size: 13.5px; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.footer-bottom a { color: var(--yellow); }
.footer-bottom .legal { display: flex; gap: 20px; }
.footer-bottom .legal a:hover { text-decoration: underline; }

/* ---------- Breadcrumbs on mobile / misc ---------- */
.btn-responsive { display: none; }
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .services-grid, .feature-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { max-width: 560px; }
  .split { grid-template-columns: 1fr; gap: 44px; }
}

@media (max-width: 780px) {
  .section { padding: 60px 0; }
  .hamburger { display: flex; }
  .nav { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--white); border-bottom: 1px solid var(--line); box-shadow: var(--shadow); padding: 18px; z-index: 90; }
  .nav.open { display: block; }
  .nav > ul { flex-direction: column; align-items: stretch; gap: 4px; }
  .nav a { display: block; padding: 12px 6px; border-bottom: 1px solid var(--line); }
  .nav .dropdown { position: static; opacity: 1; visibility: visible; transform: none; box-shadow: none; border: 0; border-radius: 0; min-width: 0; padding: 0 0 10px 14px; display: none; pointer-events: auto; }
  .nav .has-dropdown.open .dropdown { display: block; }
  .nav .has-dropdown .caret { display: inline-block; float: right; }
  .nav .has-dropdown::before { display: none; }
  .nav-cta { margin-top: 16px; flex-direction: column; align-items: stretch; gap: 10px; }
  .nav-cta .btn { justify-content: center; }
  .services-grid, .why-grid, .feature-grid, .testi-grid, .guarantee-badges, .projects-grid, .gallery-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr; gap: 18px; }
  .contact-grid, .service-intro-grid, .blog-grid, .video-grid, .form-grid, .mission-grid { grid-template-columns: 1fr; }
  .hero-float.rating { left: 10px; }
  .page-hero { padding: 48px 0; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .warranty-box { flex-direction: column; align-items: flex-start; }
  .split-media .tick { left: 12px; }
}

@media (min-width: 781px) {
  .dropdown .caret { display: none; }
  .mobile-only { display: none !important; }
}