/* Custom CSS for Pesto Power Pest Control */

/* Root Variables */
:root {
    --primary-green: #28a745;
    --secondary-green: #20c997;
    --dark-green: #1e7e34;
    --light-green: #d4edda;
    --accent-green: #17a2b8;
    --text-dark: #333;
    --text-light: #666;
    --white: #ffffff;
    --light-bg: #f8f9fa;
   
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Bootstrap Override */
.btn-primary {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: var(--dark-green);
    border-color: var(--dark-green);
    transform: translateY(-2px);
}

.btn-outline-primary {
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.btn-outline-primary:hover {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
}


/* Optional styling — keep or tweak as you like */
/* Styling */
/* Announcement bar base */
.announcement-bar{
  background:#111827;
  color:#fff;
  padding:6px 0;
  font-size:14px;
}
/* Maintain consistent height so content sits middle */
.min-h{ min-height:44px; }

/* Buttons */
.contact-btn{
  border-radius:999px;
  font-weight:600;
  padding:6px 14px;
  line-height:1.2;
}

/* Social icons right & tidy */
/* Base container */
.social-wrap{ height:100%; }

/* Icon button look */
.social-link{
  --size: 36px;
  width: var(--size);
  height: var(--size);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(255,255,255,0.12); /* subtle bg */
  color: #fff;
  text-decoration: none;
  transition: background-color .25s ease, transform .2s ease, opacity .2s ease;
  opacity: 0.95;
  backdrop-filter: saturate(120%) blur(2px);
  -webkit-backdrop-filter: saturate(120%) blur(2px);
}
.social-link:hover{
  opacity: 1;
  transform: translateY(-1px);
}

/* Brand hover colors */
.social-fb:hover{ background:#1877F2; }     /* Facebook */
.social-x:hover{ background:#000000; }      /* X/Twitter */
.social-ig:hover{ 
  /* Instagram gradient-style hover */
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}
.social-in:hover{ background:#0A66C2; }     /* LinkedIn */

/* Larger size on md+ if you want a bit more presence */
@media (min-width: 768px){
  .social-link{ --size: 38px; }
}

/* Optional: focus style for keyboard users */
.social-link:focus-visible{
  outline: 2px solid #fff;
  outline-offset: 2px;
}
/* ======================================================================== */

/* Header/Navbar */
.navbar {
    /* padding: 15px 0; */
    transition: all 0.3s ease;
}

.logo-1-container {
  gap: .4rem;
  min-width: 0;
}

/* circular responsive logo */
.logo-1-img {
  width: 80px;  /* auto scale mobile → laptop */
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid #fff;
  box-shadow: 0 0 0 2px rgba(0,0,0,.06);
}

/* brand text */
.logo-1-text {
  font-weight: 700;
  letter-spacing: .2px;
  white-space: nowrap;
  font-size: clamp(16px, 2.2vw, 22px);
}

/* mobile */
@media (max-width: 576px) {
  .logo-1-container { gap: .35rem; }
  .logo-1-text { max-width: 140px; overflow: hidden; text-overflow: ellipsis; }
}

/* tablet */
@media (min-width: 577px) and (max-width: 991px) {
  .logo-1-text { max-width: 220px; overflow: hidden; text-overflow: ellipsis; }
}

/* dark navbar tweaks */
.navbar-dark .logo-1-img {
  border-color: rgba(255,255,255,.85);
  box-shadow: 0 0 0 2px rgba(255,255,255,.12);
}


.nav-link {
    font-weight: 500;
    color: var(--text-dark) !important;
    padding: 10px 15px !important;
    margin:5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-green) !important;
    background-color: var(--light-green);
}

.dropdown-menu {
    border: none;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 12px;
    padding: 10px 0;
}

.dropdown-item {
    padding: 10px 20px;
    transition: all 0.3s ease;
}

.dropdown-item:hover {
    background-color: var(--light-green);
    color: var(--primary-green);
}

.contact-btn {
    padding: 10px;
    border-radius: 25px;
    font-weight: 600;
}

@media (min-width: 992px) {
    .container, .container-lg, .container-md, .container-sm {
        max-width: 1400px;
    }
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--light-green), var(--white));
    padding: 50px 0;
}

.hero-content h1 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.hero-content .lead {
    color: var(--text-light);
    font-size: 18px;
}

.hero-buttons .btn {
    margin-bottom: 10px;
    padding: 15px 30px;
    border-radius: 25px;
    font-weight: 600;
}

.hero-icon {
    font-size: 200px;
    color: var(--primary-green);
    opacity: 0.8;
}

/* Section Titles */
.section-title {
    color: var(--text-dark);
    font-weight: bold;
    margin-bottom: 20px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-green), var(--secondary-green));
    border-radius: 2px;
}

/* About Section */

/* ================= THEME ================= */
:root{
  --a2-green:#1f7e3a;
  --a2-green2:#2dbf6a;
  --a2-ink:#142018;
  --a2-muted:#5e6f64;
  --a2-paper:#ffffff;
  --a2-tint:#f3fbf6;
  --a2-gap: clamp(18px, 3.5vw, 36px);
}

/* Section base: airy, non-congested */
.about-2-flow{
  background:
    radial-gradient(1200px 520px at 10% -10%, rgba(31,126,58,.10), transparent 55%),
    radial-gradient(1000px 500px at 110% 110%, rgba(45,191,106,.10), transparent 55%),
    var(--a2-tint);
  padding: clamp(44px, 7vw, 96px) 18px;
  color:#23352c;
}
.about-2-wrap{ max-width: 1200px; margin: 0 auto; }

/* Header */
.about-2-eyebrow{
  color: var(--a2-green); font-weight:800; letter-spacing:.14em;
  text-transform: uppercase; font-size:.8rem; margin:0 0 8px;
}
.about-2-title{
  margin: 0; color: var(--a2-ink);
  font-weight: 900; line-height: 1.12;
  font-size: clamp(26px, 5vw, 42px);
}
.about-2-title span{
  background: linear-gradient(90deg, var(--a2-green), var(--a2-green2));
  -webkit-background-clip: text; background-clip:text; color: transparent;
  text-shadow: 0 6px 18px rgba(31,126,58,.25);
}
.about-2-lead{
  margin: 10px 0 18px; color:#2a3a31;
  font-size: clamp(15px, 2.4vw, 18px);
  max-width: 65ch;
}

/* Alternating rows */
.about-2-row{
  display: grid; align-items: center; gap: var(--a2-gap);
  grid-template-columns: 1fr; margin-block: var(--a2-gap);
}
@media (min-width: 960px){
  .about-2-row{ grid-template-columns: 1.05fr .95fr; }
  .about-2-row.about-2-row--reverse{ grid-template-columns: .95fr 1.05fr; }
}

/* Media (images) */
.about-2-media{
  position: relative; border-radius: 20px; overflow: hidden;
  background:#e9f7ee; border:1px solid rgba(31,126,58,.16);
  box-shadow: 0 20px 50px rgba(31,126,58,.16);
}
.about-2-media img{
  width: 100%; height: 100%;
  object-fit: cover; object-position: center;
  aspect-ratio: 16 / 10;     /* consistent height on all screens */
  display:block;
}

/* Content */
.about-2-content{ max-width: 65ch; }
.about-2-h3{
  margin: 0 0 6px; color: var(--a2-ink);
  font-size: clamp(20px, 3.2vw, 26px); font-weight: 900;
}
.about-2-row p{ margin: 6px 0 10px; line-height: 1.75; }

/* Check list */
.about-2-check{ list-style:none; padding:0; margin:10px 0 0; display:grid; gap:8px; }
.about-2-check li{
  position: relative; padding-left: 28px; font-weight:700; color:#153422;
}
.about-2-check li::before{
  content:""; position:absolute; left:0; top:2px; width:18px; height:18px; border-radius:6px;
  background: conic-gradient(var(--a2-green), var(--a2-green2));
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/70% 70% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/70% 70% no-repeat;
}

/* Steps (IPM) */
.about-2-steps{ list-style:none; display:flex; gap:10px; padding:0; margin:10px 0 0; flex-wrap: wrap; }
.about-2-steps li{
  font-weight:800; color: var(--a2-green);
  background:#ffffff; border:1px dashed rgba(31,126,58,.35);
  border-radius:12px; padding:8px 10px; display:flex; align-items:center; gap:8px;
  box-shadow: 0 8px 18px rgba(31,126,58,.08);
}
.about-2-steps span{
  width:24px; height:24px; border-radius:8px; display:grid; place-items:center; color:#fff;
  background: linear-gradient(135deg, var(--a2-green), var(--a2-green2));
}

/* Pills (small highlights) */
.about-2-pills{ display:flex; flex-wrap:wrap; gap:8px; margin-top:10px; }
.about-2-pills span{
  display:inline-flex; align-items:center; gap:8px; padding:8px 10px;
  border-radius: 999px; font-weight:700; color:#0f2b1c;
  background:#eaf7ef; border:1px solid rgba(31,126,58,.20);
}
.about-2-pills i{
  width:14px; height:14px; border-radius:50%;
  background: radial-gradient(circle at 30% 30%, var(--a2-green2), var(--a2-green));
}

/* Tags (coverage) */
.about-2-tags{ display:flex; flex-wrap:wrap; gap:8px; margin-top:8px; padding:0; }
.about-2-tags li{ list-style:none; font-weight:700; color:#0f2b1c;
  display:inline-flex; align-items:center; gap:8px; padding:6px 10px; border-radius:999px;
  background:#fff; border:1px dashed rgba(31,126,58,.35);
}
.about-2-tags em{ width:10px; height:10px; border-radius:50%;
  background: radial-gradient(circle at 30% 30%, var(--a2-green2), var(--a2-green));
}

/* Stats strip (wide, airy) */
.about-2-stats{
  display:grid; gap: 12px; grid-template-columns: repeat(2,1fr);
  margin: calc(var(--a2-gap) - 6px) 0 var(--a2-gap);
}
@media (min-width: 720px){ .about-2-stats{ grid-template-columns: repeat(4,1fr); } }
.about-2-stats div{ text-align:center; }
.about-2-stats strong{
  display:block; font-size: clamp(20px, 3.8vw, 28px);
  color: var(--a2-green); font-weight: 900;
}
.about-2-stats small{ color:#2f3f36; }

/* CTA */
.about-2-cta{ display:flex; flex-wrap:wrap; gap:10px; justify-content:center; }
.about-2-btn{
  display:inline-block; padding:12px 18px; border-radius:12px; font-weight:800; text-decoration:none; color:#fff;
  background: linear-gradient(135deg, var(--a2-green), var(--a2-green2));
  box-shadow: 0 14px 28px rgba(31,126,58,.28), inset 0 -3px 8px rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.about-2-btn:hover{ transform: translateY(-2px); box-shadow: 0 20px 36px rgba(31,126,58,.34), inset 0 -3px 8px rgba(0,0,0,.25); }
.about-2-btn--ghost{
  background:#e7f6ed; color:#0f2b1c;
  box-shadow: 0 6px 16px rgba(31,126,58,.10) inset, 0 6px 16px rgba(31,126,58,.10);
}
.about-2-btn--ghost:hover{ background:#dff2e7; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .about-2-btn{ transition:none; }
}
/* Alternating layout controls */
.about-2-row{
  display: grid; align-items: center;
  gap: clamp(18px, 3.5vw, 36px);
  grid-template-columns: 1fr;          /* mobile: stack */
}

/* laptop/desktop: 2 columns */
@media (min-width: 960px){
  .about-2-row{ grid-template-columns: 1.05fr .95fr; }
  .about-2-row--reverse .about-2-media{ order: 2; }   /* image right */
  .about-2-row--reverse .about-2-content{ order: 1; } /* text left */
}

/* Images consistent height and non-congested */
.about-2-media{
  position: relative; overflow: hidden; border-radius: 20px;
  background:#e9f7ee; border:1px solid rgba(31,126,58,.16);
  box-shadow: 0 20px 50px rgba(31,126,58,.16);
}
.about-2-media img{
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  aspect-ratio: 16 / 10; /* same height across rows */
  display:block;
}

/* Readability */
.about-2-content{ max-width: 65ch; }
.about-2-row p{ line-height: 1.75; }

/* ============== THEME TOKENS ============== */
:root{
  --mv1-g1:#1f7e3a;        /* primary green */
  --mv1-g2:#2dbf6a;        /* accent green */
  --mv1-ink:#142018;       /* headings */
  --mv1-muted:#5e6f64;     /* sub text */
  --mv1-paper:#ffffff;
  --mv1-tint:#f3fbf6;      /* section tint */
  --mv1-gap:clamp(18px,3.5vw,36px);
}

/* Section background */
.mv-1-section{
  background:
    radial-gradient(1200px 520px at 10% -10%, rgba(31,126,58,.10), transparent 55%),
    radial-gradient(1000px 500px at 110% 110%, rgba(45,191,106,.10), transparent 55%),
    var(--mv1-tint);
  padding: clamp(44px,7vw,96px) 18px;
}

/* Grid container */
.mv-1-container{
  max-width:1200px; margin:0 auto;
  display:grid; gap:var(--mv1-gap);
  grid-template-columns: 1fr; align-items:center;
}
@media (min-width: 960px){
  .mv-1-container{ grid-template-columns: 1.05fr .95fr; }
  /* Vision alternates: image left, text right */
  .mv-1--vision .mv-1-media{ order:1; }
  .mv-1--vision .mv-1-content{ order:2; }
  /* Mission default: text left, image right (already by DOM order) */
}

/* Content */
.mv-1-content{ max-width: 65ch; }
.mv-1-eyebrow{
  color:var(--mv1-g1); font-weight:800; letter-spacing:.14em;
  text-transform:uppercase; font-size:.8rem; margin:0 0 8px;
}
.mv-1-title{
  margin:0; color:var(--mv1-ink); font-weight:900; line-height:1.12;
  font-size: clamp(26px,5vw,42px);
}
.mv-1-title span{
  background: linear-gradient(90deg, var(--mv1-g1), var(--mv1-g2));
  -webkit-background-clip:text; background-clip:text; color:transparent;
  text-shadow: 0 6px 18px rgba(31,126,58,.25);
}
.mv-1-lead{
  margin:10px 0 14px; color:#2a3a31; font-size: clamp(15px,2.4vw,18px);
  line-height:1.75;
}

/* Media (image box) */
.mv-1-media{
  position:relative; overflow:hidden; border-radius:20px;
  background:#e9f7ee; border:1px solid rgba(31,126,58,.16);
  box-shadow:0 20px 50px rgba(31,126,58,.16);
}
.mv-1-media img{
  width:100%; height:100%; object-fit:cover; object-position:center;
  aspect-ratio: 16 / 10; display:block;
}
.mv-1-badge{
  position:absolute; left:12px; top:12px; z-index:2;
  padding:8px 12px; font-weight:900; font-size:.8rem; color:#0f2b1c;
  background:#dff6e7; border:1px solid rgba(31,126,58,.28); border-radius:999px;
  box-shadow:0 10px 22px rgba(31,126,58,.18);
}

/* Pills (highlights) */
.mv-1-pills{
  display:flex; flex-wrap:wrap; gap:10px 14px; padding:0; margin:8px 0 10px; list-style:none;
}
.mv-1-pills li{
  display:inline-flex; align-items:center; gap:8px;
  padding:8px 12px; border-radius:999px; font-weight:700; color:#0f2b1c;
  background:#eaf7ef; border:1px solid rgba(31,126,58,.20);
}

/* Icon masks (SVG via CSS mask; no external libs needed) */
.mv-1-ic{ display:inline-block; width:18px; height:18px; background:conic-gradient(var(--mv1-g1), var(--mv1-g2)); }
.mv-1-ic--shield{
  -webkit-mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4 5v6c0 5 3.8 9.7 8 11 4.2-1.3 8-6 8-11V5l-8-3Z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2 4 5v6c0 5 3.8 9.7 8 11 4.2-1.3 8-6 8-11V5l-8-3Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.mv-1-ic--clock{
  -webkit-mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm1 5h-2v6l5 3 1-1.7-4-2.3V7Z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2a10 10 0 1 0 0 20 10 10 0 0 0 0-20Zm1 5h-2v6l5 3 1-1.7-4-2.3V7Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.mv-1-ic--report{
  -webkit-mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 3h9l3 3v15H6V3Zm3 5h6v2H9V8Zm0 4h6v2H9v-2Zm0 4h6v2H9v-2Z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 3h9l3 3v15H6V3Zm3 5h6v2H9V8Zm0 4h6v2H9v-2Zm0 4h6v2H9v-2Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.mv-1-ic--leaf{
  -webkit-mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 3S9 2 5 8s1 11 5 11 9-4 10-16ZM8 13c2-1 4-3 5-5'/%3E%3C/svg%3E") center/contain no-repeat;
          mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M20 3S9 2 5 8s1 11 5 11 9-4 10-16ZM8 13c2-1 4-3 5-5'/%3E%3C/svg%3E") center/contain no-repeat;
}
.mv-1-ic--target{
  -webkit-mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3v3m0 12v3m9-9h-3M6 12H3m13.5-5.5L16 8m-8 8-1.5 1.5M8 8 6.5 6.5M16 16l1.5 1.5M12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3v3m0 12v3m9-9h-3M6 12H3m13.5-5.5L16 8m-8 8-1.5 1.5M8 8 6.5 6.5M16 16l1.5 1.5M12 7a5 5 0 1 1 0 10 5 5 0 0 1 0-10Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.mv-1-ic--training{
  -webkit-mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3 2 8l10 5 10-5-10-5Zm0 7 8-4m-8 4-8-4m2 6v4l6 3 6-3v-4'/%3E%3C/svg%3E") center/contain no-repeat;
          mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 3 2 8l10 5 10-5-10-5Zm0 7 8-4m-8 4-8-4m2 6v4l6 3 6-3v-4'/%3E%3C/svg%3E") center/contain no-repeat;
}
.mv-1-ic--home{
  -webkit-mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 11 12 4l9 7v8h-6v-5H9v5H3v-8Z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask:url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 11 12 4l9 7v8h-6v-5H9v5H3v-8Z'/%3E%3C/svg%3E") center/contain no-repeat;
}

/* Micro stats (airy, no boxes) */
.mv-1-stats{
  display:grid; gap:10px; grid-template-columns: repeat(3,1fr);
  margin:8px 0 10px;
}
.mv-1-stats strong{
  display:block; color:var(--mv1-g1); font-weight:900; font-size: clamp(18px,3.4vw,24px);
}
.mv-1-stats small{ color:#2f3f36; }

/* Goals (timeline look) */
.mv-1-goals{
  list-style:none; padding:0; margin:8px 0 10px;
  display:grid; gap:10px;
}
.mv-1-goals li{
  position:relative; padding-left:38px; font-weight:700; color:#153422; line-height:1.55;
}
.mv-1-goals li span{
  position:absolute; left:0; top:0; width:26px; height:26px;
  display:grid; place-items:center; color:#fff; border-radius:8px;
  background:linear-gradient(135deg, var(--mv1-g1), var(--mv1-g2));
  box-shadow:0 8px 18px rgba(31,126,58,.20);
}

/* Buttons */
.mv-1-cta{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
.mv-1-btn{
  display:inline-block; padding:12px 18px; border-radius:12px; font-weight:800; text-decoration:none; color:#fff;
  background: linear-gradient(135deg, var(--mv1-g1), var(--mv1-g2));
  box-shadow: 0 14px 28px rgba(31,126,58,.28), inset 0 -3px 8px rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.mv-1-btn:hover{ transform: translateY(-2px); box-shadow:0 20px 36px rgba(31,126,58,.34), inset 0 -3px 8px rgba(0,0,0,.25); }
.mv-1-btn--ghost{
  background:#e7f6ed; color:#0f2b1c;
  box-shadow: 0 6px 16px rgba(31,126,58,.10) inset, 0 6px 16px rgba(31,126,58,.10);
}
.mv-1-btn--ghost:hover{ background:#dff2e7; }

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
  .mv-1-btn{ transition:none; }
}

/* contact us  */
/* ---------------- THEME TOKENS ---------------- */

/* Theme */
:root{
  --b1-green:#1f7e3a;
  --b1-green2:#2dbf6a;
}

/* Section with background image + overlay */
.banner-1{
  height: 50vh;                /* as requested */
  min-height: 280px;           /* tiny screens guardrail */
  position: relative;
  display: grid;
  place-items: center;         /* mobile: center */
  color: #fff;
  background-image:
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.55)),
    var(--banner1-image);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* Content wrapper */
.banner-1-inner{
  width: 100%;
  max-width: 1200px;
  margin:auto;
  padding: 0 18px;
  display: grid;
  gap: 6px;
  text-align: center;          /* mobile center */
  justify-items: center;
}

/* Desktop: left-bottom align */
@media (min-width: 768px){
  .banner-1{ place-items: end start; }
  .banner-1-inner{
    text-align: left;
    justify-items: start;
    padding-bottom: 28px;
  }
}

/* Breadcrumb */
.banner-1-breadcrumb ol{
  margin: 0; padding: 0; list-style: none;
  display: flex; flex-wrap: wrap; gap: 6px;
  align-items: center;
  font-weight: 700; font-size: .95rem;
}
.banner-1-breadcrumb li{ opacity: .95; }
.banner-1-breadcrumb li+li::before{
  content: "›"; margin: 0 4px; opacity: .9;
  color: #eaf7ef;
}
.banner-1-breadcrumb a{
  color: #eaf7ef; text-decoration: none;
  border-bottom: 2px solid transparent;
  transition: color .2s ease, border-color .2s ease;
}
.banner-1-breadcrumb a:hover{
  color: #fff; border-color: #fff;
}

/* Headings */
.banner-1-title{
  margin: 0;
  font-weight: 900;
  font-size: clamp(24px, 6vw, 44px);
  line-height: 1.1;
  text-shadow: 0 6px 18px rgba(0,0,0,.35);
}
.banner-1-sub{
  margin: 0;
  font-size: clamp(14px, 2.5vw, 18px);
  opacity: .95;
}

/* Optional: subtle green underline under title on large screens */
@media (min-width: 768px){
  .banner-1-title{
    position: relative; padding-bottom: 6px;
  }
  .banner-1-title::after{
    content:""; position:absolute; left:0; bottom:0; height:4px; width:80px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--b1-green), var(--b1-green2));
    box-shadow: 0 6px 16px rgba(31,126,58,.45);
  }
}

:root{
  --c1:#1f7e3a;        /* primary green */
  --c2:#2dbf6a;        /* accent */
  --ink:#142018;       /* heading text */
  --muted:#5a6b5f;     /* subtext */
  --paper:#ffffff;     /* card bg */
  --tint:#f2f8f4;      /* page bg tint */
}

/* Section bg with soft green gradients */
.contact-1-section{
  background:
    radial-gradient(900px 420px at 10% -10%, rgba(31,126,58,.10), transparent 55%),
    radial-gradient(900px 420px at 110% 110%, rgba(45,191,106,.10), transparent 55%),
    var(--tint);
  padding: clamp(48px, 7vw, 88px) 18px;
}

/* Container width */
.contact-1-container{ max-width: 1100px; margin: 0 auto; }

/* Header */
.contact-1-head{ text-align:center; margin-bottom: clamp(20px, 4vw, 36px); }
.contact-1-eyebrow{
  font-weight: 800; color: var(--c1); letter-spacing: .14em;
  text-transform: uppercase; font-size: .8rem; margin: 0 0 8px;
}
.contact-1-title{
  font-size: clamp(28px, 4.8vw, 44px);
  font-weight: 900; color: var(--ink); margin: 0;
}
.contact-1-title span{
  background: linear-gradient(90deg, var(--c1), var(--c2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.contact-1-sub{ margin: 8px 0 0; color: var(--muted); }

/* Grid (cards) */
.contact-1-grid{
  display:grid; gap: clamp(16px, 3vw, 28px);
  grid-template-columns: 1fr;            /* mobile */
}
@media (min-width:768px){ .contact-1-grid{ grid-template-columns: 1fr 1fr; } }
@media (min-width:1024px){ .contact-1-grid{ grid-template-columns: 1fr 1fr 1fr; } }

/* Card base with 3D hover */
.contact-1-card{
  background: var(--paper);
  border: 1px solid rgba(31,126,58,.14);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 24px);
  box-shadow: 0 14px 32px rgba(31,126,58,.12);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.contact-1-card:hover{
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 22px 48px rgba(31,126,58,.22);
  border-color: rgba(31,126,58,.28);
}

/* Icon circle */
.contact-1-icon{
  width: 54px; height: 54px; display:grid; place-items:center;
  color:#fff; border-radius: 14px; margin-bottom: 12px;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  box-shadow: 0 8px 18px rgba(31,126,58,.25), inset 0 -3px 8px rgba(0,0,0,.2);
}
.contact-1-icon svg{ width: 26px; height: 26px; }

/* Titles & text */
.contact-1-card-title{ margin:0 0 4px; font-size:1.1rem; font-weight:800; color:var(--ink); }
.contact-1-info{ margin:0 0 12px; color:#25372D; }
.contact-1-info a{ color:#125d2a; font-weight:700; text-decoration:none; }
.contact-1-info a:hover{ text-decoration:underline; }

/* Buttons */
.contact-1-btn{
  display:inline-block; padding:10px 16px; border-radius:12px;
  font-weight:800; text-decoration:none; color:#fff; border:0;
  background: linear-gradient(135deg, var(--c1), var(--c2));
  box-shadow: 0 12px 26px rgba(31,126,58,.28), inset 0 -3px 8px rgba(0,0,0,.2);
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease;
}
.contact-1-btn:hover{ transform: translateY(-2px); box-shadow: 0 18px 34px rgba(31,126,58,.34), inset 0 -3px 8px rgba(0,0,0,.25); }
.contact-1-btn--ghost{
  background: #e7f6ed; color:#0f2b1c;
  box-shadow: 0 6px 16px rgba(31,126,58,.10) inset, 0 6px 16px rgba(31,126,58,.10);
}
.contact-1-btn--ghost:hover{ background: #dff2e7; }
.contact-1-actions{ display:flex; gap:10px; flex-wrap:wrap; }

.contact-1-cta{
  display:flex; gap:12px; justify-content:center; margin-top: clamp(18px, 3.5vw, 28px);
}
.contact-1-btn--lg{ padding:12px 22px; font-size:1rem; }

/* Accessibility: reduced motion */
@media (prefers-reduced-motion: reduce){
  .contact-1-card, .contact-1-btn{ transition: none; }
  .contact-1-card:hover{ transform:none; }
}


/* Services Section */
.service-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(40, 167, 69, 0.15);
    border-color: var(--primary-green);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.service-icon i {
    font-size: 32px;
    color: var(--white);
}

.service-card h5 {
    color: var(--text-dark);
    margin-bottom: 15px;
    font-weight: 600;
}

.service-card p {
    color: var(--text-light);
    font-size: 14px;
}

/* Residential Section */
.residential-content h3 {
    color: var(--text-dark);
    margin-bottom: 20px;
}

.residential-content ul li {
    margin-bottom: 10px;
    color: var(--text-light);
}

.residential-icon {
    font-size: 150px;
    color: var(--primary-green);
    opacity: 0.8;
}
/* =========== THEME TOKENS =========== */
:root{
  --about-1-green: #1f7e3a;
  --about-1-green-2: #2d9f52;
  --about-1-ink: #1b1b1b;
  --about-1-bg: #f0fbf4;
}

/* Section */
.about-1-section{
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(31,126,58,.12), transparent 60%),
    radial-gradient(1000px 500px at 110% 110%, rgba(45,159,82,.10), transparent 60%),
    var(--about-1-bg);
  padding: clamp(48px, 7vw, 96px) 18px;
}

/* Container */
.about-1-container{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: clamp(20px, 4vw, 40px);
  grid-template-columns: 1fr;
}
@media (min-width: 920px){
  .about-1-container{ grid-template-columns: 1.1fr .9fr; align-items: center; }
}

/* 3D tilt base */
.about-1-tilt{
  position: relative;
  transform-style: preserve-3d;
  transition: transform .35s ease, box-shadow .35s ease;
  will-change: transform;
  border-radius: 18px;
}
.about-1-tilt:hover{
  transform: perspective(1000px) rotateX(1.5deg) rotateY(-1.5deg) translateY(-6px);
}

/* Content card */
.about-1-content{
  background: #fff;
  padding: clamp(22px, 3.2vw, 34px);
  box-shadow: 0 24px 60px rgba(31,126,58,.12);
  border: 1px solid rgba(31,126,58,.12);
}

.about-1-eyebrow{
  color: var(--about-1-green);
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-size: .8rem;
  margin: 0 0 8px;
}

.about-1-title{
  font-size: clamp(26px, 4.2vw, 42px);
  line-height: 1.15;
  color: var(--about-1-ink);
  margin: 0 0 12px;
}
.about-1-title span{
  background: linear-gradient(90deg, var(--about-1-green), var(--about-1-green-2));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.about-1-desc{
  color: #3a3a3a;
  font-size: 1rem;
  line-height: 1.7;
  margin: 10px 0;
}

/* badges list */
.about-1-badges{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 10px 16px;
  margin: 16px 0 10px;
  padding: 0;
  list-style: none;
}
@media (min-width: 600px){ .about-1-badges{ grid-template-columns: repeat(4,1fr); } }

.about-1-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  color: var(--about-1-ink);
  background: #f6fff9;
  border: 1px solid rgba(31,126,58,.12);
  padding: 10px 12px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(31,126,58,.10);
}
.about-1-icon{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px; height: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--about-1-green), var(--about-1-green-2));
  border-radius: 50%;
  box-shadow: inset 0 -2px 6px rgba(0,0,0,.2);
}

/* process flow */
.about-1-process{
  margin: 16px 0 6px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 10px;
}
@media (max-width: 640px){ .about-1-process{ grid-template-columns: repeat(3,1fr); } }

.about-1-step{
  position: relative;
  background: #ffffff;
  border: 1px dashed rgba(31,126,58,.35);
  color: var(--about-1-green);
  text-align: center;
  padding: 10px 8px;
  border-radius: 12px;
  font-weight: 700;
  box-shadow: 0 8px 18px rgba(31,126,58,.08);
}
.about-1-step span{
  display: inline-grid; place-items: center;
  width: 26px; height: 26px;
  background: var(--about-1-green);
  color: #fff; border-radius: 8px; margin-right: 8px;
}

/* CTA */
.about-1-cta{ margin-top: 10px; }
.about-1-button{
  display: inline-block;
  padding: 12px 18px;
  color: #fff; font-weight: 700; text-decoration: none;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--about-1-green), var(--about-1-green-2));
  box-shadow: 0 12px 26px rgba(31,126,58,.28), inset 0 -3px 8px rgba(0,0,0,.2);
  transition: transform .25s ease, box-shadow .25s ease;
}
.about-1-button:hover{ transform: translateY(-2px); box-shadow: 0 18px 34px rgba(31,126,58,.34), inset 0 -3px 8px rgba(0,0,0,.25); }

.about-1-note{
  margin-top: 8px; font-size: .9rem; color:#2c2c2c; opacity:.85;
}

/* Visual stack */
.about-1-visual{
  padding: clamp(6px, 1vw, 12px);
  min-height: 320px;
  margin: 10px;
}
.about-1-photo{
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 28px 60px rgba(31,126,58,.18);
  border: 1px solid rgba(31,126,58,.14);
}
.about-1-photo img{ width:100%; height: 260px; object-fit: cover; display:block; }
.about-1-photo--top{ transform: translate(28px,0) rotate(2deg); z-index:2; }
.about-1-photo--bottom{ transform: translate(-18px,-30px) rotate(-3deg) scale(.98); }

.about-1-badge-float{
  position: absolute;
  right: 12px; top: 12px;
  padding: 10px 14px;
  font-weight: 800; letter-spacing: .04em; color:#0d3b1e;
  background: #dff6e7;
  border: 1px solid rgba(31,126,58,.25);
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(31,126,58,.18);
}

/* Decorative blobs */
.about-1-blob{
  position: absolute; border-radius: 50%; filter: blur(16px);
  opacity: .6; z-index: 0;
}
.about-1-blob--one{
  width: 160px; height: 160px; left: -20px; bottom: -20px;
  background: radial-gradient(circle at 30% 30%, #b9f3c9, rgba(0,0,0,0));
}
.about-1-blob--two{
  width: 120px; height: 120px; right: -10px; top: 40%;
  background: radial-gradient(circle at 70% 70%, #a4efbf, rgba(0,0,0,0));
}

/* Accessibility: reduce motion */
@media (prefers-reduced-motion: reduce){
  .about-1-tilt, .about-1-button{ transition: none !important; transform:none !important; }
  .about-1-photo--top, .about-1-photo--bottom{ transform:none; }
}

/* Footer */
.footer {
    background: var(--text-dark) !important;
}

/* footer wrapper: center align */
.logo-1-footer {
  display: flex;
  justify-content: center;   /* horizontal center */
  align-items: center;       /* vertical align if needed */
  margin-bottom: 1rem;       /* mb-3 ka custom equivalent */
  text-align: center;
}
/* Tablet-only centering */
@media (min-width: 601px) and (max-width: 1024px) {
  .row {
    /* gutters चाहें तो थोड़ा कम रख सकते हैं */
    --bs-gutter-x: 1rem;
    --bs-gutter-y: 1rem;

    display: flex;
    flex-wrap: wrap;
    /* margin-bottom: 35px; */
    justify-content: center;   /* horizontal center */
    align-items: center;       /* vertical center (लाइन की ऊँचाई के अंदर) */
    align-content: center;     /* multiple rows को भी center करें */

    /* Bootstrap की gutter calculation ज्यों की त्यों रखें */
    margin-top: calc(-1 * var(--bs-gutter-y));
    margin-right: calc(-.5 * var(--bs-gutter-x));
    margin-left:  calc(-.5 * var(--bs-gutter-x));
  }




  /* सभी कॉलम के अंदर का कंटेंट भी center कर दें */
  .row > [class*="col"] {
    display: flex;
    flex-direction: column;
    align-items: center;   /* items center */
    justify-content: center;
    text-align: center;    /* text center */
    padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left:  calc(var(--bs-gutter-x) * .5);
    margin-top: var(--bs-gutter-y);
  }
}


/* clickable brand reset */
.logo-1-brand {
  text-decoration: none;
  color: inherit;            /* footer ke text color ko follow kare */
}

/* same responsive logo container from navbar */
.logo-1-container {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-width: 0;
}

/* circular responsive image */
.logo-1-img {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  object-fit: cover;
  display: block;
  border: 2px solid #fff;               /* optional ring */
  box-shadow: 0 0 0 2px rgba(0,0,0,.06);
}

/* brand text */
.logo-1-text {
  font-weight: 700;
  letter-spacing: .2px;
  white-space: nowrap;
  font-size: clamp(16px, 2.2vw, 22px);
}

/* small screens tweaks */
@media (max-width: 576px) {
  .logo-1-container { gap: .35rem; }
}


.footer-caption {
    color: #ffffff;
    font-size: 16px;
     font-weight: 800;
     text-align: center;
}

.footer h5 {
    color: #00ff6b;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-links li {
    margin-bottom: 8px;
}

.footer-links a {
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

.footer-contact p {
    color: #ffffff;
    margin-bottom: 10px;
    /* display: flex; */
    align-items: center;
}

.footer-contact i {
    color: var(--primary-green);
    width: 20px;
}

.newsletter-form .form-control {
    border: 1px solid #495057;
    background: #ffffff;
    color: var(--white);
    border-radius: 8px 0 0 8px;
}

.newsletter-form .form-control:focus {
    background: #495057;
    border-color: var(--primary-green);
    color: var(--white);
    box-shadow: none;
}

.newsletter-form .btn {
    border-radius: 0 8px 8px 0;
}

.footer-social a {
    color: #000000;
    text-decoration: none;
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #ffffff;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design */

/* Tablet Styles */
@media (max-width: 992px) {
    .hero-icon {
        font-size: 120px;
        margin-top: 30px;
    }
    
    .about-icon,
    .residential-icon {
        font-size: 100px;
        margin-top: 20px;
    }
    
    .section-title::after {
        left: 50%;
    }
}

/* Mobile Styles */
@media (max-width: 768px) {
    .announcement-bar .contact-info {
        justify-content: center;
        /* margin-bottom: 10px; */
    }
    
    .announcement-bar .text-end {
        text-align: center !important;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-buttons {
        text-align: center;
    }
    
    .hero-buttons .btn {
        display: block;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .hero-icon {
        font-size: 80px;
        margin-top: 20px;
    }
    
    .about-icon,
    .residential-icon {
        font-size: 80px;
        margin-top: 15px;
    }
    
    .service-card {
        margin-bottom: 20px;
    }
    
    .contact-card {
        margin-bottom: 20px;
    }
    
    .footer-contact p {
        font-size: 16px;
    }
    
    .navbar-brand .logo {
        font-size: 20px;
    }
    
    .navbar-brand .logo i {
        font-size: 24px;
    }
}

/* Small Mobile Styles */
@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
        text-align: center;
    }
    
    .hero-content .lead {
        font-size: 16px;
        text-align: center;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .service-card,
    .contact-card {
        padding: 20px;
    }
    
    .service-icon,
    .contact-icon {
        width: 60px;
        height: 60px;
    }
    
    .service-icon i,
    .contact-icon i {
        font-size: 20px;
    }
    
    .announcement-bar {
        font-size: 12px;
        padding: 5px 0;
    }
    
    .announcement-bar .contact-info span {
        display: block;
        margin: 2px 0;
    }
    
    .footer-logo {
        font-size: 20px;
        justify-content: center;
        margin-bottom: 15px;
    }
    
    .footer h5 {
        text-align: center;
        margin-bottom: 15px;
    }
    
    .footer-links {
        text-align: center;
    }
    
    .footer-contact {
        text-align: center;
    }
    
    .footer-social {
        text-align: center;
        margin-top: 15px;
    }
    
    .newsletter-form {
        text-align: center;
    }
}

/* Extra Small Mobile */
@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }
    
    .hero-buttons .btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .contact-card p {
        font-size: 13px;
        word-break: break-word;
    }
    
    .footer-contact p {
        font-size: 16px;
        flex-direction: column;
        align-items: flex-start;
    }
    
    .footer-contact i {
        margin-bottom: 5px;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
.service-card,
.contact-card {
    animation: fadeInUp 0.6s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hover Effects */
.navbar-brand:hover .logo {
    transform: scale(1.05);
    transition: transform 0.3s ease;
}

.social-icons a,
.footer-social a {
    position: relative;
    overflow: hidden;
}

.social-icons a::before,
.footer-social a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.social-icons a:hover::before,
.footer-social a:hover::before {
    width: 100%;
    height: 100%;
}

/* Accessibility */
.btn:focus,
.form-control:focus,
.nav-link:focus {
    box-shadow: 0 0 0 2px var(--primary-green);
    outline: none;
}

/* Print Styles */
@media print {
    .announcement-bar,
    .navbar,
    .footer {
        display: none;
    }
    
    .hero-section {
        background: var(--white) !important;
    }
    
    * {
        color: #000 !important;
        background: var(--white) !important;
    }
}
/* ===================================================================== */
/* whatsapp and contact button  */
.mdh-cta-dock {
  position: fixed;
  left: 20px;
  bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 1000;
}

/* Call Button */
.mdh-cta-call {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #4CAF50, #45a049);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(76, 175, 80, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
}
.mdh-cta-call:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(76, 175, 80, 0.6);
}
.mdh-cta-call:active { transform: translateY(-1px); }

/* WhatsApp Button */
.mdh-cta-wa {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  text-decoration: none;
  color: #fff;
}
.mdh-cta-wa:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
}
.mdh-cta-wa:active { transform: translateY(-1px); }

/* Icons */
.mdh-cta-ic {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Pulse on hover */
@keyframes mdhCtaPulse {
  0% { transform: scale(1); }
  50% { transform: scale(1.05); }
  100% { transform: scale(1); }
}
.mdh-cta-call:hover, .mdh-cta-wa:hover {
  animation: mdhCtaPulse 1s infinite;
}

/* Responsive */
@media (max-width: 768px) {
  .mdh-cta-dock { left: 15px; bottom: 15px; gap: 12px; }
  .mdh-cta-call, .mdh-cta-wa { width: 50px; height: 50px; }
  .mdh-cta-ic { width: 20px; height: 20px; }
}
@media (max-width: 480px) {
  .mdh-cta-dock { left: 10px; bottom: 10px; gap: 10px; }
  .mdh-cta-call, .mdh-cta-wa { width: 45px; height: 45px; }
  .mdh-cta-ic { width: 18px; height: 18px; }
}
@media (min-width: 769px) and (max-width: 1024px) {
  .mdh-cta-dock { left: 25px; bottom: 25px; }
}
/* ==================================================
banner  */
/* ================= Base (global defaults) ================= */
* { box-sizing: border-box; }
html, body { margin:0; padding:0; }

.hero-wrapper{
  position: relative;
  width: 100%;
  height: 90vh;              /* desktop default */
  min-height: 520px;
  overflow: hidden;
  isolation: isolate;
}

/* Common video */
.hero-video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  filter: saturate(1.05) contrast(1.05);
}

/* Desktop video visible by default; mobile reel hidden by default */
.hero-video--desktop{ display:block; }
.hero-video--mobile{ display:none; }

/* Overlay */
.hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.45));
  z-index:-1;
}

/* Content */
.hero-content{
  position: relative;
  height: 100%;
  padding: clamp(16px, 3vw, 48px);
  display: grid;
  place-content: center;
  text-align: center;
  color: #fff;
  gap: 12px;
}

.hero-title{
  font-size: clamp(28px, 5vw, 64px);
  line-height: 1.1;
  margin: 0;
  font-weight: 800;
  letter-spacing: .5px;
}

.hero-subtitle{
  font-size: clamp(14px, 2.2vw, 20px);
  opacity: .95;
  margin: 0 0 10px 0;
}

.hero-cta{
  display: inline-block;
  padding: 12px 22px;
  border-radius: 999px;
  background: #ffe100;
  color: #111;
  font-weight: 700;
  text-decoration: none;
  transition: transform .2s ease, box-shadow .2s ease;
  box-shadow: 0 8px 24px rgba(0,0,0,.25);
}
.hero-cta:hover{ transform: translateY(-2px); box-shadow: 0 12px 28px rgba(0,0,0,.35); }

/* ==========================================================
   BREAKPOINTS
   - Mobile:        up to 576px
   - Tablet:        577px–1024px
   - Laptop/Desktop:1025px–1439px (base styles already)
   - Large Desktop: 1440px+
   ========================================================== */

/* Base wrapper */
.hero-wrapper {
  position: relative;
  width: 100%;
  height: 100vh;        /* Full viewport height */
  overflow: hidden;
}

/* All videos share same fit */
.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: none;        /* default: hide; we enable per breakpoint */
}

/* Mobile default (<600px) */
.hero-video--mobile { display: block; }

/* Tablet (600px–1023px) */
@media (min-width: 600px) {
  .hero-video { display: none; }
  .hero-video--tablet { display: block; }
}

/* Desktop (1024px–1439px) */
@media (min-width: 1024px) {
  /* .hero-video { display: none; } */
  .hero-video--desktop { display: block; }
}

/* Large Desktop / 4K (>=1440px) */
@media (min-width: 1440px) {
  .hero-video { display: none; }
  .hero-video--lgdesk { display: block; }
}

/* Optional overlay/content if you un-comment in HTML */
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,0.45), rgba(0,0,0,0.15));
}
.hero-content {
  position: absolute; inset-inline: 0; bottom: 8vh;
  display: grid; place-items: center;
  color: #fff; text-align: center; padding: 0 1rem;
}
.hero-title { font-size: clamp(1.8rem, 3.5vw, 4rem); font-weight: 700; }
.hero-cta {
  display: inline-block; margin-top: 1rem; padding: .85rem 1.25rem;
  background: #ffd200; color: #111; border-radius: 999px; font-weight: 600;
}

/* Accessibility: respect reduced motion */
@media (prefers-reduced-motion: reduce) {
  .hero-video { animation: none; }
  .hero-video { display: none !important; }   /* Hide videos */
  .hero-wrapper { background: url('assets/images/hero-desktop.jpg') center/cover no-repeat; }
}
/* home page services  */
/* Section styling */
.service-1-section {
  background: #f9fdf9;
  padding: 50px 20px;
  text-align: center;
}

.service-1-heading {
  font-size: 2rem;
  color: #2d7a2f;
  margin-bottom: 40px;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 700;
}

/* Grid Layout */
.service-1-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(1, 1fr); /* default mobile */
}

/* Tablet */
@media (min-width: 600px) {
  .service-1-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* Laptop/Desktop */
@media (min-width: 1024px) {
  .service-1-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* Card Style */
.service-1-card {
  position: relative;
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 6px 15px rgba(0,0,0,0.1);
  transition: transform .3s ease, box-shadow .3s ease;
  cursor: pointer;
}
.service-1-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 35px rgba(0,128,0,.25);
}

.service-1-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transition: filter .3s ease;
}
.service-1-card:hover img {
  filter: brightness(.9);
}

.service-1-card h3 {
  margin: 15px 0 10px;
  font-size: 1.2rem;
  color: #1f5d1f;
  font-weight: 600;
  padding: 0 15px;
}

.service-1-card p {
  font-size: .9rem;
  color: #444;
  padding: 0 15px 16px;
}

/* Read More Button */
.service-1-btn {
  display: inline-block;
  padding: 10px 18px;
  background: #2d7a2f;
  color: #fff;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  box-shadow: 0 6px 16px rgba(0,128,0,.25);
  transition: transform .25s ease, opacity .25s ease, box-shadow .25s ease;
  margin: 0 0 20px;

  opacity: 0;             /* hidden initially */
  transform: translateY(10px);
  pointer-events: none;
}

/* Reveal on hover */
.service-1-card:hover .service-1-btn {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.service-1-btn:hover {
  background: #1f5d1f;
  box-shadow: 0 10px 22px rgba(0,128,0,.35);
}

/* Always show button on touch devices */
@media (hover:none), (pointer:coarse), (max-width:1023px) {
  .service-1-btn {
    opacity: 1;
    transform: none;
    pointer-events: auto;
  }
}
/* Ensure image can zoom inside rounded card */
.service-1-card {
  position: relative;
  overflow: hidden;                 /* zoom image won't spill out */
  border-radius: 12px;
  transform-style: preserve-3d;
  backface-visibility: hidden;
}

/* Image: smooth zoom */
.service-1-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  transform: scale(1);              /* base */
  transition: transform .45s ease, filter .3s ease;
  will-change: transform;           /* perf hint */
}

/* On hover: zoom in + slight darken for contrast */
.service-1-card:hover img {
  transform: scale(1.08);           /* adjust 1.05–1.12 to taste */
  filter: brightness(.92);
}

/* Keep your existing button reveal + card lift */
.service-1-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 18px 35px rgba(0,128,0,.25);
}

/* Touch devices: no hover zoom (optional) */
@media (hover:none), (pointer:coarse) {
  .service-1-card img { transform: none !important; }
}
/* =============== COUNTER SECTION THEME =============== */
.counter-1-section{
  /* Section background (subtle green tint) */
  background: #f2f7f3;
  padding: 40px 16px;
}

/* Responsive grid:
   - Mobile: 2 columns
   - Tablet/Desktop: 4 columns
   Change gaps and max-width as per your layout */
.counter-1-grid{
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  gap: 20px;
  grid-template-columns: repeat(2, 1fr);   /* mobile */
}
@media (min-width: 768px){
  .counter-1-grid{ grid-template-columns: repeat(4, 1fr); }
}

/* Card / Item styles (3D lift on hover) */
.counter-1-item{
  background: #fff;
  border-radius: 14px;
  padding: 26px 16px;
  text-align: center;
  border: 1px solid rgba(31,126,58,.10);   /* greenish hairline */
  box-shadow: 0 6px 16px rgba(0,0,0,.06);
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
  will-change: transform;
}
.counter-1-item:hover{
  transform: translateY(-6px) scale(1.02);
  box-shadow: 0 14px 28px rgba(31,126,58,.22);
  border-color: rgba(31,126,58,.25);
}

/* Number style */
.counter-1-number{
  display: block;
  font-size: clamp(28px, 6vw, 48px);  /* responsive */
  font-weight: 800;
  color: #1f7e3a;                     /* main green */
  letter-spacing: .5px;
  line-height: 1;
  margin-bottom: 8px;
}

/* Label */
.counter-1-label{
  font-size: 14px;
  color: #2b2b2b;
  opacity: .9;
}

/* Respect user 'reduced motion' preference */
@media (prefers-reduced-motion: reduce){
  .counter-1-item{ transition: none; }
}

/* ===== Premium Special Services (icons only) ===== */
:root{
  --sp1:#1f7e3a; --sp2:#2dbf6a; --ink:#132118; --muted:#5a6b5f; --paper:#fff; --tint:#f3fbf6;
}

.special-1-section{
  background:
    radial-gradient(1200px 540px at 10% -10%, rgba(31,126,58,.10), transparent 55%),
    radial-gradient(1000px 520px at 110% 110%, rgba(45,191,106,.10), transparent 55%),
    var(--tint);
  padding: clamp(44px, 7vw, 92px) 18px;
}
.special-1-container{ max-width:1200px; margin:0 auto; }
.special-1-head{ text-align:center; }
.special-1-eyebrow{ color:var(--sp1); font-weight:800; letter-spacing:.14em; text-transform:uppercase; font-size:.8rem; margin:0 0 8px; }
.special-1-title{ margin:0; color:var(--ink); font-size:clamp(26px,4.8vw,42px); font-weight:900; }
.special-1-underline{ display:inline-block; width:120px; height:6px; border-radius:999px; margin:10px auto 6px; background:linear-gradient(90deg,var(--sp1),var(--sp2)); box-shadow:0 6px 18px rgba(31,126,58,.35); }
.special-1-sub{ color:var(--muted); margin:6px 0 0; }

.special-1-grid{ margin-top:clamp(18px,4vw,28px); display:grid; gap:clamp(14px,3vw,22px); grid-template-columns:repeat(2,1fr); }
@media (min-width:720px){ .special-1-grid{ grid-template-columns:repeat(3,1fr); } }
@media (min-width:1100px){ .special-1-grid{ grid-template-columns:repeat(5,1fr); } }

.special-1-item{
  position:relative; display:flex; flex-direction:column; align-items:center; text-align:center; gap:10px;
  background:var(--paper); border:1px solid rgba(31,126,58,.14); border-radius:18px; padding:18px 14px; text-decoration:none; color:inherit;
  box-shadow:0 14px 30px rgba(31,126,58,.12);
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.special-1-item:hover{ transform:translateY(-8px) scale(1.01); box-shadow:0 24px 52px rgba(31,126,58,.22); border-color:rgba(31,126,58,.30); }
.special-1-item::after{
  content:""; position:absolute; inset:0; border-radius:18px; padding:2px; opacity:0; pointer-events:none;
  background:linear-gradient(135deg,rgba(31,126,58,0),rgba(45,191,106,.35));
  -webkit-mask:linear-gradient(#0000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite:xor; mask-composite:exclude; transition:opacity .35s ease;
}
.special-1-item:hover::after{ opacity:1; }

/* ICONS — no background capsule, just gradient icon */
.special-1-icon{ display:grid; place-items:center; line-height:1; }
.special-1-icon i{
  font-size: clamp(40px, 6vw, 56px);
  background: linear-gradient(135deg, var(--sp1), var(--sp2));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;  /* gradient-colored icon */
  transition: transform .35s ease, filter .3s ease;
  filter: drop-shadow(0 6px 12px rgba(31,126,58,.18));
}
.special-1-item:hover .special-1-icon i{ transform: translateY(-2px) scale(1.06); }

/* Titles / desc / cta */
.special-1-name{ margin:2px 0 0; color:var(--ink); font-weight:900; line-height:1.25; font-size:clamp(14px,2.7vw,18px); }
.special-1-desc{ margin:4px 0 0; color:#2a3a31; font-size:.9rem; opacity:.9; }
.special-1-cta{ margin-top:6px; font-weight:800; font-size:.9rem; color:var(--sp1); transition:transform .2s ease, color .2s ease; }
.special-1-item:hover .special-1-cta{ transform:translateX(3px); color:var(--sp2); }

/* Compact on tiny screens */
@media (max-width:420px){ .special-1-desc{ display:none; } }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){ .special-1-item, .special-1-icon i{ transition:none !important; } }


/* ================= THEME ================= */
:root{
  --rv1:#1f7e3a;  /* primary green */
  --rv2:#2dbf6a;  /* accent green */
  --ink:#142018;  /* headings */
  --muted:#5a6b5f;
  --paper:#fff;   /* card bg */
  --tint:#f3fbf6; /* section tint */
  --gap: 16px;    /* track gap */
}

/* Section BG */
.review-1-section{
  background:
    radial-gradient(1200px 520px at 10% -10%, rgba(31,126,58,.10), transparent 55%),
    radial-gradient(1000px 500px at 110% 110%, rgba(45,191,106,.10), transparent 55%),
    var(--tint);
  padding: clamp(44px, 7vw, 88px) 18px;
}
.review-1-container{ max-width:1200px; margin:0 auto; }

/* Header */
.review-1-head{ text-align:center; margin-bottom: clamp(16px,4vw,24px); }
.review-1-eyebrow{ color:var(--rv1); font-weight:800; letter-spacing:.14em; text-transform:uppercase; font-size:.8rem; margin:0 0 8px; }
.review-1-title{ margin:0; color:var(--ink); font-weight:900; font-size:clamp(26px,4.6vw,40px); }
.review-1-sub{ color:var(--muted); margin:6px 0 0; }

/* Carousel wrapper */
.review-1-carousel{ position:relative; }

/* Arrows */
.review-1-nav{
  position:absolute; top:50%; transform:translateY(-50%);
  z-index:5; width:42px; height:42px; border-radius:50%;
  border:1px solid rgba(31,126,58,.25);
  background:#fff; color:#0f2b1c; font-size:24px; font-weight:900;
  display:grid; place-items:center; cursor:pointer;
  box-shadow:0 10px 24px rgba(31,126,58,.18);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.review-1-nav:hover{ transform:translateY(-50%) scale(1.06); background:linear-gradient(135deg,var(--rv1),var(--rv2)); color:#fff; }
.review-1-nav--prev{ left:-6px; }
.review-1-nav--next{ right:-6px; }

/* Track */
.review-1-track{
  display:flex; gap: var(--gap);
  overflow-x:auto; scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding: 6px 6px 10px;
  scrollbar-width: thin; scrollbar-color: rgba(31,126,58,.35) transparent;
}
.review-1-track::-webkit-scrollbar{ height: 8px; }
.review-1-track::-webkit-scrollbar-thumb{ background: rgba(31,126,58,.35); border-radius: 999px; }

/* Cards per view (responsive) */
.review-1-card{
  scroll-snap-align: start;
  flex: 0 0 calc(100% - var(--gap));     /* mobile: 1 per view */
  max-width: 100%;
  background: var(--paper);
  border: 1px solid rgba(31,126,58,.14);
  border-radius: 16px;
  padding: 12px;
  box-shadow: 0 14px 32px rgba(31,126,58,.12);
}
@media (min-width:600px){
  .review-1-card{ flex-basis: calc(50% - var(--gap)); }   /* tablet: 2 */
}
@media (min-width:900px){
  .review-1-card{ flex-basis: calc(33.333% - var(--gap)); } /* laptop: 3 */
}
@media (min-width:1200px){
  .review-1-card{ flex-basis: calc(25% - var(--gap)); }    /* desktop: 4 */
}

/* Bubble */
.review-1-bubble{
  position: relative;
  background: #f9fbfa;
  border: 1px solid rgba(31,126,58,.18);
  border-radius: 14px;
  padding: 14px 14px 12px;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.5);
}
.review-1-bubble::after{
  content:""; position:absolute; left:22px; bottom:-10px;
  width: 20px; height: 20px; transform: rotate(45deg);
  background:#f9fbfa; border: 1px solid rgba(31,126,58,.18); border-top:0; border-left:0;
}

/* Stars + G badge */
.review-1-stars{ display:flex; align-items:center; gap:6px; margin-bottom:8px; }
.review-1-star{
  width:16px; height:16px; display:inline-block; border-radius:3px;
  background: conic-gradient(#ffd200, #ffb800, #ffd200);
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='m12 17.27 6.18 3.73-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73-1.64 7.03L12 17.27Z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23000' d='m12 17.27 6.18 3.73-1.64-7.03L22 9.24l-7.19-.61L12 2 9.19 8.63 2 9.24l5.46 4.73-1.64 7.03L12 17.27Z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.review-1-g{
  margin-left:auto; font-weight:900; font-size:.9rem; line-height:1;
  display:inline-grid; place-items:center; width:22px; height:22px; border-radius:50%;
  color:#fff; background: linear-gradient(135deg, #4285F4, #0F6CFB);
}

/* Text */
.review-1-bubble p{ margin:0; color:#223229; line-height:1.55; font-size:.95rem; }

/* Author */
.review-1-author{
  display:flex; align-items:center; gap:10px; margin-top:14px;
}
.review-1-avatar{
  width:36px; height:36px; border-radius:50%; display:grid; place-items:center; color:#fff; font-weight:800;
  background: var(--clr, #1f7e3a);
}
.review-1-author h4{ margin:0; font-size:.98rem; color:#102217; font-weight:800; }
.review-1-author time{ display:block; font-size:.8rem; color:#5f7064; }

/* Pause animation on hover (for accessibility) */
.review-1-carousel:hover .review-1-track{ scroll-behavior: auto; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .review-1-track{ scroll-behavior: auto !important; }
  .review-1-nav{ transition:none; }
}

/* =============================================================================== */
/* contact us  */
/* -------- Theme -------- */
:root{
  --lead1-green:#1f7e3a;
  --lead1-green2:#2dbf6a;
  --lead1-ink:#142018;
  --lead1-muted:#5b6c60;
  --lead1-paper:#ffffff;
  --lead1-tint:#f2f8f4;
}

/* Section bg */
.lead-1-section{
  background:
    radial-gradient(900px 420px at 10% -10%, rgba(31,126,58,.10), transparent 55%),
    radial-gradient(900px 420px at 110% 110%, rgba(45,191,106,.10), transparent 55%),
    var(--lead1-tint);
  padding: clamp(40px, 6vw, 80px) 16px;
}

/* Wrapper: two equal columns on large screens */
.lead-1-wrapper{
  
  align-items: center;
  max-width: 1100px; margin:0 auto;
  display:grid; grid-template-columns: 1fr; gap: 16px;
  border-radius: 20px; overflow:hidden;
  border:1px solid rgba(31,126,58,.18);
  box-shadow: 0 18px 38px rgba(31,126,58,.14);
  background: var(--lead1-paper);
}

/* >= 992px: 2 columns & equal height */
@media (min-width: 992px){
  .lead-1-wrapper{
    grid-template-columns: 1fr 1fr;
    min-height: 520px; /* ensures both sides same height */
  }
}

/* Left media: image fills available height */
.lead-1-media{ position: relative; background:#e7f5ec;    align-items: center;
    display: flex
; }
.lead-1-media img{
  width:100%; height:100%; object-fit:cover; display:block;
  aspect-ratio: 16 / 11;           /* mobile/tablet nice ratio */
}
@media (min-width: 992px){
  .lead-1-media img{ aspect-ratio: auto; } /* use equal height on large */
}

/* Right form */
.lead-1-form{
  display:flex; flex-direction:column; justify-content:center;
  padding: clamp(18px, 3.5vw, 28px);
}
.lead-1-title{
  margin:0; color:var(--lead1-ink);
  font-size: clamp(24px, 4.5vw, 36px); font-weight:900;
}
.lead-1-sub{
  margin:6px 0 16px; color:var(--lead1-muted); font-weight:600;
}

/* Form grid */
.lead-1-grid{
  display:grid; gap:12px;
  grid-template-columns: 1fr;       /* mobile */
}
@media (min-width:600px){ .lead-1-grid{ grid-template-columns: 1fr 1fr; } }
.lead-1-field--full{ grid-column: 1 / -1; }

.lead-1-field{ display:flex; flex-direction:column; gap:6px; }
.lead-1-field span{ font-weight:700; color:#203228; font-size:.9rem; }

.lead-1-field input,
.lead-1-field select,
.lead-1-field textarea{
  width:100%; border:1px solid rgba(31,126,58,.25); border-radius:12px;
  padding:12px 14px; font-size:0.95rem; color:#1d2721; background:#fff;
  outline:none; transition: box-shadow .22s ease, border-color .22s ease;
  box-shadow: inset 0 4px 12px rgba(31,126,58,.05);
}
.lead-1-field input:focus,
.lead-1-field select:focus,
.lead-1-field textarea:focus{
  border-color: var(--lead1-green2);
  box-shadow: 0 0 0 4px rgba(45,191,106,.18);
}

/* Submit */
.lead-1-submit{
  margin-top: 8px; align-self:center;
  padding: 12px 18px; border:0; cursor:pointer;
  color:#fff; font-weight:800; border-radius:12px;
  background: linear-gradient(135deg, var(--lead1-green), var(--lead1-green2));
  box-shadow: 0 14px 28px rgba(31,126,58,.28), inset 0 -3px 8px rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.lead-1-submit:hover{
  transform: translateY(-2px);
  box-shadow: 0 20px 36px rgba(31,126,58,.34), inset 0 -3px 8px rgba(0,0,0,.25);
}

.lead-1-note{ margin-top:6px; color:#5f7064; font-size:.8rem; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .lead-1-submit, .lead-1-wrapper{ transition:none; }
}
/* ===== Lead-1 (more compact) — paste AFTER your current CSS ===== */

/* Section padding कम */
.lead-1-section{
  padding: clamp(20px, 3.5vw, 44px) 12px;
}

/* Grid gap थोड़ा कम */
.lead-1-wrapper{ gap: 12px; }

/* Desktop/Laptop पर overall height और कम */
@media (min-width: 992px){
  .lead-1-wrapper{
    min-height: 360px;   /* पहले 520px था */
  }
}

/* Image ratio shallow so total height ↓ */

/* Mobile/Tablet पर image की ऊँचाई भी कम करें (exact control) */

@media (max-width: 768px){
  .lead-1-media img{
    /* height: 300px;       जरूरत हो तो 200px कर सकते हो */
    aspect-ratio: auto;
  }
}
/* Tablets (portrait & landscape) */


/* Form padding + spaces छोटे */
.lead-1-form{ padding: clamp(12px, 2.5vw, 18px); }
.lead-1-grid{ gap: 10px; }
.lead-1-title{ font-size: clamp(22px, 3.8vw, 30px); }
.lead-1-sub{ margin: 4px 0 10px; }
.lead-1-submit{ margin-top: 4px; }


/* ======================================================================== */
/* ================= THEME TOKENS ================= */
:root{
  --g1:#1f7e3a;   /* primary green */
  --g2:#2dbf6a;   /* accent green */
  --ink:#172019;
  --muted:#5a6b5f;
  --paper:#ffffff;
  --tint:#f2f8f4;
}

/* Section background with soft green gradients */
.enquiry-1-section{
  background:
    radial-gradient(900px 420px at 10% -10%, rgba(31,126,58,.10), transparent 55%),
    radial-gradient(900px 420px at 110% 110%, rgba(45,191,106,.10), transparent 55%),
    var(--tint);
  padding: clamp(40px, 6vw, 72px) 16px;
}

/* Grid: mobile 1, tablet 2, desktop 3 */
.enquiry-1-container{
  max-width: 1200px; margin:0 auto;
  display:grid; gap: clamp(16px, 3vw, 28px);
  grid-template-columns: 1fr;
}
@media (min-width: 768px){ .enquiry-1-container{ grid-template-columns: 1fr 1fr; } }
@media (min-width: 1080px){ .enquiry-1-container{ grid-template-columns: 1fr 1fr 1fr; } }

/* Base card with 3D lift */
.enquiry-1-card{
  background: var(--paper);
  border: 1px solid rgba(31,126,58,.14);
  border-radius: 18px;
  padding: clamp(18px, 3vw, 24px);
  box-shadow: 0 14px 32px rgba(31,126,58,.12);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.enquiry-1-card:hover{
  transform: translateY(-8px) scale(1.01);
  box-shadow: 0 22px 48px rgba(31,126,58,.22);
  border-color: rgba(31,126,58,.28);
}

/* Titles & sub */
.enquiry-1-title{
  margin: 0 0 6px; color:var(--ink);
  font-size: clamp(20px, 3.2vw, 24px); font-weight:800;
}
.enquiry-1-sub{ margin:0 0 14px; color:var(--muted); font-weight:600; }

/* Bullet list with green tick */
.enquiry-1-bullets{ list-style:none; margin:0 0 16px; padding:0; display:grid; gap:8px; }
.enquiry-1-bullets li{
  position:relative; padding-left:28px; text-align:left; color:#2a2a2a;
}
.enquiry-1-bullets li::before{
  content:""; position:absolute; left:0; top:4px; width:18px; height:18px;
  border-radius:50%;
  background: conic-gradient(from 180deg at 50% 50%, var(--g1), var(--g2));
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 70% 70% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center / 70% 70% no-repeat;
}

/* WhatsApp button */
.enquiry-1-cta-whatsapp{
  display:inline-flex; align-items:center; gap:10px;
  margin-top:8px; padding:12px 16px;
  color:#fff; text-decoration:none; font-weight:800;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  border-radius: 12px;
  box-shadow: 0 12px 24px rgba(31,126,58,.25), inset 0 -3px 8px rgba(0,0,0,.2);
  transition: transform .25s ease, box-shadow .25s ease;
}
.enquiry-1-cta-whatsapp:hover{ transform: translateY(-2px); box-shadow:0 18px 36px rgba(31,126,58,.35), inset 0 -3px 8px rgba(0,0,0,.25); }
.enquiry-1-cta-whatsapp svg{ width:20px; height:20px; }

/* Showcase column */
.enquiry-1-ribbon{
  display:inline-block; font-weight:800; color:#0f2b1c;
  background:#e1f7ea; border:1px solid rgba(31,126,58,.25);
  padding:8px 14px; border-radius:999px; margin-bottom:12px;
}
.enquiry-1-visual{ position:relative; border-radius:16px; overflow:hidden; margin-bottom:14px; }
.enquiry-1-visual img{
  width:100%; height:200px; object-fit:cover;
  transition: transform .5s ease, filter .3s ease;
}
.enquiry-1-visual:hover img{ transform: scale(1.06); filter: brightness(.95); }
.enquiry-1-stamp{
  position:absolute; right:10px; top:10px; font-weight:900; font-size:.8rem;
  background:#dff6e7; color:#0f2b1c; border:1px solid rgba(31,126,58,.28);
  padding:6px 10px; border-radius:999px; box-shadow:0 8px 18px rgba(31,126,58,.18);
}

/* Showcase bullet points with bug icon */
.enquiry-1-points{ list-style:none; margin:0; padding:0; display:grid; gap:8px; }
.enquiry-1-points li{
  position:relative; padding-left:28px; font-weight:700; color:#233328;
}
.enquiry-1-points li::before{
  content:""; position:absolute; left:0; top:4px; width:18px; height:18px;
  background: radial-gradient(circle at 30% 30%, var(--g2), var(--g1));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M4 12h3v2H4v-2Zm13 0h3v2h-3v-2ZM8 5l2 2H6l2-2Zm8 0l2 2h-4l2-2ZM7 10a5 5 0 0 1 10 0v6a5 5 0 0 1-10 0v-6Z'/%3E%3C/svg%3E") center/contain no-repeat;
          mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M4 12h3v2H4v-2Zm13 0h3v2h-3v-2ZM8 5l2 2H6l2-2Zm8 0l2 2h-4l2-2ZM7 10a5 5 0 0 1 10 0v6a5 5 0 0 1-10 0v-6Z'/%3E%3C/svg%3E") center/contain no-repeat;
  border-radius:4px;
}

/* Form */
.enquiry-1-formgrid{
  display:grid; gap:12px;
  grid-template-columns: 1fr 1fr;
}
.enquiry-1-field{ display:flex; flex-direction:column; gap:6px; }
.enquiry-1-field--full{ grid-column: 1 / -1; }

.enquiry-1-field span{ font-weight:700; color:#2b3a31; font-size:.9rem; }

.enquiry-1-field input,
.enquiry-1-field textarea{
  width:100%; border:1px solid rgba(31,126,58,.25); border-radius:12px;
  padding:12px 14px; font-size:0.95rem; color:#1d2721; background:#fff;
  outline:none; transition: box-shadow .25s ease, border-color .25s ease, transform .12s ease;
  box-shadow: 0 4px 12px rgba(31,126,58,.06) inset;
}
.enquiry-1-field input:focus,
.enquiry-1-field textarea:focus{
  border-color: var(--g2);
  box-shadow: 0 0 0 4px rgba(45,191,106,.15), 0 8px 20px rgba(31,126,58,.12);
}

.enquiry-1-submit{
  grid-column: 1 / -1;
  padding: 12px 18px; border:0; cursor:pointer;
  color:#fff; font-weight:800; border-radius:12px;
  background: linear-gradient(135deg, var(--g1), var(--g2));
  box-shadow: 0 12px 26px rgba(31,126,58,.28), inset 0 -3px 8px rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease;
}
.enquiry-1-submit:hover{ transform: translateY(-2px); box-shadow:0 18px 34px rgba(31,126,58,.34), inset 0 -3px 8px rgba(0,0,0,.25); }

.enquiry-1-note{ grid-column: 1 / -1; color:#5c6e63; font-size:.8rem; }

/* Responsive */
@media (max-width: 599px){
  .enquiry-1-formgrid{ grid-template-columns: 1fr; }
}
/* map  */
/* ---------------- Theme ---------------- */
:root{
  --m1:#1f7e3a;       /* primary green */
  --m2:#2dbf6a;       /* accent green */
  --ink:#142018;      /* headings */
  --muted:#5a6b5f;    /* sub text */
  --paper:#ffffff;    /* card bg */
  --tint:#f2f8f4;     /* section bg tint */
}

/* Section background */
.map-1-section{
  background:
    radial-gradient(900px 420px at 10% -10%, rgba(31,126,58,.10), transparent 55%),
    radial-gradient(900px 420px at 110% 110%, rgba(45,191,106,.10), transparent 55%),
    var(--tint);
  padding: clamp(40px, 6vw, 80px) 16px;
}
.map-1-container{ max-width: 1200px; margin:0 auto; }

/* Header */
.map-1-head{ text-align:center; margin-bottom: clamp(18px, 4vw, 28px); }
.map-1-title{
  font-size: clamp(26px, 4.8vw, 40px);
  font-weight: 900; color: var(--ink); margin:0;
}
.map-1-title span{
  background: linear-gradient(90deg, var(--m1), var(--m2));
  -webkit-background-clip: text; background-clip:text; color:transparent;
}
.map-1-sub{ margin:6px 0 0; color: var(--muted); }

/* Card (grid) */
.map-1-card{
  position: relative;
  display: grid;
  grid-template-columns: 1fr;                /* mobile */
  gap: 0;
  background: var(--paper);
  border: 1px solid rgba(31,126,58,.16);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 16px 36px rgba(31,126,58,.14);
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
@media (min-width: 992px){
  .map-1-card{ grid-template-columns: 2fr 1fr; min-height: 420px; }
}

/* Fancy border ring on hover */
.map-1-card::after{
  content:""; position:absolute; inset:0; border-radius:18px;
  padding:2px; pointer-events:none; opacity:0;
  background: linear-gradient(135deg, rgba(31,126,58,.0), rgba(45,191,106,.35));
  -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude;
}
.map-1-card:hover{
  transform: translateY(-6px);
  border-color: rgba(31,126,58,.35);
  box-shadow: 0 24px 54px rgba(31,126,58,.22);
}
.map-1-card:hover::after{ opacity: 1; }

/* Map frame (responsive) */
.map-1-frame{ position: relative; background:#e7f5ec; }
.map-1-frame iframe{
  position:absolute; inset:0; width:100%; height:100%; border:0;
}
/* Keep good height on small screens */
.map-1-frame{ aspect-ratio: 16 / 9; }
@media (min-width: 768px){ .map-1-frame{ aspect-ratio: 16 / 7; } }
@media (min-width: 992px){ .map-1-frame{ aspect-ratio: auto; } }

/* Info side */
.map-1-info{
  padding: clamp(16px, 3.2vw, 26px);
  align-items: center;
  display:flex; flex-direction:column; justify-content:center; gap:12px;
}
.map-1-info-title{ margin:0; font-weight:900; font-size:1.2rem; color:var(--ink); }
.map-1-address{ margin:0; color:#223229; line-height:1.55; }

.map-1-points{ list-style:none; margin:6px 0 0; padding:0; display:grid; gap:6px; }
.map-1-points li{
  position:relative; padding-left:26px; color:#273b30; font-weight:600;
}
.map-1-points li::before{
  content:""; position:absolute; left:0; top:2px; width:18px; height:18px; border-radius:6px;
  background: conic-gradient(var(--m1), var(--m2));
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/75% 75% no-repeat;
          mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23fff' d='M9 16.2 4.8 12l-1.4 1.4L9 19 21 7l-1.4-1.4z'/%3E%3C/svg%3E") center/75% 75% no-repeat;
}

/* Buttons */
.map-1-actions{ display:flex; flex-wrap:nowrap; gap:10px; margin-top:6px; }
.map-1-btn{
  display:inline-block; padding:10px; border-radius:12px; font-weight:800;
  color:#fff; text-decoration:none; background: linear-gradient(135deg, var(--m1), var(--m2));
  box-shadow: 0 12px 26px rgba(31,126,58,.26), inset 0 -3px 8px rgba(0,0,0,.2);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.map-1-btn:hover{ transform: translateY(-2px); box-shadow:0 18px 34px rgba(31,126,58,.34), inset 0 -3px 8px rgba(0,0,0,.25); }

.map-1-btn--ghost{
  background: #e7f6ed; color:#0f2b1c;
  box-shadow: 0 6px 16px rgba(31,126,58,.10) inset, 0 6px 16px rgba(31,126,58,.10);
}
.map-1-btn--ghost:hover{ background:#dff2e7; }

/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  .map-1-card, .map-1-btn{ transition:none; }
  .map-1-card:hover{ transform:none; }
}

/* Social bar height variable + top padding so bar overlap na ho */
.map-1-card{
  --map1-bar-h: 44px;            /* mobile par neeche change karenge */
  padding-top: var(--map1-bar-h);
  position: relative;
  margin-bottom: 40px;
}

/* Top social bar */
.map-1-socialbar{
  position:absolute; inset:0 auto auto 0; right:0; height: var(--map1-bar-h);
  display:flex; align-items:center; justify-content:center; gap:14px;
  background: rgba(20,32,24,.78);
  backdrop-filter: blur(6px);
  border-bottom: 1px solid rgba(255,255,255,.10);
  z-index: 3;
}

/* Icons */
.map-1-sicon{
  width:36px; height:36px; display:grid; place-items:center;
  color:#eaf7ef; text-decoration:none;
  border-radius:10px;
  background: rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.18);
  box-shadow: 0 6px 12px rgba(0,0,0,.20), 0 0 0 3px rgba(255,255,255,0) inset;
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease, background .2s ease, color .2s ease;
}
.map-1-sicon:hover{
  transform: translateY(-2px);
  background: linear-gradient(135deg, var(--m1), var(--m2));
  border-color: rgba(255,255,255,.35);
  color:#fff;
  box-shadow: 0 10px 18px rgba(31,126,58,.30);
}

/* Mobile: bar thoda chhota, icons gap less */
@media (max-width: 600px){
  .map-1-card{ --map1-bar-h: 40px; }
  .map-1-socialbar{ gap:10px; }
  .map-1-sicon{ width:32px; height:32px; border-radius:8px; }
}

/* service page  */
/* Palette & tokens */
:root{
  --services-page-1-green:#0e7a3e;
  --services-page-1-green-700:#0a5c2f;
  --services-page-1-mint:#e8f7ef;
  --services-page-1-ink:#111418;
  --services-page-1-muted:#5f6d66;
  --services-page-1-bg:#f5fbf7;
  --services-page-1-white:#ffffff;
  --services-page-1-shadow:0 12px 32px rgba(0, 0, 0, 0.14);
  --services-page-1-radius:22px;
  --services-page-1-gap:28px;
}

body{background:var(--services-page-1-bg);color:var(--services-page-1-ink);font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif}

/* Section wrapper */
.services-page-1-section{max-width:1200px;margin:48px auto;padding:0 16px}
.services-page-1-block{
  display:flex;grid-template-columns:1.1fr .9fr;gap:var(--services-page-1-gap);
  align-items:center;background:var(--services-page-1-white);border-radius:var(--services-page-1-radius);
  padding:28px;box-shadow:var(--services-page-1-shadow);border:1px solid #e3efe8;
}
.services-page-1-alt .services-page-1-block{grid-template-columns:.9fr 1.1fr}
.services-page-1-alt .services-page-1-media{order:2}
.services-page-1-alt .services-page-1-content{order:1}

/* Media */
.services-page-1-media{position:relative;border-radius:18px;overflow:hidden}
.services-page-1-media img{width:100%;height:auto;display:block}
.services-page-1-ribbon{
  position:absolute;top:12px;left:12px;background:var(--services-page-1-green);color:#fff;
  font-size:12px;padding:6px 10px;border-radius:999px
}

/* Content */
.services-page-1-title{margin:0 0 10px;font-size:30px;color:var(--services-page-1-green)}
.services-page-1-lead{margin:6px 0 14px;color:var(--services-page-1-muted);line-height:1.6}

.services-page-1-meta{display:flex;flex-wrap:wrap;gap:8px;margin-bottom:14px}
.services-page-1-meta span{
  background:var(--services-page-1-mint);border:1px solid #cfe8dc;color:var(--services-page-1-green-700);
  font-size:12px;padding:7px 10px;border-radius:10px
}

.services-page-1-subgrid{display:grid;grid-template-columns:1fr 1fr;gap:var(--services-page-1-gap);margin-top:8px}
.services-page-1-subtitle{margin:0 0 8px;font-size:16px;color:#1f2a24}

/* Lists */
.services-page-1-checklist{list-style:none;margin:0;padding:0;display:grid;gap:8px}
.services-page-1-checklist li{
  position:relative;padding-left:28px;color:#2d3a34;line-height:1.5;
}
.services-page-1-checklist li::before{
  content:"✓";position:absolute;left:0;top:0.1rem;width:20px;height:20px;display:grid;place-items:center;
  border-radius:50%;background:var(--services-page-1-mint);border:1px solid #cfe8dc;color:var(--services-page-1-green-700);font-weight:700;font-size:12px
}
.services-page-1-steps{counter-reset:s;list-style:none;margin:0;padding:0;display:grid;gap:8px}
.services-page-1-steps li{
  counter-increment:s;position:relative;padding-left:34px;line-height:1.55;color:#2d3a34
}
.services-page-1-steps li::before{
  content:counter(s);position:absolute;left:0;top:0;display:grid;place-items:center;
  width:24px;height:24px;border-radius:50%;background:#ecfff4;border:1px solid #cfe8dc;color:var(--services-page-1-green-700);font-weight:700
}

/* Tags / notes */
.services-page-1-tags{display:flex;flex-wrap:wrap;gap:8px;margin-top:14px}
.services-page-1-tags span{font-size:12px;padding:7px 10px;border:1px dashed #cfe8dc;border-radius:10px;color:#375246;background:#f7fdf9}
.services-page-1-note{
  margin-top:12px;padding:12px;border-left:4px solid var(--services-page-1-green);background:#f2fbf6;border-radius:8px;color:#2f443b
}

/* Responsive */
@media (max-width: 980px){
  .services-page-1-block{grid-template-columns:1fr}
  .services-page-1-alt .services-page-1-media,.services-page-1-alt .services-page-1-content{order:unset}
  .services-page-1-subgrid{grid-template-columns:1fr}
}
@media (max-width: 560px){
  .services-page-1-title{font-size:24px}
  .services-page-1-section{margin:36px auto}
}

.services-page-1-callbtn {
  margin-top: 20px;
  display: inline-block;
  padding: 14px 20px;
  background: #0e7a3e;
  color: #fff;
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s;
}
.services-page-1-callbtn:hover {
  background: #0a5c2f;
}

@media (max-width: 991px) {
  .services-page-1-block {
    flex-direction: column;
  }
  .services-page-1-media,
  .services-page-1-content {
    flex: 1 1 100%;
    min-height: auto;
  }
}
/* residential page  */
:root{
  --ser-01-bg: radial-gradient(1200px 800px at 10% -10%, #e9f2ff 0%, transparent 40%),
               radial-gradient(900px 600px at 110% 10%, #ffe9f3 0%, transparent 35%),
               #f7f9fc;
  --ser-01-card: #ffffff;
  --ser-01-primary: #0d6efd;
  --ser-01-accent: #9b59b6;
  --ser-01-shadow: rgba(13, 110, 253, 0.25);
}
.ser-01-wrap{ background:var(--ser-01-bg); position:relative; overflow:hidden; }
.ser-01-kicker{ display:inline-block; letter-spacing:.12em; font-weight:600; color:#5c6b82; text-transform:uppercase; }
.ser-01-title{ font-weight:800; font-size:clamp(1.6rem, 2.4vw, 2.4rem); margin:.2rem 0 .5rem; }
.ser-01-sub{ color:#637085; max-width:820px; margin:0 auto; }

.ser-01-card{
  position:relative; background:linear-gradient(180deg, rgba(255,255,255,.85), #fff);
  border-radius:20px; padding:1.4rem 1.3rem 1.2rem;
  box-shadow:0 18px 40px rgba(0,0,0,.06), inset 0 1px 0 rgba(255,255,255,.7);
  border:1px solid rgba(13,110,253,.08);
  transform-style:preserve-3d;
  transition:transform .35s ease, box-shadow .35s ease, border-color .35s ease;
  backdrop-filter:blur(3px);
}
.ser-01-card:hover{
  transform:translateY(-10px) rotateX(3deg) rotateY(-3deg);
  box-shadow:0 28px 60px rgba(0,0,0,.12), 0 0 0 2px var(--ser-01-shadow);
  border-color:rgba(13,110,253,.18);
}
.ser-01-glow{ content:""; position:absolute; inset:-2px; border-radius:22px;
  background:radial-gradient(600px 220px at 20% 0%, rgba(13,110,253,.18), transparent 60%),
             radial-gradient(600px 220px at 80% 0%, rgba(155,89,182,.18), transparent 60%);
  filter:blur(18px); z-index:0; opacity:.7; pointer-events:none;
}
.ser-01-top{ position:relative; z-index:1; display:flex; align-items:center; gap:.8rem; }
.ser-01-icon{
  width:56px; height:56px; display:grid; place-items:center;
  border-radius:14px; font-size:24px; color:#fff;
  background:linear-gradient(135deg, #000, #000);
  box-shadow:0 10px 18px rgba(13,110,253,.28), inset 0 -4px 8px rgba(255,255,255,.3);
  transform:translateZ(18px);
}
.ser-01-name{ margin:0; font-weight:800; letter-spacing:.2px; }
.ser-01-badge{
  margin-left:auto; font-size:.78rem; font-weight:700; color:var(--ser-01-primary);
  background:rgba(13,110,253,.08); border:1px dashed rgba(13,110,253,.35);
  padding:.25rem .55rem; border-radius:999px;
}
.ser-01-desc{ margin:.8rem 0; color:#4a566b; }
.ser-01-list{ padding-left:0; list-style:none; margin:0 0 1rem; }
.ser-01-list li{ display:flex; gap:.45rem; align-items:flex-start; color:#2f3b4f; margin:.35rem 0; }
.ser-01-list i{ color:var(--ser-01-primary); margin-top:.18rem; }
.ser-01-cta{ display:flex; gap:.6rem; flex-wrap:wrap; }
.ser-01-call{ box-shadow:0 10px 20px rgba(13,110,253,.25); border-radius:12px; padding:.6rem 1rem; }
.ser-01-call i{ margin-right:.4rem; }
.ser-01-alt .ser-01-icon{ background:linear-gradient(135deg, #20c997, #0aa2c0); box-shadow:0 10px 18px rgba(32,201,151,.25); }
.ser-01-pro .ser-01-icon{ background:linear-gradient(135deg, #fd7e14, #ff3d71); box-shadow:0 10px 18px rgba(253,126,20,.25); }
.ser-01-wide{ height:100%; display:flex; flex-direction:column; justify-content:space-between; }

@media (max-width:575.98px){
  .ser-01-card{ padding:1.1rem; }
  .ser-01-title{ font-size:1.6rem; }
}

 /* Residential Section Wrapper */
.residential-01-wrap {
  background: linear-gradient(180deg, #f6fff9 0%, #ffffff 100%);
  color: #2d4739;
}

/* Title */
.residential-01-title {
  font-size: 2.2rem;
  font-weight: 800;
  color: #28a745;
}
.residential-01-sub {
  font-size: 1.1rem;
  color: #4a6353;
  max-width: 750px;
  margin: 0 auto;
}

/* Content */
.residential-01-content h3 {
  font-weight: 700;
  color: #2d4739;
}
.residential-01-content p {
  color: #495c4d;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Features */
.residential-01-feature {
  background: #fff;
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0,0,0,0.06);
  height: 100%;
}
.residential-01-feature i {
  font-size: 28px;
  color: #28a745;
  margin-bottom: 0.6rem;
}
.residential-01-feature h6 {
  font-weight: 700;
  margin-bottom: 0.4rem;
}
.residential-01-feature p {
  font-size: 0.85rem;
  color: #555;
}
.residential-01-feature:hover {
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.12);
}

/* Call Button */
.residential-01-btn {
  background: #28a745;
  color: #fff;
  font-weight: 600;
  border-radius: 8px;
  padding: 0.7rem 1.5rem;
  transition: all 0.3s ease;
}
.residential-01-btn:hover {
  background: #218838;
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(40,167,69,0.35);
}
.residential-01-btn i {
  margin-right: 6px;
}

/* Image */
.residential-01-image img {
  max-width: 90%;
  border-radius: 16px;
  box-shadow: 0 12px 25px rgba(0,0,0,0.12);
  transition: transform 0.4s ease;
}
.residential-01-image img:hover {
  transform: scale(1.05);
}

/* Responsive */
@media (max-width: 767.98px) {
  .residential-01-feature {
    margin-bottom: 1rem;
  }
}
.py-5 {
    padding-top: 0 !important;
    padding-bottom:0 !important ;
}
/* =================================================== */
/* Enquiry button  */

  :root{
    --enq-primary:#0aa06e;
    --enq-dark:#0c3b2e;
    --enq-bg:#ffffff;
  }

  /* Floating toggle button */
  .enq-toggle{
    position:fixed;
    right:16px;
    top:50%;
    transform:translateY(-50%);
    z-index:9999;
    background:var(--enq-primary);
    color:#fff;
    border:none;
    border-radius:999px;
    padding:12px 16px;
    font:600 14px/1.1 system-ui, -apple-system, "Segoe UI", Roboto, Arial;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
    cursor:pointer;
    display:flex;
    align-items:center;
    gap:10px;
  }
  .enq-toggle .dot{
    width:8px;height:8px;border-radius:50%;
    background:#fff; box-shadow:0 0 0 4px rgba(255,255,255,.25);
  }
  .enq-toggle:focus{outline:2px solid #fff9; outline-offset:2px;}

  /* Drawer wrapper (keeps it vertically centered) */
  .enq-wrap{
    position:fixed;
    right:0; top:50%;
    transform:translateY(-50%);
    z-index:9998;
    pointer-events:none; /* hidden until open */
  }

  /* Panel */
  .enq-panel{
    width:360px;
    max-width:95vw;
    background:var(--enq-bg);
    border-radius:14px 0 0 14px;
    box-shadow: -24px 0 40px rgba(0,0,0,.16);
    border:1px solid #ececec;
    translate: 100% 0;       /* start off-screen to the right */
    transition: translate .42s cubic-bezier(.2,.8,.2,1);
    pointer-events:auto;
  }
  .enq-wrap.open .enq-panel{ translate: 0 0; }

  .enq-head{
    display:flex; align-items:center; justify-content:space-between;
    padding:14px 16px;
    background:linear-gradient(90deg,var(--enq-primary),var(--enq-dark));
    color:#fff; border-radius:14px 0 0 0;
  }
  .enq-head h3{font:600 16px/1 system-ui;margin:0;}
  .enq-close{
    background:transparent;border:0;color:#fff;cursor:pointer;
    font-size:18px; padding:6px; line-height:1;
  }

  .enq-body{ padding:14px 16px 16px; }
  .enq-row{display:flex; gap:10px;}
  .enq-row > .enq-field{flex:1;}

  .enq-field{margin-bottom:10px;}
  .enq-field label{display:block; font:600 12px/1.2 system-ui; color:#222; margin:6px 0;}
  .enq-field input, .enq-field textarea{
    width:100%; padding:10px 12px; border-radius:10px;
    border:1px solid #d9d9d9; font:500 14px/1.3 system-ui;
    transition:border-color .2s, box-shadow .2s;
  }
  .enq-field textarea{min-height:88px; resize:vertical;}
  .enq-field input:focus, .enq-field textarea:focus{
    outline:none; border-color:var(--enq-primary);
    box-shadow:0 0 0 3px rgba(10,160,110,.15);
  }

  .enq-required::after{content:" *"; color:#e53935; font-weight:700;}

  .enq-actions{display:flex; gap:10px; margin-top:6px;}
  .enq-submit{
    background:var(--enq-primary); color:#fff; border:0; cursor:pointer;
    padding:10px 14px; border-radius:10px; font-weight:700; flex:1;
  }
  .enq-reset{
    background:#f3f5f7; color:#333; border:0; cursor:pointer;
    padding:10px 14px; border-radius:10px; font-weight:600;
  }

  /* Tiny screen tweaks */
  @media (max-width:480px){
    .enq-toggle{ right:10px; padding:10px 12px; }
    .enq-panel{ width:min(92vw,380px); border-radius:12px 0 0 12px; }
  }

  /* Optional dim overlay when open (for mobile focus) */
  .enq-overlay{
    position:fixed; inset:0; background:rgba(0,0,0,.15);
    opacity:0; pointer-events:none; transition:opacity .3s;
    z-index:9997;
  }
  .enq-overlay.show{ opacity:1; pointer-events:auto; }
  .enq-toggle{
    position:fixed;
    right:0;               /* stick to right edge */
    top:50%;
    transform:translateY(-50%);
    z-index:9999;

    /* vertical tab look */
    writing-mode: vertical-rl;
    text-orientation: mixed;
    background:#0aa06e;
    color:#fff;
    border:none;
    border-radius:12px 0 0 12px;  /* rounded on left side */
    padding:10px 8px;
    font:700 14px/1 system-ui,-apple-system,"Segoe UI",Roboto,Arial;
    letter-spacing:.5px;
    box-shadow:0 10px 25px rgba(0,0,0,.18);
    cursor:pointer;
  }
  .enq-toggle:focus{outline:2px solid #fff9; outline-offset:2px;}