
:root{
  --primary:#0b4f8a;
  --secondary:#1f7acb;
  --accent:#00a8ff;
  --dark:#1b1b1b;
  --light:#f7fbff;
  --white:#ffffff;
  --shadow:0 10px 30px rgba(0,0,0,.12);
  --radius:16px;
}

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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Segoe UI, Arial, sans-serif;
  color:#333;
  background:#fff;
  line-height:1.7;
}

img{
  max-width:100%;
  height:auto;
}

a{
  text-decoration:none;
}

/* TOP BAR */

.topbar{
  background:var(--primary);
  color:#fff;
  padding:10px 30px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  font-size:14px;
}

/* HEADER */

header{
  position:sticky;
  top:0;
  z-index:9999;
  background:rgba(255,255,255,.95);
  backdrop-filter:blur(12px);
  box-shadow:0 2px 20px rgba(0,0,0,.08);
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:15px 40px;
}

header img{
  height:65px;
}

nav{
  display:flex;
  gap:24px;
}

nav a{
  color:#222;
  font-weight:600;
  transition:.3s;
}

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

/* HERO */

.hero{
  min-height:90vh;
  background-size:cover;
  background-position:center;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
}

.hero::before{
  content:'';
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.45);
}

.hero div{
  position:relative;
  z-index:2;
  max-width:900px;
  color:#fff;
  padding:20px;
}

.hero h1{
  font-size:58px;
  line-height:1.15;
  margin-bottom:20px;
}

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

.btn{
  display:inline-block;
  background:var(--primary);
  color:#fff;
  padding:15px 35px;
  border-radius:50px;
  font-weight:700;
  transition:.3s;
}

.btn:hover{
  background:var(--secondary);
  transform:translateY(-3px);
}

/* SECTION */

section{
  padding:80px 20px;
  max-width:1300px;
  margin:auto;
}

section h2{
  text-align:center;
  margin-bottom:40px;
  color:var(--primary);
  font-size:40px;
}

/* ABOUT */

#about{
  display:grid;
  grid-template-columns:350px 1fr;
  gap:50px;
  align-items:center;
}

#about img{
  border-radius:20px;
  box-shadow:var(--shadow);
}

/* SERVICES */

.services{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
  gap:25px;
}

.card{
  background:#fff;
  border-radius:var(--radius);
  padding:30px;
  box-shadow:var(--shadow);
  transition:.35s;
}

.card:hover{
  transform:translateY(-8px);
}

.card a{
  color:var(--primary);
  font-weight:700;
  font-size:18px;
}

/* TRUST BAR */

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

.stat{
  background:#fff;
  padding:25px;
  border-radius:16px;
  text-align:center;
  box-shadow:var(--shadow);
}

.stat h3{
  color:var(--primary);
  font-size:34px;
}

/* REVIEWS */

.review-box{
  background:#f6fbff;
  border-left:5px solid var(--primary);
  padding:30px;
  border-radius:12px;
  margin-bottom:20px;
}

/* VIDEO */

iframe{
  width:100%;
  max-width:900px;
  height:500px;
  border:none;
  display:block;
  margin:auto;
  border-radius:16px;
  box-shadow:var(--shadow);
}

/* CONTACT */

form{
  max-width:700px;
  margin:auto;
}

input,
textarea{
  width:100%;
  padding:15px;
  border:1px solid #ddd;
  border-radius:10px;
  margin-bottom:15px;
  font-size:16px;
}

button{
  background:var(--primary);
  color:#fff;
  border:none;
  padding:15px 35px;
  border-radius:50px;
  cursor:pointer;
  font-weight:700;
}

button:hover{
  background:var(--secondary);
}

/* LOCATIONS */

.locations .card{
  border-top:5px solid var(--primary);
}

/* FAQ */

#faq h3{
  background:#f5f8fc;
  padding:18px;
  border-radius:10px;
  margin-top:15px;
  color:var(--primary);
}

#faq p{
  padding:15px;
}

/* FOOTER */

footer{
  background:#0d2340;
  color:#fff;
  text-align:center;
  padding:40px;
}

/* FLOATING BUTTONS */

.float-btn{
  position:fixed;
  right:20px;
  width:64px;
  height:64px;
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:50%;
  color:#fff;
  font-size:28px;
  z-index:99999;
  box-shadow:0 0 20px rgba(0,0,0,.25);
}

.whatsapp{
  bottom:100px;
  background:#25D366;
  animation:glowWhatsapp 2s infinite;
}

.call{
  bottom:20px;
  background:#0b4f8a;
  animation:glowCall 2s infinite;
}

@keyframes glowWhatsapp{
  0%{box-shadow:0 0 10px #25D366;}
  50%{box-shadow:0 0 30px #25D366;}
  100%{box-shadow:0 0 10px #25D366;}
}

@keyframes glowCall{
  0%{box-shadow:0 0 10px #0b4f8a;}
  50%{box-shadow:0 0 30px #0b4f8a;}
  100%{box-shadow:0 0 10px #0b4f8a;}
}

/* MOBILE */

@media(max-width:992px){

  header{
    flex-direction:column;
    gap:20px;
  }

  nav{
    flex-wrap:wrap;
    justify-content:center;
  }

  #about{
    grid-template-columns:1fr;
    text-align:center;
  }

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

  .hero p{
    font-size:18px;
  }

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

@media(max-width:576px){

  .topbar{
    flex-direction:column;
    text-align:center;
    gap:8px;
  }

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

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

  section h2{
    font-size:30px;
  }

  iframe{
    height:250px;
  }
}
