
:root{
  --bg:#08111f;
  --bg2:#0b1320;
  --card:#0d1726;
  --card2:#111c2d;
  --border:rgba(255,255,255,.09);
  --text:#ffffff;
  --muted:#9fb3ce;
  --blue:#3b82f6;
  --blue2:#60a5fa;
  --shadow:0 24px 80px rgba(0,0,0,.28);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:Inter,Segoe UI,Arial,sans-serif;
  overflow-x:hidden;
}
.container{width:min(1180px,calc(100% - 40px));margin:auto}
a{color:inherit}

.site-header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(8,17,31,.94);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
}

.nav-row{height:86px;display:flex;align-items:center;gap:24px}
.brand{display:flex;align-items:center;gap:14px;text-decoration:none;margin-right:auto}
.brand img{width:54px;height:54px;object-fit:cover;border-radius:13px;background:#0b1f55}
.brand strong{display:block;font-size:22px}
.brand small{display:block;color:var(--muted);font-size:14px;margin-top:4px}

.nav{display:flex;align-items:center;gap:25px}
.nav a{text-decoration:none;font-weight:800;color:#e5edf8;opacity:.9}
.nav a:hover{color:var(--blue2)}

.top-cta,.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 22px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
}
.top-cta,.primary{
  background:linear-gradient(135deg,#2563eb,#3b82f6);
  box-shadow:0 14px 30px rgba(37,99,235,.28);
}
.secondary,.small-btn{background:var(--card2);border:1px solid var(--border)}
.mobile-menu{
  display:none;
  background:var(--card2);
  color:white;
  border:1px solid var(--border);
  border-radius:12px;
  width:46px;
  height:46px;
  font-size:22px;
}

.hero{
  position:relative;
  min-height:calc(100vh - 86px);
  padding:110px 0 105px;
  display:flex;
  align-items:center;
  overflow:hidden;
  background:#08111f;
}

.hero-bg-img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center center;
  opacity:.72;
  filter:brightness(1.08) contrast(1.06) saturate(1.04);
  z-index:0;
}
.hero::before{
  content:"";
  position:absolute;
  inset:0;
  z-index:1;
  pointer-events:none;
  background:
    linear-gradient(90deg, rgba(8,17,31,.90) 0%, rgba(8,17,31,.62) 34%, rgba(8,17,31,.24) 64%, rgba(8,17,31,.16) 100%),
    linear-gradient(180deg, rgba(8,17,31,.10) 0%, rgba(8,17,31,.08) 40%, rgba(8,17,31,.58) 100%);
}
.hero .container{
  position:relative;
  z-index:2;
}

.hero-grid{display:grid;grid-template-columns:1.12fr .88fr;gap:64px;align-items:center}

.hero-copy{
  padding:0;
  border-radius:0;
  background:transparent;
  border:0;
  backdrop-filter:none;
  text-shadow:0 4px 26px rgba(0,0,0,.85);
}


.eyebrow{
  color:var(--blue2);
  text-transform:uppercase;
  letter-spacing:.28em;
  font-size:12px;
  font-weight:900;
}
.hero h1{font-size:clamp(44px,6vw,76px);line-height:1;margin:16px 0;text-shadow:0 6px 28px rgba(0,0,0,.82)}
.lead{color:var(--muted);font-size:18px;line-height:1.75;max-width:700px}
.hero-actions{display:flex;gap:14px;flex-wrap:wrap;margin-top:30px}
.hero-panel{display:grid;gap:18px;align-content:start}


.hero-visual{
  position:relative;
  min-height:310px;
  overflow:hidden;
  border-radius:28px;
  border:1px solid var(--border);
  background:#111827;
  box-shadow:var(--shadow);
}
.hero-visual img{
  position:absolute;
  inset:0;
  width:100%;
  height:100%;
  object-fit:cover;
  transform:scale(1.02);
}
.hero-visual-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(8,17,31,.92), rgba(8,17,31,.55), rgba(8,17,31,.28)),
    linear-gradient(180deg, rgba(8,17,31,.10), rgba(8,17,31,.80));
}
.hero-visual-content{
  position:absolute;
  left:26px;
  right:26px;
  bottom:24px;
  z-index:2;
}
.hero-visual-content span{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(59,130,246,.18);
  border:1px solid rgba(96,165,250,.24);
  color:#dbeafe;
  font-size:12px;
  font-weight:900;
  letter-spacing:.12em;
  text-transform:uppercase;
}
.hero-visual-content strong{
  display:block;
  margin-top:14px;
  color:white;
  font-size:30px;
  line-height:1.1;
}
.hero-visual-content p{
  margin:10px 0 0;
  color:#cbd5e1;
  line-height:1.6;
  max-width:520px;
}

.hero-panel article,
.service-card,
.location-card,
.review-box,
.qr-card{
  background:rgba(13,23,38,.76);
  border:1px solid var(--border);
  border-radius:24px;
  box-shadow:var(--shadow);
}
.hero-panel article{padding:24px;background:rgba(13,23,38,.58);backdrop-filter:blur(10px)}
.hero-panel span{font-size:26px}
.hero-panel h3{margin:10px 0 8px;font-size:22px}
.hero-panel p{margin:0;color:var(--muted);line-height:1.55}

.section{padding:82px 0}
.section-head{text-align:center;max-width:780px;margin:0 auto 46px}
.section-head h2{font-size:clamp(34px,4vw,52px);margin:12px 0}
.section-head p{color:var(--muted);font-size:17px;line-height:1.7}

.reviews-section,.locations-section{background:var(--bg2)}
.review-box{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:24px;
  padding:30px;
}
.review-box strong{display:block;font-size:28px}
.review-box span{display:block;color:var(--muted);margin-top:8px;line-height:1.6}
.review-actions{display:flex;gap:12px;flex-wrap:wrap}
.small-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:46px;
  padding:0 17px;
  border-radius:14px;
  text-decoration:none;
  font-weight:900;
}

.services-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px;align-items:start}
.service-card{overflow:hidden;align-self:start;height:auto}
.service-card summary{
  list-style:none;
  cursor:pointer;
  padding:28px;
  display:flex;
  justify-content:space-between;
  gap:18px;
}
.service-card summary::-webkit-details-marker{display:none}
.service-card h3{font-size:28px;margin:0 0 10px}
.service-card summary p{color:var(--muted);margin:0;line-height:1.6}
.plus{font-size:32px;color:var(--blue2);font-weight:900;transition:.2s}
.service-card[open] .plus{transform:rotate(45deg)}

.service-body{
  border-top:1px solid var(--border);
  padding:24px 28px 30px;
  color:#cbd5e1;
}
.service-body p{line-height:1.7}

.service-subtitle{
  color:#dbeafe;
  font-size:15px;
  font-weight:900;
  text-transform:uppercase;
  letter-spacing:.12em;
  margin:22px 0 12px;
}

.price-list{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:12px;
  margin:16px 0 22px;
}
.price-row{
  min-height:116px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  gap:12px;
  padding:16px;
  background:linear-gradient(180deg,#111c2d,#0e1a2b);
  border:1px solid var(--border);
  border-radius:16px;
}
.price-row span{
  color:#cbd5e1;
  line-height:1.45;
}
.price-row strong{
  display:block;
  color:white;
  font-size:20px;
}

.features{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr));
  gap:10px;
  padding:0;
  margin:0;
  list-style:none;
}
.features li{
  display:flex;
  align-items:center;
  min-height:52px;
  padding:12px 14px;
  background:rgba(59,130,246,.10);
  border:1px solid rgba(96,165,250,.18);
  border-radius:14px;
  color:#dbeafe;
  line-height:1.35;
}

.locations-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:28px}
.location-card{overflow:hidden}
.map-box{height:280px;background:#111827}
.map-box iframe{width:100%;height:100%;border:0}
.location-content{padding:28px}
.location-content h3{font-size:30px;margin:0 0 12px}
.location-content p{color:var(--muted);line-height:1.65}
.address{font-weight:800;color:#dbeafe!important}
.location-actions{display:grid;gap:12px;margin-top:22px}
.action-btn{
  display:flex;
  align-items:center;
  min-height:54px;
  padding:14px 16px;
  background:var(--card2);
  border:1px solid var(--border);
  border-radius:16px;
  text-decoration:none;
  font-weight:900;
}
.action-btn:hover,.small-btn:hover,.secondary:hover{background:#1a2b46}

.qr-grid{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,260px));
  justify-content:center;
  gap:22px;
  margin-top:34px;
}
.qr-card{text-align:center;padding:22px;text-decoration:none}
.qr-card img{width:150px;max-width:100%;border-radius:14px;background:white}
.qr-card span{display:block;margin-top:12px;color:#dbeafe;font-weight:900}

.footer{border-top:1px solid var(--border);background:#07111d;padding:34px 0}
.footer-row{display:flex;justify-content:center;align-items:center;gap:18px;flex-wrap:wrap;color:var(--muted)}
.footer strong{color:white}
.footer a{text-decoration:none;color:#dbeafe}

@media(max-width:940px){
  .container{width:min(100% - 28px,1180px)}
  .mobile-menu{display:block}
  .nav{
    display:none;
    position:absolute;
    left:14px;
    right:14px;
    top:78px;
    padding:16px;
    background:#0d1726;
    border:1px solid var(--border);
    border-radius:18px;
    flex-direction:column;
    align-items:stretch;
  }
  .nav.open{display:flex}
  .nav a{padding:12px}
  .top-cta{display:none}
  .hero{min-height:auto;padding:58px 0 66px;}
  .hero-grid,.services-grid,.locations-grid{grid-template-columns:1fr}
  .hero-grid{gap:32px}
  .hero-bg-img{opacity:.55;object-position:center top}
  .hero-copy{padding:20px;border-radius:22px;background:rgba(8,17,31,.52);backdrop-filter:blur(8px)}
  .hero h1{font-size:42px}
  .lead{font-size:16px}
  .section{padding:62px 0}
  .review-box{display:block}
  .review-actions{margin-top:22px}
  .qr-grid{grid-template-columns:1fr}
  .footer-row{flex-direction:column;text-align:center}
  .map-box{height:230px}
  .service-card summary{padding:22px}
  .service-body{padding:22px}
  .price-list,.features{grid-template-columns:1fr}
  .price-row{min-height:auto}

  .hero-visual{min-height:240px}
  .hero-visual-content strong{font-size:24px}
}

.service-card[open]{
  border-color:rgba(96,165,250,.35);
}

/* Hero image is now full-width background, not a separate card */
.hero-visual{display:none!important;}




/* Currency badge in service price cards */
.price-meta{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  margin-top:auto;
}
.price-currency{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:36px;
  min-height:32px;
  padding:6px 10px;
  border-radius:10px;
  background:rgba(96,165,250,.14);
  border:1px solid rgba(96,165,250,.28);
  color:#dbeafe;
  font-style:normal;
  font-weight:900;
  line-height:1;
}

/* Working hours block */
.working-hours-box{
  margin-top:28px;
  padding:26px;
  border-radius:24px;
  background:rgba(13,23,38,.9);
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}
.working-hours-head{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:flex-start;
  margin-bottom:18px;
}
.working-hours-head h3{
  margin:0;
  color:white;
  font-size:28px;
}
.working-hours-head p{
  margin:8px 0 0;
  color:var(--muted);
  line-height:1.55;
}
.working-hours-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  gap:12px;
}
.working-hour-item{
  padding:15px;
  border-radius:16px;
  background:var(--card2);
  border:1px solid var(--border);
}
.working-hour-item span{
  display:block;
  color:var(--muted);
  font-size:14px;
  margin-bottom:6px;
}
.working-hour-item strong{
  display:block;
  color:white;
  font-size:18px;
}
@media(max-width:940px){
  .working-hours-head{display:block}
  .price-meta{align-items:flex-start}
}

/* === CMS MEDIA + VISIBILITY FINAL ADDITIONS === */
.pricing-note{max-width:820px;margin:0 auto 28px;padding:16px 18px;text-align:center;color:#dbeafe;background:rgba(59,130,246,.10);border:1px solid rgba(96,165,250,.20);border-radius:18px;line-height:1.6}.service-thumb{width:100%;height:170px;object-fit:cover;border-radius:18px;margin-bottom:18px;border:1px solid var(--border)}.price-meta{display:flex;align-items:center;justify-content:space-between;gap:10px;margin-top:auto}.before-after-section{background:var(--bg)}.before-after-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:24px}.before-after-card{overflow:hidden;background:rgba(13,23,38,.9);border:1px solid var(--border);border-radius:24px;box-shadow:var(--shadow)}.ba-images{display:grid;grid-template-columns:1fr 1fr}.ba-images div{position:relative;min-height:220px;background:#111827;overflow:hidden}.ba-images img{width:100%;height:100%;object-fit:cover;display:block}.ba-images span{position:absolute;left:12px;top:12px;z-index:2;padding:8px 10px;border-radius:999px;background:rgba(8,17,31,.76);color:white;font-size:12px;font-weight:900;text-transform:uppercase;letter-spacing:.12em}.empty-image{height:100%;display:flex;align-items:center;justify-content:center;color:var(--muted)}.ba-content{padding:24px}.ba-content h3{margin:0 0 8px;font-size:24px}.ba-content p{color:var(--muted);line-height:1.6}.location-image{width:100%;height:190px;object-fit:cover;display:block;border-bottom:1px solid var(--border)}.working-hours-box{margin-top:28px;padding:26px;border-radius:24px;background:rgba(13,23,38,.9);border:1px solid var(--border);box-shadow:var(--shadow)}.working-hours-head{display:flex;justify-content:space-between;gap:18px;align-items:flex-start;margin-bottom:18px}.working-hours-head h3{margin:0;color:white;font-size:28px}.working-hours-head p{margin:8px 0 0;color:var(--muted);line-height:1.55}.working-hours-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(190px,1fr));gap:12px}.working-hour-item{padding:15px;border-radius:16px;background:var(--card2);border:1px solid var(--border)}.working-hour-item span{display:block;color:var(--muted);font-size:14px;margin-bottom:6px}.working-hour-item strong{display:block;color:white;font-size:18px}.services-grid{align-items:start}.service-card{align-self:start;height:auto}@media(max-width:940px){.before-after-grid,.ba-images{grid-template-columns:1fr}.ba-images div{min-height:200px}.working-hours-head{display:block}.price-meta{align-items:flex-start}}


/* === Option B mail UX + service icons === */
.service-card h3{
  display:flex;
  align-items:center;
  gap:12px;
}
.service-icon{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:44px;
  height:44px;
  flex:0 0 44px;
  border-radius:14px;
  background:rgba(96,165,250,.14);
  border:1px solid rgba(96,165,250,.25);
  box-shadow:0 10px 24px rgba(0,0,0,.16);
}
.copy-email-btn{
  width:100%;
  font-family:inherit;
  cursor:pointer;
  color:white;
  text-align:left;
}
.copy-toast{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:9999;
  padding:14px 18px;
  border-radius:16px;
  background:rgba(13,23,38,.96);
  border:1px solid rgba(96,165,250,.32);
  color:white;
  font-weight:900;
  box-shadow:0 18px 60px rgba(0,0,0,.36);
  opacity:0;
  transform:translateY(10px);
  pointer-events:none;
  transition:.22s ease;
}
.copy-toast.show{
  opacity:1;
  transform:translateY(0);
}
@media(max-width:940px){
  .service-icon{
    width:38px;
    height:38px;
    flex-basis:38px;
  }
  .copy-toast{
    left:14px;
    right:14px;
    text-align:center;
  }
}


/* === Production gallery upgrade: before/after multiple images === */
.ba-images img{cursor:pointer}
.ba-thumbs{
  display:flex;
  gap:10px;
  overflow-x:auto;
  padding:14px 18px 0;
  scrollbar-width:thin;
}
.ba-thumb{
  position:relative;
  flex:0 0 82px;
  height:66px;
  border:1px solid var(--border);
  border-radius:13px;
  padding:0;
  overflow:hidden;
  background:var(--card2);
  cursor:pointer;
}
.ba-thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.ba-thumb span{
  position:absolute;
  left:6px;
  bottom:6px;
  padding:3px 6px;
  border-radius:999px;
  background:rgba(8,17,31,.78);
  color:white;
  font-size:10px;
  font-weight:900;
}
body.modal-open{overflow:hidden}
.ba-lightbox{
  position:fixed;
  inset:0;
  z-index:9999;
  display:none;
  align-items:center;
  justify-content:center;
  padding:22px;
  background:rgba(0,0,0,.82);
}
.ba-lightbox.open{display:flex}
.ba-lightbox-panel{
  position:relative;
  width:min(1100px,100%);
  max-height:92vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:14px;
}
.ba-lightbox-panel > img{
  max-width:100%;
  max-height:72vh;
  object-fit:contain;
  border-radius:20px;
  border:1px solid var(--border);
  background:var(--card);
  box-shadow:var(--shadow);
}
.ba-lightbox-close,
.ba-lightbox-nav{
  position:absolute;
  z-index:2;
  border:1px solid var(--border);
  background:rgba(13,23,38,.86);
  color:white;
  cursor:pointer;
}
.ba-lightbox-close{
  top:-8px;
  right:-8px;
  width:44px;
  height:44px;
  border-radius:999px;
  font-size:30px;
  line-height:1;
}
.ba-lightbox-nav{
  top:45%;
  width:48px;
  height:64px;
  border-radius:18px;
  font-size:44px;
  line-height:1;
}
.ba-lightbox-nav.prev{left:0}
.ba-lightbox-nav.next{right:0}
.ba-lightbox-caption{
  color:white;
  font-weight:900;
  text-align:center;
}
.ba-lightbox-thumbs{
  display:flex;
  gap:10px;
  max-width:100%;
  overflow-x:auto;
  padding:4px 2px 10px;
}
.ba-lightbox-thumbs button{
  flex:0 0 74px;
  height:58px;
  border-radius:12px;
  border:1px solid var(--border);
  padding:0;
  overflow:hidden;
  background:var(--card2);
  opacity:.65;
  cursor:pointer;
}
.ba-lightbox-thumbs button.active{opacity:1;outline:2px solid var(--blue2)}
.ba-lightbox-thumbs img{
  width:100%;
  height:100%;
  object-fit:cover;
}
@media(max-width:720px){
  .ba-lightbox{padding:14px}
  .ba-lightbox-nav{
    position:static;
    width:64px;
    height:48px;
    font-size:34px;
  }
  .ba-lightbox-panel{
    gap:10px;
  }
  .ba-lightbox-close{
    top:0;
    right:0;
  }
  .ba-lightbox-panel > img{
    max-height:62vh;
  }
}


/* === Production gallery UX: selected cover/main image === */
.ba-cover-wrap{
  padding:18px 18px 0;
}
.ba-cover-button{
  position:relative;
  width:100%;
  min-height:260px;
  border:1px solid var(--border);
  border-radius:20px;
  overflow:hidden;
  padding:0;
  background:var(--card2);
  cursor:pointer;
  display:block;
}
.ba-cover-button img{
  width:100%;
  height:100%;
  min-height:260px;
  max-height:360px;
  object-fit:cover;
  display:block;
}
.ba-cover-badge{
  position:absolute;
  left:14px;
  bottom:14px;
  padding:8px 12px;
  border-radius:999px;
  background:rgba(8,17,31,.82);
  color:white;
  font-weight:900;
  font-size:13px;
}
.ba-thumb.is-cover{
  outline:2px solid var(--blue2);
  opacity:1;
}
@media(max-width:720px){
  .ba-cover-button{min-height:210px}
  .ba-cover-button img{min-height:210px;max-height:280px}
}
