@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Segoe UI", Arial, sans-serif;
  background: #08030d;
  color: #fff;
  overflow-x: hidden;
}

a {
  text-decoration: none;
  color: inherit;
}

.header {
  width: 100%;
  padding: 18px 7%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: fixed;
  top: 0;
  z-index: 100;
  background: rgba(8, 3, 13, 0.75);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  width: 46px;
  height: 46px;
  border-radius: 15px;
  background: linear-gradient(135deg, #d4af37, #7b1fa2);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 25px rgba(212,175,55,0.35);
}

.logo h1 {
  font-size: 18px;
  line-height: 1;
}

.logo span {
  font-size: 12px;
  color: #d4af37;
}

.nav {
  display: flex;
  gap: 28px;
  font-size: 14px;
  color: #ddd;
}

.nav a:hover {
  color: #d4af37;
}

.btn-header,
.btn-primary,
.btn-secondary {
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.3s ease;
}

.btn-header,
.btn-primary {
  background: linear-gradient(135deg, #d4af37, #a01662);
  color: #fff;
  box-shadow: 0 10px 30px rgba(160,22,98,0.35);
}

.btn-header:hover,
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(212,175,55,0.4);
}

.btn-secondary {
  border: 1px solid rgba(255,255,255,0.15);
  color: #fff;
}

.btn-secondary:hover {
  background: rgba(255,255,255,0.08);
}

.hero {
  min-height: 100vh;
  padding: 150px 7% 80px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 50px;
  align-items: center;
  background:
    radial-gradient(circle at top left, rgba(160,22,98,0.35), transparent 35%),
    radial-gradient(circle at bottom right, rgba(212,175,55,0.18), transparent 35%);
}

.badge {
  display: inline-block;
  padding: 10px 16px;
  border: 1px solid rgba(212,175,55,0.35);
  border-radius: 999px;
  color: #d4af37;
  font-size: 14px;
  margin-bottom: 25px;
  background: rgba(255,255,255,0.04);
}

.hero h2 {
  font-size: clamp(40px, 6vw, 76px);
  line-height: 0.95;
  margin-bottom: 24px;
  letter-spacing: -2px;
}

.hero p {
  max-width: 620px;
  color: #cfc7d8;
  font-size: 18px;
  line-height: 1.7;
}

.hero-buttons {
  display: flex;
  gap: 16px;
  margin-top: 35px;
  flex-wrap: wrap;
}

.hero-card {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.circle-glow {
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,175,55,0.35), transparent 70%);
  animation: pulse 4s infinite ease-in-out;
}

.app-card {
  position: relative;
  z-index: 2;
  width: 330px;
  padding: 35px;
  border-radius: 34px;
  background: linear-gradient(160deg, rgba(255,255,255,0.14), rgba(255,255,255,0.04));
  border: 1px solid rgba(255,255,255,0.13);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}

.app-card span {
  color: #d4af37;
  font-size: 14px;
}

.app-card strong {
  display: block;
  font-size: 32px;
  margin: 12px 0;
}

.app-card p {
  color: #d9d0df;
  font-size: 15px;
}

.floating-card {
  position: absolute;
  padding: 14px 20px;
  border-radius: 20px;
  background: rgba(255,255,255,0.12);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(15px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.35);
  animation: float 4s infinite ease-in-out;
}

.card-one {
  top: 80px;
  left: 40px;
}

.card-two {
  right: 30px;
  top: 180px;
  animation-delay: 1s;
}

.card-three {
  bottom: 90px;
  left: 80px;
  animation-delay: 2s;
}

.services {
  padding: 100px 7%;
}

.section-title {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 55px;
}

.section-title span,
.protection-content span {
  color: #d4af37;
  font-weight: 700;
}

.section-title h2,
.protection h2,
.cta h2 {
  font-size: clamp(32px, 4vw, 52px);
  margin-top: 12px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.service-card {
  padding: 30px;
  border-radius: 28px;
  background: rgba(255,255,255,0.055);
  border: 1px solid rgba(255,255,255,0.09);
  transition: 0.35s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.09);
  box-shadow: 0 25px 60px rgba(0,0,0,0.35);
}

.service-card.dark {
  background: linear-gradient(160deg, rgba(65,0,85,0.55), rgba(0,0,0,0.4));
}

.icon {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: rgba(212,175,55,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
}

.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-card p {
  color: #cfc7d8;
  line-height: 1.6;
}

.protection {
  padding: 100px 7%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px;
  align-items: center;
  background: linear-gradient(180deg, transparent, rgba(160,22,98,0.12));
}

.protection-content p {
  color: #cfc7d8;
  line-height: 1.7;
  margin: 22px 0;
}

.protection-content ul {
  list-style: none;
  margin-bottom: 35px;
}

.protection-content li {
  margin-bottom: 14px;
  color: #eee;
}

.ritual-box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.ritual-item {
  min-height: 150px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: end;
  font-weight: 700;
  font-size: 18px;
}

.cta {
  margin: 80px 7%;
  padding: 70px 35px;
  border-radius: 40px;
  text-align: center;
  background:
    linear-gradient(135deg, rgba(212,175,55,0.18), rgba(160,22,98,0.28)),
    rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
}

.cta p {
  color: #ddd;
  margin: 18px 0 32px;
}

.footer {
  padding: 45px 7%;
  text-align: center;
  color: #aaa;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.footer h3 {
  color: #fff;
  margin-bottom: 8px;
}

.footer small {
  display: block;
  max-width: 700px;
  margin: 18px auto 0;
  color: #777;
  line-height: 1.5;
}

.whatsapp-float{
  position:fixed !important;
  right:22px !important;
  bottom:22px !important;
  top:auto !important;
  left:auto !important;

  width:62px;
  height:62px;
  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  background:linear-gradient(135deg,#25d366,#128c7e);
  color:#fff;

  z-index:999999;

  box-shadow:0 18px 45px rgba(0,0,0,.38);

  animation:whatsappPulse 2.8s infinite;
}

.whatsapp-float svg{
  display:block;
  width:30px;
  height:30px;
}

.whatsapp-bubble{
  position:absolute;
  right:75px;
  bottom:8px;

  width:210px;

  padding:10px 13px;
  border-radius:16px;

  background:rgba(12,12,18,.96);
  color:#fff;

  font-size:12px;
  font-weight:600;
  line-height:1.3;

  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 14px 35px rgba(0,0,0,.35);

  opacity:1;
  transform:translateX(0);

  pointer-events:none;
}

.whatsapp-bubble::after{
  content:"";
  position:absolute;
  right:-6px;
  bottom:18px;

  width:12px;
  height:12px;

  background:rgba(12,12,18,.96);
  transform:rotate(45deg);

  border-top:1px solid rgba(255,255,255,.08);
  border-right:1px solid rgba(255,255,255,.08);
}

@keyframes whatsappPulse{
  0%,100%{
    transform:translateY(0) scale(1);
  }

  50%{
    transform:translateY(-6px) scale(1.03);
  }
}

@media(max-width:700px){

  .whatsapp-float{
    right:16px !important;
    bottom:18px !important;

    width:58px;
    height:58px;
  }

  .whatsapp-bubble{
    width:185px;
    right:68px;
    bottom:7px;

    font-size:11px;
    padding:9px 12px;
  }

}

@keyframes float {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-16px);
  }
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
    opacity: 0.7;
  }

  50% {
    transform: scale(1.14);
    opacity: 1;
  }
}

@keyframes bounce {
  0%, 100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@media (max-width: 900px) {

  .header {
    padding: 14px 5%;
    gap: 12px;
  }

  .logo h1 {
    font-size: 16px;
  }

  .logo span {
    font-size: 11px;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
  }

  .nav {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    font-size: 12px;
    max-width: 52%;
    scrollbar-width: none;
  }

  .nav::-webkit-scrollbar {
    display: none;
  }

  .nav a {
    padding: 8px 10px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.08);
  }

  .hero {
    grid-template-columns: 1fr;
    padding: 150px 5% 60px;
    text-align: center;
  }

  .hero p {
    margin: auto;
  }

  .hero-buttons {
    justify-content: center;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .protection {
    grid-template-columns: 1fr;
    padding: 70px 5%;
  }

  .ritual-box {
    grid-template-columns: 1fr;
  }

  .hero-card {
    min-height: 430px;
  }

  .floating-card {
    font-size: 14px;
  }

}/* CSS Document */
.service-card,
.ritual-item {
  opacity: 0;
  transform: translateY(25px);
}

.service-card.show,
.ritual-item.show {
  opacity: 1;
  transform: translateY(0);
}
.form-card {
  padding: 28px;
}

.form-top span {
  color: #d4af37;
  font-size: 13px;
}

.form-top strong {
  display: block;
  font-size: 28px;
  margin: 10px 0;
}

.form-top p {
  color: #d9d0df;
  font-size: 14px;
  margin-bottom: 22px;
}

.mini-group {
  margin-bottom: 14px;
}

.mini-group input,
.mini-group select,
.mini-group textarea {
  width: 100%;
  border: none;
  outline: none;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,0.08);
  color: #fff;
  font-size: 14px;
  border: 1px solid rgba(255,255,255,0.08);
  transition: 0.3s ease;
}

.mini-group input::placeholder,
.mini-group textarea::placeholder {
  color: #9e94a7;
}

.mini-group input:focus,
.mini-group select:focus,
.mini-group textarea:focus {
  border-color: #d4af37;
  box-shadow: 0 0 0 3px rgba(212,175,55,0.12);
}

.hero-submit {
  width: 100%;
  border: none;
  cursor: pointer;
  padding: 15px;
  border-radius: 18px;
  font-weight: 700;
  font-size: 15px;
  color: #fff;
  background: linear-gradient(135deg, #d4af37, #a01662);
  box-shadow: 0 15px 35px rgba(160,22,98,0.35);
  transition: 0.3s ease;
}

.hero-submit:hover {
  transform: translateY(-3px);
}
.mini-group select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  background:
    rgba(255,255,255,0.08)
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20' height='20' fill='white' viewBox='0 0 16 16'%3E%3Cpath d='M1.5 5.5l6 6 6-6'/%3E%3C/svg%3E")
    no-repeat right 16px center;

  padding-right: 45px;
  cursor: pointer;
}

.mini-group select option {
  background: #12071d;
  color: #fff;
}
.live-consulting {
  margin-bottom: 22px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  backdrop-filter: blur(10px);
}

.live-dot {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #22c55e;
  box-shadow: 0 0 15px #22c55e;
  animation: pulseDot 1.4s infinite;
}

.live-text {
  color: #cfc7d8;
  font-size: 13px;
  letter-spacing: 0.2px;
}

.live-text strong {
  color: #d4af37;
  font-size: 13px;
  font-weight: 700;
  margin-right: 3px;
  transition: 0.25s ease;
  display: inline-block;
}

@keyframes pulseDot {

  0% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.35);
    opacity: 0.6;
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}
transition:
  transform 0.45s ease,
  opacity 0.45s ease;
  .push-toast {
  position: fixed;
  left: 24px;
  bottom: 24px;
  z-index: 300;
  max-width: 310px;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px 17px;
  border-radius: 22px;
  background: rgba(15, 8, 23, 0.88);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(18px);
  box-shadow: 0 20px 55px rgba(0,0,0,0.45);
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
  transition: 0.55s ease;
}

.push-toast{
  position: fixed;
  left: 18px;
  bottom: 18px;

  width: 270px;

  display: flex;
  align-items: center;
  gap: 11px;

  padding: 12px 14px;

  border-radius: 18px;

  background: rgba(10,10,16,0.88);

  border: 1px solid rgba(255,255,255,0.06);

  backdrop-filter: blur(16px);

  box-shadow: 0 18px 40px rgba(0,0,0,0.32);

  z-index: 99999;

  opacity: 0;

  transform: translateX(-35px);

  transition:
    opacity .55s ease,
    transform .55s ease;

  pointer-events: none;
}

.push-toast.show{
  opacity: 1;
  transform: translateX(0);
}

.push-icon{
  min-width: 38px;
  width: 38px;
  height: 38px;

  border-radius: 13px;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 17px;

  background: rgba(212,175,55,0.10);
}

.push-toast strong{
  display: block;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 2px;
}

.push-toast p{
  color: #bfb5c7;
  font-size: 11px;
  line-height: 1.35;
}

@media(max-width:700px){

  .push-toast{
    width: 240px;
    left: 12px;
    bottom: 85px;
  }

}


.top-alert{
  width:100%;

  padding:11px 15px;

  position:fixed;
  top:0;
  left:0;

  z-index:999999;

  display:flex;
  align-items:center;
  justify-content:center;

  gap:8px;

  background:
    linear-gradient(
      90deg,
      #4b0018,
      #7b123f,
      #a01662
    );

  color:#fff;

  font-size:12px;
  font-weight:600;

  letter-spacing:.4px;

  border-bottom:
    1px solid rgba(255,255,255,0.08);

  backdrop-filter:blur(14px);
}

.header{
  top:42px;
}
/* =========================
GOOGLE REVIEWS
========================= */

.google-reviews{
  padding:100px 7%;
  background:#fff;
}

.google-title span{
  color:#4285F4;
}

.google-title h2{
  color:#202124;
  max-width:760px;
  margin:auto;
}

/* =========================
SUMMARY CARD
========================= */

.google-summary-card{

  max-width:420px;

  margin:40px auto 45px;

  padding:26px;

  border-radius:22px;

  background:#fff;

  border:1px solid #e5e7eb;

  box-shadow:
    0 10px 35px rgba(0,0,0,.08);

  text-align:left;
}

.google-header{

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:18px;
}

.google-wordmark{
  width:120px;
  object-fit:contain;
}

.summary-rating{

  display:flex;

  align-items:center;

  gap:10px;
}

.summary-rating strong{
  font-size:28px;
  color:#202124;
}

.google-stars,
.review-stars{
  color:#fbbc05;
  letter-spacing:1px;
  font-size:14px;
}

.summary-text{
  margin-top:10px;
  color:#5f6368;
  font-size:13px;
}

.google-review-btn{

  margin-top:18px;

  display:inline-flex;
  align-items:center;
  justify-content:center;

  padding:11px 18px;

  border-radius:999px;

  background:#1a73e8;

  color:#fff;

  font-size:13px;
  font-weight:600;

  transition:.25s ease;

  box-shadow:
    0 8px 18px rgba(26,115,232,.22);
}

.google-review-btn:hover{
  background:#1765cc;
  transform:translateY(-2px);
}

/* =========================
CAROUSEL
========================= */

.reviews-carousel{

  display:flex;

  gap:18px;

  overflow-x:auto;

  scroll-snap-type:x mandatory;

  padding:10px 4px 26px;

  scrollbar-width:none;

  -webkit-overflow-scrolling:touch;
}

.reviews-carousel::-webkit-scrollbar{
  display:none;
}

/* =========================
REVIEW CARD
========================= */

.review-card{

  min-width:320px;
  max-width:320px;

  flex-shrink:0;

  scroll-snap-align:start;

  padding:22px;

  border-radius:20px;

  background:#fff;

  border:1px solid #e5e7eb;

  box-shadow:
    0 8px 25px rgba(0,0,0,.07);

  transition:.3s ease;
}

.review-card:hover{
  transform:translateY(-5px);

  box-shadow:
    0 16px 35px rgba(0,0,0,.12);
}

/* =========================
HEAD
========================= */

.review-head{

  display:flex;

  align-items:center;

  gap:12px;

  margin-bottom:14px;
}

/* =========================
AVATARS
========================= */

.avatar{

  width:42px;
  height:42px;

  border-radius:50%;

  display:flex;
  align-items:center;
  justify-content:center;

  color:#fff;

  font-weight:700;

  flex-shrink:0;
}

.avatar.blue{
  background:#4285F4;
}

.avatar.red{
  background:#EA4335;
}

.avatar.green{
  background:#34A853;
}

.avatar.yellow{
  background:#FBBC05;
  color:#202124;
}

/* =========================
TEXT
========================= */

.review-head strong{
  display:block;
  color:#202124;
  font-size:14px;
}

.review-head span{
  display:block;
  color:#5f6368;
  font-size:12px;
  margin-top:2px;
}

.review-card p{
  color:#3c4043;
  font-size:13px;
  line-height:1.7;
  margin-top:8px;
}

/* =========================
MINI GOOGLE LOGO
========================= */

.mini-google-logo{
  width:18px;
  height:18px;
  margin-left:auto;
}

/* =========================
MOBILE
========================= */

@media(max-width:700px){

  .google-reviews{
    padding:70px 5%;
  }

  .google-summary-card{
    max-width:100%;
  }

  .review-card{
    min-width:84%;
    max-width:84%;
  }

}
/* =========================
APP STYLE MOBILE DOCK
========================= */

.mobile-dock{
  display:none;
}

@media(max-width:900px){

  .nav{
    display:none;
  }

  .mobile-dock{

    position:fixed;

    left:50%;
    bottom:14px;

    transform:translateX(-50%);

    width:calc(100% - 22px);

    max-width:420px;

    padding:10px 12px;

    border-radius:28px;

    background:
      rgba(15,15,20,.88);

    backdrop-filter:blur(20px);

    border:1px solid rgba(255,255,255,.08);

    box-shadow:
      0 18px 40px rgba(0,0,0,.35);

    z-index:999999;

    display:flex;

    align-items:center;

    justify-content:space-around;

    gap:8px;
  }

  .mobile-dock a{

    display:flex;

    flex-direction:column;

    align-items:center;

    justify-content:center;

    gap:4px;

    color:#fff;

    font-size:10px;

    font-weight:600;

    min-width:60px;

    transition:.25s ease;
  }

  .mobile-dock a span{

    width:42px;
    height:42px;

    border-radius:16px;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:18px;

    background:
      rgba(255,255,255,.06);

    border:
      1px solid rgba(255,255,255,.06);

    transition:.25s ease;
  }

  .mobile-dock a:active span,
  .mobile-dock a:hover span{

    background:
      linear-gradient(
        135deg,
        #d4af37,
        #a01662
      );

    transform:
      translateY(-3px);
  }

  body{
    padding-bottom:95px;
  }

}
.menu-toggle,
.menu-overlay{
  display:none;
}

@media(max-width:900px){

  .header{
    padding:14px 5%;
  }

  .nav{
    position:fixed;
    top:54px;
    right:-100%;

    width:88%;
    max-width:340px;
    height:calc(100vh - 54px);

    display:flex;
    flex-direction:column;
    gap:10px;

    padding:32px 22px;

    background:#ffffff;
    border-radius:28px 0 0 28px;

    box-shadow:-18px 0 45px rgba(0,0,0,.28);

    z-index:999999;

    transition:.35s ease;
  }

  .nav.active{
    right:0;
  }

  .nav a{
    width:100%;
    padding:16px 18px;

    border-radius:18px;

    background:#f8f9fa;
    border:1px solid #e5e7eb;

    color:#202124;
    font-size:16px;
    font-weight:700;
  }

  .nav a:hover{
    background:#f1f3f4;
    color:#a01662;
  }

  .menu-toggle{
    width:44px;
    height:44px;

    border:none;
    border-radius:15px;

    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.12);

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:5px;

    cursor:pointer;
    z-index:1000000;
  }

  .menu-toggle span{
    width:20px;
    height:2px;
    border-radius:10px;
    background:#fff;
    transition:.3s ease;
  }

  .menu-toggle.active{
    background:#fff;
  }

  .menu-toggle.active span{
    background:#202124;
  }

  .menu-toggle.active span:nth-child(1){
    transform:translateY(7px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2){
    opacity:0;
  }

  .menu-toggle.active span:nth-child(3){
    transform:translateY(-7px) rotate(-45deg);
  }

 .menu-overlay{
  position:fixed;
  inset:0;

  background:rgba(0,0,0,.45);

  opacity:0;
  pointer-events:none;

  display:block;

  z-index:999998;

  transition:.3s ease;
}

  .menu-overlay.active{
    opacity:0;
    pointer-events:auto;
  }

}

.visit-section{
  padding:100px 7%;
  background:#08030d;
}

.visit-title h2{
  color:#fff;
}

.map-box{
  position:relative;
  margin-top:45px;
  height:460px;
  border-radius:34px;
  overflow:hidden;
  box-shadow:0 30px 80px rgba(0,0,0,.45);
  border:1px solid rgba(255,255,255,.08);
}

.map-box iframe{
  width:100%;
  height:100%;
  border:0;
  filter:saturate(.85) contrast(1.05);
}

.map-card{
  position:absolute;
  left:28px;
  top:28px;
  width:320px;
  padding:24px;
  border-radius:26px;
  background:rgba(255,255,255,.94);
  color:#202124;
  box-shadow:0 20px 55px rgba(0,0,0,.25);
  backdrop-filter:blur(16px);
}

.map-badge{
  display:inline-flex;
  padding:7px 12px;
  border-radius:999px;
  background:#f1f3f4;
  color:#5f6368;
  font-size:12px;
  font-weight:700;
  margin-bottom:12px;
}

.map-card h3{
  font-size:20px;
  line-height:1.2;
  margin-bottom:10px;
  color:#202124;
}

.map-stars{
  color:#fbbc05;
  font-size:14px;
  margin-bottom:12px;
}

.map-stars strong{
  color:#202124;
  margin-left:6px;
}

.map-card p{
  color:#5f6368;
  font-size:13px;
  line-height:1.55;
  margin-bottom:12px;
}

.map-phone{
  display:block;
  color:#202124;
  font-size:14px;
  font-weight:700;
  margin-bottom:16px;
}

.map-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:100%;
  padding:13px 18px;
  border-radius:999px;
  background:#1a73e8;
  color:#fff;
  font-size:14px;
  font-weight:700;
  box-shadow:0 10px 24px rgba(26,115,232,.25);
}

@media(max-width:700px){
  .visit-section{
    padding:70px 5%;
  }

  .map-box{
    height:560px;
    border-radius:28px;
  }

  .map-card{
    left:16px;
    right:16px;
    top:16px;
    width:auto;
  }
}
.service-card{
  cursor:pointer;
}

.service-modal{
  position:fixed;
  inset:0;
  z-index:9999999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:20px;
  background:rgba(0,0,0,.68);
}

.service-modal.active{
  display:flex;
}

.service-modal-box{
  width:100%;
  max-width:520px;
  max-height:92vh;
  overflow-y:auto;
  position:relative;
  padding:34px;
  border-radius:34px;
  background:
    radial-gradient(circle at top right, rgba(212,175,55,.16), transparent 38%),
    linear-gradient(160deg,#170920,#08030d);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 35px 90px rgba(0,0,0,.55);
}

.close-service{
  position:absolute;
  right:18px;
  top:16px;
  width:36px;
  height:36px;
  border:none;
  border-radius:50%;
  background:rgba(255,255,255,.08);
  color:#fff;
  font-size:24px;
  cursor:pointer;
}

.modal-kicker{
  color:#d4af37;
  font-size:13px;
  font-weight:800;
}

.service-modal-box h3{
  margin:12px 0 16px;
  font-size:32px;
  line-height:1.05;
}

.service-modal-box p{
  color:#d5cadd;
  font-size:15px;
  line-height:1.7;
}

.modal-urgency{
  margin:22px 0;
  padding:18px;
  border-radius:22px;
  background:rgba(160,22,98,.18);
  border:1px solid rgba(212,175,55,.16);
}

.modal-urgency strong{
  display:block;
  color:#fff;
  margin-bottom:8px;
  font-size:16px;
}

.modal-mini-points{
  display:grid;
  gap:10px;
  margin-bottom:24px;
}

.modal-mini-points div{
  padding:12px 14px;
  border-radius:16px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.08);
  color:#eee;
  font-size:14px;
}

.modal-input-group{
  margin-bottom:15px;
}

.modal-input-group label{
  display:block;
  margin-bottom:8px;
  color:#f3e7ff;
  font-size:13px;
  font-weight:700;
}

.modal-input-group input{
  width:100%;
  padding:15px 16px;
  border-radius:16px;
  border:1px solid rgba(255,255,255,.12);
  background:rgba(255,255,255,.08);
  color:#fff;
  outline:none;
  font-size:14px;
}

.modal-input-group input::placeholder{
  color:#998fa3;
}

.modal-input-group input:focus{
  border-color:#d4af37;
  box-shadow:0 0 0 3px rgba(212,175,55,.12);
}

.modal-submit-btn{
  width:100%;
  margin-top:8px;
  padding:16px 18px;
  border:none;
  border-radius:20px;
  cursor:pointer;
  color:#fff;
  font-size:15px;
  font-weight:800;
  background:linear-gradient(135deg,#d4af37,#a01662);
  box-shadow:0 16px 38px rgba(160,22,98,.35);
}

@media(max-width:700px){
  .service-modal{
    padding:14px;
  }

  .service-modal-box{
    padding:28px 22px;
    border-radius:28px;
  }

  .service-modal-box h3{
    font-size:27px;
  }
}

.faq-section{
  padding:100px 7%;
  background:
    radial-gradient(circle at top left, rgba(212,175,55,.08), transparent 35%),
    #08030d;
}

.faq-title h2{
  color:#fff;
  max-width:760px;
  margin:auto;
}

.faq-wrapper{
  max-width:900px;
  margin:50px auto 0;
  display:grid;
  gap:18px;
}

.faq-item{
  border-radius:24px;
  overflow:hidden;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  transition:.3s ease;
}

.faq-item.active{
  background:rgba(255,255,255,.08);
}

.faq-question{
  width:100%;
  padding:24px 26px;
  border:none;
  background:none;
  color:#fff;
  font-size:16px;
  font-weight:700;
  text-align:left;
  display:flex;
  align-items:center;
  justify-content:space-between;
  cursor:pointer;
}

.faq-question span{
  font-size:24px;
  color:#d4af37;
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .4s ease;
}

.faq-item.active .faq-answer{
  max-height:400px;
}

.faq-answer p{
  padding:0 26px 22px;
  color:#d5cadd;
  line-height:1.7;
  font-size:14px;
}

@media(max-width:700px){

  .faq-section{
    padding:70px 5%;
  }

  .faq-question{
    font-size:15px;
    padding:20px;
  }

  .faq-answer p{
    padding:0 20px 20px;
  }

}