@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800&display=swap');

.futuron-emp-nav--top{
  display:flex;
  gap:10px;
  justify-content:center;
  flex-wrap:wrap;
  max-width:1080px;
  margin:0 auto 14px;
  padding:0 12px;
}
.futuron-emp-nav-link{
  padding:10px 16px;
  border-radius:999px;
  background:#fff;
  border:1px solid rgba(15,27,56,0.12);
  color:#1f4d73;
  font-weight:700;
  font-size:13px;
  text-decoration:none;
  box-shadow:0 6px 16px rgba(10,35,64,0.08);
}
.futuron-emp-nav-link.is-active{
  background:linear-gradient(180deg,#0f1b38,#1f4d73);
  color:#fff;
  border-color:transparent;
}
.futuron-emp-nav--bottom{
  position:fixed;
  left:0;
  right:0;
  bottom:0;
  z-index:120;
  overflow:visible;
  background:rgba(255,255,255,0.97);
  border-top:1px solid rgba(15,27,56,0.07);
  backdrop-filter:blur(14px);
  -webkit-backdrop-filter:blur(14px);
  box-shadow:0 -10px 32px rgba(10,35,64,0.1);
}
.futuron-emp-nav-scroll{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:0;
  width:100%;
  overflow:visible;
  min-height:76px;
  padding:18px 6px calc(10px + env(safe-area-inset-bottom));
  box-sizing:border-box;
}
.futuron-emp-nav-tab{
  flex:1 1 0;
  min-width:0;
  width:auto;
  max-width:none;
  min-height:52px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-end;
  gap:4px;
  padding:0 1px 2px;
  border-radius:14px;
  color:#556170;
  font-size:9px;
  font-weight:700;
  text-decoration:none;
  -webkit-tap-highlight-color:transparent;
  transition:color .15s ease;
}
.futuron-emp-nav-tab.is-active{
  color:#1f4d73;
}
.futuron-emp-nav-tab--home{
  flex:1.15 1 0;
  max-width:68px;
  position:relative;
  z-index:2;
}
.futuron-emp-nav-tab-icon{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:10px;
  background:rgba(31,77,115,0.1);
  color:#1f4d73;
  transition:background .15s ease,transform .15s ease;
}
.futuron-emp-nav-tab-badge{
  position:absolute;
  top:-5px;
  right:-7px;
  min-width:16px;
  height:16px;
  padding:0 4px;
  border-radius:999px;
  background:#c62828;
  color:#fff;
  font-size:9px;
  font-weight:800;
  line-height:16px;
  text-align:center;
  border:2px solid #fff;
}
.futuron-emp-nav-tab-icon svg{
  width:16px;
  height:16px;
  stroke:currentColor;
  fill:none;
  stroke-width:1.9;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.futuron-emp-nav-tab--home .futuron-emp-nav-tab-icon{
  width:48px;
  height:48px;
  margin-top:-18px;
  margin-bottom:2px;
  border-radius:50%;
  background:linear-gradient(165deg,#0f1b38 0%,#1f4d73 55%,#2f7a8a 100%);
  color:#fff;
  box-shadow:0 10px 22px rgba(15,27,56,0.26),0 0 0 4px rgba(255,255,255,0.96);
}
.futuron-emp-nav-tab--home .futuron-emp-nav-tab-icon svg{
  width:22px;
  height:22px;
  stroke-width:2;
}
.futuron-emp-nav-tab--home.is-active .futuron-emp-nav-tab-icon{
  background:linear-gradient(165deg,#1f4d73 0%,#2f7a8a 100%);
  box-shadow:0 12px 26px rgba(47,122,138,0.32),0 0 0 4px rgba(255,255,255,0.96);
  transform:translateY(-2px);
}
.futuron-emp-nav-tab--home .futuron-emp-nav-tab-label{
  font-size:10px;
  font-weight:800;
  color:#1f4d73;
}
.futuron-emp-nav-tab.is-active:not(.futuron-emp-nav-tab--home) .futuron-emp-nav-tab-icon{
  background:linear-gradient(180deg,#0f1b38,#1f4d73);
  color:#fff;
}
.futuron-emp-nav-tab-label{
  line-height:1;
  letter-spacing:0.02em;
  white-space:nowrap;
  max-width:100%;
  overflow:hidden;
  text-overflow:ellipsis;
}
@media (min-width:390px){
  .futuron-emp-nav-scroll{
    gap:2px;
    padding-left:10px;
    padding-right:10px;
  }
  .futuron-emp-nav-tab{
    font-size:10px;
    gap:5px;
  }
  .futuron-emp-nav-tab-icon{
    width:30px;
    height:30px;
    border-radius:11px;
  }
  .futuron-emp-nav-tab--home .futuron-emp-nav-tab-icon{
    width:50px;
    height:50px;
    margin-top:-20px;
  }
}
body.futuron-app-body .futuron-emp-nav--top{
  display:none !important;
}

.futuron-contact-app{
  max-width:1080px;
  width:100%;
  margin:0 auto;
  padding:0 0 40px;
  font-family:"Inter","Segoe UI",sans-serif;
}
.futuron-app-shell .futuron-contact-app{
  max-width:100%;
  min-width:0;
}
.futuron-contact-header h1{
  margin:0 0 8px;
  font-size:24px;
  color:#0f1b38;
}
.futuron-contact-grid{
  display:grid;
  gap:16px;
}
@media (min-width:900px){
  .futuron-contact-grid{grid-template-columns:1fr 1fr;}
}
.futuron-contact-app .card,
.futuron-contact-preview{
  background:#fff;
  border:1px solid rgba(15,27,56,0.06);
  border-radius:14px;
  padding:18px;
  box-shadow:0 18px 38px rgba(10,35,64,0.1);
}

.futuron-bc-card{
  --bc-accent:#2f7a8a;
  color:#0f1b38;
}
.futuron-bc-top{
  display:flex;
  gap:14px;
  align-items:center;
  margin-bottom:16px;
}
.futuron-bc-photo{
  width:88px;
  height:88px;
  border-radius:50%;
  object-fit:cover;
  border:3px solid var(--bc-accent);
  background:#fff;
  flex-shrink:0;
}
.futuron-bc-name{
  margin:0 0 4px;
  font-size:20px;
  line-height:1.2;
}
.futuron-bc-role{
  margin:0 0 4px;
  color:#1f4d73;
  font-weight:600;
  font-size:14px;
}
.futuron-bc-company{
  margin:0;
  font-size:12px;
  letter-spacing:0.06em;
  text-transform:uppercase;
  color:#556170;
}
.futuron-bc-contacts{
  display:grid;
  gap:8px;
  margin-bottom:14px;
}
.futuron-bc-row{
  display:flex;
  gap:10px;
  align-items:center;
  padding:10px 12px;
  border-radius:10px;
  background:rgba(47,122,138,0.06);
  color:#0f1b38;
  text-decoration:none;
  font-size:14px;
  word-break:break-word;
}
.futuron-bc-row:hover{background:rgba(47,122,138,0.12);}
.futuron-bc-row-mobile:hover{background:rgba(47,122,138,0.06);}
.futuron-bc-row-mobile .futuron-bc-row-text{flex:1;min-width:0;}
.futuron-bc-phone-label{
  display:block;
  font-size:10px;
  font-weight:600;
  letter-spacing:0.08em;
  text-transform:uppercase;
  color:var(--bc-accent,#2f7a8a);
  margin-bottom:2px;
}
.futuron-bc-phone-number{display:inline;}
.futuron-bc-phone-ext{
  display:inline-block;
  margin-left:8px;
  font-size:12px;
  font-weight:600;
  color:#556170;
}
.futuron-bc-quick-actions{
  display:flex;
  gap:6px;
  margin-left:auto;
  flex-shrink:0;
}
.futuron-bc-quick-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:26px;
  height:26px;
  border-radius:999px;
  text-decoration:none;
  border:1px solid rgba(15,27,56,0.1);
  background:#fff;
  color:#1f4d73;
  box-shadow:0 2px 6px rgba(10,35,64,0.08);
}
.futuron-bc-quick-btn.call:hover{background:#e8f4f8;color:var(--bc-accent);}
.futuron-bc-quick-btn.wa{background:#25d366;border-color:#25d366;color:#fff;}
.futuron-bc-quick-btn.wa:hover{background:#128c7e;border-color:#128c7e;}
.futuron-bc-icon{width:22px;text-align:center;flex-shrink:0;}
.futuron-bc-company-profile{
  margin-bottom:12px;
  padding:10px;
  border-radius:11px;
  border:1px solid rgba(15,27,56,0.08);
  background:linear-gradient(180deg,rgba(47,122,138,0.04),rgba(255,255,255,0.92));
}
.futuron-bc-profile-text{
  margin:0 0 8px;
  font-size:11px;
  line-height:1.45;
  color:#1f4d73;
  font-weight:600;
}
.futuron-bc-profile-banner-link{
  display:block;
  border-radius:9px;
  overflow:hidden;
  box-shadow:0 6px 16px rgba(10,35,64,0.1);
  text-decoration:none;
}
.futuron-bc-profile-banner{
  display:block;
  width:100%;
  height:auto;
  max-height:130px;
  object-fit:cover;
  object-position:center;
}
.futuron-bc-profile-actions{
  display:grid;
  gap:6px;
  margin-top:8px;
}
.futuron-bc-profile-btn{
  display:block;
  text-align:center;
  padding:8px 10px;
  border-radius:9px;
  font-weight:700;
  font-size:11px;
  text-decoration:none;
  border:1px solid rgba(47,122,138,0.22);
  background:linear-gradient(180deg,#f7ffff,#e6f3f7);
  color:#1f4d73 !important;
}
.futuron-bc-profile-btn.en{
  background:linear-gradient(180deg,#0f1b38,#1f2f4d);
  color:#fff !important;
  border-color:transparent;
}
.futuron-bc-profile-btn:hover{filter:brightness(1.03);}
.futuron-bc-location{
  margin-bottom:14px;
  padding:12px;
  border-radius:10px;
  border:1px solid rgba(15,27,56,0.08);
  font-size:13px;
}
.futuron-bc-location p{margin:6px 0;}
.futuron-bc-location a{color:var(--bc-accent);font-weight:600;}
.futuron-bc-social{
  display:flex;
  flex-wrap:wrap;
  gap:6px;
  margin-bottom:12px;
}
.futuron-soc{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:28px;
  height:28px;
  border-radius:7px;
  background:#0f1b38;
  color:#fff;
  font-weight:800;
  text-decoration:none;
  font-size:11px;
}
.futuron-soc.fb{background:#1877f2;}
.futuron-soc.ig{background:linear-gradient(45deg,#f58529,#dd2a7b,#8134af);}
.futuron-soc.in{background:#0a66c2;}
.futuron-soc.x{background:#000;}
.futuron-soc.yt{background:#ff0000;}
.futuron-app-shell .futuron-bc-social .futuron-soc{
  color:#fff;
  text-decoration:none;
  flex-shrink:0;
}
.futuron-app-shell .futuron-bc-social .futuron-soc:hover{
  filter:brightness(1.08);
  color:#fff;
}
.futuron-bc-google-review{
  margin-bottom:16px;
  padding:14px 12px;
  border-radius:12px;
  border:1px solid rgba(15,27,56,0.08);
  background:rgba(47,122,138,0.04);
  text-align:center;
}
.futuron-bc-review-text{
  margin:0 0 6px;
  font-size:13px;
  line-height:1.45;
  color:#1f4d73;
  font-weight:600;
}
.futuron-bc-review-stars{
  color:#f59e0b;
  font-size:15px;
  letter-spacing:2px;
  margin-bottom:10px;
}
.futuron-bc-google-link{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:8px;
  padding:8px 12px;
  border-radius:10px;
  background:#fff;
  border:1px solid rgba(15,27,56,0.1);
  color:#0f1b38;
  text-decoration:none;
  font-size:13px;
  font-weight:700;
}
.futuron-bc-google-link:hover{background:#f8fbfc;}
.futuron-bc-footer{
  margin-top:8px;
  padding-top:16px;
  border-top:1px solid rgba(15,27,56,0.08);
  text-align:center;
}
.futuron-public-wrap > .futuron-bc-footer{
  margin-top:20px;
  padding-top:20px;
  border-top:none;
}
.futuron-bc-footer-logo{
  display:block;
  width:64px;
  height:64px;
  object-fit:contain;
  margin:0 auto 10px;
  border-radius:10px;
}
.futuron-bc-footer-slogan{
  margin:0;
  font-size:16px;
  font-weight:700;
  letter-spacing:0.04em;
  color:#1f4d73;
}
.futuron-contact-logo-admin{
  display:flex;
  gap:16px;
  align-items:flex-start;
  margin-bottom:14px;
}
.futuron-contact-logo-preview{
  width:88px;
  height:88px;
  display:grid;
  place-items:center;
  border:1px solid rgba(15,27,56,0.1);
  border-radius:12px;
  background:#fff;
}
.futuron-contact-logo-preview img{
  max-width:72px;
  max-height:72px;
  object-fit:contain;
}
.futuron-contact-banner-preview{
  width:220px;
  min-height:88px;
}
.futuron-contact-banner-preview img{
  width:100%;
  max-width:none;
  max-height:72px;
  object-fit:cover;
  border-radius:8px;
}

.futuron-bc-actions{
  display:grid;
  gap:10px;
  margin-bottom:18px;
}
.futuron-bc-btn{
  display:inline-block;
  text-align:center;
  padding:11px 14px;
  border-radius:12px;
  border:none;
  background:linear-gradient(180deg,#0f1b38,#1f2f4d);
  color:#fff !important;
  font-weight:700;
  text-decoration:none;
  cursor:pointer;
  font-size:14px;
}
.futuron-bc-btn.secondary{
  background:linear-gradient(180deg,#f7ffff,#e6f3f7);
  color:#1f4d73 !important;
  border:1px solid rgba(47,122,138,0.22);
}
.futuron-bc-btn.wa{background:linear-gradient(180deg,#25d366,#128c7e);}
.futuron-bc-qr-wrap{
  display:grid;
  place-items:center;
  padding:12px;
  background:#fff;
  border:1px solid rgba(15,27,56,0.08);
  border-radius:12px;
}
.futuron-bc-qr-wrap img{
  display:block;
  max-width:100%;
  height:auto;
}
.futuron-bc-qr-actions{
  display:grid;
  gap:8px;
  margin:10px 0 6px;
}
.futuron-bc-url{
  word-break:break-all;
  font-size:12px;
}
.futuron-bc-status{
  font-size:13px;
  font-weight:600;
  color:#2f7a8a;
  min-height:18px;
}
#futuron-photo-input{margin-bottom:10px;width:100%;}

.futuron-public-card-body{
  margin:0;
  font-family:"Inter","Segoe UI",sans-serif;
  background:linear-gradient(180deg,#f1f7fa 0%,#e6f1f7 52%,#dcebf3 100%);
  min-height:100vh;
}
.futuron-public-wrap{
  max-width:420px;
  margin:0 auto;
  padding:24px 16px 40px;
}
.futuron-public-actions{
  display:grid;
  gap:10px;
  margin:16px 0;
}
