*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family: Arial, Helvetica, sans-serif;
}

:root{
  --bg: #0e1116;
  --bg-soft: #171c23;
  --bg-soft-2: #1e252d;
  --bg-nav-left: #3d5c4b;
  --bg-nav-right: #0e151c;
  --bg-top: #0a0d12;
  --panel: #171c23;
  --panel-2: #222b35;
  --border: rgba(255,255,255,.10);
  --text: #e8f0ea;
  --text-soft: #b4c3b8;
  --green: #55b978;
  --green-dark: #3f8f5b;
  --white-green: #f5fbf6;
  --shadow: 0 16px 40px rgba(0,0,0,.35);
}

html{
  scroll-behavior: smooth;
}

body{
  background:
    radial-gradient(circle at top left, rgba(85,185,120,.08), transparent 26%),
    linear-gradient(180deg, #0b0f14 0%, #11161d 45%, #0d1218 100%);
  color: var(--text);
}

.container{
  width: 90%;
  max-width: 1200px;
  margin: auto;
}

/* navbar */
.navbar{
  background: linear-gradient(90deg, var(--bg-nav-left) 0%, #24372d 22%, var(--bg-nav-right) 100%);
  border-bottom: 1px solid rgba(255,255,255,.08);
  position: sticky;
  top: 0;
  z-index: 40;
  box-shadow: 0 10px 28px rgba(0,0,0,.28);
  backdrop-filter: blur(8px);
}

.nav-inner{
  min-height: 96px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

.logo img{
  height: 118px;
  width: auto;
  display:block;
  filter: drop-shadow(0 6px 14px rgba(0,0,0,.22));
}

.nav-menu{
  display:flex;
  align-items:center;
  gap: 28px;
}

.nav-menu a{
  text-decoration:none;
  color: var(--white-green);
  font-weight: 700;
  position: relative;
  letter-spacing: .2px;
}

.nav-menu a:hover,
.nav-menu a.is-active{
  color: #9fe0b6;
}

.nav-menu a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:-8px;
  width:0;
  height:2px;
  background: #7ee3a2;
  transition: width .2s ease;
}

.nav-menu a:hover::after,
.nav-menu a.is-active::after{
  width:100%;
}

.menu-toggle{
  display:none;
  border:1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.04);
  border-radius: 12px;
  padding: 8px 10px;
  cursor:pointer;
}

.menu-toggle span{
  display:block;
  width:22px;
  height:2px;
  background: var(--white-green);
  margin:4px 0;
}

/* hero image + video */
.hero,
.hero-video{
  min-height: calc(100vh - 96px);
  position: relative;
  overflow: hidden;
}

.hero{
  background-image: url("./hero.png");
  background-size: cover;
  background-position: center;
}

.hero-video{
  background: #091017;
}

.hero-video-bg{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  z-index:0;
}

.hero-overlay{
  min-height: calc(100vh - 96px);
  background:
    linear-gradient(
      90deg,
      rgba(8,13,11,.82) 0%,
      rgba(8,13,11,.60) 36%,
      rgba(8,13,11,.40) 60%,
      rgba(8,13,11,.55) 100%
    );
  display:flex;
  align-items:center;
  padding: 36px 0;
  position: relative;
  z-index:1;
}

.hero-content{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 28px;
  align-items: center;
  width: 100%;
  padding: 44px 0;
}

.hero-copy{
  max-width: 720px;
  color: var(--white-green);
  padding-top: 10px;
}

.eyebrow{
  display:inline-block;
  background: rgba(255,255,255,.06);
  color: #d8f3df;
  border: 1px solid rgba(255,255,255,.12);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  margin-bottom: 14px;
  backdrop-filter: blur(5px);
}

.service-eyebrow{
  background: rgba(85,185,120,.10);
  border: 1px solid rgba(85,185,120,.22);
}

.hero h1,
.page-hero h1{
  font-size: clamp(34px, 6vw, 62px);
  line-height: .98;
  margin-bottom: 16px;
  text-shadow: 0 8px 18px rgba(0,0,0,.28);
}

.hero p,
.page-hero p,
.panel p,
.info-card p,
.work-card figcaption,
.quote-card p,
.contact-card,
.fact-card span{
  line-height: 1.6;
}

.hero p{
  font-size: 18px;
  margin-bottom: 22px;
  color: rgba(245,251,246,.88);
  max-width: 700px;
}

.hero-buttons,
.cta-row{
  display:flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.hero-badges{
  display:flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.hero-badges span{
  background: rgba(255,255,255,.08);
  color: var(--white-green);
  border: 1px solid rgba(255,255,255,.12);
  padding: 9px 12px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 14px;
  backdrop-filter: blur(4px);
}

.hero-panel{
  display:grid;
  gap: 14px;
  padding-top: 8px;
  justify-self: end;
  width: 100%;
  max-width: 430px;
}

.service-card{
  background: rgba(23,28,35,.76);
  border: 1px solid rgba(255,255,255,.10);
  padding: 18px;
  border-radius: 20px;
  box-shadow: var(--shadow);
  transition: .22s ease;
  backdrop-filter: blur(8px);
}

.service-card:hover{
  transform: translateY(-4px);
  background: rgba(30,37,45,.90);
}

.service-card h3{
  margin-bottom: 6px;
  color: var(--text);
  font-size: 18px;
}

.service-card p{
  color: var(--text-soft);
}

/* buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 22px;
  border-radius: 999px;
  text-decoration:none;
  font-weight: 800;
  border: 1px solid transparent;
  transition: .2s ease;
}

.btn.primary{
  background: var(--green);
  color: #08110b;
  box-shadow: 0 8px 20px rgba(0,0,0,.25);
}

.btn.primary:hover{
  background: #69d08d;
  transform: translateY(-1px);
}

.btn.secondary{
  background: rgba(255,255,255,.05);
  color: var(--text);
  border-color: rgba(255,255,255,.12);
}

.btn.secondary:hover{
  background: rgba(255,255,255,.08);
}

.btn.full{
  width: 100%;
}

/* general sections */
.section{
  padding: 48px 0;
}

.recent-work-section{
  padding-top: 54px;
  padding-bottom: 30px;
}

.about-section{
  padding-top: 18px;
  padding-bottom: 48px;
}

.page-main{
  min-height: calc(100vh - 160px);
}

.page-hero{
  padding: 72px 0 24px;
  background: linear-gradient(180deg, #11161d, #0e1319);
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.page-hero-dark{
  background: linear-gradient(180deg, #07090d, #0c1015);
}

.page-hero h1{
  color: var(--text);
  text-shadow: none;
}

.page-hero p{
  font-size: 18px;
  color: var(--text-soft);
  max-width: 720px;
}

.work-hero-minimal{
  padding-bottom: 8px;
}

.split{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.stack{
  display:grid;
  gap: 14px;
}

.panel,
.info-card,
.quote-card,
.fact-card,
.work-card,
.contact-card{
  background: rgba(23,28,35,.96);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
}

.panel h2,
.panel h3{
  margin-bottom: 10px;
  line-height: 1.15;
}

.panel h2{
  font-size: clamp(28px, 4vw, 42px);
}

.panel p,
.info-card p,
.quote-card p{
  color: var(--text-soft);
  font-size: 17px;
}

.services-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.info-card{
  transition: .22s ease;
}

.info-card:hover{
  transform: translateY(-4px);
  background: #202833;
}

.info-card h3{
  margin-bottom: 8px;
}

/* services page photos */
.services-showcase{
  padding-top: 26px;
  padding-bottom: 18px;
}

.services-showcase__header{
  text-align: center;
  margin-bottom: 28px;
}

.services-showcase__header h2{
  font-size: clamp(30px, 4vw, 52px);
  margin-bottom: 8px;
  color: var(--text);
}

.services-showcase__header p{
  font-size: 20px;
  color: var(--text-soft);
  font-weight: 700;
}

.services-photos{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}

.services-photo-card{
  background: rgba(23,28,35,.96);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.services-photo-card img{
  width:100%;
  height:420px;
  object-fit:cover;
  display:block;
  transition: transform .35s ease;
}

.services-photo-card:hover img{
  transform: scale(1.03);
}

.services-main{
  padding-top: 20px;
}

.services-bottom-panels{
  padding-top: 24px;
}

.services-final-cta{
  padding-top: 12px;
}

.services-final-box,
.work-final-box{
  text-align: center;
}

.services-final-box h2,
.work-final-box h2{
  margin-bottom: 10px;
}

.services-final-box p,
.work-final-box p{
  max-width: 760px;
  margin: 0 auto 18px;
}

.quote-card form{
  display:grid;
  gap: 10px;
}

.quote-card label{
  display:block;
  font-weight: 700;
  color: var(--text);
}

.quote-card input,
.quote-card textarea{
  width:100%;
  margin-top: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  border:1px solid rgba(255,255,255,.10);
  background: #0f141a;
  color: var(--text);
  outline:none;
}

.quote-card input:focus,
.quote-card textarea:focus{
  border-color: var(--green);
}

.form-note{
  min-height: 18px;
  font-size: 14px;
}

.fact-card strong{
  display:block;
  margin-bottom: 4px;
}

.fact-card span{
  color: var(--text-soft);
}

/* work page */
.work-page-gallery{
  padding-top: 34px;
}

.work-page-gallery-dark{
  background: #07090d;
}

.work-gallery-premium{
  padding-top: 16px;
}

.work-page-intro{
  text-align: center;
  margin-bottom: 24px;
}

.work-page-intro h2{
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 10px;
}

.work-page-intro p{
  max-width: 760px;
  margin: 0 auto;
  color: var(--text-soft);
  font-size: 17px;
}

.work-page-intro-client{
  margin-bottom: 18px;
}

.work-grid{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 20px;
}

.work-grid-large{
  margin-top: 10px;
}

.work-grid-premium{
  gap: 16px;
}

.work-grid-premium .work-card{
  background: transparent;
  border: none;
  border-radius: 18px;
  box-shadow: none;
  padding: 0;
}

.work-grid-premium .work-card:hover{
  transform: translateY(-4px);
  box-shadow: none;
}

.work-card{
  overflow: hidden;
  padding: 0;
  transition: transform .25s ease, box-shadow .25s ease;
  animation: fadeUp .6s ease forwards;
  cursor: pointer;
}

.work-card img{
  width:100%;
  height:280px;
  object-fit:cover;
  display:block;
  transition: transform .35s ease, opacity .25s ease;
  border-radius: 18px;
}

.work-card:hover img{
  transform: scale(1.03);
  opacity: .96;
}

.work-card figcaption{
  padding: 14px;
  color: var(--text-soft);
  font-weight: 600;
}

.work-final-cta{
  padding-top: 12px;
}

/* ABOUT reviews premium block */
.google-rating-panel{
  padding: 28px;
}

.google-rating-bar{
  display:grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 24px;
  align-items:center;
}

.google-rating-kicker{
  display:inline-block;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #9fe0b6;
  margin-bottom: 10px;
}

.google-rating-left h2{
  margin: 0;
  font-size: clamp(32px, 4vw, 58px);
  line-height: .95;
}

.google-rating-right{
  display:grid;
  gap: 10px;
  justify-items:start;
}

.google-rating-score{
  display:flex;
  align-items:center;
  gap: 14px;
}

.google-score-number{
  font-size: 52px;
  font-weight: 900;
  line-height: 1;
  color: var(--white-green);
}

.google-stars,
.review-stars{
  color: #f3d15b;
  letter-spacing: .08em;
  font-size: 28px;
}

.google-rating-right p{
  color: var(--text-soft);
  font-size: 18px;
}

.reviews-cards-grid{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 22px;
}

.review-card-premium{
  background: rgba(23,28,35,.96);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 22px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.review-card-premium h3{
  margin: 14px 0 10px;
  font-size: 24px;
  color: var(--text);
}

.review-card-premium p{
  color: var(--text-soft);
  font-size: 18px;
  line-height: 1.65;
}

.review-header{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}

.review-avatar{
  width:42px;
  height:42px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:20px;
  background:rgba(255,255,255,.08);
}

/* CONTACT upgrades */
.contact-main-section{
  padding-top: 42px;
}

.contact-card-strong{
  display:block;
  text-decoration:none;
  padding: 22px;
}

.contact-card-strong strong{
  display:block;
  margin-bottom: 6px;
  font-size: 15px;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #9fe0b6;
}

.contact-card-strong span{
  display:block;
  color: var(--white-green);
  font-size: 22px;
  line-height: 1.4;
  word-break: break-word;
}

.whatsapp-card strong{
  color: #6fe28e;
}

.contact-cta-panel{
  display:grid;
  gap: 18px;
}

.contact-actions{
  display:grid;
  gap: 12px;
  margin-top: 4px;
}

.contact-action-btn{
  display:flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  width:100%;
  min-height: 52px;
  padding: 14px 18px;
  border-radius: 16px;
  text-decoration:none;
  font-weight: 800;
  color: var(--white-green);
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  transition: .2s ease;
}

.contact-action-btn:hover{
  background: rgba(255,255,255,.09);
  transform: translateY(-1px);
}

.whatsapp-action-btn{
  background: rgba(85,185,120,.12);
  border-color: rgba(85,185,120,.24);
}

.whatsapp-action-btn:hover{
  background: rgba(85,185,120,.18);
}

.wa-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width: 24px;
  height: 24px;
}

.wa-icon svg{
  width: 24px;
  height: 24px;
  display:block;
  color: #6fe28e;
}

/* lightbox pro */
.lightbox{
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.96);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px 78px;
  z-index: 9999;
}
.lightbox-img{
  max-width: 92%;
  max-height: 86vh;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,.55);
}
.lightbox-close{
  position: absolute;
  top: 22px;
  right: 28px;
  font-size: 42px;
  line-height: 1;
  color: #fff;
  cursor: pointer;
  user-select: none;
}
.lightbox-btn{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 54px;
  height: 54px;
  border: none;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  color: #fff;
  font-size: 28px;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
}
.lightbox-btn:hover{
  background: rgba(255,255,255,.22);
}
.lightbox-prev{
  left: 18px;
}
.lightbox-next{
  right: 18px;
}

@keyframes fadeUp{
  from{
    opacity:0;
    transform: translateY(20px);
  }
  to{
    opacity:1;
    transform: translateY(0);
  }
}

.chip-row{
  display:flex;
  flex-wrap:wrap;
  gap: 10px;
  margin-top: 10px;
}

.chip-row span{
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.10);
  padding: 8px 12px;
  border-radius: 999px;
  font-weight: 700;
  color: var(--text);
}

.contact-card{
  text-decoration:none;
  color: var(--text);
  font-weight: 700;
  transition: .2s ease;
}

.contact-card:hover{
  background: #202833;
}

.footer{
  background: linear-gradient(90deg, #0b0f14 0%, #121920 100%);
  color: var(--white-green);
  padding: 24px 0;
  margin-top: 20px;
  border-top: 1px solid rgba(255,255,255,.06);
}

.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
}

.footer a{
  color: var(--white-green);
  text-decoration:none;
  font-weight: 700;
}

.footer a:hover{
  text-decoration: underline;
}

.whatsapp-float{
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 999px;
  display:grid;
  place-items:center;
  background: var(--green);
  color: #08110b;
  text-decoration:none;
  box-shadow: 0 12px 28px rgba(0,0,0,.28);
  z-index: 60;
}

.whatsapp-float svg{
  width: 30px;
  height: 30px;
  display:block;
  color: #08110b;
}

@media (max-width: 980px){
  .hero-content,
  .split,
  .services-grid,
  .work-grid,
  .services-photos{
    grid-template-columns: 1fr 1fr;
  }

  .google-rating-bar,
  .reviews-cards-grid{
    grid-template-columns: 1fr;
  }

  .hero-content{
    grid-template-columns: 1fr;
    align-items: start;
  }

  .hero,
  .hero-video{
    min-height: auto;
  }

  .hero-overlay{
    min-height: auto;
    padding: 48px 0 58px;
  }

  .hero-panel{
    justify-self: start;
    max-width: 100%;
    grid-template-columns: 1fr 1fr;
  }

  .nav-menu{
    display:none;
    position:absolute;
    right: 5%;
    top: 132px;
    background: linear-gradient(180deg, #24372d 0%, #10161d 100%);
    border: 1px solid rgba(255,255,255,.08);
    border-radius: 16px;
    padding: 14px;
    flex-direction: column;
    align-items: flex-start;
    min-width: 220px;
    box-shadow: 0 14px 30px rgba(0,0,0,.35);
  }

  .nav-menu.open{
    display:flex;
  }

  .menu-toggle{
    display:block;
  }

  .services-photo-card img{
    height: 320px;
  }

  .work-card img{
    height: 240px;
  }

  .google-score-number{
    font-size: 44px;
  }
}

@media (max-width: 700px){
  .services-grid,
  .work-grid,
  .split,
  .services-photos,
  .google-rating-bar,
  .reviews-cards-grid{
    grid-template-columns: 1fr;
  }

  .logo img{
    height: 92px;
  }

  .hero,
  .hero-video{
    min-height: auto;
  }

  .hero-overlay{
    min-height: auto;
    padding: 38px 0 48px;
    background: linear-gradient(180deg, rgba(8,13,11,.72) 0%, rgba(8,13,11,.58) 48%, rgba(8,13,11,.76) 100%);
  }

  .hero-content{
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 18px 0;
  }

  .hero h1{
    font-size: 42px;
  }

  .hero p,
  .panel p,
  .info-card p,
  .quote-card p,
  .services-showcase__header p,
  .work-page-intro p,
  .review-card-premium p{
    font-size: 16px;
  }

  .hero-panel{
    grid-template-columns: 1fr;
  }

  .panel,
  .info-card,
  .quote-card,
  .fact-card,
  .work-card,
  .contact-card,
  .service-card,
  .review-card-premium,
  .contact-card-strong{
    padding: 18px;
  }

  .nav-inner{
    min-height: 86px;
  }

  .section{
    padding: 40px 0;
  }

  .services-photo-card img{
    height: 260px;
  }

  .work-card img{
    height: 230px;
  }

  .lightbox{
    padding: 20px 16px;
  }
  .lightbox-img{
    max-width: 100%;
  }
  .lightbox-close{
    top: 16px;
    right: 20px;
    font-size: 36px;
  }
  .lightbox-btn{
    width: 46px;
    height: 46px;
    font-size: 24px;
  }
  .lightbox-prev{
    left: 10px;
  }
  .lightbox-next{
    right: 10px;
  }

  .google-rating-panel{
    padding: 20px;
  }

  .google-rating-left h2{
    font-size: 38px;
  }

  .google-stars,
  .review-stars{
    font-size: 22px;
  }

  .review-card-premium h3{
    font-size: 22px;
  }

  .contact-card-strong span{
    font-size: 18px;
  }

  .whatsapp-float{
    width: 52px;
    height: 52px;
  }

  .whatsapp-float svg{
    width: 28px;
    height: 28px;
  }
}
