/* ============================================================
   ORCHID RENOVATIONS — style.css
   Pixel-matched from original design screenshots
============================================================ */

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #FFFFFF;
  background: #262930;
  overflow-x: hidden;
  width: 100%;
}
h1, h2, h3, h4, h5 { font-family: "Poppins", sans-serif; }
a { text-decoration: none; color: inherit; transition: color 0.3s; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

/* ── UTILITY ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── BUTTONS ── */
.btn {
  display: inline-block;
  padding: 16px 40px;
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  border-radius: 4px;
  transition: background 0.3s, color 0.3s;
  text-align: center;
}
.btn-gold { background: #8E6B37; color: #FFFFFF; }
.btn-gold:hover { background: #A47C40; }
.btn-outline-white {
  background: rgba(255,255,255,0.15);
  color: #8E6B37;
  border: 2px solid rgba(255,255,255,0.6);
  font-weight: 700;
}
.btn-outline-white:hover { background: rgba(255,255,255,0.25); }

/* ============================================================
   NAVBAR
   Original design: contained floating block, NOT full-width
   - Has page background visible on left & right
   - Rounded corners (~8px)
   - Logo left, links center, gold CTA right (with rounded right corners)
   - Positioned with top margin, centered, max-width ~1100px
============================================================ */
.site-nav {
  position: fixed;
  top: 12px;
  left: 24px;
  right: 24px;
  margin: 0 auto;
  max-width: 1300px;
  z-index: 1000;
  height: 82px;
  background: #1A1C21;
  border-radius: 8px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
}

/* Logo block — left */
.nav-logo {
  display: flex;
  align-items: center;
  padding: 0 20px 0 20px;
  flex-shrink: 0;
}
.nav-logo img {
  height: 66px;
  width: auto;
  display: block;
}

/* Middle — flex-grow, links centered */
.nav-middle {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 44px;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-links a {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color 0.25s;
}
.nav-links a:hover  { color: #C8953A; }
.nav-links a.active { color: #C8953A; }

/* CTA — gold block, right side, rounded right corners matching nav */
.nav-cta {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 44px;
  background: #8E6B37;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  transition: background 0.25s;
  /* right corners match nav border-radius */
  border-radius: 0 8px 8px 0;
}
.nav-cta:hover { background: #A47C40; color: #FFFFFF; }

/* Hamburger — mobile only */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px 16px;
  background: none;
  border: none;
  align-self: center;
  margin-left: auto;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #FFFFFF;
  border-radius: 2px;
  transition: 0.3s;
}

/* Mobile dropdown */
.mobile-menu {
  display: none;
  position: fixed;
  top: 106px; left: 24px; right: 24px;
  background: #1A1C21;
  z-index: 999;
  flex-direction: column;
  border-radius: 0 0 8px 8px;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(0,0,0,0.3);
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #FFFFFF;
  padding: 15px 24px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color 0.25s, background 0.25s;
}
.mobile-menu a:hover  { color: #C8953A; background: rgba(142,107,55,0.07); }
.mobile-menu a.active { color: #C8953A; }

/* ============================================================
   HERO
   Full viewport, bg image with overlay
   Centered: wide logo → tagline bar → headline → subtext → 2 buttons
============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 0;
  margin-top: 0;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../images/hero.png') center center / cover no-repeat;
  background-color: #262930;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(28, 31, 36, 0.52);
}
.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 40px 24px 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero-wide-logo {
  width: min(680px, 82vw);
  margin-bottom: 24px;
}
.hero-tagline-bar {
  background: rgba(18, 20, 24, 0.85);
  padding: 11px 36px;
  margin-bottom: 32px;
  border-radius: 2px;
}
.hero-tagline-bar span {
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: #FFFFFF;
}
.hero-content h1 {
  font-size: clamp(32px, 5vw, 62px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.12;
  margin-bottom: 18px;
}
.hero-content p {
  font-size: 16px;
  font-weight: 400;
  color: rgba(255,255,255,0.82);
  max-width: 660px;
  line-height: 1.7;
  margin-bottom: 38px;
}
.hero-btns {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

/* ============================================================
   SERVICES SECTION
   bg: #262930  (from screenshot — dark grey-blue)
   Layout: 3-col grid, each item = gold circle icon left + text right
   Heading in gold, subtext white
============================================================ */
.services-section {
  background: #262930;
  padding: 90px 0;
}
.section-head {
  text-align: center;
  margin-bottom: 60px;
}
.section-head h2 {
  font-size: clamp(26px, 3.2vw, 38px);
  font-weight: 700;
  color: #8E6B37;
  margin-bottom: 14px;
}
.section-head p {
  font-size: 17px;
  font-weight: 400;
  color: #FFFFFF;
  line-height: 1.6;
  max-width: 640px;
  margin: 0 auto 18px;
}
.section-divider {
  width: 56px; height: 2px;
  background: #8E6B37;
  margin: 0 auto;
}
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 52px 48px;
}
.svc-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.svc-icon-circle {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: #8E6B37;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.svc-icon-circle img {
  width: 42px; height: 42px;
  object-fit: contain;
}
.svc-text h3 {
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 10px;
  line-height: 1.25;
}
.svc-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.68);
  line-height: 1.7;
}

/* ============================================================
   ABOUT SECTION
   bg: light/beige with background image + overlay
   Left: heading + paragraph + 4 star feature rows
   Right: 3 stacked gold stat boxes (150+, 15+, 100%)
============================================================ */
.about-section {
  position: relative;
  padding: 90px 0;
  overflow: hidden;
}
.about-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/about.png') center center / cover no-repeat;
  background-color: #F0EDE6;
}
.about-section::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(240, 237, 230, 0.87);
}
.about-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about-left h2 {
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: #1A1D22;
  margin-bottom: 18px;
  line-height: 1.2;
}
.about-left p {
  font-size: 15px;
  color: #3D3628;
  line-height: 1.8;
  margin-bottom: 30px;
}
.about-features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 600;
  color: #1A1D22;
}
.feat-icon {
  width: 34px; height: 34px;
  flex-shrink: 0;
}
.feat-icon img { width: 100%; height: 100%; object-fit: contain; }

/* Right: stacked stat boxes */
.about-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.stat-box {
  background: #8E6B37;
  border-radius: 6px;
  padding: 26px 36px;
  text-align: center;
}
.stat-box .stat-num {
  font-family: "Poppins", sans-serif;
  font-size: clamp(42px, 5vw, 62px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-box .stat-lbl {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
}

/* ============================================================
   PORTFOLIO SECTION
   bg: #262930  dark
   4-col grid of images, gold label below each
============================================================ */
.portfolio-section {
  background: #262930;
  padding: 90px 0;
}
.portfolio-section .section-head h2 { color: #8E6B37; }
.portfolio-section .section-head p  { color: #FFFFFF; }

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 16px;
  row-gap: 36px;
}
.port-item {
  display: flex;
  flex-direction: column;
  gap: 0;
  cursor: pointer;
}
.port-img-wrap {
  overflow: hidden;
  border-radius: 4px;
  background: #262930;
}
.port-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.45s ease;
}
.port-item:hover img { transform: scale(1.05); }
.port-caption {
  padding: 12px 4px 0;
  text-align: center;
  background: transparent;
}
.port-caption span {
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #8E6B37;
}

/* ============================================================
   REVIEWS SECTION
   bg: #D0CEC9 (light grey-beige from screenshot)
   Single centered slide: quote icon → title → text → avatar → name
   Prev/Next arrows on sides
============================================================ */
.reviews-section {
  background: #D0CEC9;
  padding: 90px 0;
}
.reviews-section .section-head h2  { color: #8E6B37; }
.reviews-section .section-head p   { color: #3D3628; }
.reviews-section .section-divider  { background: #8E6B37; }

.review-slider-wrap {
  position: relative;
  max-width: 820px;
  margin: 0 auto;
  padding: 0 64px;
}
.review-slide {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.review-slide.active { display: flex; }
.review-quote-icon {
  font-size: 88px;
  line-height: 0.9;
  color: #8E6B37;
  font-family: "Poppins", sans-serif;
  margin-bottom: 20px;
}
.review-title {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #1A1D22;
  margin-bottom: 16px;
}
.review-text {
  font-size: 16px;
  color: #3D3628;
  line-height: 1.8;
  max-width: 660px;
  margin-bottom: 28px;
}
.review-avatar {
  width: 78px; height: 78px;
  border-radius: 50%;
  background: #9A9A9A;
  overflow: hidden;
  margin: 0 auto 12px;
}
.review-avatar img { width: 100%; height: 100%; object-fit: cover; }
.review-name {
  font-family: "Poppins", sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: #8E6B37;
}
.slider-btn {
  position: absolute;
  top: 50%; transform: translateY(-50%);
  width: 46px; height: 46px;
  border-radius: 50%;
  background: rgba(142,107,55,0.22);
  border: none;
  color: #8E6B37;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background 0.3s;
}
.slider-btn:hover { background: rgba(142,107,55,0.42); }
.slider-btn.prev { left: 0; }
.slider-btn.next { right: 0; }

/* ============================================================
   CONTACT SECTION
   bg: #F5F3EF white/off-white
   Left: 4 stacked gold info boxes (Phone, Email, Service Area, Hours)
   Right: clean form (white inputs, dark labels, gold Send button)
   Section heading centered above
============================================================ */
.contact-section {
  background: #F5F3EF;
  padding: 90px 0;
}
.contact-section .section-head h2  { color: #8E6B37; }
.contact-section .section-head p   { color: #3D3628; }
.contact-section .section-divider  { background: #8E6B37; }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 60px;
  align-items: start;
}
.contact-info-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.contact-box {
  background: #8E6B37;
  border-radius: 6px;
  padding: 20px 26px;
}
.contact-box .cb-label {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 700;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 5px;
}
.contact-box .cb-label svg { width: 19px; height: 19px; flex-shrink: 0; }
.contact-box .cb-value {
  font-size: 15px;
  font-weight: 400;
  color: rgba(255,255,255,0.88);
  line-height: 1.6;
  padding-left: 29px;
}

/* Form */
.contact-form-col { display: flex; flex-direction: column; }
.form-row-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin-bottom: 18px;
}
.form-group label {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #1A1D22;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  color: #1A1D22;
  background: #FFFFFF;
  border: 1.5px solid #C5C0B8;
  border-radius: 4px;
  outline: none;
  transition: border-color 0.3s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: #8E6B37; }
.form-group input::placeholder,
.form-group textarea::placeholder { color: #9A9388; font-size: 14px; }
.form-group select {
  color: #1A1D22;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%238E6B37' stroke-width='2.5'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 40px;
}
.form-group select option { color: #1A1D22; }
.form-group textarea { resize: vertical; min-height: 155px; }
.btn-send {
  display: block;
  width: 50%;
  margin: 6px auto 0;
  padding: 17px;
  background: #8E6B37;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.3s;
}
.btn-send:hover { background: #A47C40; }

/* ============================================================
   FOOTER
   bg: #2C2F38
   4 columns: brand+contact | Quick Links | Services | Connect
   Large logo image top of brand col
============================================================ */
.site-footer {
  background: #1A1C21;
  padding: 64px 0 0;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1.3fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}
.footer-brand .f-logo img {
  height: 88px;
  width: auto;
  margin-bottom: 16px;
}
.footer-brand p {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  line-height: 1.8;
  margin-bottom: 26px;
  max-width: 300px;
}
.footer-contact-title {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 12px;
}
.footer-contact-row {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 9px;
}
.footer-contact-row svg { flex-shrink: 0; color: #FFFFFF; width: 17px; height: 17px; }
.footer-col h4 {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 13px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.62);
  transition: color 0.3s;
}
.footer-col ul li a:hover { color: #8E6B37; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p { font-size: 14px; color: rgba(255,255,255,0.5); }

/* ============================================================
   LIGHTBOX
============================================================ */
.lightbox-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.92);
  align-items: center;
  justify-content: center;
}
.lightbox-overlay.open {
  display: flex;
}
.lightbox-inner {
  position: relative;
  max-width: 90vw;
  max-height: 90vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  object-fit: contain;
  border-radius: 6px;
  display: block;
  box-shadow: 0 8px 48px rgba(0,0,0,0.6);
}
.lightbox-close {
  position: fixed;
  top: 20px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: rgba(142,107,55,0.85);
  border: none;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 22px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: background 0.25s;
  line-height: 1;
}
.lightbox-close:hover { background: #8E6B37; }

.lightbox-prev,
.lightbox-next {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background: rgba(142,107,55,0.75);
  border: none;
  border-radius: 50%;
  color: #FFFFFF;
  font-size: 24px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10000;
  transition: background 0.25s;
}
.lightbox-prev:hover,
.lightbox-next:hover { background: #8E6B37; }
.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-caption {
  position: fixed;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 600;
  color: #C8953A;
  letter-spacing: 0.05em;
  white-space: nowrap;
  z-index: 10000;
}

.lightbox-counter {
  position: fixed;
  top: 24px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  z-index: 10000;
}

/* ============================================================
   PAY PAGE
   bg: #262930, centered card with gold border, gold icon, gold button
============================================================ */
.pay-section {
  background: #262930;  
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 0px;
}
.pay-wrap {
  width: 100%;
  max-width: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pay-header {
  text-align: center;
  margin-bottom: 40px;
}
.pay-header h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 14px;
}
.pay-header p {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #9A8F7E;
  line-height: 1.6;
  max-width: 420px;
  margin: 0 auto;
}

/* Card */
.pay-card {
  width: 100%;
  background: #2E3238;
  border: 1.5px solid #8E6B37;
  border-radius: 16px;
  padding: 44px 40px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

/* Icon circle */
.pay-icon-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: #8E6B37;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  flex-shrink: 0;
}

/* Card heading */
.pay-card h3 {
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: #FFFFFF;
  margin-bottom: 16px;
}

/* Card description */
.pay-card p {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  color: #9A8F7E;
  line-height: 1.7;
  max-width: 360px;
  margin-bottom: 32px;
}

/* Button */
.pay-btn {
  width: 100%;
  padding: 18px;
  background: #8E6B37;
  color: #FFFFFF;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  font-weight: 700;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.3s ease;
  letter-spacing: 0.03em;
}
.pay-btn:hover { background: #A47C40; }

/* ── BACK TO TOP ── */
.back-top {
  position: fixed;
  bottom: 28px; right: 28px;
  width: 42px; height: 42px;
  background: #8E6B37; color: #FFFFFF;
  border: none; border-radius: 4px;
  font-size: 20px; font-weight: 700;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none;
  transition: opacity 0.3s, background 0.3s;
  z-index: 800;
}
.back-top.visible { opacity: 1; pointer-events: all; }
.back-top:hover   { background: #A47C40; }

/* ============================================================
   ABOUT PAGE
   Hero: full-width bg image, dark overlay, centered title + gold underline
   Intro: hexagon/geometric pattern bg, centered text, 2x2 feature grid
   Stats: rounded beige card, 3-col, gold circle icons, dark numbers
============================================================ */
.page-hero {
  position: relative;
  height: 320px;
  margin-top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background: center center / cover no-repeat;
  background-color: #1C1F24;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(22, 25, 30, 0.58);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding-top: 94px; /* push below floating nav (82px height + 12px top offset) */
}
.page-hero-content h1 {
  font-size: clamp(40px, 6vw, 68px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1;
}
.page-hero-line {
  width: 72px;
  height: 3px;
  background: #8E6B37;
  margin: 18px auto 0;
}

/* ── About intro — geometric bg section ── */
.about-intro-section {
  position: relative;
  padding: 80px 24px 60px;
  text-align: center;
  /* hexagon/geometric pattern bg — use the about.png as bg */
  background: url('images/about.png') center center / cover no-repeat;
  background-color: #E8E4DC;
}
.about-intro-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(232, 228, 220, 0.82);
}
.about-intro-section h2 {
  position: relative;
  z-index: 1;
  font-size: clamp(28px, 4vw, 46px);
  font-weight: 700;
  color: #1A1D22;
  margin-bottom: 22px;
}
.about-intro-section p {
  position: relative;
  z-index: 1;
  font-size: 17px;
  color: #3D3628;
  line-height: 1.8;
  max-width: 720px;
  margin: 0 auto 52px;
}
.features-2col {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 680px;
  margin: 0 auto;
  gap: 24px 60px;
}
.feat-row-about {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: "Poppins", sans-serif;
  font-size: 19px;
  font-weight: 600;
  color: #1A1D22;
}
.feat-star-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #8E6B37;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-star-circle img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

/* ── Stats card — same bg as intro, rounded card inside ── */
.about-stats-section {
  position: relative;
  padding: 0 24px 80px;
  background: url('images/about.png') center center / cover no-repeat;
  background-color: #E8E4DC;
}
.about-stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(232, 228, 220, 0.82);
}
.about-stats-card {
  position: relative;
  z-index: 1;
  max-width: 860px;
  margin: 0 auto;
  background: rgba(200, 190, 175, 0.55);
  border-radius: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  padding: 20px 0;
}
.about-stat-col {
  padding: 44px 28px;
  text-align: center;
  border-right: 1px solid rgba(142, 107, 55, 0.18);
}
.about-stat-col:last-child { border-right: none; }
.about-stat-icon {
  width: 90px;
  height: 90px;
  border-radius: 50%;
  background: #8E6B37;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 22px;
}
.about-stat-icon img {
  width: 50px;
  height: 50px;
  object-fit: contain;
}
.about-stat-num {
  font-family: "Poppins", sans-serif;
  font-size: clamp(44px, 5vw, 60px);
  font-weight: 700;
  color: #1A1D22;
  line-height: 1;
  margin-bottom: 10px;
}
.about-stat-lbl {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: #3D3628;
  letter-spacing: 0.02em;
}

/* ============================================================
   SERVICES PAGE
   - Each card: rounded corners, alternating bg colors
   - Image: equal padding from all 4 edges, gold inset frame
   - Title: white bold + short gold underline below
   - No "GET A QUOTE" link
============================================================ */
.services-page-section {
  background: #262930;
  padding: 40px 24px 80px;
}
.services-page-intro {
  background: #262930;
  padding: 60px 24px 48px;
  text-align: center;
}
.services-page-intro .svc-intro-strong {
  font-family: "Poppins", sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #F0EDE6;
  display: block;
  margin-bottom: 6px;
}
.services-page-intro .svc-intro-sub {
  font-family: "Poppins", sans-serif;
  font-size: 17px;
  font-weight: 400;
  color: #9A8F7E;
}

/* Card wrapper */
.svc-row-item {
  max-width: 1000px;
  margin: 0 auto 20px;
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 370px 1fr;
}
/* Odd cards — darker */
.svc-row-item:nth-child(odd)  { background: #1F2125; }
/* Even cards — lighter */
.svc-row-item:nth-child(even) { background: #383C44; }

/* Reversed layout */
.svc-row-item.rev { grid-template-columns: 1fr 370px; }
.svc-row-item.rev .svc-row-img  { order: 2; }
.svc-row-item.rev .svc-row-text { order: 1; }

/* Image area — padding on all 4 sides so image floats inside card */
.svc-row-img {
  padding: 16px;
  display: flex;
  align-items: stretch;
}
.svc-row-img-inner {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
  min-height: 220px;
}
.svc-row-img-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.svc-row-item:hover .svc-row-img-inner img { transform: scale(1.04); }

/* Gold inset frame on image */
.svc-img-frame {
  position: absolute;
  inset: 10px;
  border: 1.5px solid rgba(142, 107, 55, 0.7);
  border-radius: 4px;
  pointer-events: none;
  z-index: 1;
}

/* Text area */
.svc-row-text {
  padding: 36px 36px 36px 28px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.svc-row-item.rev .svc-row-text {
  padding: 36px 28px 36px 36px;
}
.svc-row-text h2 {
  font-family: "Poppins", sans-serif;
  font-size: clamp(20px, 2.2vw, 26px);
  font-weight: 700;
  color: #FFFFFF;
  line-height: 1.2;
  margin-bottom: 10px;
}
.svc-row-gbar {
  width: 40px;
  height: 2px;
  background: #8E6B37;
  margin-bottom: 16px;
  border-radius: 1px;
}
.svc-row-text p {
  font-size: 14px;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* ============================================================
   RESPONSIVE
============================================================ */
@media (max-width: 1024px) {
  .services-grid        { grid-template-columns: repeat(2, 1fr); }
  .about-inner          { grid-template-columns: 1fr; gap: 44px; }
  .portfolio-grid       { grid-template-columns: repeat(2, 1fr); }
  .contact-grid         { grid-template-columns: 1fr; gap: 36px; }
  .footer-inner         { grid-template-columns: 1fr 1fr; gap: 36px; }
  .svc-row-item,
  .svc-row-item.rev     { grid-template-columns: 1fr; }
  .svc-row-item.rev .svc-row-img  { order: 0; }
  .svc-row-item.rev .svc-row-text { order: 0; }
  .svc-row-img { padding: 14px 14px 0 14px; }
  .svc-row-img-inner { min-height: 200px; }
}

@media (max-width: 900px) {
  .nav-middle, .nav-cta { display: none; }
  .hamburger            { display: flex; }
  .site-nav             { left: 16px; right: 16px; }
}

@media (max-width: 768px) {
  .hero-content h1      { font-size: 30px; }
  .hero-btns            { flex-direction: column; align-items: center; }
  .services-grid        { grid-template-columns: 1fr; }
  .portfolio-grid       { grid-template-columns: repeat(2, 1fr); }
  .form-row-2           { grid-template-columns: 1fr; }
  .features-2col        { grid-template-columns: 1fr; max-width: 320px; }
  .about-stats-card     { grid-template-columns: 1fr; padding: 10px 0; }
  .about-stat-col       { border-right: none; border-bottom: 1px solid rgba(142,107,55,0.18); }
  .about-stat-col:last-child { border-bottom: none; }
  .review-slider-wrap   { padding: 0 44px; }
  .footer-inner         { grid-template-columns: 1fr; }
  .footer-brand p       { max-width: 100%; }
  .footer-bottom        { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
  .container            { padding: 0 16px; }
  .site-nav             { left: 10px; right: 10px; top: 10px; }
  .portfolio-grid       { grid-template-columns: 1fr; }
  /* .port-item img        { height: 200px; } */
  .btn-send             { width: 100%; }
  .hero-wide-logo       { width: 94vw; }
  .svc-row-text         { padding: 22px 18px; }
}

/* ══════════════════════════════════════════════════════════════
   SCROLL-TRIGGERED ANIMATIONS
   Direction-based reveals (left, right, top, bottom, fade)
   Activated by JS via IntersectionObserver -> adds .is-visible
   ══════════════════════════════════════════════════════════════ */

/* Base: hide elements before they animate in.
   We only apply the hidden state when JS is active (html.js-anim)
   so users without JS still see content. */
html.js-anim .reveal {
  opacity: 0;
  transform: translate3d(0, 0, 0);
  transition:
    opacity 0.9s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

/* Direction variants — initial offset positions */
html.js-anim .reveal-left   { transform: translate3d(-60px, 0, 0); }
html.js-anim .reveal-right  { transform: translate3d(60px, 0, 0); }
html.js-anim .reveal-up     { transform: translate3d(0, 60px, 0); }
html.js-anim .reveal-down   { transform: translate3d(0, -60px, 0); }
html.js-anim .reveal-zoom   { transform: scale(0.9); }

/* Active state — settle into place */
html.js-anim .reveal.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

/* Stagger delays for grid children (services, portfolio, stats, etc.) */
html.js-anim .reveal.delay-1 { transition-delay: 0.10s; }
html.js-anim .reveal.delay-2 { transition-delay: 0.20s; }
html.js-anim .reveal.delay-3 { transition-delay: 0.30s; }
html.js-anim .reveal.delay-4 { transition-delay: 0.40s; }
html.js-anim .reveal.delay-5 { transition-delay: 0.50s; }
html.js-anim .reveal.delay-6 { transition-delay: 0.60s; }

/* Auto-stagger children inside a .reveal-stagger container.
   Each direct child animates a little after the previous one. */
html.js-anim .reveal-stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
html.js-anim .reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.15s; }
html.js-anim .reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.25s; }
html.js-anim .reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.35s; }
html.js-anim .reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.45s; }
html.js-anim .reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.55s; }

/* Subtle continuous keyframe animations for hero elements */
@keyframes fadeInUp {
  from { opacity: 0; transform: translate3d(0, 30px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeInDown {
  from { opacity: 0; transform: translate3d(0, -30px, 0); }
  to   { opacity: 1; transform: translate3d(0, 0, 0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

/* Hero animates immediately on load (above the fold) */
.hero-wide-logo      { animation: fadeInDown 1s ease-out 0.1s both; }
.hero-tagline-bar    { animation: fadeIn 1s ease-out 0.4s both; }
.hero-content h1     { animation: fadeInUp 1s ease-out 0.6s both; }
.hero-content > p    { animation: fadeInUp 1s ease-out 0.8s both; }
.hero-btns           { animation: fadeInUp 1s ease-out 1.0s both; }

/* Page-hero (about / services inner pages) gentle reveal */
.page-hero-content h1     { animation: fadeInUp 0.9s ease-out 0.2s both; }
.page-hero-line           { animation: fadeIn 1.2s ease-out 0.6s both; }

/* Respect user motion preferences */
@media (prefers-reduced-motion: reduce) {
  html.js-anim .reveal,
  html.js-anim .reveal.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .hero-wide-logo,
  .hero-tagline-bar,
  .hero-content h1,
  .hero-content > p,
  .hero-btns,
  .page-hero-content h1,
  .page-hero-line {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

/* On mobile, reduce horizontal slide offsets so reveal-left/right
   never push elements wider than the viewport during animation. */
@media (max-width: 768px) {
  html.js-anim .reveal-left  { transform: translate3d(-24px, 0, 0); }
  html.js-anim .reveal-right { transform: translate3d(24px, 0, 0); }
  html.js-anim .reveal-up    { transform: translate3d(0, 30px, 0); }
  html.js-anim .reveal-down  { transform: translate3d(0, -30px, 0); }
}
