/* ===============================
   GLOBAL RESET + BASE
================================*/
*,
*::before,
*::after{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

:root{
  --primary:#0b6efd;
  --secondary:#00b894;
  --dark:#0f172a;
  --light:#f5f7fb;
  --text:#1f2937;
  --white:#ffffff;
  --border:#e5e7eb;
  --shadow:0 10px 30px rgba(0,0,0,0.08);
  --radius:12px;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:'Poppins',sans-serif;
  color:var(--text);
  background:var(--light);
  line-height:1.6;
}

/* ===============================
   CONTAINER
================================*/
.container{
  width:92%;
  max-width:1200px;
  margin:auto;
}

/* ===============================
   HEADER / NAVBAR
================================*/
.header{
  background:var(--white);
  position:sticky;
  top:0;
  z-index:999;
  box-shadow:0 2px 10px rgba(0,0,0,0.05);
}

.nav{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:16px 0;
}

.logo{
  font-weight:700;
  font-size:22px;
  color:var(--primary);
}

.nav-links{
  list-style:none;
  display:flex;
  gap:28px;
}

.nav-links a{
  text-decoration:none;
  color:var(--dark);
  font-weight:500;
  transition:0.3s;
}

.nav-links a:hover{
  color:var(--primary);
}

.cta-buttons{
  display:flex;
  gap:10px;
}

/* ===============================
   BUTTONS
================================*/
.btn{
  padding:10px 18px;
  border-radius:8px;
  text-decoration:none;
  font-weight:600;
  display:inline-block;
  transition:0.3s;
}

.call-btn{
  background:var(--primary);
  color:#fff;
}

.call-btn:hover{
  background:#0957d0;
}

.whatsapp-btn{
  background:#25D366;
  color:#fff;
}

.whatsapp-btn:hover{
  background:#1ebe5d;
}

.big-btn{
  padding:16px 28px;
  font-size:18px;
  border-radius:10px;
}

.outline{
  border:2px solid #fff;
  background:transparent;
  color:#fff;
}

/* ===============================
   HERO SECTION
================================*/
.hero{
  position:relative;
  height:88vh;
  background:url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?q=80&w=1600') center/cover no-repeat;
  display:flex;
  align-items:center;
  color:#fff;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,0.55);
}

.hero-content{
  position:relative;
  z-index:2;
  max-width:750px;
}

.hero h1{
  font-size:46px;
  line-height:1.2;
  margin-bottom:20px;
}

.hero p{
  font-size:18px;
  margin-bottom:25px;
}

.hero-cta{
  display:flex;
  gap:15px;
  margin-bottom:25px;
  flex-wrap:wrap;
}

.trust-badges{
  display:flex;
  gap:20px;
  flex-wrap:wrap;
  font-size:14px;
  opacity:0.95;
}

/* ===============================
   ABOUT
================================*/
.about{
  background:#fff;
  padding:70px 0;
}

.about h2{
  font-size:32px;
  margin-bottom:20px;
}

.about p{
  max-width:800px;
  margin-bottom:14px;
  font-size:17px;
}

/* ===============================
   FOOTER
================================*/
.footer{
  background:var(--dark);
  color:#fff;
  text-align:center;
  padding:25px 0;
  margin-top:60px;
}

/* ===============================
   RESPONSIVE
================================*/
@media(max-width:900px){

  .nav-links{
    display:none;
  }

  .hero{
    height:auto;
    padding:90px 0;
  }

  .hero h1{
    font-size:32px;
  }

  .hero p{
    font-size:16px;
  }

  .big-btn{
    width:100%;
    text-align:center;
  }

  .cta-buttons{
    display:none;
  }
}

@media(max-width:600px){

  .logo{
    font-size:18px;
  }

  .hero h1{
    font-size:26px;
  }

  .trust-badges{
    flex-direction:column;
    gap:6px;
  }

}

/* SERVICES */
.services{
  padding:80px 0;
  background:#f8fafc;
}

.section-title{
  font-size:34px;
  text-align:center;
  margin-bottom:10px;
}

.section-sub{
  text-align:center;
  margin-bottom:40px;
  color:#6b7280;
}

.services-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.service-card{
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:var(--shadow);
  transition:0.3s;
}

.service-card:hover{
  transform:translateY(-6px);
}

.service-card h3{
  margin-bottom:12px;
  color:var(--primary);
}

.service-card ul{
  padding-left:18px;
}

.service-card li{
  margin-bottom:6px;
  font-size:15px;
}

.services-cta{
  text-align:center;
  margin-top:40px;
}

.outline-dark{
  border:2px solid var(--primary);
  color:var(--primary);
  background:transparent;
}

.outline-dark:hover{
  background:var(--primary);
  color:#fff;
}

@media(max-width:1000px){
  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .services-grid{
    grid-template-columns:1fr;
  }
}

/* PRICING */
.pricing{
  padding:80px 0;
  background:#fff;
}

.pricing-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.price-card{
  background:#f8fafc;
  padding:30px;
  border-radius:14px;
  box-shadow:var(--shadow);
  text-align:center;
  transition:0.3s;
}

.price-card:hover{
  transform:translateY(-6px);
}

.price-card h3{
  margin-bottom:10px;
  font-size:22px;
}

.price{
  font-size:28px;
  font-weight:700;
  color:var(--primary);
  margin-bottom:15px;
}

.price-card ul{
  list-style:none;
  margin-bottom:20px;
}

.price-card li{
  margin-bottom:8px;
}

.highlight{
  background:var(--primary);
  color:#fff;
}

.highlight .price{
  color:#fff;
}

.highlight .btn{
  background:#fff;
  color:var(--primary);
}

.pricing-note{
  text-align:center;
  margin-top:30px;
  color:#6b7280;
}

@media(max-width:900px){
  .pricing-grid{
    grid-template-columns:1fr;
  }
}

/* REVIEWS */
.reviews{
  padding:80px 0;
  background:#f8fafc;
}

.reviews-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:25px;
}

.review-card{
  background:#fff;
  padding:25px;
  border-radius:12px;
  box-shadow:var(--shadow);
  transition:0.3s;
}

.review-card:hover{
  transform:translateY(-6px);
}

.review-card p{
  font-size:15px;
  margin-bottom:12px;
}

.review-card h4{
  font-size:14px;
  color:#6b7280;
}

.reviews-cta{
  text-align:center;
  margin-top:40px;
}

@media(max-width:900px){
  .reviews-grid{
    grid-template-columns:1fr;
  }
}

/* CONTACT */
.contact{
  padding:80px 0;
  background:#fff;
}

.contact-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:40px;
}

.contact-info{
  background:#f8fafc;
  padding:30px;
  border-radius:12px;
}

.contact-info h3{
  margin-bottom:15px;
}

.contact-info p{
  margin-bottom:8px;
}

.contact-form{
  display:flex;
  flex-direction:column;
  gap:15px;
}

.contact-form input,
.contact-form select,
.contact-form textarea{
  padding:14px;
  border:1px solid #e5e7eb;
  border-radius:8px;
  font-size:15px;
}

.contact-form textarea{
  min-height:120px;
}

.submit-btn{
  background:var(--primary);
  color:#fff;
  border:none;
  padding:14px;
  font-size:16px;
}

.submit-btn:hover{
  background:#0957d0;
}

@media(max-width:900px){
  .contact-grid{
    grid-template-columns:1fr;
  }
}

.map{
  margin-top:40px;
  border-radius:12px;
  overflow:hidden;
}

/* CONTENT PAGES */
.page-hero{
  background:linear-gradient(135deg,#0f172a,#0b6efd);
  color:#fff;
  padding:80px 0;
}

.page-hero h1{
  font-size:42px;
  line-height:1.2;
  margin-bottom:14px;
}

.page-hero p{
  max-width:820px;
  font-size:18px;
}

.content-section{
  padding:70px 0;
  background:#fff;
}

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

.content-card{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:12px;
  padding:24px;
  box-shadow:var(--shadow);
}

.content-card h2,
.content-card h3{
  color:var(--dark);
  margin-bottom:12px;
}

.content-card p,
.content-card li{
  margin-bottom:10px;
}

.content-card ul{
  padding-left:18px;
}

.content-list{
  display:grid;
  gap:18px;
}

.policy-block{
  background:#fff;
  border-bottom:1px solid var(--border);
  padding:24px 0;
}

.policy-block h2{
  color:var(--dark);
  margin-bottom:10px;
}

.faq-list details{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:12px;
  padding:18px 20px;
  margin-bottom:14px;
}

.faq-list summary{
  cursor:pointer;
  font-weight:700;
  color:var(--dark);
}

.review-meta{
  color:#6b7280;
  font-weight:600;
}

.contact-page-grid{
  display:grid;
  grid-template-columns:0.85fr 1.15fr;
  gap:34px;
  align-items:start;
}

.contact-page-card{
  background:#f8fafc;
  border:1px solid var(--border);
  border-radius:12px;
  padding:28px;
  box-shadow:var(--shadow);
}

.contact-page-card h2,
.contact-page-card h3{
  margin-bottom:12px;
}

.contact-page-card p{
  margin-bottom:10px;
}

.map iframe{
  display:block;
}

.footer-links{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-bottom:14px;
}

.footer-links a{
  color:#fff;
  text-decoration:none;
}

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

@media(max-width:900px){
  .content-grid,
  .contact-page-grid{
    grid-template-columns:1fr;
  }

  .page-hero h1{
    font-size:32px;
  }
}

.trust-strip{
  background:#0b6efd;
  color:#fff;
  text-align:center;
  padding:12px;
  font-weight:500;
}

.seo-text{
  padding:60px 0;
  background:#fff;
}

.seo-text p{
  max-width:900px;
  margin-bottom:15px;
}

.internal-links{
  background:#f8fafc;
  padding:60px 0;
}

.links-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.internal-links a{
  display:block;
  margin:4px 0;
  color:#0b6efd;
  text-decoration:none;
}

.internal-links a:hover{
  text-decoration:underline;
}

@media(max-width:900px){
  .links-grid{
    grid-template-columns:1fr;
  }
}

.small-hero{
  height:50vh;
}

.seo-page{
  padding:80px 0;
  background:#fff;
}

.seo-page h2{
  margin-bottom:15px;
}

.seo-page p{
  margin-bottom:12px;
  max-width:900px;
}

.center{
  text-align:center;
  margin-top:25px;
}
