:root{
  --bg:#06101d;
  --bg2:#0b1b30;
  --gold:#f7b843;
  --gold2:#ffd783;
  --text:#ffffff;
  --muted:rgba(255,255,255,.74);
  --soft:rgba(255,255,255,.08);
  --border:rgba(255,255,255,.14);
  --shadow:0 24px 80px rgba(0,0,0,.42);
  --green:#25d366;
  --blue:#1877f2;
}

*{
  box-sizing:border-box;
  margin:0;
  padding:0;
}

html{
  scroll-behavior:smooth;
}

body{
  font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  background:var(--bg);
  color:var(--text);
  overflow-x:hidden;
}

a{
  text-decoration:none;
  color:inherit;
}

.wrapper{
  min-height:100vh;
  background:
    radial-gradient(circle at 12% 8%,rgba(247,184,67,.24),transparent 28%),
    radial-gradient(circle at 88% 14%,rgba(24,119,242,.18),transparent 32%),
    linear-gradient(135deg,#050914 0%,#06101d 44%,#0e233a 100%);
}

.container{
  width:min(1180px,calc(100% - 32px));
  margin:auto;
}

.header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(6,16,29,.78);
  border-bottom:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(18px);
}

.nav{
  min-height:78px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-icon{
  width:48px;
  height:48px;
  border-radius:17px;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#06101d;
  font-size:24px;
  box-shadow:0 16px 38px rgba(247,184,67,.25);
}

.brand-title{
  font-weight:950;
  letter-spacing:-.4px;
  line-height:1.2;
}

.brand-sub{
  display:block;
  margin-top:3px;
  color:var(--muted);
  font-size:12px;
  font-weight:650;
}

.nav-links{
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

.nav-link{
  padding:10px 12px;
  border-radius:999px;
  color:rgba(255,255,255,.78);
  font-weight:800;
  font-size:14px;
}

.nav-link:hover{
  background:rgba(255,255,255,.08);
  color:#fff;
}

.langs{
  display:flex;
  gap:6px;
  padding:5px;
  border:1px solid rgba(255,255,255,.12);
  border-radius:999px;
  background:rgba(255,255,255,.07);
}

.langs a{
  padding:8px 10px;
  border-radius:999px;
  color:rgba(255,255,255,.72);
  font-size:13px;
  font-weight:900;
}

.langs a.active{
  background:var(--gold);
  color:#06101d;
}

.call-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 16px;
  border-radius:999px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#06101d;
  font-weight:950;
  white-space:nowrap;
  box-shadow:0 16px 38px rgba(247,184,67,.23);
}

.facebook-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:12px 15px;
  border-radius:999px;
  background:rgba(24,119,242,.18);
  border:1px solid rgba(24,119,242,.35);
  color:#fff;
  font-weight:900;
  white-space:nowrap;
}

.hero{
  padding:70px 0 56px;
}

.hero-grid{
  display:grid;
  grid-template-columns:1.04fr .96fr;
  align-items:center;
  gap:34px;
}

.badge{
  display:inline-flex;
  align-items:center;
  gap:9px;
  padding:10px 14px;
  margin-bottom:18px;
  border-radius:999px;
  color:var(--gold2);
  background:rgba(247,184,67,.12);
  border:1px solid rgba(247,184,67,.28);
  font-weight:900;
}

h1{
  font-size:clamp(38px,6vw,74px);
  line-height:1.02;
  letter-spacing:-2.7px;
  margin-bottom:20px;
}

.hero-text{
  color:var(--muted);
  font-size:clamp(16px,2vw,20px);
  line-height:1.75;
  max-width:690px;
  margin-bottom:28px;
}

.actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-bottom:26px;
}

.btn{
  min-height:56px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:0 22px;
  border-radius:18px;
  font-weight:950;
  transition:.22s ease;
}

.btn:hover{
  transform:translateY(-3px);
}

.btn-primary{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#06101d;
  box-shadow:0 18px 45px rgba(247,184,67,.24);
}

.btn-whatsapp{
  background:rgba(37,211,102,.13);
  border:1px solid rgba(37,211,102,.35);
  color:#fff;
}

.btn-facebook{
  background:rgba(24,119,242,.14);
  border:1px solid rgba(24,119,242,.34);
}

.quick{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
  max-width:760px;
}

.quick-item{
  padding:14px;
  border-radius:18px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.11);
  color:rgba(255,255,255,.8);
  font-size:14px;
  font-weight:850;
}

.hero-card{
  min-height:570px;
  position:relative;
  overflow:hidden;
  border-radius:36px;
  border:1px solid rgba(255,255,255,.14);
  box-shadow:var(--shadow);
  background:
    linear-gradient(to top,rgba(6,16,29,.88),rgba(6,16,29,.16)),
    url("/images/locksmith-batumi-hero.jpg") center/cover no-repeat,
    linear-gradient(135deg,#15243a,#071220);
}

.hero-card:after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 74% 18%,rgba(255,215,131,.20),transparent 26%),
    linear-gradient(to top,rgba(6,16,29,.92),transparent 55%);
}

.hero-info{
  position:absolute;
  z-index:2;
  left:22px;
  right:22px;
  bottom:22px;
  padding:22px;
  border-radius:26px;
  background:rgba(6,16,29,.78);
  border:1px solid rgba(255,255,255,.15);
  backdrop-filter:blur(16px);
}

.hero-info small{
  color:var(--muted);
  font-weight:800;
}

.hero-phone{
  margin-top:5px;
  color:var(--gold2);
  font-size:clamp(30px,4vw,48px);
  font-weight:1000;
  letter-spacing:-1.4px;
}

.section{
  padding:58px 0;
}

.section-head{
  max-width:780px;
  margin:0 auto 34px;
  text-align:center;
}

.section-head h2{
  font-size:clamp(30px,4vw,48px);
  line-height:1.12;
  letter-spacing:-1.4px;
  margin-bottom:12px;
}

.section-head p{
  color:var(--muted);
  font-size:17px;
  line-height:1.75;
}

.services{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}

.service{
  min-height:320px;
  border-radius:28px;
  overflow:hidden;
  position:relative;
  padding:20px;
  display:flex;
  align-items:flex-end;
  border:1px solid rgba(255,255,255,.13);
  background:#101d2e;
  box-shadow:0 18px 55px rgba(0,0,0,.25);
}

.service:before{
  content:"";
  position:absolute;
  inset:0;
  background:
    linear-gradient(to top,rgba(5,9,18,.96),rgba(5,9,18,.16)),
    var(--img) center/cover no-repeat;
  transition:.35s ease;
}

.service:hover:before{
  transform:scale(1.06);
}

.service-content{
  position:relative;
  z-index:2;
}

.service-icon{
  width:52px;
  height:52px;
  display:grid;
  place-items:center;
  border-radius:18px;
  margin-bottom:14px;
  font-size:24px;
  color:var(--gold2);
  background:rgba(247,184,67,.17);
  border:1px solid rgba(247,184,67,.34);
}

.service h3{
  font-size:22px;
  line-height:1.25;
  margin-bottom:9px;
}

.service p{
  color:rgba(255,255,255,.72);
  line-height:1.6;
  font-size:14px;
}

.why{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:16px;
}

.card{
  padding:24px;
  border-radius:26px;
  background:var(--soft);
  border:1px solid var(--border);
  box-shadow:0 18px 60px rgba(0,0,0,.2);
}

.card-mark{
  width:50px;
  height:50px;
  display:grid;
  place-items:center;
  border-radius:17px;
  margin-bottom:15px;
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#06101d;
  font-size:23px;
}

.card h3{
  font-size:21px;
  margin-bottom:10px;
}

.card p{
  color:var(--muted);
  line-height:1.65;
}

.area-box{
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:18px;
  align-items:stretch;
}

.area-photo{
  min-height:330px;
  border-radius:28px;
  background:
    linear-gradient(to top,rgba(6,16,29,.88),rgba(6,16,29,.16)),
    url("/images/batumi-locksmith.jpg") center/cover no-repeat,
    linear-gradient(135deg,#162840,#081524);
  border:1px solid rgba(255,255,255,.14);
  box-shadow:var(--shadow);
}

.area-tags{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}

.area-tags span{
  padding:10px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:rgba(255,255,255,.82);
  font-weight:800;
  font-size:14px;
}

.faq{
  max-width:900px;
  margin:auto;
  display:grid;
  gap:13px;
}

.faq-item{
  border-radius:24px;
  overflow:hidden;
  background:var(--soft);
  border:1px solid var(--border);
}

.faq-q{
  width:100%;
  cursor:pointer;
  border:0;
  background:transparent;
  color:#fff;
  padding:20px;
  text-align:left;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  font-size:17px;
  font-weight:950;
}

.faq-q b{
  color:var(--gold2);
  font-size:26px;
  transition:.2s;
}

.faq-a{
  max-height:0;
  overflow:hidden;
  transition:max-height .28s ease;
}

.faq-a p{
  padding:0 20px 20px;
  color:var(--muted);
  line-height:1.65;
}

.faq-item.open .faq-a{
  max-height:240px;
}

.faq-item.open .faq-q b{
  transform:rotate(45deg);
}

.contact{
  padding-bottom:95px;
}

.contact-box{
  padding:34px;
  border-radius:30px;
  display:grid;
  grid-template-columns:1fr auto;
  gap:24px;
  align-items:center;
  background:
    radial-gradient(circle at 10% 20%,rgba(247,184,67,.18),transparent 35%),
    rgba(255,255,255,.08);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

.contact-box h2{
  font-size:clamp(30px,4vw,50px);
  line-height:1.12;
  letter-spacing:-1.5px;
  margin-bottom:12px;
}

.contact-box p{
  color:var(--muted);
  line-height:1.7;
  max-width:720px;
}

.contact-actions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.footer{
  padding:30px 0;
  color:rgba(255,255,255,.55);
  border-top:1px solid rgba(255,255,255,.08);
}

.footer-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
}

/* WhatsApp floating button - fixed */
.wa-float{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:90;
  width:230px;
  height:68px;
  border-radius:999px;
  display:flex;
  align-items:center;
  justify-content:flex-start;
  gap:10px;
  padding:10px 14px;
  background:var(--green);
  color:#fff;
  box-shadow:0 18px 48px rgba(37,211,102,.38);
  animation:waFloat 2.2s ease-in-out infinite;
  overflow:hidden;
}

.wa-float:before{
  content:"";
  position:absolute;
  inset:-6px;
  border-radius:999px;
  border:2px solid rgba(37,211,102,.34);
  animation:waPulse 1.8s ease-out infinite;
  pointer-events:none;
}

.wa-icon{
  position:relative;
  z-index:2;
  width:44px;
  height:44px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:rgba(255,255,255,.18);
  font-size:26px;
  line-height:1;
  flex-shrink:0;
}

.wa-text{
  position:relative;
  z-index:2;
  display:flex;
  flex-direction:column;
  line-height:1.12;
  min-width:0;
}

.wa-text strong{
  font-size:16px;
  font-weight:950;
}

.wa-text small{
  margin-top:3px;
  font-size:14px;
  font-weight:900;
  white-space:nowrap;
}

/* If old HTML still has only ☏ inside .wa-float */
.wa-float:not(:has(.wa-text)){
  width:66px;
  height:66px;
  border-radius:50%;
  display:grid;
  place-items:center;
  padding:0;
  font-size:31px;
}

.wa-float:not(:has(.wa-text)):before{
  border-radius:50%;
}

@keyframes waFloat{
  0%,100%{
    transform:translateY(0);
  }
  50%{
    transform:translateY(-6px);
  }
}

@keyframes waPulse{
  0%{
    transform:scale(.9);
    opacity:.8;
  }
  100%{
    transform:scale(1.12);
    opacity:0;
  }
}

.mobile-bar{
  display:none;
  position:fixed;
  left:12px;
  right:12px;
  bottom:12px;
  z-index:88;
  gap:10px;
  padding:10px;
  border-radius:22px;
  background:rgba(6,16,29,.88);
  border:1px solid rgba(255,255,255,.14);
  backdrop-filter:blur(18px);
  box-shadow:0 18px 60px rgba(0,0,0,.42);
}

.mobile-bar a{
  flex:1;
  min-height:50px;
  border-radius:16px;
  display:grid;
  place-items:center;
  font-weight:950;
}

.mobile-call{
  background:linear-gradient(135deg,var(--gold),var(--gold2));
  color:#06101d;
}

.mobile-wa{
  background:rgba(37,211,102,.15);
  border:1px solid rgba(37,211,102,.32);
}

@media(max-width:1020px){
  .hero-grid,
  .area-box,
  .contact-box{
    grid-template-columns:1fr;
  }

  .services{
    grid-template-columns:repeat(2,1fr);
  }

  .why{
    grid-template-columns:1fr;
  }

  .hero-card{
    min-height:480px;
  }
}

@media(max-width:720px){
  .container{
    width:min(100% - 22px,1180px);
  }

  .nav{
    align-items:flex-start;
    padding:12px 0;
  }

  .nav-links{
    gap:6px;
  }

  .nav-link,
  .facebook-btn,
  .call-btn{
    display:none;
  }

  .brand-title{
    font-size:14px;
  }

  .hero{
    padding:42px 0 34px;
  }

  h1{
    letter-spacing:-1.5px;
  }

  .quick{
    grid-template-columns:1fr;
  }

  .services{
    grid-template-columns:1fr;
  }

  .service{
    min-height:275px;
  }

  .hero-card{
    min-height:410px;
    border-radius:28px;
  }

  .area-photo{
    min-height:250px;
  }

  .contact-box{
    padding:24px;
  }

  .wa-float{
    left:12px;
    right:12px;
    bottom:86px;
    width:auto;
    height:60px;
    padding:8px 12px;
    justify-content:center;
  }

  .wa-icon{
    width:38px;
    height:38px;
    font-size:23px;
  }

  .wa-text strong{
    font-size:14px;
  }

  .wa-text small{
    font-size:13px;
  }

  .wa-float:not(:has(.wa-text)){
    left:auto;
    right:18px;
    bottom:86px;
    width:58px;
    height:58px;
    border-radius:50%;
    padding:0;
    font-size:28px;
  }

  .mobile-bar{
    display:flex;
  }
}