/* ═══════════════════════════════════════════════
   SHRISH CONSTRUCTIONS — style.css
   Palette: White background + Red content only.
   No black anywhere. Large, bold, accessible text.
═══════════════════════════════════════════════ */

:root {
  --red:        #B91C1C;
  --red-dark:   #7F1D1D;
  --red-light:  #EF4444;
  --red-pale:   #FEF2F2;
  --red-medium: #FEE2E2;
  --white:      #FFFFFF;
  --off-white:  #FEF9F9;
  --border:     #FECACA;
  --radius:     8px;
  --shadow:     0 4px 20px rgba(185,28,28,0.13);
  --shadow-sm:  0 2px 10px rgba(185,28,28,0.09);
  --transition: 0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: Arial, Helvetica, sans-serif;
  background: var(--white);
  color: var(--red-dark);
  font-size: 17px;
  line-height: 1.65;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ═══════════════════════════════════════════════
   TOP INFO BAR  (above nav — phone + email)
═══════════════════════════════════════════════ */
.topbar {
  background: var(--red);
  color: var(--white);
  padding: 0.45rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.4rem;
  font-size: 0.82rem;
  font-weight: 600;
}
.topbar a { color: var(--white); display: flex; align-items: center; gap: 6px; }
.topbar a:hover { opacity: 0.85; }
.topbar-left, .topbar-right { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }
.topbar svg { flex-shrink: 0; }
.topbar-right { gap: 0.7rem; }

/* ═══════════════════════════════════════════════
   NAV
═══════════════════════════════════════════════ */
nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  height: 66px;
  box-shadow: var(--shadow-sm);
}
.nav-logo {
  font-family: Georgia, serif;
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--red);
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}
.nav-logo small {
  display: block;
  font-size: 0.6rem;
  font-family: Arial, sans-serif;
  letter-spacing: 0.16em;
  color: var(--red-dark);
  font-weight: 600;
  text-transform: uppercase;
}
.nav-toggle {
  background: none;
  border: 2px solid var(--red);
  border-radius: 5px;
  width: 42px; height: 42px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 7px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2.5px;
  background: var(--red);
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

.nav-menu {
  display: none;
  position: absolute;
  top: 66px; left: 0; right: 0;
  background: var(--white);
  border-bottom: 3px solid var(--red);
  flex-direction: column;
  padding: 0.5rem 0;
  box-shadow: var(--shadow);
}
.nav-menu.open { display: flex; }
.nav-menu a {
  padding: 0.9rem 2rem;
  font-weight: 700;
  font-size: 1rem;
  color: var(--red);
  border-left: 4px solid transparent;
  transition: all var(--transition);
  letter-spacing: 0.01em;
}
.nav-menu a:hover, .nav-menu a.active {
  border-left-color: var(--red);
  background: var(--red-pale);
}

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-menu {
    display: flex !important;
    position: static;
    flex-direction: row;
    border: none;
    padding: 0;
    box-shadow: none;
    gap: 0.15rem;
  }
  .nav-menu a {
    border-left: none;
    border-bottom: 3px solid transparent;
    padding: 0.4rem 0.9rem;
    font-size: 0.9rem;
  }
  .nav-menu a:hover, .nav-menu a.active {
    border-left: none;
    border-bottom-color: var(--red);
    background: none;
  }
}

/* ═══════════════════════════════════════════════
   HERO — responsive picture + red overlay
═══════════════════════════════════════════════ */
.hero {
  position: relative;
  color: var(--white);
  overflow: hidden;
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 3.5rem 2rem;
}
.hero-media {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero::before {
  display: none;
}
/* Fallback: no photo */
.hero.no-photo {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 55%, #C53030 100%);
}
.hero.no-photo::before { display: none; }
.hero.no-photo .hero-watermark {
  position: absolute; z-index: 0;
  opacity: 0.13;
  width: 65vw; max-width: 480px;
  right: -40px; bottom: -40px;
  stroke: var(--white);
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  width: 100%;
}
.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  border: 1.5px solid rgba(255,255,255,0.38);
  color: var(--white);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 6px 18px;
  border-radius: 30px;
  margin-bottom: 1.2rem;
}
.hero h1 {
  font-family: Georgia, serif;
  font-size: clamp(2.4rem, 8.5vw, 4.2rem);
  font-weight: 900;
  line-height: 1.04;
  letter-spacing: -0.02em;
  margin-bottom: 0.6rem;
  text-shadow: 0 3px 16px rgba(90,10,10,0.4);
}
.hero-sub {
  font-size: 1.1rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.92;
  margin-bottom: 2rem;
}
.hero-stat-row {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-bottom: 2.2rem;
  flex-wrap: wrap;
}
.hero-stat strong {
  display: block;
  font-size: 2.4rem;
  font-family: Georgia, serif;
  font-weight: 900;
  line-height: 1;
}
.hero-stat span {
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  opacity: 0.88;
}
.hero-cta-group {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: center;
}
@media (min-width: 480px) { .hero-cta-group { flex-direction: row; justify-content: center; } }

/* Page header (inner pages) */
.page-header {
  background: linear-gradient(135deg, var(--red-dark) 0%, var(--red) 100%);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-header .watermark-bg {
  position: absolute;
  opacity: 0.1;
  width: 45vw; max-width: 260px;
  right: -20px; bottom: -30px;
  stroke: var(--white);
  z-index: 0;
}
.page-header h1 {
  font-family: Georgia, serif;
  font-size: clamp(2rem, 7vw, 3rem);
  font-weight: 900;
  position: relative; z-index: 1;
}
.page-header .ph-sub {
  font-size: 0.88rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  opacity: 0.88;
  margin-top: 0.5rem;
  position: relative; z-index: 1;
}

/* ═══════════════════════════════════════════════
   BUTTONS
═══════════════════════════════════════════════ */
.btn-primary {
  display: inline-block;
  background: var(--white);
  color: var(--red);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  letter-spacing: 0.04em;
  transition: transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 14px rgba(0,0,0,0.15);
}
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 18px rgba(0,0,0,0.18); }
.btn-outline {
  display: inline-block;
  border: 2.5px solid rgba(255,255,255,0.75);
  color: var(--white);
  font-weight: 700;
  font-size: 1rem;
  padding: 0.82rem 2.2rem;
  border-radius: var(--radius);
  transition: background var(--transition);
}
.btn-outline:hover { background: rgba(255,255,255,0.14); }
.btn-red {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-weight: 800;
  font-size: 1rem;
  padding: 0.85rem 2.2rem;
  border-radius: var(--radius);
  transition: background var(--transition), transform var(--transition);
}
.btn-red:hover { background: var(--red-dark); transform: translateY(-1px); }

/* ═══════════════════════════════════════════════
   SECTION COMMON
═══════════════════════════════════════════════ */
section { padding: 3.5rem 2rem; }
section.alt { background: var(--off-white); }

.section-label {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 0.5rem;
}
.section-label::before {
  content: '';
  display: block;
  width: 32px; height: 3.5px;
  background: var(--red);
  border-radius: 2px;
}
.section-label span {
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--red);
}
.section-title {
  font-family: Georgia, serif;
  font-size: clamp(1.7rem, 5vw, 2.6rem);
  font-weight: 900;
  color: var(--red);
  line-height: 1.15;
  margin-bottom: 1.1rem;
}
.section-body {
  color: var(--red-dark);
  font-size: 1rem;
  line-height: 1.75;
  max-width: 640px;
  font-weight: 500;
}

/* ═══════════════════════════════════════════════
   CARDS
═══════════════════════════════════════════════ */
.card-grid {
  display: grid;
  gap: 1.8rem;
  margin-top: 2.2rem;
}
.icon-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-top: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
}
.icon-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.icon-card .icon {
  width: 54px; height: 54px;
  border: 2.5px solid var(--red);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1rem;
  padding: 9px;
  background: var(--red-pale);
}
.icon-card .icon svg { width: 100%; height: 100%; stroke: var(--red); }
.icon-card h3 {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 0.5rem;
}
.icon-card p {
  font-size: 0.92rem;
  color: var(--red-dark);
  line-height: 1.65;
  font-weight: 500;
}
@media (min-width: 620px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .card-grid { grid-template-columns: repeat(3, 1fr); } }

/* ═══════════════════════════════════════════════
   CREDENTIAL BLOCK (company — no person name)
═══════════════════════════════════════════════ */
.credential-block {
  margin-top: 2.8rem;
  background: var(--red);
  color: var(--white);
  border-radius: var(--radius);
  padding: 1.8rem;
  display: flex;
  align-items: center;
  gap: 1.4rem;
}
.credential-icon {
  width: 64px; height: 64px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.credential-block h3 {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: 900;
}
.credential-block p { font-size: 0.92rem; opacity: 0.9; margin-top: 3px; font-weight: 600; }
.credential-block em { font-style: normal; opacity: 0.8; font-size: 0.84rem; display: block; margin-top: 3px; }

/* ═══════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════ */
.service-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2.2rem;
}
.service-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.4rem;
  border: 1.5px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: border-color var(--transition), transform var(--transition);
}
.service-item:hover { border-color: var(--red); transform: translateY(-2px); }
.service-icon {
  width: 60px; height: 60px;
  background: var(--red-pale);
  border: 2.5px solid var(--red);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  padding: 10px;
}
.service-icon svg { width: 100%; height: 100%; stroke: var(--red); }
.service-item h3 {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--red);
  margin-bottom: 4px;
}
.service-item p { font-size: 0.88rem; color: var(--red-dark); line-height: 1.6; font-weight: 500; }
.service-tag {
  display: inline-block;
  margin-top: 7px;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--red);
  background: var(--red-pale);
  border: 1.5px solid var(--border);
  padding: 3px 10px;
  border-radius: 20px;
}
@media (min-width: 640px) { .service-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 980px) { .service-grid { grid-template-columns: repeat(3, 1fr); } }

/* ═══════════════════════════════════════════════
   CONTRACT BLOCK
═══════════════════════════════════════════════ */
.contract-block {
  background: var(--red-pale);
  border: 2.5px solid var(--red);
  border-radius: var(--radius);
  padding: 2rem;
  margin-top: 2.5rem;
}
.contract-block .icon-row {
  display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem;
}
.contract-block .icon-row .icon {
  width: 52px; height: 52px;
  border: 2.5px solid var(--red);
  border-radius: 12px;
  display: flex; align-items: center; justify-content: center;
  padding: 9px; flex-shrink: 0;
  background: var(--white);
}
.contract-block .icon-row .icon svg { width: 100%; height: 100%; stroke: var(--red); }
.contract-block h3 {
  font-family: Georgia, serif;
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--red);
}
.contract-block p { font-size: 0.95rem; color: var(--red-dark); line-height: 1.7; margin-bottom: 0.9rem; font-weight: 500; }
.contract-block ul { list-style: none; display: grid; gap: 0.55rem; }
.contract-block ul li {
  font-size: 0.92rem; color: var(--red-dark); font-weight: 600;
  display: flex; align-items: flex-start; gap: 10px;
}
.contract-block ul li::before {
  content: '';
  width: 9px; height: 9px;
  background: var(--red);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 7px;
}

/* ═══════════════════════════════════════════════
   STATS STRIP
═══════════════════════════════════════════════ */
.stats-strip {
  background: var(--red);
  color: var(--white);
  padding: 3rem 2rem;
  text-align: center;
}
.stats-strip h2 {
  font-family: Georgia, serif;
  font-size: clamp(1.5rem, 5vw, 2.2rem);
  font-weight: 900;
  margin-bottom: 0.6rem;
}
.stats-strip p {
  font-size: 1rem;
  opacity: 0.9;
  max-width: 520px;
  margin: 0 auto 2.2rem;
  line-height: 1.7;
  font-weight: 500;
}
.stats-pillars {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.1rem;
  max-width: 680px;
  margin: 0 auto;
}
.pillar {
  background: rgba(255,255,255,0.14);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: var(--radius);
  padding: 1.4rem 1rem;
}
.pillar strong {
  display: block;
  font-size: 2.2rem;
  font-family: Georgia, serif;
  font-weight: 900;
  line-height: 1;
}
.pillar span { font-size: 0.78rem; opacity: 0.88; letter-spacing: 0.06em; font-weight: 600; }
@media (min-width: 500px) { .stats-pillars { grid-template-columns: repeat(4, 1fr); } }

/* ═══════════════════════════════════════════════
   QUICK LINKS SECTION (home page)
═══════════════════════════════════════════════ */
.quick-links-grid {
  display: grid;
  gap: 1.2rem;
  margin-top: 2rem;
}
.quick-link-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 1.2rem 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), border-color var(--transition);
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--red);
  line-height: 1.2;
}
.quick-link-card svg { flex-shrink: 0; width: 28px; height: 28px; stroke: var(--red); }
.quick-link-card:hover { transform: translateX(4px); }
@media (min-width: 600px) { .quick-links-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .quick-links-grid { grid-template-columns: repeat(3, 1fr); } }

/* ═══════════════════════════════════════════════
   PHOTO GALLERY + LIGHTBOX (interior / projects)
═══════════════════════════════════════════════ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}
@media (min-width: 640px) { .gallery-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 960px) { .gallery-grid { grid-template-columns: repeat(4, 1fr); } }

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  border: 2px solid var(--border);
  cursor: pointer;
  box-shadow: var(--shadow-sm);
  background: var(--red-pale);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item .gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(127,29,29,0.55);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay svg { stroke: var(--white); }

/* Placeholder when photos not yet added */
.gallery-placeholder {
  aspect-ratio: 1;
  background: var(--red-pale);
  border: 2px dashed var(--border);
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--red);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-align: center;
  padding: 1rem;
}
.gallery-placeholder svg { stroke: var(--red); opacity: 0.5; }

/* LIGHTBOX */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(127,29,29,0.96);
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.lightbox.active { display: flex; }
.lightbox-inner {
  position: relative;
  max-width: 1000px;
  width: 100%;
}
.lightbox img {
  width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius);
  border: 3px solid rgba(255,255,255,0.25);
}
.lightbox-caption {
  text-align: center;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 600;
  margin-top: 0.8rem;
}
.lb-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(185,28,28,0.85);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  width: 48px; height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.4rem;
  font-weight: 900;
  transition: background var(--transition);
  z-index: 2;
  line-height: 1;
}
.lb-btn:hover { background: var(--red-dark); }
.lb-prev { left: -24px; }
.lb-next { right: -24px; }
.lb-close {
  position: absolute;
  top: -18px; right: -18px;
  background: var(--red-dark);
  border: 2px solid rgba(255,255,255,0.4);
  color: var(--white);
  width: 40px; height: 40px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  font-weight: 900;
  z-index: 2;
  transition: background var(--transition);
}
.lb-close:hover { background: var(--red); }
@media (max-width: 600px) {
  .lb-prev { left: 4px; }
  .lb-next { right: 4px; }
}

/* ═══════════════════════════════════════════════
   PROJECT LIST (completed projects page)
═══════════════════════════════════════════════ */
.project-list { margin-top: 2rem; display: grid; gap: 1.1rem; }
.project-row {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-left: 5px solid var(--red);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  box-shadow: var(--shadow-sm);
}
.project-row .icon { width: 44px; height: 44px; flex-shrink: 0; }
.project-row .icon svg { width: 100%; height: 100%; stroke: var(--red); }
.project-row h3 { font-size: 1rem; font-weight: 800; color: var(--red); }
.project-row span { display: block; font-size: 0.85rem; color: var(--red-dark); margin-top: 3px; font-weight: 500; }

/* ═══════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════ */
.contact-layout { display: grid; gap: 2rem; margin-top: 2rem; }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-row { display: flex; align-items: flex-start; gap: 1.1rem; }
.contact-icon {
  width: 48px; height: 48px;
  background: var(--red);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-row-text strong {
  display: block;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 3px;
}
.contact-row-text a, .contact-row-text span {
  font-size: 1rem;
  color: var(--red-dark);
  line-height: 1.5;
  font-weight: 600;
}
.contact-row-text a:hover { color: var(--red); }
.contact-cta-box {
  background: var(--red-pale);
  border: 2.5px solid var(--red);
  border-radius: var(--radius);
  padding: 1.8rem;
  text-align: center;
}
.contact-cta-box h3 {
  font-family: Georgia, serif;
  font-size: 1.35rem;
  font-weight: 900;
  color: var(--red-dark);
  margin-bottom: 0.5rem;
}
.contact-cta-box p { font-size: 0.94rem; color: var(--red); margin-bottom: 1.4rem; font-weight: 600; }
@media (min-width: 768px) { .contact-layout { grid-template-columns: 1fr 1fr; align-items: start; } }

.map-wrap {
  margin-top: 2rem;
  border: 2.5px solid var(--red);
  border-radius: var(--radius);
  overflow: hidden;
  height: 300px;
}
.map-wrap iframe { width: 100%; height: 100%; border: 0; }

/* ═══════════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
═══════════════════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 28px;
  right: 24px;
  z-index: 500;
  width: 60px; height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 6px 22px rgba(0,0,0,0.22);
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); box-shadow: 0 8px 28px rgba(0,0,0,0.28); }
.whatsapp-float svg { width: 32px; height: 32px; }

/* ═══════════════════════════════════════════════
   FOOTER — 4 columns
═══════════════════════════════════════════════ */
.footer {
  background: var(--red-dark);
  color: rgba(255,255,255,0.82);
}
.footer-top {
  display: grid;
  gap: 2.5rem;
  padding: 3rem 2rem;
  align-items: start;
}
@media (min-width: 640px) { .footer-top { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 960px) { .footer-top { grid-template-columns: 2fr 1fr 1fr 1fr; } }

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.footer-col h4 {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--white);
  margin-bottom: 0.8rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid rgba(255,255,255,0.2);
}
.footer-col p {
  font-size: 0.87rem;
  line-height: 1.7;
  margin-bottom: 0.4rem;
  font-weight: 500;
}
.footer-col a {
  display: block;
  font-size: 0.87rem;
  color: rgba(255,255,255,0.75);
  margin-bottom: 0.55rem;
  font-weight: 600;
  transition: color var(--transition);
}
.footer-col a:hover { color: var(--white); }

/* Social icons in footer */
.social-row {
  display: flex;
  gap: 0.7rem;
  margin-top: 0.8rem;
  flex-wrap: wrap;
  align-items: center;
}
.social-icon {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.12);
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.social-icon:hover { background: rgba(255,255,255,0.25); }

.footer-bottom {
  background: rgba(0,0,0,0.2);
  text-align: center;
  padding: 1rem 2rem;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.6);
  font-weight: 500;
}
.footer-bottom a { color: rgba(255,255,255,0.75); font-weight: 600; }

/* ═══════════════════════════════════════════════
   SCROLL REVEAL
═══════════════════════════════════════════════ */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.55s ease, transform 0.55s ease; }
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* ═══════════════════════════════════════════════
   HERO SLIDER
═══════════════════════════════════════════════ */
.hero-slider { padding: 0; }

.slider-track {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}
.slide.active { opacity: 1; }

/* Slide with content — needs min-height for text */
.slide-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Image-only slides — just show the photo */
.slide-image-only picture,
.slide-image-only img,
.slide-content picture,
.slide-content img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Overlay — ONLY on slide 1 */
.slide-content .slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    160deg,
    rgba(127,29,29,0.78) 0%,
    rgba(185,28,28,0.65) 50%,
    rgba(127,29,29,0.82) 100%
  );
  z-index: 1;
  pointer-events: none;
}
/* Watermark and content inside slide 1 — above overlay */
.slide-content .hero-watermark,
.slide-content .hero-content {
  position: relative;
  z-index: 2;
}

/* Dot navigation */
.slider-dots {
  position: absolute;
  bottom: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.7rem;
  z-index: 10;
}
.dot {
  width: 11px; height: 11px;
  border-radius: 50%;
  border: 2px solid rgba(255,255,255,0.75);
  background: transparent;
  cursor: pointer;
  transition: background 0.35s, border-color 0.35s, transform 0.2s;
  padding: 0;
}
.dot.active {
  background: var(--white);
  border-color: var(--white);
  transform: scale(1.25);
}
.dot:hover { border-color: var(--white); }

/* ═══════════════════════════════════════════════
   ABOUT HOME — 2 column: text left, photo right
═══════════════════════════════════════════════ */
.about-home-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  align-items: center;
}
@media (min-width: 768px) {
  .about-home-grid { grid-template-columns: 1fr 1fr; }
}

.about-home-photo {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 3px solid var(--border);
  aspect-ratio: 4/3;
  background: var(--red-pale);
}
.about-home-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}

.about-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1.4rem;
}
.about-badge {
  background: var(--red-pale);
  border: 1.5px solid var(--border);
  color: var(--red);
  font-size: 0.78rem;
  font-weight: 700;
  padding: 5px 14px;
  border-radius: 20px;
  letter-spacing: 0.04em;
  display: inline-block;
}

/* ═══════════════════════════════════════════════
   SERVICES SHOWCASE CARDS (home page)
═══════════════════════════════════════════════ */
.services-showcase {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.4rem;
}
@media (min-width: 560px) { .services-showcase { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 860px) { .services-showcase { grid-template-columns: repeat(3, 1fr); } }

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform var(--transition), box-shadow var(--transition);
  text-decoration: none;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }

.service-card-img {
  aspect-ratio: 4/3;
  background: var(--red-pale);
  overflow: hidden;
  flex-shrink: 0;
}
.service-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}
.service-card:hover .service-card-img img { transform: scale(1.05); }

.service-card-body {
  padding: 1.2rem 1.3rem 1.4rem;
  border-top: 3px solid var(--red);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  flex: 1;
}
.service-card-body h3 {
  font-family: Georgia, serif;
  font-size: 1.05rem;
  font-weight: 900;
  color: var(--red);
  line-height: 1.2;
}
.service-card-body p {
  font-size: 0.88rem;
  color: var(--red-dark);
  line-height: 1.6;
  font-weight: 500;
  flex: 1;
}
.service-card-link {
  display: inline-block;
  margin-top: 0.6rem;
  font-size: 0.82rem;
  font-weight: 800;
  color: var(--red);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--red);
  padding-bottom: 1px;
  align-self: flex-start;
  transition: opacity var(--transition);
}
.service-card:hover .service-card-link { opacity: 0.75; }
