:root {
  --bg: #080b09;
  --bg2: #0d120f;
  --ink: #111511;
  --muted: #667069;
  --light: #f5f7f5;
  --green: #68d43e;
  --green2: #2db44a;
  --deep: #087638;
  --white: #fff;
  --wrap: min(1180px, calc(100vw - 48px));
  --header: 100px;

  --brand-gradient: linear-gradient(
    135deg,
    #006837 0%,
    #139644 30%,
    #39b54a 62%,
    #9acb3c 100%
  );
}

* {
  box-sizing:border-box;
}

html {
  scroll-behavior:smooth;
  scroll-padding-top:var(--header);
}

body {
  margin:0;
  font-family:"DM Sans",system-ui,sans-serif;
  color:var(--ink);
  background:var(--light);
  -webkit-font-smoothing:antialiased;
}

body.menu-open {
  overflow:hidden;
}

img {
  display:block;
  max-width:100%;
}

a {
  color:inherit;
  text-decoration:none;
}

button,
input,
textarea {
  font:inherit;
}

button {
  cursor:pointer;
}

.wrap {
  width:var(--wrap);
  margin:auto;
}

.dark {
  background:var(--bg);
  color:#fff;
}

.skip {
  position:fixed;
  left:10px;
  top:10px;
  z-index:9999;
  background:#fff;
  color:#000;
  padding:8px 12px;
  transform:translateY(-200%);
}

.skip:focus {
  transform:none;
}

h1,
h2,
h3 {
  margin:0;
  font-family:"Manrope",sans-serif;
  letter-spacing:-.045em;
}



.site-header {
  position: fixed;
  z-index: 1000;
  left: 0;
  right: 0;
  top: 0;
  height: var(--header);
  background: transparent;
  transition: 0.3s;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(8, 11, 9, 0.82);
  backdrop-filter: blur(18px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.header-row {
  height:100%;
  display:flex;
  align-items:center;
  gap:24px;
}

.logo img {
  width:184px;
}

.nav {
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:27px;
}

.nav a {
  position:relative;
  color:rgba(255,255,255);
  font-size:15px;
  font-weight:500;
	text-transform: uppercase;
}

.nav a:after {
  content:"";
  position:absolute;
  left:0;
  right:100%;
  bottom:-9px;
  height:2px;
  background:var(--green);
  transition:.25s;
}

.nav a:hover,
.nav a.active {
  color:#3AB54A;
}

.nav a:hover:after,
.nav a.active:after {
  right:0;
}

.phone-pill {
  margin-left:10px;
  display:flex;
  align-items:center;
  gap:8px;
  padding:11px 15px;
  border:1px solid rgba(104,212,62,.35);
  border-radius:999px;
  background:rgba(104,212,62,.1);
  font-size:15px;
  font-weight:700;
  color:#fff;
}

.menu-btn {
  display:none;
  margin-left:auto;
  width:46px;
  height:46px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.05);
  align-items:center;
  justify-content:center;
  flex-direction:column;
  gap:6px;
}

.menu-btn span {
  width:20px;
  height:2px;
  background:#fff;
  transition:.25s;
}

.kicker {
  margin:0;
  text-transform:uppercase;
  letter-spacing:.16em;
  color:var(--green);
  font-size:11px;
  font-weight:800;
  display:flex;
  align-items:center;
  gap:9px;
}

.kicker:before {
  content:"";
  width:18px;
  height:1px;
  background:currentColor;
}

.kicker.green {
  color:var(--deep);
}

.about .kicker.green {
  color: #fff;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: max(820px, 100vh);
  padding: 158px 0 80px;

  background:
    radial-gradient(
      circle at 15% 20%,
      rgba(104, 212, 62, 0.10),
      transparent 25%
    ),
    linear-gradient(
      #080b09,
      #090d0a
    );
}

.hero-orb {
  position:absolute;
  width:620px;
  height:620px;
  border-radius:50%;
  left:-280px;
  bottom:-340px;
  background:rgba(104,212,62,.09);
  filter:blur(70px);
}

.hero-watermark {
  display: none;
}

.hero-grid {
  position: relative;
  z-index: 5;
  display: block;
}
.hero-copy {
  position: relative;
  z-index: 5;
  width: 48%;
  max-width: 590px;
}

.hero h1 {
  font-size:clamp(60px,6.2vw,92px);
  line-height:.95;
  margin-top:22px;
}

.hero h1 em {
  font-style: normal;
  background: var(--brand-gradient);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.lead {
  font-size:18px;
  line-height:26px;
  color:rgba(255,255,255);
  max-width:570px;
  margin:30px 0 0;
}

.actions {
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:34px;
}

.btn {
  min-height:52px;
  padding:0 22px;
  border-radius:12px;
  border:1px solid transparent;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:22px;
  text-transform:uppercase;
  /*letter-spacing:.06em;*/
  font-size:15px;
  font-weight:500;
  transition:.25s;
}

.btn b {
  font-size:18px;
  transition:.25s;
}

.btn:hover b {
  transform:translateX(4px);
}

.primary {
  background: var(--brand-gradient);
  color: #0a0e0b;
  border: 0;
  box-shadow: 0 10px 30px rgba(104, 212, 62, 0.16);
  position: relative;
  overflow: hidden;
}

.primary::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.18) 0%,
    rgba(255, 255, 255, 0) 45%
  );
  pointer-events: none;
}

.primary:hover {
  transform: none;
  box-shadow: 0 16px 38px rgba(104, 212, 62, 0.24);
}

.outline {
  border: 0;
  color: #fff;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: inset 0 0 0 2.5px rgba(104, 212, 62, 0.85);
}

.outline:hover {
  background: rgba(104, 212, 62, 0.08);
  box-shadow: inset 0 0 0 2.5px var(--green);
}

.trust {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  margin-top:28px;
}

.trust>div {
  display:grid;
  grid-template-columns:34px 1fr;
  column-gap:10px;
  align-items:center;
}

.trust > div > span {
  grid-row: 1 / 3;

  width: 46px;
  height: 46px;

  /*border: 1px solid rgba(104, 212, 62, 0.5);*/
  border-radius: 50%;

  display: grid;
  place-items: center;

  color: var(--green);
}

.trust > div > span i {
  display: grid;
  place-items: center;
  color: var(--green);
}

.trust > div > span i::before {
  font-size: 35px !important;
  line-height: 1;
  color: var(--green) !important;
}

.trust strong {
  font-size:11px;
  text-transform:uppercase;
  letter-spacing:.05em;
}

.trust small {
  font-size:11px;
  color:rgba(255,255,255,.45);
}

.gas-safe-badge {
  display: inline-flex;
  align-items: center;
  gap: 14px;

  margin-top: 28px;
  padding: 9px 16px 9px 9px;

  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;

  backdrop-filter: blur(12px);

  box-shadow:
    0 16px 40px rgba(0, 0, 0, 0.18);
}

.gas-safe-badge img {
  width: 58px;
  height: 58px;

  object-fit: contain;
  border-radius: 8px;
}

.gas-safe-copy {
  display: grid;
  gap: 3px;
}

.gas-safe-copy small {
  color: var(--green);

  font-size: 10px;
  font-weight: 800;

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.gas-safe-copy strong {
  color: #fff;

  font-size: 13px;
  line-height: 1.3;
  font-weight: 600;
}

.hero-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 50vw;
  height: 100%;
  min-height: 0;
  z-index: 2;
  isolation: isolate;
}



.hero-image {
  position: absolute;
  inset: 0;
  overflow: hidden;
  border-radius: 0;
  box-shadow: none;

  -webkit-mask-image: linear-gradient(
    100deg,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.15) 13%,
    rgba(0, 0, 0, 0.45) 16%,
    rgba(0, 0, 0, 0.75) 19%,
    #000 23%,
    #000 100%
  );

  mask-image: linear-gradient(
    100deg,
    transparent 0%,
    transparent 10%,
    rgba(0, 0, 0, 0.15) 13%,
    rgba(0, 0, 0, 0.45) 16%,
    rgba(0, 0, 0, 0.75) 19%,
    #000 23%,
    #000 100%
  );
}
.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--slide-position, center center);

  opacity: 0;
  transform: scale(1.025);

  transition:
    opacity 1.8s ease-in-out,
    transform 7s ease-out;
}

.hero-slide.active {
  opacity: 1;
  transform: scale(1);
}

.hero-image::after {
   content: "";
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    rgba(5, 8, 6, 0.55) 0%,
    rgba(5, 8, 6, 0.12) 18%,
    rgba(5, 8, 6, 0) 34%
  );
}

.floating-card {
  position: absolute;
  right: 35px;
  bottom: 65px;

  display: flex;
  align-items: center;
  gap: 12px;

  padding: 15px 18px;
  border-radius: 18px;

  background: rgba(8, 12, 9, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);

  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.30);
}

.floating-card i {
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 0 rgba(104,212,62,.5);
  animation:pulse 2s infinite;
}

.floating-card div {
  display:grid;
}

.floating-card strong {
  font-size:12px;
}

.floating-card small {
  font-size:11px;
  color:rgba(255,255,255,.5);
}

@keyframes pulse {
  70% {
    box-shadow:0 0 0 12px rgba(104,212,62,0);
  }
}

.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 620px;

  background: linear-gradient(
    115deg,
    #006837 0%,
    #0b7f3d 25%,
    #39b54a 67%,
    #9acb3c 100%
  );

  color: #fff;
}

.about-image {
  position: relative;
  overflow: hidden;
  min-height: 620px;
}

.about-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 1.6s ease-in-out,
    transform 6s ease-out;
}

.about-slide.active {
  opacity: 1;
  transform: scale(1);
}

.image-label {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 5;
  padding: 11px 15px;
  background: rgba(255, 255, 255, 0.84);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
}

.about-image img {
  width:100%;
  height:100%;
  object-fit:cover;
}

.image-label {
  position:absolute;
  left:30px;
  bottom:30px;
  padding:11px 15px;
  background:rgba(255,255,255,.84);
  backdrop-filter:blur(10px);
  border-radius:999px;
  font-size:11px;
  font-weight:700;
}

.about-copy {
  padding:120px clamp(34px,7vw,110px);
  display:flex;
  justify-content:center;
  flex-direction:column;
}

.about-copy h2 {
  font-size:clamp(39px,4vw,60px);
  line-height:1.08;
  margin-top:18px;
}

.about-copy p {
  color: rgba(255, 255, 255, 0.82);
  line-height: 1.75;
  font-size: 15px;
  margin: 20px 0 0;
}

.values {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px 22px;
  margin-top:34px;
}

.values > div {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 15px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-size: 15px;
  font-weight: 700;
  color: #fff;
}

.values > div > i {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;

  border-radius: 50%;
  /*border: 1px solid rgba(255, 255, 255, 0.55);*/

  display: grid;
  place-items: center;

  color: #fff;
}

.values > div > i::before {
  font-size: 30px !important;
  line-height: 1;
  color: #fff !important;
}

.services {
  padding:120px 0 120px;
  background:linear-gradient(#0b0f0c,#090c0a);
}

.section-head {
  display:flex;
  justify-content:space-between;
  gap:60px;
  align-items:end;
  margin-bottom:46px;
}

.section-head h2 {
  font-size:clamp(39px,4vw,58px);
  line-height:1.08;
  margin-top:17px;
  max-width:690px;
}

.section-head>p {
  max-width:360px;
  color:rgba(255,255,255);
  line-height:1.7;
  margin:0;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.service-card {
  position: relative;
  min-height: 320px;
  padding: 30px;
  border-radius: 22px;

  background: linear-gradient(
    115deg,
    #006837 0%,
    #0b7f3d 25%,
    #39b54a 67%,
    #9acb3c 100%
  );

  color: #fff;
  overflow: hidden;

  transition:
    box-shadow 0.3s ease,
    filter 0.3s ease;
}



.service-card::before {
  content: "";
  position: absolute;
  left: 30px;
  top: 0;

  width: 42px;
  height: 3px;

  background: rgba(255, 255, 255, 0.95);

  pointer-events: none;
  z-index: 5;

  transition: opacity 0.15s ease;
}

@property --border-sweep {
  syntax: "<angle>";
  initial-value: 0deg;
  inherits: false;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: 0;

  padding: 3px;
  border-radius: inherit;

  --border-sweep: 0deg;
  --border-start: -42deg;

  background: conic-gradient(
    from var(--border-start),
    rgba(255, 255, 255, 0.95) 0deg,
    rgba(255, 255, 255, 0.95) var(--border-sweep),
    transparent var(--border-sweep),
    transparent 360deg
  );

  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
  z-index: 4;

  opacity: 0;

  transition:
    --border-sweep 1s ease,
    opacity 0.15s ease;
}

.emergency-card::after {
  --border-start: -74deg;
}

.service-card:hover {
  transform: none;
  filter: brightness(1.05);
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.28);
}

.service-card:hover::before {
  opacity: 0;
}

.service-card:hover::after {
  --border-sweep: 360deg;
  opacity: 1;
}



.num {
  position: absolute;
  right: 24px;
  top: 22px;

  font-size: 11px;
  font-weight: 800;

  color: rgba(255, 255, 255, 0.55);
}

.ico {
  width: 48px;
  height: 48px;

  /*border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 16px;*/

  display: grid;
  place-items: center;

  color: #fff;
  font-size: 50px;
  font-weight: 500;

  margin-bottom: 30px;
}

.service-card h3 {
  color: #fff;

  font-size: 21px;
  margin-bottom: 11px;
}

.service-card p {
  margin: 0;

  color: rgba(255, 255, 255);

  line-height: 26px;
  font-size: 15px;

  padding-bottom: 50px;
}

.service-card a {
  position: absolute;
  left: 30px;
  bottom: 28px;

  color: #fff;

  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 800;

  display: flex;
  align-items: center;
  gap: 10px;
}

.service-card a b {
  transition: transform 0.25s ease;
}

.service-card a:hover b {
  transform: translateX(4px);
}

.service-watermark {
  position: absolute;
  right: -25px;
  top: 32px;

  font-size: 220px;
  line-height: 1;

  color: rgba(255, 255, 255, 0.08);

  transform: rotate(-10deg);

  pointer-events: none;
  z-index: 0;
}

.emergency-card {
  grid-column: 1 / -1;
}

.emergency-card p {
  max-width: 620px;
}

.emergency-card h3 {
  font-size: 26px;
}

.emergency-card .ico {
  font-size: 50px;
  font-weight: 800;
}





.why {
  position: relative;
  overflow: hidden;
  padding: 120px 0;

  background: linear-gradient(
    115deg,
    #006837 0%,
    #0b7f3d 25%,
    #39b54a 67%,
    #9acb3c 100%
  );

  color: #fff;
}

.why .kicker {
  color: #fff;
}

.why-word {
  position: absolute;
  left: 4%;
  bottom: -30px;
  font: 800 clamp(100px, 17vw, 260px) "Manrope";
  letter-spacing: -0.08em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.16);
}

.why-grid {
  position:relative;
  z-index:2;
  display:grid;
  grid-template-columns:.72fr 1.28fr;
  gap:80px;
}

.why-title h2 {
  font-size:clamp(44px,5vw,70px);
  line-height:1;
  margin-top:18px;
}

.why-list {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:32px 46px;
}

.why-list article {
  padding-top: 18px;
  /*border-top: 1px solid rgba(255, 255, 255, 0.30);*/
	text-align: center;
}

.why-list span {
  font-weight: 800;
  color: #fff;
}

.why-list h3 {
  font-size:22px;
  margin-top:8px;
}

.why-list p {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255);
  margin: 10px 0 0;
}

.why-list i[class^="flaticon-"]::before,
.why-list i[class*=" flaticon-"]::before {
  font-size: 60px !important;
  line-height: 1;
}

.reviews {
  background: #080b09;
  color: #fff;
	 padding: 120px 0;
}

.reviews-grid {
  display:grid;
  grid-template-columns:.78fr 1.22fr;
  gap:88px;
  align-items:center;
}

.reviews-summary h2 {
  font-size:clamp(39px,4vw,58px);
  line-height:1.08;
  margin-top:18px;
	 color: #fff;
}

.rating {
  display:block;
  font:800 64px "Manrope";
  color: #fff;
  letter-spacing:-.06em;
  margin-top:28px;
}

.stars {
  color: var(--green);
  font-size:22px;
  letter-spacing:.11em;
}

.reviews-summary small {
  display:block;
  max-width:310px;
  margin-top:10px;
  color: rgba(255, 255, 255, 0.55);
  line-height:1.55;
}

.slider {
  min-width:0;
}

.slides {
  position:relative;
  min-height:340px;
}

.review {
  position:absolute;
  inset:0;
  opacity:0;
  transform:translateX(25px) scale(.98);
  pointer-events:none;
  transition:.45s;
  padding:52px;
  border-radius:26px;
  background:#fff;
  box-shadow:0 18px 55px rgba(12,20,15,.08);
  display:flex;
  flex-direction:column;
  justify-content:center;
}

.review.active {
  opacity:1;
  transform:none;
  pointer-events:auto;
}

.review>b {
  font:800 62px/1 Georgia;
  color:var(--green2);
  height:40px;
}

.review>p {
  font-size:19px;
  line-height:1.6;
  color:#28312a;
  margin:18px 0 34px;
}

.reviewer {
  display:flex;
  gap:12px;
  align-items:center;
}

.reviewer>span {
  width:44px;
  height:44px;
  border-radius:50%;
  background:#101511;
  color:var(--green);
  display:grid;
  place-items:center;
  font-weight:800;
  font-size:11px;
}

.reviewer div {
  display:grid;
}

.reviewer small {
  color:var(--muted);
}

.slider-controls {
  display:flex;
  justify-content:center;
  align-items:center;
  gap:18px;
  margin-top:22px;
}

.slider-controls>button {
  width:42px;
  height:42px;
  border-radius:50%;
  border:1px solid rgba(17,21,17,.12);
  background:#fff;
}

.dots {
  display:flex;
  gap:8px;
}

.dots button {
  width:7px;
  height:7px;
  padding:0;
  border:0;
  border-radius:50%;
  background:#c8cec9;
}

.dots button.active {
  background:var(--green2);
}

.social {
  padding: 120px 0 120px;

  background: linear-gradient(
    115deg,
    #006837 0%,
    #0b7f3d 25%,
    #39b54a 67%,
    #9acb3c 100%
  );

  color: #fff;
}

.social-head h2 {
  color: #fff;
}

.social .kicker.green {
  color: #fff;
}

.text-link {
  font-size:11px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.06em;
  border-bottom:1px solid;
  padding-bottom:5px;
}

.social .text-link {
  color: #fff;
  border-bottom-color: rgba(255, 255, 255, 0.7);
  transition:
    color 0.25s ease,
    border-color 0.25s ease;
}

.social .text-link:hover {
  color: rgba(255, 255, 255, 0.75);
  border-bottom-color: rgba(255, 255, 255, 0.4);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 60px;
}

.portfolio-card {
  position: relative;
  height: 430px;
  border-radius: 22px;
  overflow: hidden;
  background: #080b09;
}

.portfolio-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s ease,
    filter 0.5s ease;
}

.portfolio-card:hover > img {
  transform: scale(1.045);
}


/* permanent dark fade behind text */

.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;

  background: linear-gradient(
    180deg,
    transparent 40%,
    rgba(5, 8, 6, 0.18) 62%,
    rgba(5, 8, 6, 0.88) 100%
  );
}


.portfolio-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;

  background: linear-gradient(
    135deg,
    rgba(4, 8, 5, 0.72) 0%,
    rgba(4, 8, 5, 0.58) 50%,
    rgba(4, 8, 5, 0.72) 100%
  );

  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.portfolio-card:hover .portfolio-overlay {
  opacity: 1;
}


/* text */

.portfolio-info {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 26px;
  z-index: 4;

  display: flex;
  flex-direction: column;
  gap: 5px;

  pointer-events: none;
}

.portfolio-info span {
  color: var(--green);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;

  transition: color 0.3s ease;
}

.portfolio-info strong {
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 21px;
  font-weight: 700;
}

.portfolio-card:hover .portfolio-info span {
  color: var(--green);
}


/* magnifying glass */

.portfolio-zoom {
  position: absolute;
  z-index: 6;

  left: 50%;
  top: 50%;

  width: 68px;
  height: 68px;

  transform:
    translate(-50%, -40%)
    scale(0.75);

  border: 2px solid rgba(255, 255, 255);
  border-radius: 50%;

  background: transparent;
  backdrop-filter: blur(8px);

  display: grid;
  place-items: center;

  opacity: 0;
  cursor: pointer;

  transition:
    opacity 0.3s ease,
    transform 0.35s ease,
    filter 0.3s ease,
    box-shadow 0.3s ease;
}

.portfolio-zoom svg {
  width: 27px;
  height: 27px;

  fill: none;
  stroke: #fff;
  stroke-width: 1.8;
  stroke-linecap: round;
}

.portfolio-card:hover .portfolio-zoom {
  opacity: 1;

  transform:
    translate(-50%, -50%)
    scale(1);

  background: transparent;
  border-color: rgba(255, 255, 255, 0.85);

  box-shadow: none;
}

.portfolio-card:hover .portfolio-zoom:hover {
  background: var(--brand-gradient);
  border-color: #FFFFFF;

  filter: brightness(1.08);

  box-shadow:
    0 18px 46px rgba(0, 0, 0, 0.32);
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;

  background: rgba(4, 7, 5, 0.96);
  backdrop-filter: blur(12px);

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;

  transition:
    opacity 0.3s ease,
    visibility 0.3s ease;
}

.portfolio-lightbox.open {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  position: relative;

  width: min(86vw, 1200px);
  height: 86vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  display: block;

  max-width: 100%;
  max-height: 100%;

  width: auto;
  height: auto;

  object-fit: contain;

  border-radius: 10px;

  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
}

.lightbox-caption {
  position: absolute;
  left: 20px;
  bottom: 20px;

  padding: 14px 18px;

  background: rgba(6, 10, 7, 0.68);
  backdrop-filter: blur(12px);

  border-radius: 12px;

  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lightbox-caption span {
  color: var(--green);
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.lightbox-caption strong {
  color: #fff;
  font-size: 16px;
}

.lightbox-caption small {
  color: rgba(255, 255, 255, 0.55);
  margin-top: 3px;
}

.lightbox-close {
  position: absolute;
  right: 28px;
  top: 22px;

  width: 50px;
  height: 50px;

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);
  color: #fff;

  font-size: 30px;

  cursor: pointer;
  z-index: 5;
}

.lightbox-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;

  width: 54px;
  height: 54px;

  transform: translateY(-50%);

  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;

  background: rgba(255, 255, 255, 0.05);
  color: #fff;

  font-size: 20px;

  cursor: pointer;

  transition: 0.25s;
}

.lightbox-arrow:hover,
.lightbox-close:hover {
  background: var(--green);
  border-color: var(--green);
  color: #07100a;
}

.lightbox-prev {
  left: 28px;
}

.lightbox-next {
  right: 28px;
}

body.lightbox-open {
  overflow: hidden;
}

.phone-links {
  display: flex;
  align-items: center;
  gap: 7px;
  flex-wrap: wrap;
}

.phone-links a,
.contact-hover-link {
  position: relative;
  display: inline-block;

  color: #fff;

  transition: color 0.25s ease;
}

.phone-links a::after,
.contact-hover-link::after {
  content: "";
  position: absolute;

  left: 0;
  right: 100%;
  bottom: -5px;

  height: 2px;

  background: var(--green);

  transition: right 0.25s ease;
}

.phone-links a:hover,
.contact-hover-link:hover {
  color: #3ab54a;
}

.phone-links a:hover::after,
.contact-hover-link:hover::after {
  right: 0;
}

.phone-links span {
  color: rgba(255, 255, 255, 0.45);
}

.contact {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}

.contact:after {
  content: "✓";
  position: absolute;
  right: 5%;
  bottom: -120px;

  font: 800 420px Arial;
  color: rgba(104, 212, 62, 0.05);

  transform: rotate(-10deg);
}

.contact-grid {
  position: relative;
  z-index: 2;

  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 88px;

  align-items: center;
}

.contact-copy h2 {
  font-size: clamp(44px, 4.6vw, 66px);
  line-height: 1.06;
  margin-top: 18px;
}

.contact-copy h2 em {
  font-style: normal;
  display: inline-block;

  background: var(--brand-gradient);

  -webkit-background-clip: text;
  background-clip: text;

  color: transparent;
  -webkit-text-fill-color: transparent;
}

.contact-copy > p {
  color: rgba(255, 255, 255, 1);
  line-height: 26px;
  max-width: 460px;
}


/* Contact details */

.contact-info {
  display: grid;
  gap: 0;
  margin-top: 34px;
}

.contact-info > * {
  display: flex;
  align-items: center;

  gap: 16px;
  min-height: 66px;

  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}


/* Flaticon icons */

.contact-info > * > i {
  width: 36px;
  flex: 0 0 36px;

  display: grid;
  place-items: center;

  color: var(--green);
}

.contact-info > * > i::before {
  font-size: 35px !important;
  line-height: 1;

  color: var(--green) !important;
}


/* Contact text */

.contact-info > * > div {
  display: grid;
  min-width: 0;
}

.contact-info small {
  font-size: 15px;

  color: rgba(255, 255, 255, 0.4);

  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.contact-info strong {
  font-size: 15px;
}


/* Elfsight form */

.contact-widget {
  width: 100%;
  min-width: 0;
}

.form-title {
  display:flex;
  justify-content:space-between;
  gap:20px;
  align-items:baseline;
  margin-bottom:22px;
}

.form-title strong {
  font:700 21px "Manrope";
}

.form-title small {
  color:var(--muted);
}

.form-row {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.contact-form label {
  display:grid;
  gap:7px;
  margin-bottom:13px;
  font-size:10px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
  color:#556159;
}

.contact-form input,
.contact-form textarea {
  width:100%;
  border:1px solid #dde3de;
  border-radius:12px;
  background:#fff;
  padding:14px 15px;
  outline:0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color:rgba(45,180,74,.65);
  box-shadow:0 0 0 4px rgba(45,180,74,.08);
}

.contact-form textarea {
  resize:vertical;
  min-height:135px;
}

.contact-form .btn {
  border:0;
}

.form-status {
  font-size:11px;
  color:var(--deep);
  min-height:18px;
}

footer {
  background:#050706;
  color:#fff;
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-row {
  min-height:104px;
  display:flex;
  align-items:center;
  gap:30px;
}

.footer-row>img {
  width:154px;
}

.footer-row small {
  color:rgba(255,255,255,.42);
	font-size: 15px;
}

.footer-row>div {
  margin-left:auto;
  display:flex;
  gap:26px;
  color:rgba(255,255,255,.45);
  font-size:15px;
}

.footer-row strong,
.footer-row a {
  color:#fff;
}

.reveal {
  opacity:0;
  transform:translateY(28px);
  transition:opacity .75s,transform .75s cubic-bezier(.2,.7,.2,1);
}

.reveal.show {
  opacity:1;
  transform:none;
}

.d1 {
  transition-delay:.1s;
}

.d2 {
  transition-delay:.2s;
}

.d3 {
  transition-delay:.3s;
}

@media(max-width:1080px) {
  :root {
    --wrap:min(100% - 36px,980px);
  }
	

  .phone-pill {
    display:none;
  }
	
	

  .nav {
    gap:19px;
  }

  .hero-grid {
    grid-template-columns:1fr 1fr;
    gap:30px;
  }

  .hero-media {
    min-height:520px;
  }

  .service-grid {
  grid-template-columns: repeat(2, 1fr);
}

.service-card {
  grid-column: auto;
}

.emergency-card {
  grid-column: 1 / -1;
}

  .social-grid {
    grid-template-columns:1fr 1fr;
  }
	
	.portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media(min-width:821px) {

  .phone-pill {
    margin-left: auto;
  }

  .nav {
    position: fixed;
    top: 0;
    left: 50%;

    width: var(--wrap);
    height: var(--header);

    transform: translateX(-50%);

    z-index: 1001;

    display: flex;
    align-items: center;
    justify-content: flex-end;

    gap: 27px;
    padding-right: 190px;
    margin-left: 0;

    pointer-events: none;
  }

  .nav a {
    pointer-events: auto;
  }

}

@media(max-width:820px) {
 :root {
  --header:82px;
  --wrap:min(100% - 30px,720px);
}
	
	.header-row {
  padding-top: 8px;
  padding-bottom: 8px;
}
	
  .logo img {
    width:162px;
  }

 .menu-btn {
  display: flex !important;

  position: fixed;
  top: 12px;
  right: 15px;

  width: 46px;
  height: 46px;

  margin: 0;
  padding: 0;

  z-index: 10001;

  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;

  opacity: 1 !important;
  visibility: visible !important;

  background: rgba(8, 11, 9, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 14px;

  backdrop-filter: none;
  -webkit-backdrop-filter: none;

  -webkit-appearance: none;
  appearance: none;
}
	
	.menu-btn span {
  display: block !important;

  width: 20px;
  height: 2px;
  flex: 0 0 2px;

  background: #fff !important;

  opacity: 1 !important;
  visibility: visible !important;

  transition: transform 0.25s ease;
}

.menu-btn[aria-expanded="true"] span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.menu-btn[aria-expanded="true"] span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}
	
	

  @media(max-width:820px) {

  .nav {
    position: fixed;

    top: var(--header);
    left: 0;
    right: 0;
    bottom: 0;

    z-index: 9998;

    background: #080b09 !important;

    backdrop-filter: none;
    -webkit-backdrop-filter: none;

    display: flex;
    flex-direction: column;
    align-items: flex-start;

    padding: 28px;

    transform: translateX(100%);
    transition: transform .3s ease;
  }

  .nav.open {
    transform: translateX(0);
  }

}

  .nav a {
  width: 100%;
  padding: 10px 0;

  border-bottom: 1px solid rgba(255,255,255,.08);

  font: 700 23px "Manrope";
  color: #fff;
}

  .nav a:after {
    display:none;
  }

 

  .hero {
  position: relative;
  min-height: 100svh;
  padding: 110px 0 72px;
  background: #080b09;
}

  .why-grid,
.reviews-grid,
.contact-grid {
  grid-template-columns: 1fr;
}

.hero-grid {
  min-height: calc(100svh - 182px);

  display: flex;
  align-items: center;
}

  .hero-media {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;
  min-height: 0;

  z-index: 1;
}
	
	.hero-image {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  border-radius: 0;

  -webkit-mask-image: none;
  mask-image: none;
}

.hero-slide {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 5;

  pointer-events: none;

  background: linear-gradient(
  180deg,
  rgba(5, 8, 6, 0.18) 0%,
  rgba(5, 8, 6, 0.12) 25%,
  rgba(5, 8, 6, 0.24) 48%,
  rgba(5, 8, 6, 0.48) 72%,
  rgba(5, 8, 6, 0.68) 100%
);
}
	
	.hero-copy {
  width: 100%;
  max-width: 520px;
}

  .trust {
    grid-template-columns:repeat(3,1fr);
  }

  .about {
    grid-template-columns:1fr;
  }

  .about-image {
    min-height:420px;
  }

  .about-copy {
    padding:72px 34px 80px;
  }

  .why-grid,
  .reviews-grid,
  .contact-grid {
    gap:54px;
  }

  .why-list {
    grid-template-columns:1fr 1fr;
  }

  .social-head {
    align-items:end;
    flex-direction:row;
  }

  .footer-row {
    padding:25px 0;
    flex-wrap:wrap;
  }

  .footer-row>div {
    width:100%;
    margin-left:0;
    justify-content:space-between;
  }
}

@media(max-width:560px) {
  :root {
    --wrap:calc(100% - 24px);
  }

  .hero {
    padding-top:108px;
  }

  .hero h1 {
    font-size:50px;
  }

  .actions {
    flex-direction:column;
  }

  .actions .btn {
    width:100%;
  }

  .trust {
    grid-template-columns:1fr;
  }

  .trust>div {
    padding-top:10px;
    border-top:1px solid rgba(255,255,255,.08);
  }

  

  .floating-card {
    left:14px;
    right:14px;
  }

  .about-image {
    min-height:300px;
  }

  .about-copy {
    padding:62px 22px 70px;
  }

  .about-copy h2,
  .section-head h2,
  .reviews-summary h2 {
    font-size:38px;
  }

  .values {
  grid-template-columns: repeat(2, 1fr);
  gap: 14px 12px;
}
	
	.values > div {
  gap: 8px;
  font-size: 11px;
}

.values > div > i {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
}

.values > div > i::before {
  font-size: 24px !important;
}

  .services,
  .why,
  .reviews,
  .social,
  .contact {
    padding:80px 0;
  }

  .service-grid,
.social-grid {
  grid-template-columns: 1fr;
}

.why-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 16px;
}
	.services .wrap,
.why .wrap,
.reviews .wrap,
.social .wrap,
.contact .wrap {
  width: calc(100% - 44px);
}

  .why-title h2 {
    font-size:46px;
  }
	
	.why-list h3 {
  font-size: 17px;
  line-height: 1.2;
  margin-top: 10px;
}

.why-list p {
  font-size: 12px;
  line-height: 19px;
  margin-top: 8px;
}

.why-list i[class^="flaticon-"]::before,
.why-list i[class*=" flaticon-"]::before {
  font-size: 48px !important;
}

  .section-head,
  .social-head {
    align-items:flex-start;
    flex-direction:column;
    gap:18px;
  }

  .review {
    padding:34px 26px;
  }

  .review>p {
    font-size:17px;
  }
	
	.reviews-summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  column-gap: 18px;
  align-items: start;
}

.reviews-summary .kicker {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}

.reviews-summary h2 {
  grid-column: 1;
  grid-row: 2 / 4;
  margin-top: 0;
}

.reviews-summary .rating {
  grid-column: 2;
  grid-row: 2;

  margin-top: 0;

  font-size: 48px;
  line-height: 1;

  text-align: right;
}

.reviews-summary .stars {
  grid-column: 2;
  grid-row: 3;

  margin-top: 7px;

  font-size: 15px;
  letter-spacing: 0.08em;

  text-align: right;
  white-space: nowrap;
}

  .portfolio-grid {
  grid-template-columns: 1fr;
}

.portfolio-card {
  height: 430px;
}

.lightbox-content {
  width: calc(100vw - 30px);
  height: 78vh;
}

.lightbox-prev {
  left: 12px;
}

.lightbox-next {
  right: 12px;
}

.lightbox-arrow {
  width: 44px;
  height: 44px;
}

  .contact-copy h2 {
    font-size:42px;
  }

  .contact-form {
    padding:24px 18px;
  }

  .form-row {
    grid-template-columns:1fr;
    gap:0;
  }

  .form-title {
    flex-direction:column;
    gap:5px;
  }

  .contact-form .btn {
    width:100%;
  }

  .footer-row {
  align-items: center;
  flex-direction: column;
  gap: 10px;

  text-align: center;
}

.footer-row > div {
  flex-direction: column;
  gap: 6px;

  width: 100%;
  align-items: center;
  text-align: center;
}
	
	.service-grid {
  grid-template-columns: 1fr;
}

.service-card,
.emergency-card {
  grid-column: auto;
}
}

@media(prefers-reduced-motion:reduce) {
  html {
    scroll-behavior:auto;
  }

  *,
  *:before,
  *:after {
    animation-duration:.01ms!important;
    transition-duration:.01ms!important;
  }

  .reveal {
    opacity:1;
    transform:none;
  }
}
