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

body {
  background: #0b0f14;
  color: #fff;
}

.navbar { height: 70px; }
.nav-container { height: 70px; }
.hero { min-height: 100vh; }
.hero-media { width: 100%; height: 100%; }

/* NAVBAR */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  background: rgba(10, 15, 20, 0.9);
  backdrop-filter: blur(10px);
  z-index: 999;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* LOGO */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 18px;
}

.logo i {
  color: #e63946;
  font-size: 22px;
}

/* LINKS */
.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: #ccc;
  text-decoration: none;
  font-size: 14px;
  transition: color 0.3s;
}

.nav-links a:hover {
  color: #fff;
}

/* CTA */
.nav-actions .btn-call {
  background: #e63946;
  color: #fff;
  padding: 10px 18px;
  border-radius: 30px;
  font-size: 14px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: background 0.3s;
}

.nav-actions .btn-call:hover {
  background: #ff4d5a;
}

/* BURGER */
.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.burger span {
  width: 25px;
  height: 2px;
  background: #fff;
}

/* MOBILE */
@media (max-width: 768px) {
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #0b0f14;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    display: none;
  }

  .nav-links.active {
    display: flex;
  }

  .burger {
    display: flex;
  }

  .nav-actions {
    display: none;
  }
}
/* NAVBAR base (transparent luxury) */
.navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 999;

  background: rgba(10, 15, 20, 0.25);
  backdrop-filter: blur(10px);

  border-bottom: 1px solid rgba(255,255,255,0.05);
  transition: background 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

/* When scrolled: solid + shadow */
.navbar.scrolled {
  background: rgba(10, 15, 20, 0.92);
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  border-bottom-color: rgba(255,255,255,0.08);
}

/* Container padding (will shrink on scroll) */
.nav-container {
  max-width: 1200px;
  margin: auto;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: padding 0.25s ease;
}

.navbar.scrolled .nav-container {
  padding: 12px 20px;
}

/* Optional: spacer height matches navbar height roughly */
.nav-spacer {
  height: 70px;
}
/* WhatsApp Floating Button */
.wa-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;

  width: 56px;
  height: 56px;
  border-radius: 999px;

  display: flex;
  align-items: center;
  justify-content: center;

  text-decoration: none;
  color: #fff;

  background: linear-gradient(135deg, #25D366, #128C7E);
  box-shadow: 0 14px 35px rgba(0,0,0,0.35);
  border: 1px solid rgba(255,255,255,0.14);

  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.wa-float i {
  font-size: 28px;
}

.wa-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.45);
}

/* Pulse ring */
.wa-float::before {
  content: "";
  position: absolute;
  inset: -10px;
  border-radius: 999px;
  border: 2px solid rgba(37, 211, 102, 0.35);
  animation: waPulse 1.8s infinite;
}

@keyframes waPulse {
  0%   { transform: scale(0.85); opacity: 0.7; }
  70%  { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}

/* Tooltip */
.wa-tooltip {
  position: absolute;
  right: 70px;
  bottom: 50%;
  transform: translateY(50%);

  background: rgba(10, 15, 20, 0.92);
  color: #fff;
  font-size: 12px;
  padding: 8px 10px;
  border-radius: 10px;
  border: 1px solid rgba(255,255,255,0.08);
  white-space: nowrap;

  opacity: 0;
  pointer-events: none;
  transition: opacity 0.15s ease, transform 0.15s ease;
}

.wa-float:hover .wa-tooltip {
  opacity: 1;
  transform: translateY(50%) translateX(-2px);
}

/* Mobile: slightly smaller */
@media (max-width: 768px) {
  .wa-float {
    width: 52px;
    height: 52px;
    right: 14px;
    bottom: 14px;
  }
  .wa-float i { font-size: 26px; }
  .wa-tooltip { display: none; } /* keep clean on mobile */
}









/* hero section stylesheet start  */
/* HERO */
.hero{
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 110px 20px 60px; /* top includes navbar */
  overflow: hidden;
}

.hero-media{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit: cover;
  transform: scale(1.03);
  filter: saturate(0.95) contrast(1.05);
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 400px at 20% 20%, rgba(230,57,70,0.22), transparent 60%),
    radial-gradient(700px 350px at 80% 30%, rgba(255,255,255,0.10), transparent 55%),
    linear-gradient(to bottom, rgba(11,15,20,0.45), rgba(11,15,20,0.92));
}

.hero-wrap{
  position:relative;
  z-index: 2;
  width: min(1200px, 100%);
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 28px;
  align-items: start;
}

.hero-left{ padding: 10px 0; }

.hero-badge{
  display:inline-flex;
  gap: 10px;
  align-items:center;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(10,15,20,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  color: #fff;
  font-size: 13px;
}

.hero-badge i{ color:#e63946; }

.hero-title{
  margin-top: 18px;
  font-size: clamp(34px, 4vw, 54px);
  line-height: 1.05;
  letter-spacing: -0.5px;
}

.hero-title span{
  display:block;
  font-weight: 300;
  color: rgba(255,255,255,0.85);
  margin-top: 10px;
  font-size: clamp(16px, 1.6vw, 22px);
}

.hero-sub{
  margin-top: 16px;
  color: rgba(255,255,255,0.82);
  max-width: 58ch;
  line-height: 1.6;
  font-size: 15px;
}

.hero-actions{
  margin-top: 22px;
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Buttons (reusable) */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration:none;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
  user-select: none;
}

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

.btn-primary{
  background: linear-gradient(135deg, #e63946, #ff4d5a);
  color:#fff;
  box-shadow: 0 18px 45px rgba(230,57,70,0.22);
  border-color: rgba(255,255,255,0.10);
}

.btn-ghost{
  background: rgba(10,15,20,0.55);
  color:#fff;
}

.btn-full{ width: 100%; }

/* Trust badges */
.hero-trust{
  margin-top: 26px;
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

.trust-item{
  padding: 14px 14px;
  border-radius: 16px;
  background: rgba(10,15,20,0.55);
  border: 1px solid rgba(255,255,255,0.10);
  display:flex;
  gap: 12px;
  align-items:flex-start;
}

.trust-item i{
  font-size: 18px;
  color: #e63946;
  margin-top: 2px;
}

.trust-item strong{ display:block; font-size: 14px; }
.trust-item span{ display:block; font-size: 12px; color: rgba(255,255,255,0.75); margin-top: 2px; }

/* Right card */
.hero-card{
  border-radius: 20px;
  background: rgba(10,15,20,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  padding: 18px;
}

.hero-card-top strong{ font-size: 16px; display:block; }
.hero-card-top span{ font-size: 12px; color: rgba(255,255,255,0.75); display:block; margin-top: 4px; }

.hero-form{ margin-top: 16px; display:grid; gap: 12px; }

.field span{ font-size: 12px; color: rgba(255,255,255,0.78); display:block; margin-bottom: 8px; }

.input{
  display:flex;
  align-items:center;
  gap: 10px;
  padding: 12px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
}

.input i{ color:#25D366; font-size: 18px; }

.input input{
  width:100%;
  border:none;
  outline:none;
  background: transparent;
  color:#fff;
  font-size: 14px;
}

.input input::placeholder{ color: rgba(255,255,255,0.45); }

.hero-note{
  display:flex;
  gap: 8px;
  align-items:center;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

.hero-divider{
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 14px 0;
}

.hero-mini{
  display:grid;
  gap: 10px;
}

.mini{
  display:flex;
  gap: 10px;
  align-items:center;
  font-size: 12px;
  color: rgba(255,255,255,0.80);
}

.mini i{ color: rgba(255,255,255,0.85); }

/* Responsive */
@media (max-width: 980px){
  .hero-wrap{ grid-template-columns: 1fr; }
  .hero-card{ max-width: 520px; }
  .hero-trust{ grid-template-columns: 1fr; }
}
/* hero section stylesheet end  */


/* services section stylesheet */
.services {
  padding: 100px 20px;
  background: #0b0f14;
}

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

.section-head {
  text-align: center;
  margin-bottom: 50px;
}

.section-head h2 {
  font-size: 36px;
  margin-bottom: 10px;
}

.section-head p {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

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

/* CARD */
.service-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 20px;
  padding: 30px 24px;
  text-align: center;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 25px 60px rgba(0,0,0,0.45);
}

.service-card i {
  font-size: 36px;
  color: #e63946;
  margin-bottom: 18px;
}

.service-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.service-card p {
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* RESPONSIVE */
@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}
/* services section stylesheet end */


/* WHY CHOOSE US */
.why{
  padding: 100px 20px;
  background: linear-gradient(to bottom, #0b0f14, #080b10);
}

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

.why-head{
  text-align: center;
  margin-bottom: 50px;
}

.why-head h2{
  font-size: 36px;
  margin-bottom: 10px;
}

.why-head p{
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

/* Layout */
.why-grid{
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 26px;
  align-items: start;
}

/* Cards */
.why-cards{
  display: grid;
  gap: 14px;
}

.why-card{
  display: flex;
  gap: 14px;
  padding: 18px 18px;
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.why-card:hover{
  transform: translateY(-4px);
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
}

.why-icon{
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.22);
}

.why-icon i{
  color: #e63946;
  font-size: 18px;
}

.why-text h3{
  font-size: 16px;
  margin-bottom: 6px;
}

.why-text p{
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  line-height: 1.6;
}

/* Panel (CTA) */
.why-panel{
  border-radius: 20px;
  padding: 20px;
  background: rgba(10,15,20,0.72);
  border: 1px solid rgba(255,255,255,0.12);
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
  position: sticky;
  top: 96px; /* keeps it visible under navbar */
}

.why-panel-badge{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.10);
  margin-bottom: 14px;
}

.why-panel-badge i{
  color: #25D366;
}

.why-panel h3{
  font-size: 20px;
  margin-bottom: 10px;
  line-height: 1.2;
}

.why-panel p{
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin-bottom: 14px;
}

.why-panel-actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.why-panel-line{
  height: 1px;
  background: rgba(255,255,255,0.08);
  margin: 16px 0;
}

.why-stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 10px;
}

.stat{
  padding: 12px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  text-align: center;
}

.stat strong{
  display:block;
  font-size: 14px;
}

.stat span{
  display:block;
  font-size: 12px;
  color: rgba(255,255,255,0.70);
  margin-top: 4px;
}

/* Responsive */
@media (max-width: 980px){
  .why-grid{
    grid-template-columns: 1fr;
  }
  .why-panel{
    position: relative;
    top: auto;
  }
}
/* WHY CHOOSE US end */


/* EMERGENCY CTA BANNER */
.cta-emergency{
  position: relative;
  padding: 90px 20px;
  background:
    radial-gradient(600px 300px at 15% 50%, rgba(230,57,70,0.35), transparent 60%),
    radial-gradient(600px 300px at 85% 50%, rgba(37,211,102,0.25), transparent 60%),
    linear-gradient(to right, #0b0f14, #080b10);
  overflow: hidden;
}

.cta-container{
  max-width: 1100px;
  margin: auto;
  text-align: center;
}

.cta-content{
  border-radius: 26px;
  padding: 60px 30px;
  background: rgba(10,15,20,0.65);
  border: 1px solid rgba(255,255,255,0.14);
  box-shadow: 0 30px 80px rgba(0,0,0,0.55);
}

/* Badge */
.cta-badge{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 13px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  margin-bottom: 18px;
}

.cta-badge i{
  color: #e63946;
}

/* Text */
.cta-content h2{
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 14px;
  line-height: 1.1;
}

.cta-content h2 span{
  color: #e63946;
}

.cta-content p{
  max-width: 620px;
  margin: 0 auto 26px;
  font-size: 15px;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

/* Buttons */
.cta-actions{
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}

.btn-large{
  padding: 14px 22px;
  font-size: 15px;
}

/* Mobile */
@media (max-width: 768px){
  .cta-content{
    padding: 40px 22px;
  }
}
/* EMERGENCY CTA BANNER end */

/* FAQ */
.faq{
  padding: 100px 20px;
  background: #0b0f14;
}

.faq-container{
  max-width: 900px;
  margin: auto;
}

.faq-list{
  margin-top: 40px;
  display: grid;
  gap: 12px;
}

.faq-item{
  border-radius: 18px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.08);
  overflow: hidden;
  transition: box-shadow .2s ease, transform .2s ease;
}

.faq-item.open{
  box-shadow: 0 22px 60px rgba(0,0,0,0.45);
  transform: translateY(-2px);
  border-color: rgba(255,255,255,0.12);
}

.faq-q{
  width: 100%;
  padding: 18px 18px;
  background: transparent;
  border: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  cursor: pointer;
  font-size: 15px;
  text-align: left;
}

.faq-q i{
  color: #e63946;
  transition: transform .18s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-q i{
  transform: rotate(45deg);
}

.faq-a{
  padding: 0 18px 18px;
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
}
/* FAQ end */


/* FOOTER */
.footer{
  padding: 80px 20px 30px;
  background: linear-gradient(to top, #070a0f, #0b0f14);
  border-top: 1px solid rgba(255,255,255,0.06);
}

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

.footer-grid{
  display: grid;
  grid-template-columns: 1.4fr 0.7fr 0.9fr 0.9fr;
  gap: 24px;
  align-items: start;
}

.footer-col h4{
  font-size: 14px;
  margin-bottom: 12px;
  color: rgba(255,255,255,0.9);
}

.footer-brand{
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-logo{
  width: 46px;
  height: 46px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: rgba(230,57,70,0.12);
  border: 1px solid rgba(230,57,70,0.22);
}

.footer-logo i{
  color: #e63946;
  font-size: 20px;
}

.footer-brand strong{
  display:block;
  font-size: 16px;
}

.footer-brand span{
  display:block;
  font-size: 12px;
  color: rgba(255,255,255,0.65);
  margin-top: 2px;
}

.footer-text{
  margin-top: 14px;
  font-size: 13px;
  color: rgba(255,255,255,0.72);
  line-height: 1.7;
  max-width: 52ch;
}

.footer-actions{
  margin-top: 14px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Links column */
.footer-col a{
  display: block;
  text-decoration: none;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
  padding: 8px 0;
  transition: color .18s ease;
}

.footer-col a:hover{
  color: #fff;
}

/* Coverage list */
.footer-col ul{
  list-style: none;
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 0;
}

.footer-col li{
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

.footer-col li i{
  color: rgba(255,255,255,0.65);
}

/* Contact */
.footer-contact{
  display: grid;
  gap: 10px;
  margin-top: 6px;
}

.contact-row{
  display: flex;
  gap: 10px;
  align-items: center;
  color: rgba(255,255,255,0.72);
  font-size: 13px;
}

.contact-row i{
  width: 18px;
  color: rgba(255,255,255,0.65);
}

.footer-bottom{
  margin-top: 34px;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,0.06);
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.60);
  font-size: 12px;
}

.footer-dot{
  opacity: 0.6;
}

/* Responsive */
@media (max-width: 980px){
  .footer-grid{
    grid-template-columns: 1fr;
  }
  .footer-actions{
    justify-content: flex-start;
  }
}
/* FOOTER end */