/* =========================================================
   SNIRA SOLUTIONS
   Main stylesheet
========================================================= */

:root {
  --green: #315f19;
  --green-dark: #17350f;
  --green-light: #5f8e36;
  --navy: #07182e;
  --text: #172338;
  --muted: #667085;
  --cream: #f8faf6;
  --line: #dce4da;
  --white: #ffffff;
  --shadow: 0 16px 45px rgba(8, 26, 14, .10);
  --radius: 16px;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--text);
  background: #fff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

.site-header {
  transition: box-shadow .3s ease, background .3s ease;
  z-index: 1000;
}

.site-header.scrolled {
  box-shadow: 0 5px 25px rgba(0,0,0,.10);
}

.navbar {
  min-height: 82px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--navy);
}

.brand:hover { color: var(--navy); }

.brand-mark {
  position: relative;
  width: 54px;
  height: 58px;
  border: 2px solid var(--green);
  border-radius: 52% 52% 48% 48%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  transform: rotate(-2deg);
}

.brand-mark:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 11px;
  width: 30px;
  height: 30px;
  border-left: 4px solid var(--green);
  border-top: 4px solid var(--green);
  transform: rotate(45deg);
  border-radius: 3px;
}

.brand-mark .fa-house-chimney {
  font-size: 19px;
  position: relative;
  z-index: 2;
  margin-top: -12px;
}

.brand-mark .fa-heart {
  position: absolute;
  font-size: 16px;
  bottom: 8px;
  color: var(--green);
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-text strong {
  font-family: "Montserrat", sans-serif;
  font-size: 34px;
  letter-spacing: 1px;
}

.brand-text small {
  margin-top: 7px;
  font-size: 11px;
  letter-spacing: 5px;
  color: var(--green);
  font-weight: 700;
  text-align: center;
}

.nav-link {
  color: #172033 !important;
  font-size: 12px;
  font-weight: 700;
  padding: 30px 13px !important;
  position: relative;
}

.nav-link:after {
  content: "";
  position: absolute;
  left: 13px;
  right: 13px;
  bottom: 19px;
  height: 2px;
  background: var(--green);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .25s ease;
}

.nav-link:hover:after,
.nav-link.active:after {
  transform: scaleX(1);
}

.btn-quote,
.btn-primary-green {
  background: linear-gradient(135deg, #315f19, #244b12);
  color: #fff !important;
  border: 0;
  border-radius: 5px;
  font-weight: 700;
  font-size: 12px;
  padding: 13px 20px;
  box-shadow: 0 8px 20px rgba(49,95,25,.18);
  transition: transform .25s ease, box-shadow .25s ease;
}

.btn-quote:hover,
.btn-primary-green:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(49,95,25,.25);
}

/* HERO */
.hero-section {
  min-height: 650px;
  position: relative;
  overflow: hidden;
  padding: 145px 0 85px;
  background: #f7f9f5;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(249,251,247,.98) 0%, rgba(249,251,247,.96) 30%, rgba(249,251,247,.35) 55%, rgba(249,251,247,0) 75%),
    url("../img/photo-1600585154526-990dced4db0d.jpg") center right/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 48% 45%, transparent 0 28%, rgba(255,255,255,.18) 55%, rgba(255,255,255,.48) 100%);
  pointer-events: none;
}

.hero-content {
  max-width: 530px;
}

.eyebrow {
  color: var(--green);
  font-family: "Montserrat", sans-serif;
  font-size: 25px;
  font-weight: 700;
  margin-bottom: 4px;
}

.hero-content h1 {
  margin: 0;
  font-family: "Montserrat", sans-serif;
  line-height: .94;
  letter-spacing: -2px;
}

.hero-content h1 span,
.hero-content h1 strong {
  display: block;
  font-size: clamp(55px, 7vw, 82px);
}

.hero-content h1 span { color: var(--navy); }
.hero-content h1 strong { color: var(--green); }

.mission-title {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--green);
  margin: 17px 0 13px;
}

.mission-title span {
  width: 100px;
  height: 2px;
  background: var(--green);
  display: block;
}

.mission-title b {
  font-size: 15px;
  white-space: nowrap;
}

.hero-content h2 {
  font-size: clamp(25px, 3vw, 31px);
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 13px;
}

.hero-copy {
  max-width: 440px;
  color: #344054;
  line-height: 1.65;
  font-size: 15px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  margin-top: 26px;
}

.hero-actions .btn {
  min-height: 45px;
  padding: 12px 19px;
  font-size: 12px;
}

.btn-video {
  border: 1px solid #9aa3ae;
  color: #172033;
  background: rgba(255,255,255,.65);
  font-weight: 700;
}

.btn-video:hover {
  background: #fff;
  color: var(--green);
}

.btn-video span {
  margin-right: 8px;
  color: var(--green);
}

.hero-house-wrap {
  position: relative;
  min-height: 470px;
}

.hero-house {
  position: absolute;
  inset: 0;
  background: url("../img/photo-1600607687920-4e2a09cf159d.jpg") center/cover no-repeat;
  border-radius: 4px 0 0 4px;
  box-shadow: -25px 25px 60px rgba(0,0,0,.17);
  clip-path: polygon(11% 0, 100% 0, 100% 100%, 0 100%, 4% 48%);
}

.hero-glow {
  position: absolute;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: rgba(255,255,255,.18);
  filter: blur(35px);
  left: -45px;
  bottom: 40px;
}

.hero-wave {
  position: absolute;
  left: -5%;
  bottom: -60px;
  width: 110%;
  height: 115px;
  background: #fff;
  border-radius: 50% 50% 0 0 / 55% 55% 0 0;
  transform: rotate(-1deg);
}

/* SECTIONS */
.section {
  padding: 85px 0;
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 45px;
}

.section-kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 9px;
}

.section-heading .section-kicker {
  justify-content: center;
}

.section-kicker span {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--green);
}

.section-heading h2,
.display-title {
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: clamp(30px, 4vw, 40px);
  line-height: 1.15;
  font-weight: 800;
  margin-bottom: 13px;
}

.section-heading p,
.about-section p,
.why-section p {
  color: var(--muted);
  line-height: 1.7;
}

/* SERVICE CARDS */
.services-section {
  padding-top: 35px;
  background: #fff;
}

.service-card {
  height: 100%;
  min-height: 410px;
  border: 1px solid #e4e7e2;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 4px 17px rgba(0,0,0,.07);
  overflow: hidden;
  text-align: center;
  display: flex;
  flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}

.service-card:hover {
  transform: translateY(-7px);
  box-shadow: var(--shadow);
}

.service-icon {
  width: 86px;
  height: 86px;
  border: 1px solid #849274;
  border-radius: 50%;
  margin: 18px auto 9px;
  display: grid;
  place-items: center;
  color: var(--green);
  font-size: 35px;
}

.service-card h3 {
  font-size: 16px;
  line-height: 1.35;
  color: var(--navy);
  font-weight: 800;
  margin: 4px 12px 9px;
}

.service-card p {
  font-size: 12px;
  line-height: 1.6;
  color: #454e5d;
  padding: 0 17px;
  margin-bottom: 8px;
}

.card-line {
  width: 38px;
  height: 2px;
  background: var(--green);
  margin: 3px auto 15px;
}

.service-image {
  min-height: 135px;
  margin-top: auto;
  background-position: center;
  background-size: cover;
}

/* STATS */
.stats-section {
  background: linear-gradient(110deg, #071d40, #0c2d57 55%, #071b39);
  padding: 26px 0;
  color: white;
}

.stat-item {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 13px;
}

.stat-item > i {
  color: #a8c45d;
  font-size: 31px;
}

.stat-item > div {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
}

.stat-item strong {
  font-size: 30px;
  font-family: "Montserrat", sans-serif;
}

.stat-item small {
  color: #b4ce6b;
  font-size: 22px;
  font-weight: 700;
}

.stat-item span {
  display: block;
  width: 100%;
  color: rgba(255,255,255,.76);
  font-size: 11px;
}

/* ABOUT */
.about-section {
  background: #fbfcfa;
}

.about-image,
.why-image {
  position: relative;
  border-radius: 16px;
}

.about-image img,
.why-image img {
  width: 100%;
  height: 480px;
  object-fit: cover;
  border-radius: 16px;
  box-shadow: var(--shadow);
}

.experience-badge {
  position: absolute;
  right: -25px;
  bottom: 28px;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: var(--green);
  color: white;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 30px rgba(0,0,0,.22);
  text-align: center;
}

.experience-badge strong {
  font-family: "Montserrat", sans-serif;
  font-size: 35px;
}

.experience-badge span {
  font-size: 11px;
  line-height: 1.3;
}

.lead-copy {
  font-size: 17px;
  font-weight: 500;
}

.check-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 25px 0;
}

.check-grid div {
  font-size: 13px;
  font-weight: 700;
}

.check-grid i {
  color: var(--green);
  margin-right: 7px;
}

/* PROJECTS */
.projects-section {
  background: #f7f9f5;
}

.project-card {
  height: 370px;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 12px 35px rgba(0,0,0,.11);
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.project-card:hover img {
  transform: scale(1.06);
}

.project-overlay {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 50px 25px 25px;
  color: white;
  background: linear-gradient(transparent, rgba(0,0,0,.78));
}

.project-overlay span {
  font-size: 11px;
  font-weight: 700;
  color: #c8df8c;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.project-overlay h3 {
  font-size: 20px;
  margin: 6px 0 0;
}

/* WHY US */
.benefit-list {
  margin-top: 30px;
}

.benefit {
  display: flex;
  gap: 17px;
  padding: 16px 0;
  border-bottom: 1px solid #e2e7df;
}

.benefit-icon {
  flex: 0 0 47px;
  height: 47px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--green);
  background: #eef4e8;
  font-size: 19px;
}

.benefit h3 {
  font-size: 15px;
  font-weight: 800;
  margin: 0 0 3px;
  color: var(--navy);
}

.benefit p {
  margin: 0;
  font-size: 13px;
}

.why-image img {
  height: 530px;
}

.floating-card {
  position: absolute;
  bottom: 25px;
  left: -28px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #fff;
  padding: 15px 22px;
  border-radius: 10px;
  box-shadow: var(--shadow);
}

.floating-card > i {
  color: var(--green);
  font-size: 30px;
}

.floating-card div {
  display: flex;
  flex-direction: column;
}

.floating-card strong {
  font-size: 13px;
}

.floating-card span {
  font-size: 11px;
  color: var(--muted);
}

/* CTA */
.cta-strip {
  background: linear-gradient(90deg, #315f19, #477e20);
  color: white;
  padding: 25px 0;
}

.cta-content {
  display: flex;
  align-items: center;
  gap: 17px;
}

.cta-phone {
  width: 54px;
  height: 54px;
  flex: 0 0 54px;
  border-radius: 50%;
  background: rgba(255,255,255,.13);
  display: grid;
  place-items: center;
  font-size: 23px;
}

.cta-content h2 {
  font-size: 19px;
  margin: 0 0 3px;
  font-weight: 800;
}

.cta-content p {
  margin: 0;
  font-size: 12px;
  opacity: .85;
}

.btn-light-cta {
  background: #fff;
  color: var(--navy);
  font-weight: 800;
  font-size: 12px;
  padding: 13px 28px;
  border-radius: 5px;
}

/* CONTACT */
.contact-section {
  background: #fff;
}

.contact-info {
  height: 100%;
  background: #f5f8f2;
  border-radius: 15px;
  padding: 35px;
}

.contact-info h3 {
  color: var(--navy);
  font-family: "Montserrat", sans-serif;
  font-size: 27px;
  font-weight: 800;
}

.contact-info > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.7;
  margin-bottom: 25px;
}

.contact-line {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  color: var(--text);
  margin: 20px 0;
}

.contact-line > span {
  width: 43px;
  height: 43px;
  flex: 0 0 43px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #dfead8;
  color: var(--green);
}

.contact-line div {
  display: flex;
  flex-direction: column;
}

.contact-line small {
  color: var(--muted);
  font-size: 11px;
}

.contact-line strong {
  font-size: 13px;
  line-height: 1.5;
}

.contact-form {
  padding: 35px;
  border: 1px solid #e4e8e1;
  border-radius: 15px;
  box-shadow: 0 10px 35px rgba(0,0,0,.05);
}

.contact-form label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 7px;
}

.contact-form .form-control,
.contact-form .form-select {
  border: 1px solid #d9dfd7;
  min-height: 48px;
  border-radius: 7px;
  font-size: 13px;
  padding: 12px 14px;
}

.contact-form textarea.form-control {
  min-height: 130px;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus {
  border-color: var(--green);
  box-shadow: 0 0 0 .2rem rgba(49,95,25,.12);
}

/* FOOTER */
.site-footer {
  background: #061b37;
  color: white;
  padding: 52px 0 0;
}

.footer-brand {
  color: white;
  margin-bottom: 18px;
}

.footer-brand:hover { color: white; }

.footer-brand .brand-text small { color: #b7d16c; }

.footer-brand .brand-mark {
  border-color: #b7d16c;
  color: #b7d16c;
}

.footer-brand .brand-mark:before {
  border-color: #b7d16c;
}

.footer-brand .brand-mark .fa-heart { color: #b7d16c; }

.footer-about {
  max-width: 330px;
  color: rgba(255,255,255,.66);
  line-height: 1.7;
  font-size: 12px;
}

.site-footer h4 {
  color: white;
  font-size: 12px;
  letter-spacing: .5px;
  margin: 6px 0 17px;
}

.footer-links,
.footer-contact {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li,
.footer-contact li {
  margin-bottom: 9px;
  font-size: 12px;
  color: rgba(255,255,255,.68);
}

.footer-links a {
  color: rgba(255,255,255,.68);
  transition: color .2s ease;
}

.footer-links a:hover {
  color: #b7d16c;
}

.footer-contact i {
  width: 20px;
  color: #b7d16c;
  margin-right: 5px;
}

.social-links {
  display: flex;
  gap: 10px;
}

.social-links a {
  width: 39px;
  height: 39px;
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  transition: .25s ease;
}

.social-links a:hover {
  background: #315f19;
  border-color: #315f19;
  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 40px;
  padding: 17px 0;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255,255,255,.55);
  font-size: 10px;
}

.footer-bottom p { margin: 0; }

/* FLOATING */
.floating-whatsapp,
.back-to-top {
  position: fixed;
  z-index: 990;
  width: 51px;
  height: 51px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: white;
  box-shadow: 0 8px 25px rgba(0,0,0,.2);
}

.floating-whatsapp {
  right: 22px;
  bottom: 22px;
  background: #25d366;
  font-size: 25px;
}

.back-to-top {
  right: 22px;
  bottom: 84px;
  background: var(--navy);
  border: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: .25s ease;
}

.back-to-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* REVEAL */
.reveal {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* RESPONSIVE */
@media (max-width: 1199.98px) {
  .navbar { min-height: 76px; }
  .nav-link { padding-left: 9px !important; padding-right: 9px !important; font-size: 11px; }
  .nav-link:after { left: 9px; right: 9px; }
  .hero-section { padding-top: 125px; }
  .hero-house-wrap { min-height: 420px; }
}

@media (max-width: 991.98px) {
  .navbar {
    padding: 10px 0;
  }

  .brand-text strong { font-size: 29px; }
  .brand-mark { width: 47px; height: 51px; }

  .navbar-collapse {
    background: white;
    margin-top: 10px;
    padding: 8px 5px 16px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,.08);
  }

  .nav-link {
    padding: 10px 14px !important;
  }

  .nav-link:after { display: none; }

  .hero-section {
    padding: 125px 0 75px;
  }

  .hero-bg {
    background:
      linear-gradient(90deg, rgba(249,251,247,.97), rgba(249,251,247,.84)),
      url("../img/photo-1600585154526-990dced4db0d.jpg") center/cover;
  }

  .hero-content {
    max-width: 620px;
    margin: 0 auto;
    text-align: center;
  }

  .mission-title { justify-content: center; }
  .hero-copy { margin-left: auto; margin-right: auto; }

  .hero-actions { justify-content: center; }

  .hero-house-wrap {
    min-height: 390px;
    max-width: 800px;
    margin: 0 auto;
  }

  .hero-house { clip-path: polygon(5% 0, 100% 0, 100% 100%, 0 100%, 2% 20%); }

  .about-image img,
  .why-image img { height: 430px; }

  .experience-badge { right: 15px; }
  .floating-card { left: 15px; }
}

@media (max-width: 767.98px) {
  .section { padding: 62px 0; }

  .hero-section {
    padding: 115px 0 65px;
    min-height: auto;
  }

  .hero-content h1 span,
  .hero-content h1 strong {
    font-size: clamp(47px, 15vw, 67px);
  }

  .eyebrow { font-size: 21px; }

  .mission-title span { width: 55px; }

  .hero-house-wrap {
    min-height: 310px;
    margin-top: 5px;
  }

  .hero-house {
    clip-path: none;
    border-radius: 14px;
  }

  .hero-wave { height: 75px; bottom: -42px; }

  .service-card {
    min-height: 0;
  }

  .service-image {
    min-height: 170px;
  }

  .stats-section { padding: 20px 0; }

  .stat-item {
    justify-content: flex-start;
    padding-left: 10%;
  }

  .stat-item strong { font-size: 25px; }
  .stat-item > i { font-size: 26px; }

  .check-grid {
    grid-template-columns: 1fr;
  }

  .about-image img,
  .why-image img { height: 360px; }

  .experience-badge {
    width: 115px;
    height: 115px;
    right: 10px;
    bottom: 15px;
  }

  .experience-badge strong { font-size: 28px; }

  .project-card { height: 300px; }

  .floating-card {
    bottom: 12px;
    padding: 12px 15px;
  }

  .contact-info,
  .contact-form { padding: 25px 20px; }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
  }

  .back-to-top {
    right: 16px;
    bottom: 76px;
  }
}

@media (max-width: 420px) {
  .brand-text strong { font-size: 25px; }
  .brand-text small { font-size: 9px; letter-spacing: 3px; }
  .brand-mark { width: 42px; height: 47px; }

  .hero-actions .btn {
    width: 100%;
  }

  .stat-item {
    padding-left: 0;
    justify-content: center;
  }

  .stat-item > i { display: none; }
}
.trust-strip{background:#fff;border-top:1px solid #e7ece6;border-bottom:1px solid #e7ece6}
.trust-item{display:flex;align-items:center;justify-content:center;gap:11px;padding:22px 10px;border-right:1px solid #dfe6dc;font-size:.82rem;font-weight:700}
.trust-item:last-child{border-right:0}
.trust-item i{font-size:1.55rem;color:var(--green)}



/* =========================================================
   SERVICE DETAIL PAGE STYLES
========================================================= */

.service-detail-card {
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.06) !important;
  transition: all 0.3s ease-in-out;
  position: relative;
  overflow: hidden;
}

.service-detail-card:hover {
  transform: translateY(-5px);
  box-init: 0 1rem 3rem rgba(0, 0, 0, 0.08) !important;
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.08) !important;
  border-color: rgba(25, 135, 84, 0.2) !important;
}

.service-detail-card .service-img-wrapper {
  transition: transform 0.4s ease;
}

.service-detail-card:hover .service-img-wrapper {
  transform: scale(1.05);
}

.service-detail-card h4 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
  color: #212529;
}

.service-detail-card p {
  color: #6c757d;
  line-height: 1.6;
}


.dropdown-menu {
  background: var(--white);
  border: 1px solid var(--line) !important;
}
.dropdown-item {
  font-size: 12px;
  font-weight: 700;
  color: var(--text);
  transition: background .2s ease, color .2s ease;
}
.dropdown-item:hover, 
.dropdown-item:focus {
  background-color: var(--cream);
  color: var(--green);
}

.dropdown-toggle::after {
  display: none !important; /* Removes default Bootstrap arrow so only your custom icon shows */
}

.section-kicker {
  color: var(--green);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .8px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 9px;
}

.section-kicker span {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: var(--green);
}


