

.hero-services{
  display:grid;
  grid-template-columns:repeat(2,minmax(220px,1fr));
  gap:14px;
  margin:28px 0;
}

.service-mini{
  background:#ffffff12;
  border:1px solid #ffffff20;
  padding:16px;
  border-radius:18px;
  font-weight:800;
  color:#fff;
  font-size:16px;
  backdrop-filter:blur(8px);
  box-shadow:0 8px 20px #0002;
  transition:.3s;
}

.service-mini:hover{
  transform:translateY(-4px);
  background:#ffffff1e;
}

.hero-call-btn{
  margin-top:12px;
}

@media(max-width:850px){

  .hero-services{
    grid-template-columns:1fr;
  }

  .service-mini{
    font-size:15px;
    padding:14px;
  }

}:root{
  --dark:#190b31;
  --gold:#f5b642;
  --pink:#e7447d;
  --light:#fff8ef;
  --text:#2b2136;
  --muted:#6b6075;
}

*{
  box-sizing:border-box;
}

body{
  margin:0;
  font-family:Arial,Helvetica,sans-serif;
  color:var(--text);
  background:#fff;
}

a{
  text-decoration:none;
  color:inherit;
}

/* TOP BAR */

.topbar{
  background:#0d0620;
  color:#fff;
  padding:9px 5%;
  display:flex;
  gap:18px;
  justify-content:center;
  flex-wrap:wrap;
  font-size:14px;
}

/* HEADER */

.header{
  position:sticky;
  top:0;
  z-index:20;
  background:#fff;
  box-shadow:0 4px 20px #0001;
  padding:12px 5%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  font-weight:800;
  color:var(--dark);
  font-size:21px;
}

.brand img{
  width:58px;
  height:58px;
  object-fit:cover;
  border-radius:50%;
}

.menu{
  display:flex;
  gap:18px;
  align-items:center;
  flex-wrap:wrap;
}

.menu a{
  font-weight:700;
  font-size:14px;
  color:#2b2136;
  transition:.3s;
}

.menu a:hover{
  color:var(--pink);
}

/* BUTTON */

.btn{
  display:inline-block;
  background:linear-gradient(135deg,var(--gold),#ffdf7b);
  color:#291402;
  padding:13px 22px;
  border-radius:999px;
  font-weight:800;
  box-shadow:0 10px 20px #0002;
  transition:.3s;
}

.btn:hover{
  transform:translateY(-2px);
}

/* HERO */

.hero{
  min-height:620px;
  background:linear-gradient(130deg,#170828 0%,#41145b 55%,#8d174f 100%);
  color:#fff;
  padding:80px 5%;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:40px;
  overflow:hidden;
}

.hero h1{
  font-size:56px;
  line-height:1.05;
  margin:0 0 18px;
}

.hero p{
  font-size:19px;
  line-height:1.7;
  color:#ffeede;
}

.hero-card{
  background:#ffffff12;
  border:1px solid #ffffff25;
  border-radius:30px;
  padding:26px;
  backdrop-filter:blur(8px);
}

.hero-card img{
  width:100%;
  border-radius:24px;
  display:block;
}

/* BADGES */

.badges{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin:22px 0;
}

.badge{
  background:#ffffff18;
  border:1px solid #ffffff25;
  border-radius:999px;
  padding:9px 14px;
}

/* GENERAL */

.section{
  padding:70px 5%;
}

.center{
  text-align:center;
}

.eyebrow{
  color:#b36a00;
  font-weight:800;
  letter-spacing:1px;
  text-transform:uppercase;
}

.title{
  font-size:40px;
  margin:8px 0 16px;
  color:var(--dark);
}

.lead{
  max-width:900px;
  margin:0 auto 35px;
  line-height:1.8;
  color:var(--muted);
  font-size:17px;
}

/* GRID */

.grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(245px,1fr));
  gap:24px;
}

/* CARD */

.card{
  background:#fff;
  border-radius:24px;
  padding:20px;
  box-shadow:0 10px 35px #32104614;
  border:1px solid #f0e7d8;
  overflow:hidden;
  transition:.3s;
}

.card:hover{
  transform:translateY(-5px);
  box-shadow:0 18px 45px #32104620;
}

.card img{
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  object-position:center;
  border-radius:18px;
  margin-bottom:16px;
  display:block;
  background:#f8f3ea;
}

.card h3{
  margin:5px 0 10px;
  color:var(--dark);
  font-size:28px;
}

.card p{
  color:var(--muted);
  line-height:1.65;
  font-size:15px;
}

/* SPLIT SECTION */

.split{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:35px;
  align-items:center;
}

.split img{
  width:100%;
  border-radius:30px;
  box-shadow:0 15px 35px #0002;
}

/* CTA */

.cta{
  background:linear-gradient(135deg,#2c0d47,#7f174d);
  color:#fff;
  border-radius:34px;
  padding:46px;
  text-align:center;
}

.cta .title{
  color:#fff;
}

/* CONTACT */

.contact-box{
  background:var(--light);
  border-radius:24px;
  padding:25px;
  line-height:2;
}

/* FOOTER */

.footer{
  background:#10061f;
  color:#f4e9ff;
  padding:50px 5% 20px;
}

.footer-grid{
  display:grid;
  grid-template-columns:1.1fr 1fr 1fr;
  gap:30px;
}

.footer a{
  display:block;
  margin:8px 0;
  color:#ffe2a5;
}

.copy{
  text-align:center;
  border-top:1px solid #ffffff18;
  margin-top:30px;
  padding-top:18px;
  color:#c7b8d8;
}

/* PAGE HERO */

.page-hero{
  background:linear-gradient(135deg,#160724,#6d1647);
  color:#fff;
  padding:75px 5%;
  text-align:center;
}

.page-hero h1{
  font-size:46px;
  margin:0 0 12px;
}

/* MAP */

.map iframe{
  width:100%;
  height:340px;
  border:0;
  border-radius:24px;
}

/* NOTICE */

.notice{
  font-size:13px;
  color:#7b6f86;
  background:#fff8e8;
  border-left:4px solid var(--gold);
  padding:14px;
  border-radius:10px;
  margin-top:20px;
}

/* MOBILE */

@media(max-width:850px){

  .hero,
  .split{
    grid-template-columns:1fr;
  }

  .hero h1{
    font-size:38px;
  }

  .title{
    font-size:31px;
  }

  .footer-grid{
    grid-template-columns:1fr;
  }

  .header{
    position:relative;
  }

  .menu{
    display:none;
  }

  .card img{
    height:auto;
  }

}


.google-review-badge{
  display:inline-block;
  background:#fff;
  color:#190b31;
  padding:10px 22px;
  border-radius:999px;
  font-weight:900;
  box-shadow:0 8px 25px #0001;
  border:1px solid #eee;
  margin-bottom:12px;
}

.google-rating-box{
  max-width:420px;
  margin:20px auto 25px;
  background:#fff;
  padding:24px;
  border-radius:24px;
  box-shadow:0 12px 35px #32104618;
  border:1px solid #f0e1c6;
}

.google-logo-text{
  font-size:34px;
  font-weight:900;
  letter-spacing:-1px;
  margin-bottom:8px;
}

.rating-number{
  font-size:46px;
  font-weight:900;
  color:#190b31;
  line-height:1;
}

.rating-stars{
  color:#f5b642;
  font-size:26px;
  margin:8px 0;
  letter-spacing:2px;
}

.rating-text{
  color:#6b6075;
  font-weight:700;
}

.slider-wrapper{
  overflow:hidden;
  border-radius:28px;
}

.hero-slider{
  display:flex;
  width:400%;
  animation:slideImages 16s infinite;
}

.hero-slider img{
  width:25%;
  height:620px;
  object-fit:cover;
  border-radius:24px;
}

@keyframes slideImages{
  0%,20%{transform:translateX(0%);}
  25%,45%{transform:translateX(-25%);}
  50%,70%{transform:translateX(-50%);}
  75%,100%{transform:translateX(-75%);}
}

@media(max-width:600px){
  .hero-slider img{
    height:320px;
  }
}