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

html{
  scroll-behavior:smooth;
}

body{
  font-family:Arial, Helvetica, sans-serif;
  line-height:1.7;
  color:#241a14;
  background:#fffaf3;
}

.container{
  width:92%;
  max-width:1180px;
  margin:auto;
}

a{
  text-decoration:none;
}

.top-bar{
  background:#220e09;
  color:#fff;
  font-size:14px;
  padding:8px 0;
}

.top-wrap{
  display:flex;
  justify-content:space-between;
  gap:15px;
  flex-wrap:wrap;
}

.top-bar i{
  color:#ffbf2f;
  margin-right:6px;
}

.main-header{
  background:#fff;
  position:sticky;
  top:0;
  z-index:9999;
  box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.header-wrap{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:15px 0;
  gap:20px;
}

.logo{
  font-size:28px;
  font-weight:900;
  color:#3c140d;
}

.logo span{
  color:#c88a00;
}

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

nav a{
  color:#3c140d;
  font-weight:700;
  font-size:15px;
}

nav a:hover{
  color:#c88a00;
}

.header-call{
  background:#b31312;
  color:#fff;
  padding:10px 18px;
  border-radius:30px;
  font-weight:700;
  white-space:nowrap;
}

.hero{
  position:relative;
  min-height:720px;
  display:flex;
  align-items:center;
  background:
    radial-gradient(circle at top right, rgba(255,191,47,0.33), transparent 33%),
    linear-gradient(115deg, rgba(36,14,9,0.95), rgba(84,20,13,0.9)),
    url('../images/hero-bg.svg');
  background-size:cover;
  background-position:center;
  color:#fff;
  overflow:hidden;
}

.hero-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(90deg, rgba(0,0,0,0.28), rgba(0,0,0,0.05));
}

.hero-content{
  position:relative;
  display:grid;
  grid-template-columns:1.2fr 0.8fr;
  gap:40px;
  align-items:center;
  padding:80px 0;
}

.small-title,
.section-label{
  color:#ffcc45;
  text-transform:uppercase;
  letter-spacing:1.5px;
  font-weight:800;
  margin-bottom:10px;
}

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

.hero-desc{
  font-size:18px;
  max-width:700px;
  color:#ffe9c5;
  margin-bottom:28px;
}

.hero-buttons{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  margin-bottom:28px;
}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:14px 24px;
  border-radius:40px;
  font-weight:800;
  border:none;
  cursor:pointer;
}

.btn-primary{
  background:#ffbd24;
  color:#2c1109;
}

.btn-whatsapp{
  background:#25D366;
  color:#fff;
}

.btn-dark{
  background:#2c1109;
  color:#fff;
  width:100%;
}

.trust-row{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
}

.trust-row div{
  background:rgba(255,255,255,0.12);
  border:1px solid rgba(255,255,255,0.2);
  padding:13px 20px;
  border-radius:14px;
  min-width:120px;
}

.trust-row strong,
.trust-row span{
  display:block;
}

.trust-row strong{
  color:#ffcc45;
  font-size:18px;
}

.hero-card{
  background:#fff;
  color:#32140d;
  padding:35px;
  border-radius:24px;
  box-shadow:0 18px 50px rgba(0,0,0,0.25);
}

.hero-card h3{
  font-size:28px;
  margin-bottom:10px;
}

.hero-card p{
  color:#66514a;
  margin-bottom:15px;
}

.hero-card ul{
  list-style:none;
  margin-bottom:22px;
}

.hero-card li{
  margin:10px 0;
  font-weight:700;
}

.hero-card i{
  color:#c88a00;
  margin-right:8px;
}

.quick-services{
  margin-top:-45px;
  position:relative;
  z-index:5;
}

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

.quick-grid div{
  background:#fff;
  padding:24px;
  border-radius:18px;
  font-size:18px;
  font-weight:800;
  text-align:center;
  box-shadow:0 10px 30px rgba(0,0,0,0.12);
}

.quick-grid i{
  display:block;
  font-size:28px;
  color:#b31312;
  margin-bottom:8px;
}

.about-section,
.services-section,
.why-section,
.reviews-section,
.contact-section{
  padding:80px 0;
}

.about-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:45px;
  align-items:center;
}

.image-box{
  min-height:430px;
  border-radius:28px;
  background:
    linear-gradient(135deg, rgba(179,19,18,0.85), rgba(255,189,36,0.75)),
    url('../images/pattern.svg');
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#fff;
  padding:35px;
  box-shadow:0 18px 40px rgba(0,0,0,0.18);
}

.image-box i{
  font-size:80px;
  margin-bottom:20px;
}

.image-box h3{
  font-size:34px;
}

.about-content h2,
.center-title h2,
.cta-section h2,
.contact-info h2{
  font-size:40px;
  line-height:1.2;
  color:#35140c;
  margin-bottom:18px;
}

.about-content p{
  margin-bottom:14px;
  color:#5a463f;
}

.about-points{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:13px;
  margin-top:20px;
}

.about-points span{
  background:#fff;
  padding:13px;
  border-radius:12px;
  font-weight:700;
  box-shadow:0 5px 18px rgba(0,0,0,0.07);
}

.about-points i{
  color:#b31312;
}

.center-title{
  text-align:center;
  max-width:760px;
  margin:0 auto 45px;
}

.center-title p{
  color:#6d554c;
}

.services-section{
  background:#fff2dc;
}

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

.service-card{
  background:#fff;
  padding:32px;
  border-radius:20px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
  transition:0.3s ease;
  border-bottom:4px solid #ffbd24;
}

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

.service-card i{
  width:58px;
  height:58px;
  background:#b31312;
  color:#fff;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  margin-bottom:18px;
}

.service-card h3{
  color:#35140c;
  margin-bottom:10px;
  font-size:22px;
}

.service-card p{
  color:#5d4941;
}

.cta-section{
  background:linear-gradient(90deg,#3a140c,#b31312);
  color:#fff;
  padding:55px 0;
}

.cta-wrap{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:25px;
}

.cta-section h2{
  color:#fff;
}

.cta-section p{
  color:#ffe4bd;
}

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

.why-grid div{
  background:#fff;
  padding:28px;
  border-radius:18px;
  text-align:center;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.why-grid i{
  font-size:38px;
  color:#c88a00;
  margin-bottom:15px;
}

.why-grid h3{
  color:#35140c;
  margin-bottom:8px;
}

.reviews-section{
  background:#fff2dc;
}

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

.review-card{
  background:#fff;
  border-radius:18px;
  padding:30px;
  box-shadow:0 8px 25px rgba(0,0,0,0.08);
}

.stars{
  color:#ffb400;
  font-size:20px;
  margin-bottom:12px;
}

.review-card p{
  color:#5d4941;
  margin-bottom:14px;
}

.contact-grid{
  display:grid;
  grid-template-columns:0.9fr 1.1fr;
  gap:35px;
  align-items:start;
}

.contact-info p{
  color:#5d4941;
  margin-bottom:18px;
}

.contact-box{
  display:flex;
  gap:15px;
  background:#fff;
  padding:18px;
  border-radius:15px;
  margin-bottom:15px;
  box-shadow:0 5px 20px rgba(0,0,0,0.07);
}

.contact-box i{
  width:44px;
  height:44px;
  min-width:44px;
  border-radius:50%;
  background:#b31312;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
}

.contact-box h4{
  color:#35140c;
}

.contact-box a{
  color:#b31312;
  font-weight:800;
}

.map-box iframe{
  border-radius:22px;
  box-shadow:0 10px 30px rgba(0,0,0,0.15);
}

.disclaimer{
  background:#2c1109;
  color:#e8d6cb;
  padding:22px 0;
  font-size:13px;
}

footer{
  background:#160805;
  color:#fff;
  padding:24px 0;
}

.footer-wrap{
  display:flex;
  justify-content:space-between;
  gap:15px;
  flex-wrap:wrap;
}

.floating-buttons{
  position:fixed;
  right:16px;
  top:50%;
  transform:translateY(-50%);
  z-index:99999;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.floating-buttons a{
  width:52px;
  height:52px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-size:22px;
  box-shadow:0 8px 22px rgba(0,0,0,0.3);
}

.float-call{
  background:#b31312;
}

.float-whatsapp{
  background:#25D366;
}

@media(max-width:992px){
  nav{
    display:none;
  }

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

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

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

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

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

@media(max-width:600px){
  .top-wrap{
    display:block;
    text-align:center;
  }

  .header-wrap{
    justify-content:center;
    flex-wrap:wrap;
  }

  .header-call{
    display:none;
  }

  .hero{
    min-height:auto;
  }

  .hero-content{
    padding:55px 0;
  }

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

  .hero-desc{
    font-size:16px;
  }

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

  .quick-services{
    margin-top:0;
    padding-top:20px;
  }

  .quick-grid,
  .services-grid,
  .why-grid,
  .reviews-grid,
  .about-points{
    grid-template-columns:1fr;
  }

  .about-content h2,
  .center-title h2,
  .contact-info h2{
    font-size:30px;
  }

  .floating-buttons{
    right:10px;
  }

  .floating-buttons a{
    width:45px;
    height:45px;
    font-size:19px;
  }

  .footer-wrap{
    text-align:center;
    justify-content:center;
  }
}
