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

:root{
  --orange:#ff8a00;
  --orange2:#ffb340;
  --dark:#050914;
  --panel:rgba(255,255,255,.055);
  --panel2:rgba(255,255,255,.08);
  --text:#ffffff;
  --muted:#c4c9d4;
  --line:rgba(255,255,255,.12);
  --shadow:0 24px 70px rgba(0,0,0,.45);
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Manrope',Arial,sans-serif;
  background:var(--dark);
  color:var(--text);
  line-height:1.6;
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

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

button,
input,
select,
textarea{
  font:inherit;
}

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

.section{
  padding:88px 0;
}

.page-loader{
  position:fixed;
  inset:0;
  z-index:9999;
  display:grid;
  place-items:center;
  background:var(--dark);
  transition:.4s ease;
}

.page-loader.hide{
  opacity:0;
  visibility:hidden;
}

.loader-ring{
  width:54px;
  height:54px;
  border-radius:50%;
  border:4px solid rgba(255,255,255,.15);
  border-top-color:var(--orange);
  animation:spin .8s linear infinite;
}

@keyframes spin{
  to{transform:rotate(360deg);}
}

.site-header{
  position:fixed;
  top:0;
  width:100%;
  z-index:1000;
  background:rgba(5,9,20,.82);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--line);
}

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

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
}

.brand img{
  width:44px;
  height:44px;
  border-radius:14px;
  object-fit:cover;
}

.brand span{
  font-size:16px;
  letter-spacing:-.02em;
}

.nav-links{
  display:flex;
  gap:24px;
  font-size:13px;
  font-weight:700;
}

.nav-links a:hover{
  color:var(--orange);
}

.nav-call{
  padding:11px 16px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  color:#111;
  font-size:14px;
  font-weight:800;
}

.menu-toggle{
  display:none;
  background:none;
  border:0;
  width:42px;
}

.menu-toggle span{
  display:block;
  height:3px;
  background:white;
  margin:6px 0;
  border-radius:4px;
}

.hero{
  min-height:100svh;
  display:flex;
  align-items:center;
  background:
    linear-gradient(rgba(5,9,20,.72),rgba(5,9,20,.88)),
    url("https://images.unsplash.com/photo-1503376780353-7e6692767b70?q=80&w=1600&auto=format&fit=crop")
    center/cover no-repeat;
}

.hero-inner{
  min-height:100svh;
  display:flex;
  align-items:center;
  padding-top:82px;
}

.hero-copy{
  width:min(700px,100%);
}

.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:9px 15px;
  border-radius:999px;
  color:var(--orange);
  background:rgba(255,138,0,.10);
  border:1px solid rgba(255,138,0,.32);
  text-transform:uppercase;
  font-size:12px;
  font-weight:800;
  letter-spacing:.05em;
  margin-bottom:22px;
}

.eyebrow span{
  width:9px;
  height:9px;
  border-radius:50%;
  background:var(--orange);
}

.hero h1{
  font-size:clamp(36px,5vw,60px);
  line-height:1.04;
  letter-spacing:-.04em;
  margin-bottom:20px;
  font-weight:800;
}

.hero h1 strong{
  color:var(--orange);
}

.hero p{
  max-width:600px;
  color:var(--muted);
  font-size:17px;
  line-height:1.65;
}

.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:15px;
  margin-top:32px;
}

.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  padding:15px 24px;
  border-radius:999px;
  font-weight:800;
  font-size:15px;
}

.btn-primary{
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  color:#111;
  box-shadow:0 14px 38px rgba(255,138,0,.28);
}

.btn-secondary{
  border:1px solid rgba(255,255,255,.28);
  color:white;
  background:rgba(255,255,255,.04);
}

.stats-section{
  background:var(--dark);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
  padding:68px 0;
}

.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:24px;
  text-align:center;
}

.stat-box{
  padding:22px 14px;
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:26px;
  backdrop-filter:blur(14px);
}

.stat-icon{
  color:var(--orange);
  font-size:30px;
  margin-bottom:16px;
}

.stat-box h3{
  font-size:30px;
  line-height:1;
  font-weight:800;
}

.stat-box p{
  margin-top:13px;
  color:var(--muted);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:11px;
  font-weight:800;
}

.trust-strip{
  background:var(--dark);
  border-bottom:1px solid var(--line);
  padding:18px 0;
}

.trust-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:10px;
  text-align:center;
  font-weight:800;
  font-size:13px;
  color:#e8eaf0;
}

.section-heading{
  max-width:760px;
}

.section-heading span{
  color:var(--orange);
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  font-weight:800;
}

.section-heading h2{
  font-size:clamp(28px,4vw,44px);
  line-height:1.08;
  letter-spacing:-.035em;
  margin:12px 0 14px;
  font-weight:800;
}

.section-heading p{
  color:var(--muted);
  font-size:16px;
  line-height:1.65;
}

.service-card,
.review-card,
.faq-item,
.contact-form,
.feature-list div,
.area-list span{
  background:var(--panel);
  border:1px solid var(--line);
  border-radius:26px;
  backdrop-filter:blur(14px);
}

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

.service-card{
  min-height:200px;
  padding:24px;
  transition:.3s ease;
}

.service-card:hover{
  transform:translateY(-6px);
  background:var(--panel2);
}

.service-card h3{
  color:var(--orange);
  font-size:18px;
  line-height:1.25;
  margin-bottom:12px;
  font-weight:800;
}

.service-card p{
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
}

.why,
.areas,
.faq,
.map-section{
  background:var(--dark);
}

.why-grid,
.faq-grid,
.contact-grid{
  display:grid;
  grid-template-columns:.95fr 1.05fr;
  gap:52px;
  align-items:center;
}

.image-panel{
  min-height:440px;
  border-radius:32px;
  background:
    linear-gradient(rgba(5,9,20,.22),rgba(5,9,20,.68)),
    url("https://images.unsplash.com/photo-1487754180451-c456f719a1fc?auto=format&fit=crop&w=1200&q=80")
    center/cover;
  position:relative;
  border:1px solid var(--line);
  overflow:hidden;
}

.image-overlay{
  position:absolute;
  left:22px;
  right:22px;
  bottom:22px;
  background:rgba(5,9,20,.78);
  border:1px solid var(--line);
  border-radius:22px;
  padding:20px;
  backdrop-filter:blur(14px);
}

.image-overlay span{
  color:var(--orange);
  font-size:12px;
  font-weight:800;
  text-transform:uppercase;
}

.image-overlay strong{
  display:block;
  font-size:22px;
  line-height:1.15;
  margin-top:6px;
}

.feature-list{
  display:grid;
  gap:14px;
  margin-top:26px;
}

.feature-list div{
  padding:14px 16px;
  color:var(--muted);
  font-size:15px;
}

.feature-list b{
  color:var(--orange);
}

.area-list{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:14px;
  margin-top:34px;
}

.area-list span{
  padding:16px;
  font-size:15px;
  font-weight:800;
}

.map-box{
  margin-top:34px;
  height:420px;
  border-radius:28px;
  overflow:hidden;
  border:1px solid var(--line);
  background:var(--panel);
  box-shadow:var(--shadow);
}

.map-box iframe{
  width:100%;
  height:100%;
  border:0;
}

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

.review-card{
  padding:24px;
}

.stars{
  color:var(--orange);
  letter-spacing:3px;
  margin-bottom:14px;
  font-size:14px;
}

.review-card p{
  color:#f0f2f6;
  font-size:15px;
  line-height:1.6;
}

.review-card strong{
  display:block;
  margin-top:18px;
  color:var(--orange);
  font-size:14px;
}

.faq-list{
  display:grid;
  gap:14px;
}

.faq-item{
  width:100%;
  text-align:left;
  color:white;
  padding:18px;
  cursor:pointer;
}

.faq-item span{
  font-weight:800;
  font-size:16px;
}

.faq-item p{
  display:none;
  margin-top:10px;
  color:var(--muted);
  font-size:15px;
  line-height:1.6;
}

.faq-item.active p{
  display:block;
}

.contact-callout{
  margin-top:26px;
}

.contact-callout a{
  color:var(--orange);
  font-size:28px;
  font-weight:800;
}

.contact-callout small{
  display:block;
  color:var(--muted);
  font-size:14px;
}

.contact-form{
  display:grid;
  gap:15px;
  padding:26px;
}

.contact-form h3{
  font-size:22px;
  font-weight:800;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  width:100%;
  border:1px solid var(--line);
  background:rgba(0,0,0,.25);
  color:white;
  border-radius:15px;
  padding:14px;
  font-size:15px;
}

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

.contact-form button{
  border:0;
  border-radius:999px;
  padding:15px;
  color:#111;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  font-weight:800;
}

.floating-call,
.chat-launcher{
  position:fixed;
  bottom:22px;
  z-index:850;
  border:0;
  border-radius:999px;
  color:#111;
  background:linear-gradient(135deg,var(--orange),var(--orange2));
  font-size:14px;
  font-weight:800;
  box-shadow:var(--shadow);
}

.floating-call{
  right:22px;
  padding:14px 18px;
}

.chat-launcher{
  left:22px;
  padding:14px 20px;
}

.chatbot{
  position:fixed;
  left:22px;
  bottom:92px;
  width:min(350px,calc(100vw - 44px));
  background:rgba(17,24,39,.96);
  border:1px solid var(--line);
  border-radius:22px;
  overflow:hidden;
  display:none;
  z-index:900;
  backdrop-filter:blur(16px);
}

.chatbot.open{
  display:block;
}

.chat-header{
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px;
  background:rgba(0,0,0,.22);
  border-bottom:1px solid var(--line);
}

.chat-close{
  background:none;
  border:0;
  color:white;
  font-size:24px;
}

.chat-messages{
  height:220px;
  overflow:auto;
  padding:15px;
  display:grid;
  align-content:start;
  gap:10px;
}

.chat-messages p{
  max-width:85%;
  padding:11px 12px;
  border-radius:14px;
  font-size:14px;
}

.bot{
  background:rgba(255,255,255,.08);
}

.user{
  background:var(--orange);
  color:#111;
  margin-left:auto;
}

.chat-form{
  display:grid;
  grid-template-columns:1fr auto;
  gap:8px;
  padding:12px;
  border-top:1px solid var(--line);
}

.chat-form input{
  border:1px solid var(--line);
  border-radius:12px;
  background:rgba(0,0,0,.25);
  color:white;
  padding:12px;
  font-size:14px;
}

.chat-form button{
  border:0;
  border-radius:12px;
  padding:0 14px;
  font-weight:800;
  background:var(--orange);
  color:#111;
}

.footer{
  background:var(--dark);
  border-top:1px solid var(--line);
  padding:64px 0 24px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr 1fr;
  gap:36px;
}

.footer h3{
  font-size:18px;
  margin-bottom:8px;
}

.footer a{
  display:block;
  margin:8px 0;
  font-size:15px;
}

.footer p{
  color:var(--muted);
  margin-top:14px;
  font-size:15px;
}

.footer-bottom{
  border-top:1px solid var(--line);
  margin-top:32px;
  padding-top:22px;
}

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

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

@media(max-width:980px){

  .nav-links,
  .nav-call{
    display:none;
  }

  .menu-toggle{
    display:block;
  }

  .nav-links.open{
    display:grid;
    position:absolute;
    top:72px;
    left:4%;
    right:4%;
    background:rgba(17,24,39,.96);
    border:1px solid var(--line);
    border-radius:20px;
    padding:20px;
    backdrop-filter:blur(16px);
  }

  .service-grid,
  .review-grid{
    grid-template-columns:1fr 1fr;
  }

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

  .area-list{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:640px){

  .section{
    padding:70px 0;
  }

  .nav{
    padding:12px 0;
  }

  .brand img{
    width:40px;
    height:40px;
  }

  .brand span{
    font-size:15px;
  }

  .hero{
    overflow:hidden;
  }

  .hero-inner{
    align-items:center;
    justify-content:center;
    padding-top:96px;
    padding-bottom:70px;
  }

  .hero-copy{
    text-align:center;
    margin:auto;
    width:100%;
  }

  .eyebrow{
    font-size:10px;
    padding:8px 12px;
    margin-bottom:18px;
    white-space:normal;
  }

  .hero h1{
    font-size:34px;
    line-height:1.07;
    letter-spacing:-.032em;
    margin-bottom:16px;
  }

  .hero p{
    font-size:15px;
    line-height:1.55;
    max-width:330px;
    margin:auto;
  }

  .hero-actions{
    display:grid;
    grid-template-columns:1fr;
    gap:13px;
    margin-top:26px;
  }

  .btn{
    width:100%;
    padding:15px 18px;
    font-size:14px;
  }

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

  .stats-grid{
    grid-template-columns:1fr 1fr;
    gap:14px;
  }

  .stat-box{
    padding:18px 10px;
  }

  .stat-icon{
    font-size:24px;
    margin-bottom:12px;
  }

  .stat-box h3{
    font-size:26px;
  }

  .stat-box p{
    font-size:10px;
    letter-spacing:.1em;
  }

  .map-box{
    height:360px;
    border-radius:22px;
  }

  .trust-grid,
  .service-grid,
  .review-grid,
  .area-list,
  .footer-grid{
    grid-template-columns:1fr;
  }

  .image-panel{
    min-height:330px;
  }

  .section-heading h2{
    font-size:29px;
  }

  .section-heading p{
    font-size:15px;
  }

  .contact-callout a{
    font-size:25px;
  }

  .floating-call{
    right:18px;
    bottom:18px;
  }

  .chat-launcher{
    left:18px;
    bottom:18px;
  }
}