/* =========================
   RESET
========================= */
*{
  margin:0;
  padding:0;
  box-sizing:border-box;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  background:#f5f8fc;
  color:#111827;
  line-height:1.6;
  font-size:16px;
  overflow-x:hidden;
}

a{
  text-decoration:none;
}

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

:root{
  --primary:#1993ff;
  --primary-2:#3ab7ff;
  --primary-dark:#1b8fff;
  --accent:#25d366;
  --line:#e6eef7;
  --panel:#ffffff;
  --panel-soft:#eef7ff;
  --text:#111827;
  --muted:#667085;
  --shadow:0 10px 30px rgba(17,24,39,0.04);
  --card-shadow:0 10px 24px rgba(46,167,255,0.08);
}

.container{
  width:min(1180px, 92%);
  margin:auto;
}

.section{
  padding:80px 0;
}

.section-heading{
  text-align:center;
  max-width:720px;
  margin:0 auto 16px;
}

.section-tag{
  display:inline-block;
  padding:6px 14px;
  border-radius:999px;
  background:#e8f3ff;
  color:#1993ff;
  font-size:13px;
  font-weight:600;
  margin-bottom:14px;
}

.section-heading h2{
  font-size:clamp(2rem, 5vw, 2.8rem);
  line-height:1.15;
  margin-bottom:12px;
}

.section-heading p{
  color:#667085;
}

.mobile-break{
  display:none;
}

.btn-wrap{
  text-align:center;
  margin-top:20px;
}

/* =========================
   GLOBAL TRANSITIONS
========================= */
.btn,
.card,
.gallery-item{
  transition:all 0.25s ease;
}

.hero-text{
  animation:fadeUp 0.8s ease forwards;
}

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

/* =========================
   HEADER
========================= */
.header{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,0.94);
  backdrop-filter:blur(14px);
  border-bottom:1px solid rgba(15,23,42,0.06);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
  gap:16px;
}

.logo-wrap{
  display:inline-flex;
  align-items:center;
  flex-shrink:0;
}

.logo{
  height:46px;
}

.desktop-nav{
  display:flex;
  align-items:center;
  justify-content:flex-end;
  gap:28px;
  flex:1;
  min-width:0;
  flex-wrap:nowrap;
}

.desktop-nav a{
  color:#1f2937;
  font-weight:500;
  font-size:16px;
  line-height:1;
  white-space:nowrap;
}

.desktop-nav a:hover{
  color:var(--primary);
}

.nav-btn{
  background:linear-gradient(135deg, var(--primary-2), var(--primary-dark));
  color:#fff;
  padding:12px 20px;
  border-radius:999px;
  font-weight:600;
  box-shadow:0 10px 25px rgba(27,143,255,0.25);
}

/* =========================
   BUTTONS
========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 24px;
  border-radius:999px;
  font-weight:600;
  border:1px solid transparent;
}

.btn-primary{
  background:linear-gradient(135deg, #40bbff, #1b8fff);
  color:#fff;
  box-shadow:0 12px 30px rgba(27,143,255,0.28);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-whatsapp{
  background:linear-gradient(135deg, #62d86b, #29bf58);
  color:#fff;
  box-shadow:0 12px 30px rgba(41,191,88,0.22);
}

.btn-whatsapp:hover{
  transform:translateY(-2px);
}

.btn-light{
  background:#fff;
  color:#1292ff;
}

.btn-outline-light{
  border:1px solid rgba(255,255,255,0.45);
  color:#fff;
  background:transparent;
}

/* =========================
   HOME HERO
========================= */
.hero{
  position:relative;
  min-height:680px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:
    linear-gradient(rgba(8,18,38,0.62), rgba(8,18,38,0.62)),
    url("images/hero-bg.jpeg") center center / cover no-repeat;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:radial-gradient(circle at top right, rgba(58,183,255,0.25), transparent 35%);
}

.hero-inner{
  position:relative;
  z-index:2;
}

.hero-text{
  max-width:520px;
  color:#fff;
}

.eyebrow{
  display:inline-block;
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.18);
  color:#fff;
  padding:8px 14px;
  border-radius:999px;
  margin-bottom:18px;
  font-weight:500;
  font-size:14px;
}

.hero h1{
  font-size:clamp(2.5rem, 6vw, 4.7rem);
  line-height:1.05;
  margin-bottom:18px;
  font-weight:800;
}

.hero p{
  font-size:1.06rem;
  color:rgba(255,255,255,0.88);
  max-width:640px;
  margin-bottom:26px;
  line-height:1.8;
}

/* HERO ALIGN FIX */
.hero-text{
  max-width:520px;
}

/* Buttons */
.hero-buttons{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  gap:12px;
  margin:18px 0;
}

.hero-buttons .btn{
  width:100%;
  max-width:520px;
  padding:14px 18px;
}

/* Features + area box match width */
.hero-features,
.hero-areas{
  width:100%;
  max-width:520px;
}

/* Clean feature text */
.hero-features span{
  padding:0;
}

.hero-areas{
  margin-top:14px;
  max-width:520px;

  background:none;
  border:none;
  border-radius:0;
  padding:0;

  color:rgba(255,255,255,0.9);
  font-size:15px;
  line-height:1.6;
}

/* =========================
   SERVICES
========================= */
.services{
  padding:20px 20px 0;
  max-width:1200px;
  margin:auto;
}

.services.section{
  background:#ffffff;
}

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

.service-card{
  position:relative;
  padding:0;
  overflow:hidden;
  background:#ffffff;
  border-radius:20px;
  box-shadow:var(--shadow);
}

.service-card a{
  display:block;
  width:100%;
  height:100%;
  position:relative;
}

.service-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.service-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(
    to top,
    rgba(7,17,31,0.18),
    rgba(7,17,31,0.02) 45%,
    transparent 72%
  );
  pointer-events:none;
}

.service-overlay{
  position:absolute;
  bottom:20px;
  left:20px;
  right:20px;
  color:#fff;
  z-index:2;
}

.service-overlay h3{
  font-size:1.4rem;
  line-height:1.1;
  text-shadow:none;
}

.meet-link{
  padding: 50px 0;
  background: #f8fbff;
  border-top: 1px solid rgba(15,23,42,0.06);
  border-bottom: 1px solid rgba(15,23,42,0.06);
}

.meet-link-inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.meet-link-text h3{
  margin: 8px 0 10px;
}

.meet-link-text p{
  max-width: 520px;
}

.meet-link-action{
  flex-shrink: 0;
}

@media (max-width: 768px){
  .meet-link-inner{
    flex-direction: column;
    align-items: flex-start;
  }

  .meet-link-action{
    width: 100%;
  }

  .meet-link-action .btn{
    width: 100%;
    text-align: center;
  }
}

/* =========================
   REVIEWS
========================= */
.reviews-section {
  padding: 80px 0;
  background: #f5f8fc;
  overflow: hidden;
}

.reviews-heading {
  max-width: 720px;
  margin: 0 auto 26px;
  text-align: left;
}

.reviews-heading h2 {
  margin: 12px 0 12px;
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.05;
  color: #0f172a;
}

.reviews-heading p {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.7;
  color: #667085;
}

.featured-review {
  position: relative;
  max-width: 860px;
  margin: 0 0 34px;
  padding: 34px 30px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(46,167,255,0.14);
  border-radius: 28px;
  box-shadow: 0 10px 24px rgba(46,167,255,0.08);
}

.featured-review::before {
  content: "“";
  position: absolute;
  top: 12px;
  left: 18px;
  font-size: 58px;
  line-height: 1;
  color: rgba(25,147,255,0.12);
  font-weight: 700;
}

.featured-review-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  position: relative;
  z-index: 1;
}

.featured-review-stars {
  margin-bottom: 0;
  font-size: 1.1rem;
  letter-spacing: 2px;
  color: #1993ff;
}

.google-review-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: #eef7ff;
  color: #1993ff;
  font-size: 13px;
  font-weight: 600;
  border: 1px solid rgba(46,167,255,0.12);
}

.featured-review-text {
  position: relative;
  margin: 0 0 18px;
  font-size: 1.18rem;
  line-height: 1.8;
  color: #1f2937;
  z-index: 1;
}

.featured-review-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.featured-review-meta strong {
  font-size: 1rem;
  color: #0f172a;
}

.featured-review-meta span {
  color: #667085;
  font-size: 0.95rem;
}

.featured-review-footer {
  margin-top: 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.featured-review-score {
  display: flex;
  align-items: center;
  gap: 10px;
}

.featured-review-score strong {
  font-size: 1.6rem;
  line-height: 1;
  color: #0f172a;
}

.featured-review-score span {
  color: #667085;
  font-size: 0.95rem;
}

.featured-review-footer .btn {
  min-width: 210px;
}

.reviews-marquee {
  width: 100%;
  overflow: hidden;
  position: relative;
  display: flex;
  mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
  -webkit-mask-image: linear-gradient(to right, transparent, black 8%, black 92%, transparent);
}

.reviews-track {
  display: flex;
  flex-wrap: nowrap;
  gap: 24px;
  animation: reviews-scroll 30s linear infinite;
  will-change: transform;
}

.reviews-marquee:hover .reviews-track {
  animation-play-state: paused;
}

.review-card {
  position: relative;
  flex: 0 0 auto;
  width: 320px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
  border: 1px solid rgba(46,167,255,0.12);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 10px 24px rgba(46,167,255,0.08);
}

.review-card::before {
  content: "“";
  position: absolute;
  top: 10px;
  left: 16px;
  font-size: 40px;
  line-height: 1;
  color: rgba(25,147,255,0.12);
  font-weight: 700;
}

.review-stars {
  position: relative;
  margin-bottom: 14px;
  font-size: 1rem;
  letter-spacing: 2px;
  color: #1993ff;
  z-index: 1;
}

.review-card p {
  position: relative;
  margin: 0 0 16px;
  color: #334155;
  font-size: 0.98rem;
  line-height: 1.75;
  z-index: 1;
}

.review-card strong {
  position: relative;
  display: block;
  color: #0f172a;
  font-size: 0.98rem;
  font-weight: 700;
  z-index: 1;
}

@keyframes reviews-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .reviews-section {
    padding: 60px 0;
  }

  .reviews-heading {
    margin-bottom: 22px;
    padding: 0 20px;
  }

  .featured-review {
    margin: 0 20px 28px;
    padding: 26px 22px;
    border-radius: 22px;
  }

  .featured-review-top {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-review-text {
    font-size: 1.02rem;
    line-height: 1.75;
  }

  .featured-review-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .featured-review-footer .btn {
    min-width: 0;
    width: 100%;
    max-width: 280px;
  }

  .reviews-marquee {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .reviews-track {
    gap: 16px;
    animation: none;
    padding: 0 20px 4px;
  }

  .review-card {
    width: 280px;
    padding: 20px;
  }

  .reviews-marquee::-webkit-scrollbar {
    display: none;
  }
}

/* =========================
   ABOUT / WHY
========================= */
.about{
  background:linear-gradient(180deg, #ffffff, #f7fbff);
}

.about-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:28px;
  align-items:center;
}

.about-text h2{
  font-size:clamp(2rem, 5vw, 2.8rem);
  margin-bottom:16px;
}

.about-text p{
  color:#667085;
  margin-bottom:18px;
}

.about-box{
  display:grid;
  grid-template-columns:repeat(2, 1fr);
  gap:18px;
}

.about-stat{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px 20px;
  text-align:center;
  box-shadow:var(--shadow);
}

.about-stat h3{
  font-size:2rem;
  color:var(--primary);
  margin-bottom:8px;
}

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

.why-card{
  background:#fff;
  border:1px solid var(--line);
  border-radius:20px;
  padding:28px 22px;
  box-shadow:var(--shadow);
}

.why-card h3,
.why-card h2{
  margin-bottom:10px;
  font-size:1.1rem;
}

.why-card p{
  color:#667085;
}

/* =========================
   CONTACT
========================= */
#contact{
  text-align:center;
}

.form-row2{
  margin-bottom:15px;
}

.form-row2 input,
.form-row2 select{
  width:100%;
  padding:14px 16px;
  border:1px solid #cfd8e3;
  border-radius:10px;
  font-size:16px;
  font-family:inherit;
  background:#fff;
  display:block;
  color:#111;
  box-sizing:border-box;
}

.form-row2 select{
  appearance:none;
  -webkit-appearance:none;
  -moz-appearance:none;
}

.contact-card,
.contact-form{
  background:#fff;
  border:1px solid var(--line);
  border-radius:22px;
  padding:28px;
  box-shadow:var(--shadow);
}

.contact-form{
  display:grid;
  gap:14px;
}

.contact-form input,
.contact-form textarea{
  width:100%;
  border:1px solid #d9e5f2;
  border-radius:14px;
  padding:14px 16px;
  font-family:inherit;
  font-size:15px;
  outline:none;
  background:#fdfefe;
}

.contact-form input:focus,
.contact-form textarea:focus{
  border-color:#50b9ff;
  box-shadow:0 0 0 4px rgba(80,185,255,0.12);
}

.contact-form button{
  background:linear-gradient(135deg, #3ab7ff, #1b8fff);
  color:#fff;
  border:none;
  padding:15px 20px;
  border-radius:999px;
  font-family:inherit;
  font-weight:600;
  cursor:pointer;
}

/* =========================
   NAPIT
========================= */
.napit{
  display:flex;
  align-items:center;
  justify-content:space-between;
  max-width:1000px;
  margin:20px auto;
  background:white;
  padding:20px;
  border-radius:10px;
  gap:20px;
}

.napit img{
  max-height:80px;
  width:auto;
  object-fit:contain;
  flex-shrink:0;
}

/* =========================
   GALLERY
========================= */
.elite-gallery{
  background:linear-gradient(180deg, #f7fbff, #ffffff);
}

.gallery-dropdown{
  background:#fff;
  border:1px solid var(--line);
  border-radius:24px;
  padding:24px;
  box-shadow:0 16px 40px rgba(17,24,39,0.05);
}

.gallery-dropdown summary{
  list-style:none;
  cursor:pointer;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  font-size:1.25rem;
  font-weight:700;
  color:#0f172a;
}

.gallery-dropdown summary::-webkit-details-marker{
  display:none;
}

.gallery-dropdown summary::after{
  content:"+";
  width:42px;
  height:42px;
  border-radius:50%;
  background:#eef7ff;
  color:#1993ff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:28px;
  line-height:1;
  flex-shrink:0;
}

.gallery-dropdown[open] summary::after{
  content:"−";
}

.gallery-block{
  margin-top:28px;
  padding-top:28px;
  border-top:1px solid #edf2f7;
}

.gallery-block:first-of-type{
  margin-top:24px;
}

.gallery-block-head{
  margin-bottom:16px;
}

.gallery-block-head h3{
  font-size:1.25rem;
  margin-bottom:6px;
  color:#111827;
}

.gallery-block-head p{
  color:#667085;
}

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

.gallery-item{
  border:0;
  padding:0;
  background:transparent;
  cursor:pointer;
  border-radius:20px;
  overflow:hidden;
  position:relative;
  box-shadow:0 10px 24px rgba(17,24,39,0.08);
}

.gallery-item::after{
  content:"View";
  position:absolute;
  right:14px;
  bottom:14px;
  background:rgba(12,23,39,0.75);
  color:#fff;
  padding:8px 12px;
  border-radius:999px;
  font-size:13px;
  font-weight:600;
  opacity:0;
  transform:translateY(8px);
  transition:0.3s ease;
}

.gallery-item:hover{
  transform:translateY(-4px);
  box-shadow:0 18px 34px rgba(17,24,39,0.14);
}

.gallery-item:hover::after{
  opacity:1;
  transform:translateY(0);
}

.gallery-item img{
  width:100%;
  height:260px;
  display:block;
  object-fit:cover;
  transition:transform 0.4s ease;
}

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

.gallery-modal{
  display:none;
  position:fixed;
  inset:0;
  z-index:2000;
  background:rgba(8,18,38,0.92);
  padding:30px;
  align-items:center;
  justify-content:center;
}

.gallery-modal.show{
  display:flex;
}

.gallery-modal-img{
  max-width:min(1000px, 95vw);
  max-height:88vh;
  width:auto;
  height:auto;
  border-radius:18px;
  object-fit:contain;
  box-shadow:0 20px 50px rgba(0,0,0,0.35);
  animation:zoomIn 0.3s ease;
}

.gallery-close{
  position:absolute;
  top:18px;
  right:24px;
  color:#fff;
  font-size:42px;
  line-height:1;
  cursor:pointer;
}

@keyframes zoomIn{
  from{
    transform:scale(0.9);
    opacity:0;
  }
  to{
    transform:scale(1);
    opacity:1;
  }
}

/* =========================
   AREAS INTERACTIVE
========================= */
.areas-interactive{
  background:#0c1727;
  color:#ffffff;
  padding:80px 20px;
}

.areas-interactive .container{
  max-width:1200px;
  margin:0 auto;
}

.areas-interactive h2{
  font-size:42px;
  line-height:1.2;
  margin-bottom:24px;
  color:#ffffff;
}

.map-wrap{
  position:relative;
  width:100%;
  max-width:740px;
  margin:0 auto;
  border-radius:18px;
  overflow:hidden;
}

.map-image{
  width:100%;
  height:auto;
  display:block;
  object-fit:contain;
}

/* =========================
   FOOTER
========================= */
.footer{
  background:#0c1727;
  color:#d7dfeb;
  padding:24px 0;
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.footer-links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
}

.footer-links a{
  color:#d7dfeb;
}

/* =========================
   MOBILE STICKY BAR
========================= */
.mobile-bar{
  display:none;
}

/* =========================
   RESPONSIVE
========================= */
@media (max-width:1100px){
  .commercial-hero-grid,
  .service-layout,
  .difference-grid{
    grid-template-columns:1fr;
  }

  .service-feature-card{
    position:static;
  }

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

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

@media (max-width:1024px){
  .nav{
    gap:12px;
  }

  .logo{
    height:42px;
  }

  .desktop-nav{
    gap:18px;
  }

  .desktop-nav a{
    font-size:15px;
  }

  .hero{
    min-height:620px;
    background-position:center center;
  }

  .hero h1{
    font-size:clamp(2.3rem, 5vw, 4rem);
  }

  .services-grid,
  .why-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .about-grid,
  .contact-grid{
    grid-template-columns:1fr;
  }

  .cta-band-inner{
    display:grid;
    grid-template-columns:1fr;
    gap:16px;
  }
}

@media (max-width:820px){
  .service-grid,
  .commercial-strip-grid,
  .process-grid{
    grid-template-columns:1fr;
  }

  .commercial-hero{
    padding:90px 0 60px;
  }

  .panel-card.panel-main,
  .service-feature-card,
  .service-box,
  .difference-card,
  .process-step,
  .commercial-cta-box{
    border-radius:22px;
  }
}

@media (max-width:768px){
  .section-heading h2{
    line-height:1.3;
  }

  .mobile-break{
    display:block;
  }

  .nav{
    flex-wrap:nowrap;
    gap:10px;
    padding:12px 0;
  }

  .logo{
    height:40px;
  }

  .desktop-nav{
    gap:10px;
    flex:1;
    min-width:0;
    justify-content:flex-end;
  }

  .desktop-nav a{
    font-size:13px;
    white-space:nowrap;
    letter-spacing:-0.1px;
  }

  .nav-btn{
    display:none;
  }

  .hero{
    min-height:auto;
    padding:80px 0 55px;
    background-position:center center;
  }

  .hero-text{
    max-width:100%;
  }

  .hero h1{
    font-size:2.2rem;
    line-height:1.08;
  }

  .hero p{
    font-size:1rem;
    margin-bottom:22px;
  }

  .hero-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-buttons .btn{
    width:min(100%, 420px);
    text-align:center;
  }

  .hero-features{
    gap:10px;
    font-size:14px;
  }

  .hero-features span{
    padding:8px 12px;
  }

  .hero-areas{
    font-size:15px;
    padding:14px 16px;
    border-radius:18px;
  }

  .trust-grid,
  .services-grid,
  .why-grid,
  .about-box,
  .contact-grid,
  .gallery-grid,
  .hero-grid,
  .cards,
  .warning-grid,
  .trust-wrap,
  .cta{
    grid-template-columns:1fr;
  }

  .card{
    align-items:flex-start;
    padding:16px;
    gap:12px;
  }

  .floating-buttons{
    display:none;
  }

  .mobile-bar{
    display:flex;
    position:fixed;
    left:0;
    bottom:0;
    width:100%;
    z-index:1000;
    box-shadow:0 -6px 20px rgba(0,0,0,0.12);
  }

  .mobile-bar a{
    flex:1;
    text-align:center;
    padding:15px 12px;
    color:#fff;
    font-weight:700;
    font-size:15px;
  }

  .mobile-call{
    background:linear-gradient(135deg, #2196f3, #177fe0);
  }

  .mobile-whatsapp{
    background:linear-gradient(135deg, #25d366, #19b652);
  }

  .footer{
    padding-bottom:80px;
  }

  .section{
    padding:65px 0;
  }

  .gallery-dropdown{
    padding:18px;
    border-radius:18px;
  }

  .gallery-dropdown summary{
    font-size:1.1rem;
  }

  .gallery-block{
    margin-top:22px;
    padding-top:22px;
  }

  .gallery-item img{
    height:240px;
  }

  .gallery-close{
    top:10px;
    right:16px;
    font-size:36px;
  }

  .areas-box{
    grid-template-columns:1fr;
    gap:28px;
    padding:22px;
  }

  .areas-info h3{
    font-size:32px;
  }

  .areas-interactive h2{
    font-size:34px;
  }

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

@media (max-width:640px){
  .commercial-hero-copy h1{
    line-height:1.02;
  }

  .commercial-hero-copy .hero-text,
  .service-box p,
  .difference-card p,
  .process-step p,
  .commercial-cta-box p{
    font-size:1rem;
  }

  .panel-card.panel-main,
  .service-feature-card,
  .service-box,
  .difference-card,
  .process-step{
    padding:22px;
  }

  .commercial-cta-box{
    padding:34px 22px;
  }

  .commercial-services,
  .commercial-difference,
  .commercial-sectors,
  .commercial-process,
  .commercial-cta-wrap{
    padding:70px 0;
  }
}

@media (max-width:600px){
  .areas-interactive{
    padding:60px 16px;
  }

  .areas-interactive h2{
    font-size:28px;
  }

  .map-wrap{
    border-radius:18px;
  }
}

@media (max-width:768px){
  .hero-buttons{
    flex-direction:row;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
  }

  .hero-buttons .btn{
    width:auto;
    min-width:180px;
    max-width:240px;
    text-align:center;
  }
}

@media (max-width:480px){
  .hero-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-buttons .btn{
    width:100%;
    max-width:300px;
  }
}

  .hero-features{
    flex-direction:column;
    align-items:flex-start;
    gap:10px;
    font-size:14px;
  }

  .hero-features span{
    width:auto;
  }

  .section-heading h2{
    font-size:2rem;
  }

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

@media (max-width:380px){
  .logo{
    height:34px;
  }

  .desktop-nav{
    gap:8px;
  }

  .desktop-nav a{
    font-size:12px;
  }
}

/* FINAL HERO BUTTON FIX */
.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin:18px 0;
  align-items:flex-start;
}

.hero-buttons .btn{
  width:auto;
  min-width:220px;
  max-width:280px;
  padding:14px 18px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
}

@media (max-width:480px){
  .hero-buttons{
    flex-direction:column;
    align-items:flex-start;
  }

  .hero-buttons .btn{
    width:auto;
    min-width:220px;
    max-width:280px;
  }
}

.hero-buttons{
  display:flex;
  flex-direction:row !important;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}

.hero-buttons .btn{
  width:auto !important;
  min-width:180px;
  max-width:240px;
}