@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@700;800&family=Inter:wght@400;500;600;700;800&display=swap');

:root {
  --brand: #84bd19;
  --brand-dark: #6c9f10;
  --ink: #101210;
  --muted: #676b64;
  --soft: #f5f7f2;
  --line: #e4e9df;
  --header-height: 104px;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Inter", Arial, sans-serif
}

img {
  max-width: 100%
}

button,
a {
  transition: .25s ease
}

.page-shell {
  max-width: 1700px;
  padding-inline: clamp(22px, 4.8vw, 82px)
}

.section {
  padding: 110px 0
}

.section-kicker,
.modal-kicker,
.panel-kicker {
  display: block;
  margin-bottom: 10px;
  color: var(--brand-dark);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase
}

.text-brand-light {
  color: #a8db39
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 48px
}

.section-heading h2,
.section-title-narrow h2,
.contact-copy h2 {
  margin: 0;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1
}

.section-heading p {
  max-width: 510px;
  margin: 0;
  color: var(--muted);
  line-height: 1.8
}

.section-title-narrow {
  max-width: 650px;
  margin: 0 auto 50px
}

.section-title-narrow p {
  color: var(--muted)
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease
}

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

/* Nav */
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: #fff;
  box-shadow: 0 1px 0 rgba(0, 0, 0, .05)
}

.navbar {
  min-height: var(--header-height);
  padding: 0
}

.navbar-brand img {
  width:120px;
}

.navbar .nav-link {
  position: relative;
  padding: 39px 0 34px !important;
  color: #141414;
  font-size: 15px;
  font-weight: 600
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--brand-dark)
}

.navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 25px;
  height: 2px;
  background: var(--brand)
}

.btn-brand {
  border: 1px solid var(--brand);
  border-radius: 12px;
  background: linear-gradient(180deg, #96ce2a, #78ad15);
  color: #fff;
  font-weight: 700;
  box-shadow: 0 10px 28px rgba(126, 181, 20, .18)
}

.btn-brand:hover {
  border-color: var(--brand-dark);
  background: var(--brand-dark);
  color: #fff;
  transform: translateY(-1px)
}

.menu-lines {
  width: 31px;
  height: 27px;
  padding: 3px 0;
  border: 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  justify-content: space-between
}

.menu-lines span {
  display: block;
  width: 100%;
  height: 2px;
  background: #111
}

/* Hero */
.hero-section {
  position: relative;
  height: calc(100vh - var(--header-height));
  min-height: 690px;
  max-height: 850px;
  overflow: hidden;
  background: #eee
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/hero-workshop.png") center/cover no-repeat
}

.hero-wash {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(255, 255, 255, .98) 0%, rgba(255, 255, 255, .94) 22%, rgba(255, 255, 255, .75) 35%, rgba(255, 255, 255, .18) 52%, rgba(255, 255, 255, 0) 70%)
}

.hero-content {
  position: relative;
  z-index: 2;
  height: calc(100% - 96px)
}

.hero-copy {
  max-width: 690px
}

.eyebrow {
  margin: 0 0 25px;
  font-size: 14px;
  font-weight: 800;
  text-transform: uppercase
}

.eyebrow span {
  display: inline-block;
  width: 46px;
  height: 3px;
  margin-right: 12px;
  vertical-align: middle;
  background: var(--brand)
}

.hero-copy h1 {
  margin: 0;
  font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(68px, 5.3vw, 95px);
  font-weight: 800;
  line-height: .98;
  letter-spacing: -.025em;
  text-transform: uppercase
}

.hero-copy h1 strong {
  color: var(--brand)
}

.hero-description {
  max-width: 520px;
  margin: 28px 0 31px;
  color: #292b28;
  font-size: 19px;
  line-height: 1.7
}

.hero-copy .btn-lg {
  min-width: 215px;
  padding: 16px 24px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 700
}

.btn-services {
  background: rgba(255, 255, 255, .84);
  backdrop-filter: blur(5px)
}

.hero-features {
  position: absolute;
  z-index: 3;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255, 255, 255, .75)
}

.hero-feature {
  display: flex;
  align-items: center;
  gap: 16px;
  min-height: 96px;
  padding: 18px 30px;
  border-right: 1px solid #e7eae3
}

.hero-feature i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid #dfe6d7;
  border-radius: 50%;
  color: var(--brand-dark);
  font-size: 20px
}

.hero-feature strong,
.hero-feature span {
  display: block
}

.hero-feature strong {
  font-size: 13px
}

.hero-feature span {
  margin-top: 4px;
  color: #777;
  font-size: 11px
}

/* Services */
.section-services {
  position: relative;
  background: linear-gradient(180deg, #fff, #f7f8f5)
}

.service-card {
  height: 100%;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(31, 38, 27, .06)
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 22px 48px rgba(31, 38, 27, .1)
}

.service-icon {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 18px;
  background: #edf6df;
  color: var(--brand-dark);
  font-size: 26px
}

.service-card h3 {
  font-size: 22px;
  font-weight: 800
}

.service-card p {
  min-height: 76px;
  color: var(--muted);
  line-height: 1.7
}

.service-card a {
  color: var(--brand-dark);
  font-weight: 700;
  text-decoration: none
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 52px;
  padding: 28px;
  border-radius: 20px;
  background: #111;
  color: #fff
}

.stats-strip>div {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-areas: "icon value" "icon label";
  align-items: center;
  justify-content: center;
  column-gap: 14px;
  padding: 4px 25px;
  border-right: 1px solid rgba(255, 255, 255, .13)
}

.stats-strip>div:last-child {
  border-right: 0
}

.stats-strip i {
  grid-area: icon;
  color: #a5da34;
  font-size: 28px
}

.stats-strip strong {
  grid-area: value;
  font-size: 25px
}

.stats-strip span {
  grid-area: label;
  color: #aaa;
  font-size: 11px
}

/* About */
/*=========================
      ABOUT
=========================*/

.about-section {

  /* padding: 120px 0; */
  background: #f7f9f4;

}

.about-content {

  padding-right: 50px;

}

.about-content h2 {

  /* font-size: 62px; */
  font-weight: 800;
  line-height: 1.1;
  margin: 20px 0;

}

.about-content h2 span {

  color: #84bd19;

}

.about-text {

  color: #666;
  font-size: 17px;
  line-height: 1.9;
  margin-bottom: 40px;

}

/* Feature */

.about-features {

  display: flex;
  flex-direction: column;
  gap: 20px;

}

.feature-box {

  display: flex;
  align-items: flex-start;
  gap: 18px;

  background: #fff;

  padding: 20px;

  border-radius: 18px;

  transition: .3s;

  box-shadow: 0 10px 30px rgba(0, 0, 0, .05);

}

.feature-box:hover {

  transform: translateX(8px);

  box-shadow: 0 20px 40px rgba(0, 0, 0, .08);

}

.feature-box i {

  font-size: 28px;

  color: #84bd19;

}

.feature-box h6 {

  font-weight: 700;
  margin-bottom: 5px;

}

.feature-box p {

  margin: 0;
  color: #777;
  font-size: 14px;

}

/* Images */

.about-images {

  position: relative;

  height: 700px;

}

.img-main {

  width: 78%;

  height: 620px;

  object-fit: cover;

  border-radius: 30px;

  box-shadow: 0 30px 60px rgba(0, 0, 0, .18);

}

.img-second {

  position: absolute;

  right: 0;

  bottom: 0;

  width: 55%;

  height: 330px;

  object-fit: cover;

  border-radius: 25px;

  border: 8px solid #fff;

  box-shadow: 0 25px 50px rgba(0, 0, 0, .18);

}

/* Floating Card */

.experience-card {

  position: absolute;

  left: -40px;

  bottom: 80px;

  background: #84bd19;

  color: #fff;

  width: 180px;

  height: 180px;

  border-radius: 30px;

  display: flex;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  box-shadow: 0 20px 50px rgba(132, 189, 25, .45);

}

.experience-card h2 {

  font-size: 60px;

  margin: 0;

  font-weight: 800;

}

.experience-card p {

  margin: 0;

  text-align: center;

}

/* Responsive */

@media(max-width:991px) {

  .about-content {

    padding-right: 0;

    margin-bottom: 50px;

  }

  .about-images {

    height: auto;

  }

  .img-main {

    width: 100%;

    height: 500px;

  }

  .img-second {

    width: 55%;

    height: 250px;

  }

  .experience-card {

    left: 20px;

    bottom: 20px;

    width: 140px;

    height: 140px;

  }

}

/* Process */
.process-section {
  background: #fff
}

.process-card {
  position: relative;
  height: 100%;
  padding: 34px;
  border-radius: 22px;
  background: #f5f7f2
}

.process-card>span {
  position: absolute;
  top: 22px;
  right: 24px;
  color: #c9cec3;
  font-size: 34px;
  font-weight: 800
}

.process-card i {
  display: grid;
  width: 60px;
  height: 60px;
  margin-bottom: 26px;
  place-items: center;
  border-radius: 18px;
  background: #111;
  color: #a8db39;
  font-size: 25px
}

.process-card h3 {
  font-weight: 800
}

.process-card p {
  color: var(--muted);
  line-height: 1.7
}

/* Testimonials */
.testimonial-section {
  position: relative;
  padding: 120px 0;
  overflow: hidden;
  background: #111
}

.testimonial-bg {
  position: absolute;
  inset: 0;
  background: url("assets/testimonial-bg.png") center/cover no-repeat
}

.testimonial-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(8, 10, 8, .93), rgba(8, 10, 8, .62))
}

.testimonial-section h2 {
  font-size: clamp(45px, 5vw, 72px);
  font-weight: 800;
  letter-spacing: -.05em;
  line-height: 1
}

.testimonial-card {
  padding: 45px;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: 24px;
  background: rgba(18, 21, 18, .72);
  color: #fff;
  backdrop-filter: blur(14px)
}

.rating {
  margin-bottom: 22px;
  color: #a8db39;
  letter-spacing: .14em
}

.testimonial-card>p {
  font-size: 22px;
  line-height: 1.65
}

.testimonial-user {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px
}

.testimonial-user>span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 50%;
  background: #8bbb1f;
  color: #fff;
  font-weight: 800
}

.testimonial-user strong,
.testimonial-user small {
  display: block
}

.testimonial-user small {
  color: #aaa
}

.testimonial-controls {
  display: flex;
  gap: 10px;
  margin-top: 18px
}

.testimonial-controls button {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 50%;
  background: rgba(255, 255, 255, .07);
  color: #fff
}

.testimonial-controls button:hover {
  background: #8bbb1f;
  border-color: #8bbb1f
}

/* Gallery */
.gallery-section {
  background: #f7f8f5
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 230px;
  gap: 14px
}

.gallery-item {
  position: relative;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 18px;
  background: #ddd
}

.gallery-large {
  grid-column: span 2;
  grid-row: span 2
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .45s ease
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0, 0, 0, .72))
}

.gallery-item span {
  position: absolute;
  z-index: 2;
  left: 20px;
  bottom: 17px;
  color: #fff;
  font-weight: 700
}

.gallery-item:hover img {
  transform: scale(1.06)
}

/* Full banner */
.full-banner {
  position: relative;
  overflow: hidden;
  min-height: 620px;
  background: #111
}

.full-banner-image {
  position: absolute;
  inset: 0;
  background: url("assets/cta-banner.jpg") center/cover no-repeat
}

.full-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 7, 5, .2), rgba(5, 7, 5, .82) 60%, rgba(5, 7, 5, .95))
}

.full-banner .container {
  min-height: 620px;
  display: flex;
  align-items: center
}

.full-banner-copy {
  margin-left: auto;
  color: #fff
}

.full-banner-copy h2 {
  font-size: clamp(52px, 5vw, 78px);
  font-weight: 800;
  letter-spacing: -.055em
}

.full-banner-copy p {
  color: rgba(255, 255, 255, .7);
  font-size: 18px;
  line-height: 1.8
}

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

.contact-copy p {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8
}

.contact-cards {
  display: grid;
  gap: 14px;
  margin-top: 34px
}

.contact-cards>a,
.contact-cards>div {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 16px;
  color: #111;
  text-decoration: none
}

.contact-cards i {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  background: #edf6df;
  color: var(--brand-dark)
}

.contact-cards span,
.contact-cards strong {
  display: block
}

.contact-cards span {
  color: #777;
  font-size: 11px;
  text-transform: uppercase
}

.contact-form {
  height: 100%;
  padding: 38px;
  border-radius: 24px;
  background: #f4f7f0
}

.contact-form .form-label {
  font-size: 12px;
  font-weight: 700
}

.contact-form .form-control {
  min-height: 52px;
  border: 1px solid #dde4d6;
  border-radius: 12px;
  background: #fff
}

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

/* CTA & footer */
.cta-banner {
  padding: 70px 0;
  background: #7dad17
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  color: #fff
}

.cta-inner h2 {
  margin: 0;
  font-size: clamp(40px, 4.5vw, 64px);
  font-weight: 800;
  letter-spacing: -.045em
}

.cta-inner p {
  margin: 10px 0 0;
  color: rgba(255, 255, 255, .78)
}

/*=========================
        FOOTER
=========================*/

.site-footer{
    background:#f8faf7;
    padding:80px 0 25px;
    border-top:1px solid #e7ece3;
}

.footer-logo{
    width:220px;
}

.site-footer p{
    color:#6c757d;
    line-height:1.8;
    margin-top:20px;
    font-size:15px;
}

.site-footer h3{
    color:#1d1d1d;
    font-size:18px;
    font-weight:700;
    margin-bottom:25px;
}

.site-footer a,
.site-footer span{

    display:block;
    margin-bottom:14px;

    color:#666;

    text-decoration:none;

    transition:.3s;

    font-size:15px;

}

.site-footer a:hover{

    color:#84bd19;

    transform:translateX(5px);

}

.social-links{

    display:flex;

    gap:12px;

    margin-top:30px;

}

.social-links a{

    width:45px;

    height:45px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#fff;

    border:1px solid #dfe6da;

    color:#222;

    font-size:18px;

    transition:.3s;

    box-shadow:0 5px 20px rgba(0,0,0,.04);

}

.social-links a:hover{

    background:#84bd19;

    color:#fff;

    border-color:#84bd19;

    transform:translateY(-6px);

}

.footer-bottom{

    margin-top:60px;

    padding-top:25px;

    border-top:1px solid #e5e5e5;

    display:flex;

    justify-content:space-between;

    align-items:center;

}

.footer-bottom span{

    margin:0;

    color:#777;

    font-size:14px;

}

.footer-bottom a{

    width:48px;

    height:48px;

    border-radius:50%;

    background:#84bd19;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:18px;

    transition:.3s;

    box-shadow:0 10px 25px rgba(132,189,25,.35);

}

.footer-bottom a:hover{

    transform:translateY(-5px);

    background:#6fa40f;

}

/* Modal */
.booking-modal .modal-dialog {
  max-width: min(1240px, calc(100vw - 40px));
  height: min(780px, 90vh);
  margin: auto
}

.booking-modal .modal-content {
  height: 100%;
  overflow: hidden;
  border: 0;
  border-radius: 26px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, .28)
}

.modal-row {
  height: 100%
}

.modal-close {
  position: absolute;
  z-index: 10;
  top: 18px;
  right: 18px;
  width: 38px;
  height: 38px;
  padding: 11px;
  border-radius: 50%;
  background-color: rgba(255, 255, 255, .94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .14);
  opacity: 1
}

.booking-form-side,
.booking-image-side {
  height: 100%
}

.booking-form-side {
  display: flex;
  align-items: center;
  background: radial-gradient(circle at 0 0, rgba(132, 189, 25, .12), transparent 32%), #fff
}

.booking-form-wrap {
  width: 100%;
  padding: clamp(28px, 3.5vw, 52px)
}

.booking-form-wrap h2 {
  margin-bottom: 10px;
  font-size: clamp(34px, 3vw, 50px);
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -.045em
}

.modal-intro {
  margin-bottom: 22px;
  color: #687067;
  font-size: 14px
}

.compact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px
}

.compact-grid .span-2 {
  grid-column: span 2
}

.booking-form-wrap .form-label {
  margin-bottom: 5px;
  font-size: 11px;
  font-weight: 750
}

.booking-form-wrap .form-control,
.booking-form-wrap .form-select {
  min-height: 44px;
  border: 1px solid #dfe5da;
  border-radius: 10px;
  background: #f8faf6;
  font-size: 13px
}

.booking-form-wrap textarea.form-control {
  min-height: 66px;
  resize: none
}

.booking-form-wrap .form-control:focus,
.booking-form-wrap .form-select:focus {
  border-color: rgba(132, 189, 25, .72);
  background: #fff;
  box-shadow: 0 0 0 .2rem rgba(132, 189, 25, .12)
}

.modal-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 16px
}

.modal-submit {
  min-width: 180px;
  min-height: 48px
}

.modal-actions small {
  color: #747a72;
  font-size: 11px
}

.booking-image-side {
  position: relative;
  overflow: hidden;
  background: #111
}

.booking-image-side>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 69% center
}

.booking-image-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 42px;
  color: #fff;
  background: linear-gradient(180deg, transparent 35%, rgba(5, 8, 5, .15) 56%, rgba(5, 8, 5, .9))
}

.booking-image-overlay>span {
  color: #b3e744;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase
}

.booking-image-overlay h3 {
  margin: 8px 0 20px;
  font-size: clamp(32px, 3vw, 48px);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -.04em
}

.image-points {
  display: flex;
  gap: 16px;
  font-size: 12px
}

.image-points i {
  margin-right: 5px;
  color: #a8db39
}

/* Offcanvas */
.info-panel {
  --bs-offcanvas-width: min(550px, 94vw);
  border-left: 0;
  background: radial-gradient(circle at 100% 0, rgba(132, 189, 25, .16), transparent 30%), #f8f9f6;
  box-shadow: -20px 0 70px rgba(0, 0, 0, .18)
}

.info-panel .offcanvas-header {
  padding: 25px 30px 15px
}

.panel-logo {
  width: 205px
}

.info-panel .offcanvas-body {
  padding: 12px 32px 35px
}

.panel-section {
  padding: 26px 0;
  border-bottom: 1px solid #dde2d7
}

.panel-section:first-child {
  padding-top: 10px
}

.panel-section h2 {
  margin: 0 0 16px;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -.045em
}

.panel-section h2 strong {
  color: var(--brand-dark)
}

.panel-section>p {
  color: #62665f;
  line-height: 1.75
}

.panel-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px;
  margin-top: 24px
}

.panel-stats div {
  padding: 15px 12px;
  border: 1px solid #dfe5d9;
  border-radius: 14px;
  background: rgba(255, 255, 255, .75)
}

.panel-stats strong,
.panel-stats span {
  display: block
}

.panel-stats strong {
  font-size: 19px
}

.panel-stats span {
  margin-top: 3px;
  color: #747970;
  font-size: 10px
}

.contact-list {
  display: grid;
  gap: 13px
}

.contact-list a,
.contact-list>div {
  display: grid;
  grid-template-columns: 38px 1fr;
  align-items: center;
  color: #272927;
  text-decoration: none
}

.contact-list i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  background: #e8f3d4;
  color: var(--brand-dark)
}

.gallery-count {
  color: #aab2a2;
  font-size: 24px;
  font-weight: 700
}

.panel-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 9px
}

.panel-gallery button {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/.83;
  padding: 0;
  border: 0;
  border-radius: 12px
}

.panel-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: .35s
}

.panel-gallery button:hover img {
  transform: scale(1.07)
}

/* Lightbox */
.gallery-lightbox {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 30px;
  background: rgba(5, 8, 5, .92);
  opacity: 0;
  visibility: hidden;
  transition: .25s
}

.gallery-lightbox.show {
  opacity: 1;
  visibility: visible
}

.gallery-lightbox img {
  max-width: min(1100px, 92vw);
  max-height: 86vh;
  border-radius: 18px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, .45);
  transform: scale(.96);
  transition: .25s
}

.gallery-lightbox.show img {
  transform: scale(1)
}

.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #fff;
  font-size: 20px
}

/* Responsive */
@media(max-width:1199.98px) {
  :root {
    --header-height: 92px
  }

  .navbar-brand img {
    width: 245px
  }

  .navbar .nav-link {
    padding: 34px 0 29px !important
  }

  .navbar .nav-link.active::after {
    bottom: 20px
  }

  .hero-bg {
    background-position: 60% center
  }

  .gallery-grid {
    grid-auto-rows: 200px
  }
}

@media(max-width:991.98px) {
  :root {
    --header-height: 84px
  }

  .navbar {
    padding: 8px 0
  }

  .navbar-brand img {
    width: 220px
  }

  .navbar-collapse {
    padding: 12px 0 20px
  }

  .navbar .nav-link {
    display: inline-block;
    padding: 10px 0 !important
  }

  .navbar .nav-link.active::after {
    bottom: 4px
  }

  .hero-section {
    height: 760px;
    min-height: 760px
  }

  .hero-bg {
    background-position: 66% center
  }

  .hero-wash {
    background: linear-gradient(90deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .9) 54%, rgba(255, 255, 255, .15) 86%)
  }

  .hero-content {
    height: calc(100% - 150px)
  }

  .hero-features .col-6:nth-child(2) .hero-feature {
    border-right: 0
  }

  .section {
    padding: 85px 0
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr)
  }

  .stats-strip>div:nth-child(2) {
    border-right: 0
  }

  .stats-strip>div:nth-child(-n+2) {
    border-bottom: 1px solid rgba(255, 255, 255, .13);
    padding-bottom: 18px;
    margin-bottom: 18px
  }

  .about-image {
    background-position: 67% center
  }

  .about-overlay {
    background: linear-gradient(90deg, rgba(8, 10, 8, .97), rgba(8, 10, 8, .82) 60%, rgba(8, 10, 8, .38))
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .gallery-large {
    grid-column: span 2
  }

  .full-banner-overlay {
    background: linear-gradient(90deg, rgba(5, 7, 5, .45), rgba(5, 7, 5, .9))
  }

  .cta-inner {
    align-items: flex-start;
    flex-direction: column
  }

  .booking-modal .modal-dialog {
    height: auto;
    max-width: calc(100vw - 24px);
    margin: 12px auto
  }

  .booking-modal .modal-content {
    height: auto;
    max-height: calc(100vh - 24px);
    overflow-y: auto
  }

  .modal-row {
    height: auto
  }

  .booking-image-side {
    height: 260px;
    order: -1
  }

  .booking-image-side>img {
    object-position: center 45%
  }

  .booking-image-overlay {
    padding: 28px
  }
}

@media(max-width:767.98px) {
  .page-shell {
    padding-inline: 20px
  }

  .navbar-brand img {
    width: 90px
  }

  .hero-section {
    height: 790px;
    min-height: 790px
  }

  .hero-bg {
    background-position: 72% center
  }

  .hero-wash {
    background: linear-gradient(180deg, rgba(255, 255, 255, .98), rgba(255, 255, 255, .94) 48%, rgba(255, 255, 255, .28))
  }

  .hero-content .row {
    align-items: flex-start !important
  }

  .hero-copy {
    padding-top: 56px
  }

  .hero-copy h1 {
    font-size: clamp(52px, 15vw, 70px)
  }

  .hero-description {
    font-size: 16px
  }

  .hero-copy .btn-lg {
    min-width: 0;
    padding: 13px 18px;
    font-size: 14px
  }

  .hero-features {
    position: static
  }

  .hero-section {
    overflow: visible;
    /* margin-bottom: 192px */
  }

  .hero-feature {
    min-height: 86px;
    padding: 14px
  }

  .section-heading h2,
  .section-title-narrow h2,
  .contact-copy h2 {
    font-size: 44px
  }

  .stats-strip {
    grid-template-columns: 1fr;
    padding: 18px
  }

  .stats-strip>div {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .13) !important;
    margin: 0 !important;
    padding: 17px !important
  }

  .stats-strip>div:last-child {
    border-bottom: 0 !important
  }

  .min-vh-70 {
    min-height: 680px
  }

  .about-copy h2 {
    font-size: 52px
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 250px
  }

  .gallery-large {
    grid-column: auto;
    grid-row: auto
  }

  .full-banner {
    min-height: 560px
  }

  .full-banner .container {
    min-height: 560px
  }

  .contact-form {
    padding: 25px
  }

  .compact-grid {
    grid-template-columns: 1fr
  }

  .compact-grid .span-2 {
    grid-column: auto
  }

  .modal-actions {
    align-items: flex-start;
    flex-direction: column
  }

  .panel-gallery {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:575.98px) {
  .hero-section {
    /* margin-bottom: 210px */
  }

  .hero-feature strong {
    font-size: 11px
  }

  .hero-feature span {
    font-size: 9px
  }

  .gallery-grid {
    grid-auto-rows: 220px
  }

  .booking-image-side {
    height: 215px
  }

  .booking-image-overlay h3 {
    font-size: 28px;
    margin-bottom: 0
  }

  .image-points {
    display: none
  }

  .booking-form-wrap {
    padding: 25px 19px 30px
  }

  .info-panel .offcanvas-body,
  .info-panel .offcanvas-header {
    padding-inline: 20px
  }

  .panel-logo {
    width: 175px
  }

  .panel-stats {
    grid-template-columns: 1fr
  }
}






/* =========================
   MOBILE RESPONSIVE FIX
========================= */

html,
body{
    overflow-x:hidden !important;
    width:100%;
}

*,
*::before,
*::after{
    max-width:100%;
    box-sizing:border-box;
}

.container,
.container-fluid,
.row{
    /* overflow-x:hidden; */
}

img,
video,
canvas,
svg{
    max-width:100%;
    height:auto;
}

/* Bootstrap row issue */

.row{
    --bs-gutter-x:1.5rem;
}

/* Hero */

.hero-copy h1{
    word-break:break-word;
}

/* Gallery */

.gallery-grid{
    overflow:hidden;
}

/* Floating Contact */

.floating-contact-dock{
    right:15px;
}

@media(max-width:991px){

    .floating-contact-dock{
        right:15px;
        bottom:15px;
    }

}

/* About */

@media(max-width:991px){

    .about-images{

        height:auto;

        display:flex;

        flex-direction:column;

        gap:20px;

    }

    .img-main{

        width:100%;

        height:auto;

    }

    .img-second{

        position:relative;

        width:75%;

        margin-left:auto;

        height:auto;

        right:auto;

        bottom:auto;

    }

    .experience-card{

        left:15px;

        bottom:15px;

    }

}

/* Full Banner */

@media(max-width:991px){

.full-banner{

min-height:500px;

}

.full-banner .container{

min-height:500px;

}

}

/* Footer */

@media(max-width:768px){

.footer-bottom{

flex-direction:column;

gap:20px;

text-align:center;

}

}

/* Contact Form */

.contact-form{

overflow:hidden;

}
/* Multi-page and pricing additions */
.pricing-grid .service-card { position: relative; display: flex; flex-direction: column; }
.pricing-grid .service-card p { flex: 1; min-height: 96px; }
.price-tag { position: absolute; top: 30px; right: 30px; color: var(--brand-dark); font-family: "Barlow Condensed", sans-serif; font-size: 34px; font-weight: 800; }
.service-note { display: flex; align-items: center; gap: 12px; margin-top: 34px; padding: 20px 24px; border: 1px solid var(--line); border-radius: 16px; background: #fff; color: var(--muted); }
.service-note > i { color: var(--brand-dark); font-size: 22px; }
.service-note a { margin-left: auto; color: var(--brand-dark); font-weight: 700; text-decoration: none; }
.page-hero { padding: 105px 0 90px; background: linear-gradient(135deg,#f7faF2,#edf5e2); text-align: center; }
.page-hero h1 { max-width: 940px; margin: 0 auto 20px; font-family: "Barlow Condensed", sans-serif; font-size: clamp(58px,7vw,96px); font-weight: 800; line-height: .95; text-transform: uppercase; }
.page-hero p { max-width: 720px; margin: auto; color: var(--muted); font-size: 18px; line-height: 1.8; }
.display-title { font-size: clamp(44px,5vw,70px); font-weight: 800; letter-spacing: -.05em; line-height: 1; }
.lead-copy { color: var(--muted); font-size: 18px; line-height: 1.85; }
.about-value-list { display: grid; gap: 16px; margin-top: 30px; }
.about-value-list > div { display: flex; gap: 16px; padding: 20px; border: 1px solid var(--line); border-radius: 16px; background: var(--soft); }
.about-value-list i { color: var(--brand-dark); font-size: 25px; }
.about-value-list strong, .about-value-list span { display: block; }
.about-value-list strong { margin-bottom: 4px; color: var(--ink); }
.about-value-list span { color: var(--muted); line-height: 1.55; }
.testimonial-page { background: #111; }
.review-card { height: 100%; padding: 38px; border: 1px solid rgba(255,255,255,.12); border-radius: 22px; background: #191c18; color: #fff; }
.review-card p { min-height: 145px; font-size: 18px; line-height: 1.7; }
.review-card strong, .review-card span { display: block; }
.review-card span { margin-top: 4px; color: #aaa; }
.inner-page .site-footer a[href^="#"] { pointer-events: none; }
@media (max-width: 767px) {
  .page-hero { padding: 70px 0 60px; }
  .price-tag { top: 34px; right: 24px; font-size: 30px; }
  .service-note { align-items: flex-start; flex-wrap: wrap; }
  .service-note a { width: 100%; margin-left: 34px; }
}

/* 2026 Inner page redesign */
.inner-hero{position:relative;min-height:520px;display:flex;align-items:center;overflow:hidden;background:#111 center/cover no-repeat;background-image:var(--hero-image)}
.inner-hero:before{content:"";position:absolute;inset:0;background:var(--hero-image) center/cover no-repeat;transform:scale(1.02)}
.inner-hero-overlay{position:absolute;inset:0;background:linear-gradient(90deg,rgba(10,12,9,.93) 0%,rgba(10,12,9,.78) 46%,rgba(10,12,9,.18) 100%)}
.inner-hero-content{max-width:760px;padding:100px 0;color:#fff}.inner-hero h1{font-family:"Barlow Condensed",sans-serif;font-size:clamp(64px,7vw,104px);line-height:.92;text-transform:uppercase;margin:0 0 24px}.inner-hero h1 strong{color:var(--brand)}.inner-hero p{max-width:620px;font-size:19px;line-height:1.7;color:#e4e8df}.hero-breadcrumb{display:flex;align-items:center;gap:10px;margin-top:34px;font-size:13px}.hero-breadcrumb a{color:#fff;text-decoration:none}.hero-breadcrumb span{color:#aeb5a8}.hero-breadcrumb i{font-size:10px;color:var(--brand)}
.display-title{font-size:clamp(44px,5vw,72px);font-weight:800;letter-spacing:-.05em;line-height:1}.lead-copy{color:var(--muted);font-size:18px;line-height:1.8}
.package-intro{background:#f7f8f5}.package-tabs{display:flex;gap:10px;flex-wrap:wrap;margin-bottom:32px}.package-tabs span{padding:11px 18px;border:1px solid #dfe4da;border-radius:99px;font-size:13px;font-weight:700;background:#fff}.package-tabs .active{background:#111;color:#fff;border-color:#111}.package-card{height:100%;padding:32px;border:1px solid #e1e6dc;border-radius:24px;background:#fff;box-shadow:0 14px 45px rgba(20,30,10,.05)}.package-card.featured{border:2px solid var(--brand);transform:translateY(-8px);box-shadow:0 20px 55px rgba(116,169,17,.16)}.package-card-top{display:flex;gap:16px;align-items:center}.package-icon{width:54px;height:54px;display:grid;place-items:center;border-radius:16px;background:#eff6e3;color:var(--brand-dark);font-size:23px}.package-card-top span{font-size:11px;text-transform:uppercase;letter-spacing:.08em;color:#7a8175;font-weight:800}.package-card h3{font-size:20px;margin:4px 0 0}.package-price{font-size:42px;font-weight:800;margin:28px 0 20px}.package-price small{font-size:12px;color:#8a8e86;font-weight:600}.package-card ul{list-style:none;padding:0;margin:0 0 28px}.package-card li{display:flex;gap:10px;margin:13px 0;color:#555}.package-card li i{color:var(--brand-dark)}.parts-note{margin-top:30px;padding:20px 24px;border-radius:18px;background:#111;color:#fff;display:flex;align-items:center;gap:16px}.parts-note i{font-size:25px;color:var(--brand)}.parts-note strong,.parts-note span{display:block}.parts-note span{color:#bbc1b6;font-size:13px;margin-top:3px}.service-process-split{background:#101210;color:#fff}.process-photo img{width:100%;height:100%;min-height:580px;object-fit:cover}.process-copy{padding:80px clamp(35px,6vw,90px)}.process-copy h2{font-size:clamp(44px,5vw,70px);font-weight:800;margin-bottom:40px}.step-line{display:flex;gap:24px;padding:25px 0;border-top:1px solid #31342f}.step-line b{color:var(--brand);font-size:13px}.step-line h3{font-size:20px}.step-line p{color:#aeb3aa;margin:0}
.image-stack{position:relative;padding:0 80px 70px 0}.image-stack .main-img{width:100%;height:590px;object-fit:cover;border-radius:28px}.image-stack .small-img{position:absolute;right:0;bottom:0;width:240px;height:260px;object-fit:cover;border:10px solid #fff;border-radius:24px}.experience-badge{position:absolute;left:-25px;bottom:35px;padding:22px;background:var(--brand);border-radius:18px;color:#fff}.experience-badge strong,.experience-badge span{display:block}.experience-badge strong{font-size:34px}.value-grid{display:grid;grid-template-columns:1fr 1fr;gap:14px;margin-top:32px}.value-grid div{padding:20px;border:1px solid var(--line);border-radius:16px}.value-grid i{font-size:22px;color:var(--brand-dark)}.value-grid strong,.value-grid span{display:block}.value-grid strong{margin-top:9px}.value-grid span{font-size:12px;color:#777;margin-top:3px}.timeline-section{background:#101210;color:#fff}.timeline-row{display:grid;grid-template-columns:repeat(4,1fr);gap:1px;background:#30332e}.timeline-card{background:#101210;padding:38px}.timeline-card span{color:var(--brand);font-weight:800}.timeline-card h3{font-size:26px;margin:34px 0 12px}.timeline-card p{color:#aab0a5}.about-quote{text-align:center;padding:100px 0;background:#eff5e5}.about-quote i{font-size:45px;color:var(--brand)}.about-quote blockquote{max-width:900px;margin:16px auto;font-size:clamp(28px,4vw,48px);font-weight:700;line-height:1.25}
.featured-review{background:#fff}.review-photo{position:relative}.review-photo img{width:100%;height:560px;object-fit:cover;border-radius:28px}.rating-pill{position:absolute;left:25px;right:25px;bottom:25px;padding:17px 20px;border-radius:15px;background:rgba(255,255,255,.94);backdrop-filter:blur(8px);display:flex;justify-content:space-between}.rating-pill span,.rating{color:#e1a500;letter-spacing:2px}.quote-mark{font-size:52px;color:var(--brand)}.featured-review blockquote{font-size:clamp(26px,3vw,43px);font-weight:700;line-height:1.35}.reviewer strong,.reviewer span{display:block}.reviewer span{color:#777;margin-top:5px}.reviews-wall{background:#f4f6f1}.review-masonry{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}.review-card{padding:30px;border-radius:22px;background:#fff;border:0}.review-card.large{grid-row:span 2}.review-card.wide{grid-column:span 2}.review-card.dark{background:#111;color:#fff}.review-card p{font-size:18px;line-height:1.7;margin:20px 0 28px}.review-card strong,.review-card span{display:block}.review-card span{font-size:12px;color:#858a82;margin-top:4px}.stats-strip.premium{border-radius:24px;overflow:hidden;margin-top:55px;background:#fff}
.gallery-editorial{background:#f7f8f5}.gallery-filter{display:flex;justify-content:center;gap:12px;flex-wrap:wrap;margin-bottom:45px}.gallery-filter span{padding:10px 17px;border-radius:99px;background:#fff;border:1px solid var(--line);font-size:13px;font-weight:700}.gallery-filter .active{background:#111;color:#fff}.editorial-grid{display:grid;grid-template-columns:repeat(3,1fr);grid-auto-rows:270px;gap:18px}.gallery-shot{position:relative;border:0;padding:0;overflow:hidden;border-radius:20px;background:#111}.gallery-shot.tall{grid-row:span 2}.gallery-shot.wide{grid-column:span 2}.gallery-shot img{width:100%;height:100%;object-fit:cover;transition:.5s}.gallery-shot:after{content:"";position:absolute;inset:40% 0 0;background:linear-gradient(transparent,rgba(0,0,0,.8))}.gallery-shot span{position:absolute;z-index:2;left:22px;bottom:20px;color:#fff;text-align:left}.gallery-shot b,.gallery-shot small{display:block}.gallery-shot small{color:#cfd3ca;margin-top:4px}.gallery-shot:hover img{transform:scale(1.06)}.gallery-cta{padding:75px 0;background:#101210;color:#fff}.gallery-cta .container{display:flex;align-items:center;justify-content:space-between;gap:30px}.gallery-cta h2{font-size:clamp(38px,5vw,65px);margin:0}
.contact-premium{background:#f7f8f5}.contact-methods{display:grid;gap:12px;margin-top:30px}.contact-methods a{display:grid;grid-template-columns:48px 1fr 20px;align-items:center;gap:14px;text-decoration:none;color:#111;padding:16px;background:#fff;border:1px solid var(--line);border-radius:17px}.contact-methods a>i:first-child{width:48px;height:48px;display:grid;place-items:center;border-radius:13px;background:#eef5e3;color:var(--brand-dark);font-size:20px}.contact-methods span,.contact-methods strong{display:block}.contact-methods span{font-size:11px;color:#777;text-transform:uppercase;letter-spacing:.08em}.hours-card{display:flex;gap:16px;margin-top:24px;padding:22px;border-radius:18px;background:#111;color:#fff}.hours-card i{color:var(--brand);font-size:24px}.hours-card strong,.hours-card span{display:block}.hours-card span{font-size:13px;line-height:1.7;color:#adb3a8;margin-top:5px}.contact-form-panel{padding:42px;border-radius:28px;background:#fff;box-shadow:0 24px 70px rgba(20,30,10,.08)}.form-panel-head span{color:var(--brand-dark);font-size:12px;font-weight:800;text-transform:uppercase;letter-spacing:.12em}.form-panel-head h3{font-size:36px;margin:8px 0 28px}.contact-form-panel .form-control,.contact-form-panel .form-select{min-height:55px;border-radius:12px;background:#f7f8f5;border-color:#e3e7df}.contact-form-panel textarea.form-control{min-height:140px}.location-band{padding:80px 0;background:#101210;color:#fff}.location-band .container{display:flex;justify-content:space-between;gap:50px;align-items:center}.location-copy{max-width:700px}.location-copy h2{font-size:clamp(40px,5vw,65px)}.location-copy p{color:#aeb3aa}.location-pin{display:flex;gap:16px;align-items:center;padding:25px;border:1px solid #33372f;border-radius:18px}.location-pin i{font-size:28px;color:var(--brand)}
@media(max-width:991px){.inner-hero{min-height:450px}.inner-hero-content{padding:75px 0}.package-card.featured{transform:none}.timeline-row{grid-template-columns:1fr 1fr}.review-masonry{grid-template-columns:1fr 1fr}.editorial-grid{grid-template-columns:1fr 1fr}.gallery-cta .container,.location-band .container{align-items:flex-start;flex-direction:column}}
@media(max-width:767px){.inner-hero{min-height:410px}.inner-hero h1{font-size:58px}.image-stack{padding:0 35px 45px 0}.image-stack .main-img{height:430px}.image-stack .small-img{width:150px;height:175px}.experience-badge{left:8px}.value-grid,.timeline-row,.review-masonry,.editorial-grid{grid-template-columns:1fr}.review-card.wide,.gallery-shot.wide{grid-column:auto}.gallery-shot.tall{grid-row:auto}.editorial-grid{grid-auto-rows:300px}.contact-form-panel{padding:25px}.rating-pill{flex-direction:column;gap:5px}.section{padding:75px 0}}


/* Additional doorstep service packages */
.doorstep-addons{margin-top:42px;padding-top:42px;border-top:1px solid var(--line)}
.doorstep-addons-head{display:flex;align-items:end;justify-content:space-between;gap:30px;margin-bottom:28px}
.doorstep-addons-head h3{font-size:clamp(34px,4vw,52px);margin:5px 0 0;font-weight:800;letter-spacing:-.04em}
.doorstep-addons-head p{max-width:470px;margin:0;color:var(--muted);line-height:1.7}
.addon-packages-section{background:#fff}
.addon-service-card{height:100%;padding:34px;border:1px solid #dfe5da;border-radius:26px;background:#fff;box-shadow:0 18px 55px rgba(20,30,10,.07);display:flex;flex-direction:column}
.addon-service-card.premium-addon{border:2px solid var(--brand);background:linear-gradient(180deg,#fbfff7 0%,#fff 42%)}
.addon-top{display:flex;gap:16px;align-items:center}.addon-icon{width:58px;height:58px;flex:0 0 58px;display:grid;place-items:center;border-radius:17px;background:#edf6df;color:var(--brand-dark);font-size:25px}
.addon-top span{display:block;font-size:11px;text-transform:uppercase;letter-spacing:.1em;color:#777f72;font-weight:800}.addon-top h3,.addon-top h4{margin:4px 0 0;font-size:24px;font-weight:800}
.addon-prices{display:grid;grid-template-columns:1fr 1fr;gap:12px;margin:26px 0 24px}.addon-prices>div{padding:18px;border-radius:16px;background:#111;color:#fff}.addon-prices small,.addon-prices strong{display:block}.addon-prices small{color:#aeb5a9;text-transform:uppercase;letter-spacing:.07em;font-size:10px}.addon-prices strong{margin-top:5px;color:var(--brand);font-size:31px;line-height:1}
.addon-subtitle{font-weight:800;margin-bottom:8px}.addon-list{list-style:none;padding:0;margin:0 0 28px;display:grid;gap:11px;flex:1}.addon-list.two-column,.addon-list.compact{grid-template-columns:1fr 1fr;column-gap:22px}.addon-list li{position:relative;padding-left:24px;color:#555;line-height:1.45}.addon-list li:before{content:"✓";position:absolute;left:0;top:0;color:var(--brand-dark);font-weight:900}
@media(max-width:991px){.doorstep-addons-head{align-items:flex-start;flex-direction:column}.addon-list.two-column,.addon-list.compact{grid-template-columns:1fr}}
@media(max-width:575px){.addon-service-card{padding:24px}.addon-prices{grid-template-columns:1fr}.addon-top h3,.addon-top h4{font-size:21px}}
