/* =========================================================
   SATYAM ENTERPRISES — Stylesheet
   Safe Home • Better Living
   ========================================================= */

:root{
  --dark-forest: #0B2B22;
  --deep-green:  #123C2F;
  --gold:        #C9A24D;
  --light-gold:  #E4C878;
  --off-white:   #F8F7F2;
  --white:       #FFFFFF;
  --text-dark:   #17231F;
  --text-muted:  #66716C;

  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 22px;

  --shadow-sm: 0 2px 10px rgba(11,43,34,0.08);
  --shadow-md: 0 12px 32px rgba(11,43,34,0.14);
  --shadow-gold: 0 8px 24px rgba(201,162,77,0.28);

  --container-w: 1220px;
  --header-h: 84px;
}

*, *::before, *::after{ box-sizing: border-box; }
html{ scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce){
  html{ scroll-behavior: auto; }
  *, *::before, *::after{
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
    scroll-behavior: auto !important;
  }
}

body{
  margin:0;
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img{ max-width: 100%; display:block; }
a{ color: inherit; text-decoration: none; }
ul{ list-style: none; margin:0; padding:0; }
button{ font-family: inherit; cursor: pointer; }
input, textarea, select{ font-family: inherit; font-size: 1rem; }

h1,h2,h3,h4{
  font-family: var(--font-display);
  color: var(--dark-forest);
  margin: 0 0 .5em;
  line-height: 1.15;
  font-weight: 600;
}
h1{ font-size: clamp(2.4rem, 4.4vw, 3.6rem); }
h2{ font-size: clamp(1.9rem, 3.2vw, 2.7rem); }
h3{ font-size: clamp(1.3rem, 2vw, 1.6rem); }
p{ margin: 0 0 1em; color: var(--text-muted); }

.container{
  width: 100%;
  max-width: var(--container-w);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link{
  position:absolute; left:-999px; top:0;
  background: var(--gold); color:var(--dark-forest);
  padding:10px 16px; z-index:1000; border-radius:0 0 8px 0;
  font-weight:600;
}
.skip-link:focus{ left:0; }

:focus-visible{
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.section{ padding: clamp(56px, 8vw, 100px) 0; }
.section-tight{ padding: clamp(36px, 5vw, 60px) 0; }
.bg-white{ background: var(--white); }
.bg-offwhite{ background: var(--off-white); }
.bg-dark{ background: var(--dark-forest); color: var(--off-white); }
.bg-dark h2, .bg-dark h3, .bg-dark h4{ color: var(--off-white); }
.bg-dark p{ color: rgba(248,247,242,0.78); }

.section-head{
  max-width: 640px;
  margin: 0 0 44px;
}
.section-head.center{ margin-left:auto; margin-right:auto; text-align:center; }
.section-head p{ font-size: 1.05rem; margin:0; }

.eyebrow{
  display:inline-block;
  color: var(--gold);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: .82rem;
  letter-spacing: .04em;
  margin-bottom: 14px;
}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center; gap:8px;
  padding: 14px 30px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .96rem;
  border: 1.5px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
  white-space: nowrap;
}
.btn-gold{
  background: linear-gradient(135deg, var(--light-gold), var(--gold));
  color: var(--dark-forest);
  box-shadow: var(--shadow-gold);
}
.btn-gold:hover{ transform: translateY(-2px); box-shadow: 0 14px 30px rgba(201,162,77,0.38); }

.btn-outline{
  background: transparent;
  color: var(--off-white);
  border-color: rgba(248,247,242,0.55);
}
.btn-outline:hover{ background: rgba(248,247,242,0.12); border-color: var(--off-white); }

.btn-outline-dark{
  background: transparent;
  color: var(--dark-forest);
  border-color: var(--dark-forest);
}
.btn-outline-dark:hover{ background: var(--dark-forest); color: var(--off-white); }

.btn-whatsapp{
  background: #25D366;
  color: #fff;
}
.btn-whatsapp:hover{ transform: translateY(-2px); box-shadow: 0 12px 26px rgba(37,211,102,0.35); }

.btn-block{ width: 100%; }
.btn-sm{ padding: 10px 20px; font-size: .86rem; }

.link-arrow{
  display:inline-flex; align-items:center; gap:6px;
  color: var(--dark-forest); font-weight:600; font-size:.92rem;
  border-bottom: 1.5px solid var(--gold);
  padding-bottom: 2px;
  transition: gap .2s ease, color .2s ease;
}
.link-arrow:hover{ gap:10px; color: var(--gold); }

.cfg-placeholder{
  color:#B65C3C;
  font-style: italic;
  border-bottom: 1px dashed #B65C3C;
}

/* Reveal-on-scroll (JS toggles .is-visible) */
.reveal{
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible{ opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce){
  .reveal{ opacity:1; transform:none; transition:none; }
}

/* =========================================================
   HEADER / NAVBAR
   ========================================================= */
.site-header{
  position: sticky; top:0; z-index: 500;
  background: transparent;
  transition: background .35s ease, box-shadow .35s ease, padding .35s ease;
  padding: 14px 0;
}
.site-header.is-solid{
  background: var(--white);
  box-shadow: var(--shadow-sm);
  padding: 6px 0;
}
body.has-transparent-hero .site-header:not(.is-solid){
  background: linear-gradient(to bottom, rgba(11,43,34,0.55), transparent);
}
body.has-transparent-hero .site-header:not(.is-solid) .main-nav a{ color: var(--off-white); }
body.has-transparent-hero .site-header:not(.is-solid) .brand-name{ color: var(--off-white); }
body.has-transparent-hero .site-header:not(.is-solid) .brand-tagline{ color: var(--light-gold); }
body.has-transparent-hero .site-header:not(.is-solid) .menu-toggle span{ background: var(--off-white); }

.header-inner{
  display:flex; align-items:center; justify-content:space-between; gap:24px;
}
.brand{ display:flex; align-items:center; gap:12px; flex-shrink:0; }
.brand-logo{ height:56px; width:56px; object-fit:contain; border-radius: 50%; background: var(--white); padding:3px; }
.brand-text{ display:flex; flex-direction:column; line-height:1.2; }
.brand-name{ font-family: #fff; font-weight:700; font-size:1.28rem; color: var(--dark-forest); transition: color .3s ease; }
.brand-tagline{ font-size: .68rem; letter-spacing:.05em; color: var(--gold); font-weight:600; }

.main-nav ul{ display:flex; align-items:center; gap:30px; }
.main-nav a{
  font-weight:500; font-size:.96rem; color: #ff9102;
  position:relative; padding: 6px 0; transition: color .3s ease;
}
.main-nav a::after{
  content:""; position:absolute; left:0; right:0; bottom:0; height:2px;
  background: var(--gold); transform: scaleX(0); transform-origin: left;
  transition: transform .3s ease;
}
.main-nav a:hover::after, .main-nav a.active::after{ transform: scaleX(1); }
.main-nav a.active{ color: var(--gold); }

.header-actions{ display:flex; align-items:center; gap:16px; }
.header-cta{ padding: 12px 24px; }

.menu-toggle{
  display:none; flex-direction:column; justify-content:center; gap:5px;
  width:42px; height:42px; background:none; border:none; border-radius:8px;
}
.menu-toggle span{
  height:2px; width:24px; background: var(--dark-forest); border-radius:2px;
  transition: transform .3s ease, opacity .3s ease, background .3s ease;
  margin: 0 auto;
}
.menu-toggle.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.menu-toggle.is-open span:nth-child(2){ opacity:0; }
.menu-toggle.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

.mobile-menu{
  position:fixed; top:0; right:0; height:100vh; width:min(84vw, 340px);
  background: var(--dark-forest); z-index:600;
  padding: 100px 30px 40px;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.22,.9,.3,1);
  display:flex; flex-direction:column; gap:28px;
  overflow-y:auto;
}
.mobile-menu.is-open{ transform: translateX(0); }
.mobile-menu ul{ display:flex; flex-direction:column; gap:6px; }
.mobile-menu a{
  color: var(--off-white); font-size:1.15rem; padding:12px 4px; display:block;
  border-bottom: 1px solid rgba(248,247,242,0.08);
  font-family: var(--font-display); font-weight:600;
}
.mobile-menu a.active{ color: var(--light-gold); }
.mobile-menu-contact{ display:flex; gap:14px; margin-top:6px; }
.mobile-menu-contact a{
  flex:1; text-align:center; padding:12px; border-radius:10px;
  border:1px solid rgba(248,247,242,0.3); color: var(--off-white); font-weight:600; font-size:.9rem;
}

.menu-scrim{
  position:fixed; inset:0; background:rgba(11,43,34,0.5);
  z-index:590; opacity:0; pointer-events:none; transition: opacity .35s ease;
}
.menu-scrim.is-open{ opacity:1; pointer-events:auto; }

@media (max-width: 920px){
  .main-nav{ display:none; }
  .header-cta{ display:none; }
  .menu-toggle{ display:flex; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero{
  position: relative;
  min-height: 92vh;
  display:flex; align-items:center;
  color: var(--off-white);
  margin-top: calc(var(--header-h) * -1);
  padding-top: var(--header-h);
  overflow:hidden;
}
.hero-bg{
  position:absolute; inset:0;
  background-size: cover; background-position: center;
}
.hero-bg img{ width:100%; height:100%; object-fit:cover; }
.hero-bg::after{
  content:"";
  position:absolute; inset:0;
  background: linear-gradient(100deg, rgba(11,43,34,0.92) 0%, rgba(11,43,34,0.72) 40%, rgba(11,43,34,0.35) 75%);
}
.hero-inner{
  position:relative; z-index:2;
  display:grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items:center;
  width:100%;
}
.hero-badge{
  display:inline-block;
  border: 1px solid rgba(228,200,120,0.55);
  color: var(--light-gold);
  padding: 8px 18px; border-radius:999px;
  font-size:.78rem; font-weight:600; letter-spacing:.04em;
  margin-bottom: 22px;
}
.hero-content h1{ color: var(--off-white); margin-bottom: 14px; }
.hero-highlight{
  display:block;
  font-family: var(--font-display); font-style: italic; font-weight:600;
  color: var(--light-gold); font-size: clamp(1.15rem, 2vw, 1.45rem);
  margin-bottom: 18px;
}
.hero-content p{ color: rgba(248,247,242,0.82); max-width:480px; font-size:1.05rem; }
.hero-actions{ display:flex; flex-wrap:wrap; gap:16px; margin: 26px 0 22px; }
.hero-trust{
  font-size:.85rem; color: rgba(248,247,242,0.65);
  display:flex; align-items:center; gap:8px; flex-wrap:wrap;
}
.hero-visual{
  position: relative;
  border-radius: var(--radius-lg);
  overflow:hidden;
  box-shadow: 0 30px 60px rgba(0,0,0,0.35);
  border: 1px solid rgba(228,200,120,0.25);
  aspect-ratio: 4/5;
}
.hero-visual img{ width:100%; height:100%; object-fit:cover; }

@media (max-width: 920px){
  .hero{ min-height: auto; padding-bottom: 60px; padding-top: calc(var(--header-h) + 30px); }
  .hero-inner{ grid-template-columns: 1fr; }
  .hero-visual{ aspect-ratio: 16/10; order:-1; }
}

/* =========================================================
   QUICK SERVICE STRIP
   ========================================================= */
.service-strip{
  background: var(--white);
  border-bottom: 1px solid rgba(11,43,34,0.08);
}
.service-strip .container{
  display:flex; gap: 10px; padding-top:22px; padding-bottom:22px;
  overflow-x:auto;
  scrollbar-width: none;
}
.service-strip .container::-webkit-scrollbar{ display:none; }
.strip-item{
  display:flex; align-items:center; gap:10px;
  padding: 10px 20px; border-radius: 999px;
  background: var(--off-white);
  white-space:nowrap; flex-shrink:0;
  font-weight:600; font-size:.9rem; color: var(--dark-forest);
  border: 1px solid transparent;
  transition: border-color .25s ease, background .25s ease;
}
.strip-item:hover{ border-color: var(--gold); background: var(--white); }
.strip-icon{ font-size:1.15rem; }

/* =========================================================
   WHY CHOOSE US
   ========================================================= */
.why-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
}
.why-card{
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 30px 26px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,43,34,0.06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.why-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); border-color: rgba(201,162,77,0.4); }
.why-num{
  font-family: var(--font-display); font-weight:700; font-size:1.6rem;
  color: var(--gold); margin-bottom:14px;
}
.why-card h3{ margin-bottom:8px; font-size:1.15rem; }
.why-card p{ font-size:.92rem; margin:0; }

@media (max-width: 920px){
  .why-grid{ grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px){
  .why-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   SERVICES GRID / CARDS
   ========================================================= */
.services-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 26px;
}
.services-grid.featured-grid > *:nth-child(1){ grid-column: span 2; grid-row: span 2; }
.service-card{
  position:relative;
  border-radius: var(--radius-md);
  overflow:hidden;
  background: var(--white);
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(11,43,34,0.06);
  transition: transform .35s ease, box-shadow .35s ease;
  display:flex; flex-direction:column;
}
.service-card:hover{ transform: translateY(-6px); box-shadow: var(--shadow-md); }
.service-card-img{
  position:relative; overflow:hidden; aspect-ratio: 4/3;
}
.services-grid.featured-grid > *:nth-child(1) .service-card-img{ aspect-ratio: auto; height:100%; min-height:320px; }
.service-card-img img{
  width:100%; height:100%; object-fit:cover;
  transition: transform .6s ease;
}
.service-card:hover .service-card-img img{ transform: scale(1.08); }
.service-card-icon{
  position:absolute; top:16px; left:16px;
  width:42px; height:42px; border-radius:50%;
  background: rgba(11,43,34,0.72);
  color: var(--light-gold);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem;
  backdrop-filter: blur(3px);
}
.service-card-body{ padding: 20px 22px 22px; flex:1; display:flex; flex-direction:column; }
.service-card-body h3{ font-size:1.12rem; margin-bottom:6px; }
.service-card-body p{ font-size:.9rem; margin-bottom:14px; flex:1; }

.services-cta{ text-align:center; margin-top:44px; }

@media (max-width: 1080px){
  .services-grid{ grid-template-columns: repeat(2, 1fr); }
  .services-grid.featured-grid > *:nth-child(1){ grid-column: span 2; grid-row: span 1; }
  .services-grid.featured-grid > *:nth-child(1) .service-card-img{ aspect-ratio: 4/3; min-height:0; }
}
@media (max-width: 560px){
  .services-grid{ grid-template-columns: 1fr; }
  .services-grid.featured-grid > *:nth-child(1){ grid-column: span 1; }
}

/* Full services listing page */
.all-services-grid{
  display:grid; grid-template-columns: repeat(3, 1fr); gap: 26px;
}
@media (max-width: 1080px){ .all-services-grid{ grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 640px){ .all-services-grid{ grid-template-columns: 1fr; } }

/* =========================================================
   PRODUCTS
   ========================================================= */
.products-grid{
  display:grid; grid-template-columns: repeat(5, 1fr); gap: 22px;
}
.product-card{
  background: var(--white); border-radius: var(--radius-md); overflow:hidden;
  border: 1px solid rgba(11,43,34,0.06); box-shadow: var(--shadow-sm);
  transition: box-shadow .3s ease, transform .3s ease;
}
.product-card:hover{ box-shadow: var(--shadow-md); transform: translateY(-5px); }
.product-card-img{ aspect-ratio: 1/1; overflow:hidden; }
.product-card-img img{ width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.product-card:hover .product-card-img img{ transform: scale(1.1); }
.product-card-body{ padding: 16px 18px 20px; }
.product-card-body h3{ font-size:1rem; margin-bottom:4px; }
.product-card-body p{ font-size:.84rem; margin-bottom:10px; }

@media (max-width: 1080px){ .products-grid{ grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 640px){ .products-grid{ grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   INVISIBLE GRILL FEATURE SPLIT SECTION
   ========================================================= */
.split-section{
  display:grid; grid-template-columns: 1fr 1fr; align-items:center; gap:0;
  border-radius: var(--radius-lg); overflow:hidden;
}
.split-media{ height:100%; min-height:420px; }
.split-media img{ width:100%; height:100%; object-fit:cover; }
.split-content{ padding: clamp(32px, 5vw, 64px); }
.split-content h2{ margin-bottom:14px; }
.feature-list{ margin: 22px 0 28px; display:flex; flex-direction:column; gap:12px; }
.feature-list li{
  display:flex; align-items:center; gap:10px;
  color: rgba(248,247,242,0.88); font-size:.98rem;
}
.feature-list .tick{
  color: var(--gold); font-weight:700; flex-shrink:0;
}

@media (max-width: 860px){
  .split-section{ grid-template-columns: 1fr; }
  .split-media{ min-height:260px; }
}

/* =========================================================
   HOME SAFETY CATEGORY TILES
   ========================================================= */
.safety-tiles{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 20px;
}
.safety-tile{
  position:relative; border-radius: var(--radius-md); overflow:hidden;
  aspect-ratio: 3/4;
}
.safety-tile img{ width:100%; height:100%; object-fit:cover; transition: transform .6s ease; }
.safety-tile:hover img{ transform: scale(1.08); }
.safety-tile::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(to top, rgba(11,43,34,0.85) 10%, rgba(11,43,34,0.05) 60%);
}
.safety-tile-text{
  position:absolute; left:0; right:0; bottom:0; z-index:2; padding: 20px;
  color: var(--off-white);
}
.safety-tile-text h3{ color: var(--off-white); font-size:1.15rem; margin-bottom:4px; }
.safety-tile-text p{ color: rgba(248,247,242,0.85); font-size:.86rem; margin:0; }

@media (max-width: 920px){ .safety-tiles{ grid-template-columns: repeat(2, 1fr); } }

/* =========================================================
   BEFORE / AFTER SLIDER
   ========================================================= */
.ba-wrap{ max-width: 860px; margin: 0 auto; }
.ba-slider{
  position:relative; width:100%; aspect-ratio: 4/3;
  border-radius: var(--radius-lg); overflow:hidden; box-shadow: var(--shadow-md);
  user-select:none;
  border: 1px solid rgba(11,43,34,0.08);
}
.ba-slider img{
  position:absolute; inset:0; width:100%; height:100%; object-fit:cover;
  pointer-events:none;
}
.ba-after{ z-index:1; }
.ba-before-wrap{
  position:absolute; inset:0; z-index:2; overflow:hidden;
  width: 50%;
}
.ba-before-wrap img{ width: 200%; max-width:none; }
.ba-slider[data-w] .ba-before-wrap img{ width: var(--ba-img-w, 200%); }
.ba-label{
  position:absolute; top:16px; z-index:3;
  background: rgba(11,43,34,0.75); color: var(--off-white);
  font-size:.76rem; font-weight:700; letter-spacing:.06em;
  padding: 6px 14px; border-radius:999px;
}
.ba-label-before{ left:16px; }
.ba-label-after{ right:16px; }
.ba-handle{
  position:absolute; top:0; bottom:0; left:50%; z-index:4;
  width:4px; background: var(--gold);
  transform: translateX(-50%);
  cursor: ew-resize;
}
.ba-handle-btn{
  position:absolute; top:50%; left:50%; transform: translate(-50%,-50%);
  width:46px; height:46px; border-radius:50%;
  background: var(--gold); color: var(--dark-forest);
  display:flex; align-items:center; justify-content:center;
  font-size:1.1rem; font-weight:700;
  box-shadow: 0 6px 18px rgba(0,0,0,0.3);
}

/* =========================================================
   PROJECTS / MASONRY
   ========================================================= */
.masonry{
  columns: 3 220px; column-gap: 22px;
}
.masonry-item{
  break-inside: avoid; margin-bottom: 22px;
  border-radius: var(--radius-md); overflow:hidden;
  position:relative; box-shadow: var(--shadow-sm);
  background: var(--white);
}
.masonry-item img{ width:100%; height:auto; transition: transform .6s ease; }
.masonry-item:hover img{ transform: scale(1.06); }
.masonry-caption{ padding: 14px 16px 18px; }
.masonry-cat{
  font-size:.72rem; font-weight:700; letter-spacing:.06em; color: var(--gold);
  text-transform: uppercase;
}
.masonry-caption h3{ font-size:1rem; margin: 4px 0 0; }

@media (max-width: 860px){ .masonry{ columns: 2 200px; } }
@media (max-width: 520px){ .masonry{ columns: 1; } }

/* =========================================================
   GALLERY + LIGHTBOX
   ========================================================= */
.gallery-filters{
  display:flex; flex-wrap:wrap; gap:10px; margin-bottom: 34px;
}
.filter-btn{
  padding: 9px 20px; border-radius:999px; font-size:.86rem; font-weight:600;
  border: 1.5px solid rgba(11,43,34,0.15); background: var(--white); color: var(--text-dark);
  transition: all .25s ease;
}
.filter-btn:hover{ border-color: var(--gold); }
.filter-btn.active{ background: var(--dark-forest); color: var(--off-white); border-color: var(--dark-forest); }

.gallery-item{ cursor: zoom-in; }
.gallery-item.is-hidden{ display:none; }

.lightbox{
  position:fixed; inset:0; background: rgba(11,43,34,0.95); z-index:1000;
  display:flex; align-items:center; justify-content:center;
  opacity:0; pointer-events:none; transition: opacity .3s ease;
}
.lightbox.is-open{ opacity:1; pointer-events:auto; }
.lightbox img{ max-width:88vw; max-height:82vh; border-radius:10px; box-shadow: 0 20px 60px rgba(0,0,0,0.5); }
.lightbox-close, .lightbox-prev, .lightbox-next{
  position:absolute; background: rgba(248,247,242,0.12); color: var(--off-white);
  border:1px solid rgba(248,247,242,0.3); border-radius:50%;
  width:48px; height:48px; display:flex; align-items:center; justify-content:center;
  font-size:1.3rem; transition: background .25s ease;
}
.lightbox-close:hover, .lightbox-prev:hover, .lightbox-next:hover{ background: rgba(248,247,242,0.25); }
.lightbox-close{ top:24px; right:24px; }
.lightbox-prev{ left:24px; top:50%; transform: translateY(-50%); }
.lightbox-next{ right:24px; top:50%; transform: translateY(-50%); }
.lightbox-caption{
  position:absolute; bottom:26px; left:0; right:0; text-align:center;
  color: rgba(248,247,242,0.85); font-size:.9rem;
}
@media (max-width: 640px){
  .lightbox-prev{ left:8px; } .lightbox-next{ right:8px; }
  .lightbox-close{ top:12px; right:12px; }
  .lightbox-prev, .lightbox-next, .lightbox-close{ width:40px; height:40px; }
}

/* =========================================================
   STATS / ABOUT PAGE
   ========================================================= */
.stats-grid{
  display:grid; grid-template-columns: repeat(4, 1fr); gap: 24px;
  margin-top: 40px;
}
.stat-card{
  text-align:center; padding: 26px 16px; border-radius: var(--radius-md);
  background: var(--white); border: 1px solid rgba(11,43,34,0.06); box-shadow: var(--shadow-sm);
}
.stat-num{
  font-family: var(--font-display); font-weight:700; color: var(--gold);
  font-size: clamp(1.8rem, 3vw, 2.4rem); display:block; margin-bottom:6px;
}
.stat-label{ font-size:.88rem; color: var(--text-muted); }

@media (max-width: 760px){ .stats-grid{ grid-template-columns: repeat(2, 1fr); } }

.about-split{
  display:grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items:center;
}
.about-split img{ border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.about-points{ display:flex; flex-direction:column; gap:20px; margin-top: 24px; }
.about-point h4{ margin-bottom:4px; font-size:1.05rem; }
.about-point p{ font-size:.92rem; margin:0; }

@media (max-width: 860px){
  .about-split{ grid-template-columns: 1fr; gap: 30px; }
}

/* Page hero banner (interior pages) */
.page-hero{
  position:relative; color: var(--off-white);
  min-height: 320px; display:flex; align-items:center;
  margin-top: calc(var(--header-h) * -1);
  padding-top: var(--header-h);
}
.page-hero-bg{ position:absolute; inset:0; }
.page-hero-bg img{ width:100%; height:100%; object-fit:cover; }
.page-hero-bg::after{
  content:""; position:absolute; inset:0;
  background: linear-gradient(120deg, rgba(11,43,34,0.9), rgba(11,43,34,0.55));
}
.page-hero-inner{ position:relative; z-index:2; padding: 60px 0; }
.page-hero h1{ color: var(--off-white); margin-bottom:8px; }
.page-hero p{ color: rgba(248,247,242,0.85); max-width:520px; margin:0; }
.breadcrumb{ font-size:.82rem; color: var(--light-gold); margin-bottom: 14px; }
.breadcrumb a{ color: rgba(248,247,242,0.75); }

/* =========================================================
   ENQUIRY CTA BAND
   ========================================================= */
.enquiry-cta{
  border-radius: var(--radius-lg);
  padding: clamp(40px, 6vw, 70px);
  text-align:center;
  position:relative; overflow:hidden;
  border: 1px solid rgba(201,162,77,0.3);
}
.enquiry-cta h2{ margin-bottom:10px; }
.enquiry-cta p{ max-width:520px; margin: 0 auto 26px; }
.enquiry-actions{ display:flex; justify-content:center; gap:16px; flex-wrap:wrap; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{ background: var(--dark-forest); color: rgba(248,247,242,0.85); padding-top: 64px; }
.footer-grid{
  display:grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px;
  padding-bottom: 44px; border-bottom: 1px solid rgba(248,247,242,0.1);
}
.footer-brand{ display:flex; gap:14px; align-items:flex-start; flex-direction: column;
}
.footer-brand img{ border-radius:50%; background:#fff; padding:2px; }
.footer-name{ font-family: var(--font-display); font-weight:700; color: var(--off-white); font-size:1.2rem; margin:0 0 4px; }
.footer-tagline{ font-size:.8rem; color: var(--light-gold); margin:0; }
.footer-col h3{ color: var(--off-white); font-size:1rem; margin-bottom:16px; font-family: var(--font-body); font-weight:600; }
.footer-col ul{ display:flex; flex-direction:column; gap:10px; }
.footer-col a{ font-size:.9rem; color: rgba(248,247,242,0.72); transition: color .2s ease; }
.footer-col a:hover{ color: var(--light-gold); }
.footer-contact li{ font-size:.88rem; color: rgba(248,247,242,0.72); }

.footer-bottom-inner{
  display:flex; align-items:center; justify-content:space-between;
  padding: 20px 24px; font-size:.82rem; color: rgba(248,247,242,0.6);
}
.back-to-top{
  width:38px; height:38px; border-radius:50%;
  background: rgba(248,247,242,0.08); color: var(--light-gold); border:1px solid rgba(248,247,242,0.2);
  font-size:1.1rem; transition: background .25s ease, transform .25s ease;
}
.back-to-top:hover{ background: rgba(248,247,242,0.18); transform: translateY(-3px); }

@media (max-width: 920px){
  .footer-grid{ grid-template-columns: 1fr 1fr; }
  .footer-brand{ grid-column: 1 / -1; }
}
@media (max-width: 560px){
  .footer-grid{ grid-template-columns: 1fr; }
}

/* =========================================================
   FLOATING BUTTONS + MOBILE BOTTOM CTA
   ========================================================= */
.floating-actions{
  position: fixed; bottom:25px; right:25px; z-index:400;
  display:flex; flex-direction:column; gap:14px;
}
.fab{
  position:relative;
  width:58px; height:58px; border-radius:50%;
  display:flex; align-items:center; justify-content:center;
  box-shadow: var(--shadow-md);
  transition: transform .25s ease;
}
.fab:hover{ transform: translateY(-3px) scale(1.05); }
.fab-whatsapp{ background:#25D366; color:#fff;     padding: 15px 0 0 13px;}
.fab-call{ background: linear-gradient(135deg, var(--light-gold), var(--gold)); color: var(--dark-forest);     padding: 15px 0 0 13px;}
.fab-whatsapp::before{
  content:""; position:absolute; inset:0; border-radius:50%;
  border: 2px solid #25D366; animation: fab-pulse 2.2s ease-out infinite;
}
@keyframes fab-pulse{
  0%{ transform: scale(1); opacity: .7; }
  100%{ transform: scale(1.6); opacity: 0; }
}
.fab-tooltip{
  position:absolute; right:70px; top:50%; transform: translateY(-50%);
  background: var(--dark-forest); color: var(--off-white);
  padding: 6px 14px; border-radius:6px; font-size:.8rem; white-space:nowrap;
  opacity:0; pointer-events:none; transition: opacity .2s ease;
}
.fab:hover .fab-tooltip{ opacity:1; }

.mobile-bottom-cta{
  display:none;
  position:fixed; bottom:0; left:0; right:0; z-index:399;
  background: var(--white); box-shadow: 0 -6px 20px rgba(11,43,34,0.12);
  padding: 10px 14px; gap:10px;
}
.mobile-cta-btn{
  flex:1; display:flex; align-items:center; justify-content:center; gap:8px;
  padding: 13px; border-radius: 10px; font-weight:700; font-size:.9rem;
}
.mobile-cta-call{ background: var(--dark-forest); color: var(--off-white); }
.mobile-cta-whatsapp{ background:#25D366; color:#fff; }

@media (max-width: 760px){
  .mobile-bottom-cta{ display:flex; }
  body{ padding-bottom: 78px; }
  .floating-actions{ bottom:80px; right:15px; }
  .fab{ width:52px; height:52px; }
  .fab-tooltip{ display:none; }
}

/* =========================================================
   MODAL / QUOTE FORM
   ========================================================= */
.modal-overlay{
  position:fixed; inset:0; z-index:900;
  background: rgba(11,43,34,0.6);
  display:flex; align-items:center; justify-content:center;
  padding: 20px;
  opacity:0; pointer-events:none; transition: opacity .3s ease;
}
.modal-overlay.is-open{ opacity:1; pointer-events:auto; }
.modal-box{
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px; width:100%; max-width: 460px; max-height: 90vh; overflow-y:auto;
  position:relative;
  transform: translateY(16px); transition: transform .3s ease;
  box-shadow: 0 30px 60px rgba(0,0,0,0.3);
}
.modal-overlay.is-open .modal-box{ transform: translateY(0); }
.modal-close{
  position:absolute; top:16px; right:16px;
  width:36px; height:36px; border-radius:50%; background: var(--off-white);
  border:none; font-size:1.4rem; color: var(--text-muted); line-height:1;
}
.modal-close:hover{ background: #eee; }
.modal-sub{ font-size:.9rem; margin-bottom: 20px; }

/* =========================================================
   FORMS (contact + quote)
   ========================================================= */
.form-row{ margin-bottom: 16px; display:flex; flex-direction:column; gap:6px; }
.form-row label{ font-size:.85rem; font-weight:600; color: var(--dark-forest); }
.form-row input, .form-row select, .form-row textarea{
  padding: 12px 14px; border-radius: 8px; border: 1.5px solid rgba(11,43,34,0.15);
  background: var(--off-white); color: var(--text-dark);
  transition: border-color .2s ease, background .2s ease;
}
.form-row input:focus, .form-row select:focus, .form-row textarea:focus{
  border-color: var(--gold); background: var(--white); outline:none;
}
.form-two-col{ display:grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px){ .form-two-col{ grid-template-columns: 1fr; } }

.contact-page-grid{ display:grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items:flex-start; }
@media (max-width: 920px){ .contact-page-grid{ grid-template-columns: 1fr; } }

.contact-form-card{
  background: var(--white); border-radius: var(--radius-lg); padding: clamp(26px, 4vw, 44px);
  box-shadow: var(--shadow-md); border: 1px solid rgba(11,43,34,0.06);
}
.contact-info-list{ display:flex; flex-direction:column; gap:22px; margin-top: 24px; }
.contact-info-item{ display:flex; gap:16px; align-items:flex-start; }
.contact-info-icon{
  width:46px; height:46px; border-radius:50%; background: var(--dark-forest); color: var(--light-gold);
  display:flex; align-items:center; justify-content:center; font-size:1.15rem; flex-shrink:0;
}
.contact-info-item h4{ margin:0 0 3px; font-size:1rem; }
.contact-info-item p, .contact-info-item a{ margin:0; font-size:.92rem; }

.form-alert{
  padding: 14px 18px; border-radius: 10px; margin-bottom: 22px; font-size:.9rem; font-weight:600;
}
.form-alert-success{ background: #E7F5EC; color:#1E6B3C; border:1px solid #B7E3C4; }
.form-alert-error{ background: #FBEAE7; color:#A13B26; border:1px solid #F3C6BB; }

/* =========================================================
   UTILITIES
   ========================================================= */
.text-center{ text-align:center; }
.mt-0{ margin-top:0; }
.visually-hidden{
  position:absolute; width:1px; height:1px; padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0); white-space:nowrap; border:0;
}


.footer-paragraph
{
  color:#FFFFFF;
  size:16px;
}