:root{
  --bg:#f4f7fb;
  --card:#ffffff;
  --text:#0f172a;
  --muted:#475569;
  --line:#e2e8f0;

  --headerBlue:#0b2a66;
  --headerBlue2:#0b4aa0;

  --bubble1:#e7f0ff;
  --bubble2:#fff3e6;
  --bubble3:#e9fbf2;
  --bubble4:#f3e8ff;

  --hoverBlue:#1e6bd6;
  --hoverBlue2:#1557b7;

  --accent:#ffb703;
  --danger:#ef4444;

  --shadow: 0 14px 35px rgba(2,6,23,.10);
  --shadow2: 0 10px 22px rgba(2,6,23,.10);
  --radius: 22px;
}

*{ box-sizing:border-box; }

html,body{ height:100%; }

body{
  margin:0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background:
    radial-gradient(1200px 800px at 20% 0%, #e7f0ff 0%, transparent 55%),
    radial-gradient(1000px 700px at 95% 10%, #ffe9d6 0%, transparent 55%),
    var(--bg);
  color:var(--text);
}

a{ color:inherit; text-decoration:none; }

.wrap{ max-width:1200px; margin:0 auto; padding:0 18px; }

/* =========================
   HEADER (HOME SOURCE OF TRUTH)
   ========================= */
.site-header{
  background: linear-gradient(180deg, var(--headerBlue) 0%, var(--headerBlue2) 100%);
  color:#fff;
  position:relative;
  overflow:visible; /* dropdown needs this */
  padding: 26px 0 30px;
  border-bottom:1px solid rgba(255,255,255,.14);
  z-index:10;
}

.site-header::before{
  content:"";
  position:absolute;
  inset:-120px -120px auto auto;
  width:340px;
  height:340px;
  border-radius:50%;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,.22), transparent 60%);
}

.site-header::after{
  content:"";
  position:absolute;
  inset:auto auto -200px -170px;
  width:520px;
  height:520px;
  border-radius:50%;
  background: radial-gradient(circle at 40% 40%, rgba(255,255,255,.18), transparent 60%);
}

.hero-center{
  text-align:center;
  padding: 26px 0 10px;
  max-width: 980px;
  margin: 0 auto;
  position:relative;
  z-index:2;
}

.hero-pill{
  display:inline-block;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.22);
  backdrop-filter: blur(8px);
  font-weight:800;
  font-size:14px;
  letter-spacing:.2px;
  margin-bottom: 18px;
}

.hero-text{ text-align:center; }

/* NOTE: this class is used by the HEADER.
   On inner pages, do NOT use .hero-title for the page title.
   Use .page-title instead to avoid changing the header size. */
.hero-title{
  margin:0;
  font-size:64px;
  line-height:1.05;
  letter-spacing:-1px;
  font-weight:900;
}

.hero-subtitle{
  margin: 12px 0 0;
  font-size: 28px;
  font-weight: 800;
  opacity:.98;
}

.hero-divider{
  margin: 22px auto 0;
  width: min(720px, 92%);
  height:1px;
  background: rgba(255,255,255,.25);
}

/* ===== NAV BUBBLES ===== */
.nav-wrap{
  display:flex;
  align-items:center;
  gap:8px;
  padding: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.12);
  border: 1px solid rgba(255,255,255,.18);
  backdrop-filter: blur(8px);
  width: fit-content;
  margin: 18px auto 0;
  justify-content:center;
  flex-wrap:wrap;
  row-gap:10px;
}

.navlink{
  padding: 12px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  background: transparent;
  border: 1px solid transparent;
  color:#fff;
  transition: .18s ease;
  display:inline-flex;
  align-items:center;
  gap:8px;
}

.navlink:hover{
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.22);
  transform: translateY(-1px);
}

.navlink.active{
  background: rgba(255,255,255,.22);
  border-color: rgba(255,255,255,.28);
}

/* Parent holds the hover state */
.dropdown {
  position: relative;
}

/* Hidden by default */
.dropdown-menu {
  display: none;
  position: absolute;
  top: calc(100% + 10px);   /* space below button */
  left: 0;
  min-width: 240px;
  z-index: 9999;

  /* your bubble look */
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-radius: 14px;
  padding: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
}

/* SHOW menu while hovering trigger OR menu itself */
.dropdown:hover .dropdown-menu,
.dropdown:focus-within .dropdown-menu {
  display: block;
}

/* Make links easy to click */
.dropdown-menu a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: #0b1a33;
}

.dropdown-menu a:hover {
  background: rgba(0, 0, 0, 0.06);
}

/* IMPORTANT: if your nav wrapper has overflow hidden, the menu gets clipped */
.nav,
nav {
  overflow: visible;
}

/* Optional “bridge” to prevent flicker if there’s a tiny gap */
.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
}
/* =========================
   BUTTONS
   ========================= */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: 0 10px 18px rgba(2,6,23,.06);
  font-weight:800;
  font-size:13px;
  transition:.18s ease;
  cursor:pointer;
  user-select:none;
  white-space:nowrap;
}

.btn:hover{ transform: translateY(-1px); }

.btn.primary{
  background: linear-gradient(135deg, #2563eb, #1d4ed8);
  border-color: rgba(37,99,235,.28);
  color:#fff;
}

/* =========================
   ACTIONS STRIP
   ========================= */
.actions-strip{ margin-top: 18px; position:relative; z-index:5; }

.actions-box{
  background: rgba(255,255,255,.92);
  border:1px solid var(--line);
  border-radius: 18px;
  box-shadow: var(--shadow2);
  padding:14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  backdrop-filter: blur(8px);
}

.actions-left{ display:flex; flex-direction:column; gap:4px; }
.actions-left .title{ font-weight:800; font-size:14px; color:var(--text); }
.actions-left .sub{ font-size:12px; color:var(--muted); }
.actions-right{ display:flex; gap:10px; flex-wrap:wrap; justify-content:flex-end; }

/* =========================
   MAIN / SECTION HEAD
   ========================= */
main{ padding:22px 0 28px; }

.section-head{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  margin:18px 0 10px;
  flex-wrap:wrap;
}

.section-head h2{ margin:0; font-size:18px; }
.section-head p{ margin:0; color:var(--muted); font-size:13px; max-width:560px; }

/* Use this for inner-page headings so you NEVER conflict with the header */
.page-title{
  margin: 0 0 10px;
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.6px;
  color: var(--text);
}

/* =========================
   SERVICES CAROUSEL (svc2)
   ========================= */
.svc2{
  margin-top: 14px;
  padding: 18px;
  border-radius: 26px;
  background: rgba(255,255,255,.72);
  border: 1px solid var(--line);
  box-shadow: var(--shadow2);
}

.svc2-shell{ display:flex; align-items:center; gap: 12px; }

.svc2-arrow{
  width:44px;
  height:44px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow2);
  font-weight: 900;
  font-size: 26px;
  line-height:1;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  user-select:none;
  transition: .18s ease;
  flex: 0 0 auto;
}

.svc2-arrow:hover{ transform: translateY(-1px); }
.svc2-arrow:disabled{ opacity:.45; cursor:not-allowed; transform:none; }

.svc2-viewport{
  flex: 1;
  display:flex;
  gap: 14px;
  overflow-x:auto;
  padding: 8px 6px;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  border-radius: 22px;
}

.svc2-viewport::-webkit-scrollbar{ height: 10px; }
.svc2-viewport::-webkit-scrollbar-track{ background: transparent; }
.svc2-viewport::-webkit-scrollbar-thumb{ background: rgba(15,23,42,.10); border-radius: 999px; }

.svc2-card{
  scroll-snap-align: start;
  flex: 0 0 260px;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 14px 28px rgba(2,6,23,.08);
  padding: 16px 16px 18px;
  position: relative;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  gap: 10px;
  transition: transform .18s ease;
}

.svc2-card:hover{ transform: translateY(-2px); }

.svc2-card::after{
  content:"";
  position:absolute;
  inset:auto -70px -90px auto;
  width:240px;
  height:240px;
  border-radius:50%;
  opacity:.35;
  pointer-events:none;
}

.svc2-icon{
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size: 34px;
  line-height: 1;
  border: 1px solid rgba(2,6,23,.08);
  background: rgba(255,255,255,.85);
  box-shadow: 0 10px 22px rgba(2,6,23,.10);
}

.svc2-name{ font-weight: 900; font-size: 16px; letter-spacing: -.2px; }
.svc2-mini{ color: var(--muted); font-size: 13px; line-height: 1.35; font-weight: 600; }

/* Themes */
.b1{background: linear-gradient(180deg, #ffffff, #f7fbff)}
.b1::after{background: radial-gradient(circle at 30% 30%, #cfe2ff, transparent 60%)}
.b1 .svc2-icon{background: var(--bubble1)}

.b2{background: linear-gradient(180deg, #ffffff, #fffaf6)}
.b2::after{background: radial-gradient(circle at 30% 30%, #ffd8b3, transparent 60%)}
.b2 .svc2-icon{background: var(--bubble2)}

.b3{background: linear-gradient(180deg, #ffffff, #f7fffb)}
.b3::after{background: radial-gradient(circle at 30% 30%, #bdf4d4, transparent 60%)}
.b3 .svc2-icon{background: var(--bubble3)}

.b4{background: linear-gradient(180deg, #ffffff, #fbf7ff)}
.b4::after{background: radial-gradient(circle at 30% 30%, #e3ccff, transparent 60%)}
.b4 .svc2-icon{background: var(--bubble4)}

.b5{background: linear-gradient(180deg, #ffffff, #f7fbff)}
.b5::after{background: radial-gradient(circle at 30% 30%, #93c5fd, transparent 60%)}
.b5 .svc2-icon{background: #dbeafe}

.sec{
  border:2px solid rgba(255,183,3,.55);
  box-shadow: 0 18px 45px rgba(2,6,23,.14);
  background: linear-gradient(180deg, #fffdf3, #ffffff);
}
.sec::after{background: radial-gradient(circle at 30% 30%, rgba(255,183,3,.35), transparent 60%)}
.sec .svc2-icon{
  background: linear-gradient(135deg, #ffd166, #ffb703);
  border-color: rgba(255,183,3,.6);
}

/* =========================
   CONTACT BUBBLES + POPUPS
   ========================= */
.grid{ display:grid; grid-template-columns: repeat(12, 1fr); gap:16px; }

.bubble{
  grid-column: span 6;
  background: var(--card);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  min-height: 170px;
  position:relative;
  overflow:hidden;
  box-shadow: var(--shadow2);
  transition:.18s ease;
  cursor:pointer;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap: 14px;
  text-align:center;
}

.bubble:hover{ transform: translateY(-2px); }

.bubble .icon{
  width:56px;
  height:56px;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:24px;
  border:1px solid rgba(2,6,23,.08);
  background: rgba(255,255,255,.85);
}

.bubble h3{ margin:0; font-size:16px; font-weight:900; }

.popup{
  position:absolute;
  left:16px;
  right:16px;
  bottom:16px;
  background: linear-gradient(135deg, var(--hoverBlue), var(--hoverBlue2));
  color:#fff;
  border-radius: 18px;
  padding:14px;
  box-shadow: 0 18px 40px rgba(29,78,216,.30);
  border:1px solid rgba(255,255,255,.18);
  transform: translateY(10px);
  opacity:0;
  pointer-events:none;
  transition:.18s ease;
  min-height: 86px;
  display:flex;
  flex-direction:column;
  justify-content:center;
  gap:6px;
  text-align:left;
}

.popup strong{ font-size:13px; }
.popup span{ font-size:12px; opacity:.92; line-height:1.35; }
.bubble:hover .popup{ opacity:1; transform: translateY(0); }

/* =========================
   SERVICE DESK + MODAL
   ========================= */
.service-desk{
  position:fixed;
  right:18px;
  bottom:18px;
  z-index:50;
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background: linear-gradient(135deg, #1d4ed8, #1e5aa8);
  box-shadow: 0 20px 55px rgba(2,6,23,.25);
  display:grid;
  place-items:center;
  border:1px solid rgba(255,255,255,.18);
  cursor:pointer;
  user-select:none;
  transition:.18s ease;
}

.service-desk:hover{ transform: translateY(-2px) scale(1.02); }

.service-desk .inner{
  text-align:center;
  color:#fff;
  font-weight:900;
  line-height:1.05;
  font-size:12px;
}

.service-desk .inner b{
  display:block;
  font-size:20px;
  margin-bottom:4px;
  letter-spacing:.4px;
}
/* ===== Service Desk Floating Button + Corner Panel ===== */

/* Floating button */
.sd-fab{
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 9999;

  width: 62px;
  height: 62px;
  border: 1px solid rgba(226,232,240,.9);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 28px rgba(2,6,23,.14);
  cursor: pointer;

  display: grid;
  place-items: center;
  padding: 0;
}

/* Logo inside the button */
.sd-logo{
  width: 44px;
  height: 44px;
  object-fit: contain;
  border-radius: 12px;
}

/* Small “Help” badge so people aren’t confused by only a logo */
.sd-badge{
  position: absolute;
  top: -8px;
  right: -8px;
  font-size: 10px;
  font-weight: 900;
  color: #fff;
  background: linear-gradient(135deg, #1a4f94, #1557b7);
  padding: 4px 7px;
  border-radius: 999px;
  box-shadow: 0 10px 18px rgba(21,87,183,.25);
}

/* Tooltip label */
.sd-tooltip{
  position: absolute;
  right: 74px;
  bottom: 12px;
  background: rgba(15,23,42,.95);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  padding: 8px 10px;
  border-radius: 12px;
  white-space: nowrap;
  transform: translateY(4px);
  opacity: 0;
  pointer-events: none;
  transition: .18s ease;
}
.sd-fab:hover .sd-tooltip{
  opacity: 1;
  transform: translateY(0);
}

/* Corner panel */
.sd-panel{
  position: fixed;
  right: 18px;
  bottom: 92px; /* sits above the button */
  z-index: 9999;

  width: min(380px, calc(100vw - 36px));
  border-radius: 18px;
  background: #fff;
  border: 1px solid #e2e8f0;
  box-shadow: 0 20px 48px rgba(2,6,23,.18);
  overflow: hidden;

  transform: translateY(10px);
  opacity: 0;
  pointer-events: none;
  transition: .18s ease;
}

.sd-panel.is-open{
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.sd-head{
  display:flex;
  align-items:flex-start;
  justify-content: space-between;
  gap: 12px;

  padding: 14px 14px 12px;
  background: linear-gradient(180deg, #f7fbff 0%, #ffffff 100%);
  border-bottom: 1px solid #e2e8f0;
}

.sd-title{
  font-size: 14px;
  font-weight: 900;
  letter-spacing: -0.2px;
  color: #0f172a;
}
.sd-sub{
  font-size: 12px;
  color: #475569;
  margin-top: 2px;
  line-height: 1.35;
}

.sd-close{
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 12px;
  width: 34px;
  height: 34px;
  cursor: pointer;
  font-weight: 900;
}

.sd-body{
  padding: 14px;
}

.sd-row{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.sd-body input,
.sd-body textarea{
  width: 100%;
  padding: 11px 12px;
  border-radius: 14px;
  border: 1px solid #dbe4f0;
  font-size: 13px;
  outline: none;
}
.sd-body textarea{
  margin-top: 10px;
  min-height: 110px;
  resize: vertical;
}
.sd-body input + input,
.sd-body input + textarea{
  margin-top: 10px;
}

.sd-body input:focus,
.sd-body textarea:focus{
  border-color:#93b7ff;
  box-shadow:0 0 0 4px rgba(147,183,255,.25);
}

.sd-actions{
  display:flex;
  gap:10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.sd-btn{
  border: 1px solid #e2e8f0;
  background: #fff;
  border-radius: 14px;
  padding: 10px 12px;
  font-weight: 900;
  font-size: 13px;
  cursor: pointer;
}

.sd-primary{
  border: none;
  color:#fff;
  background: linear-gradient(135deg, #1a4f94, #1557b7);
  box-shadow: 0 14px 24px rgba(21,87,183,.25);
}

.sd-hint{
  margin-top: 10px;
  font-size: 12px;
  color: #475569;
  line-height: 1.45;
}

/* Mobile: stack name/phone */
@media (max-width: 520px){
  .sd-row{ grid-template-columns: 1fr; }
}


.modal-backdrop{
  position:fixed;
  inset:0;
  background: rgba(2,6,23,.55);
  display:none;
  align-items:flex-end;
  justify-content:center;
  padding:18px;
  z-index:60;
}

.modal{
  width:min(560px, 100%);
  background:#fff;
  border-radius: 22px;
  border:1px solid var(--line);
  box-shadow: var(--shadow);
  overflow:hidden;
}

.modal-head{
  background: linear-gradient(120deg, var(--headerBlue), var(--headerBlue2));
  color:#fff;
  padding:16px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
}

.modal-head h3{ margin:0; font-size:15px; }

.close{
  width:38px;
  height:38px;
  border-radius:14px;
  display:grid;
  place-items:center;
  background: rgba(255,255,255,.14);
  border:1px solid rgba(255,255,255,.20);
  cursor:pointer;
  font-weight:900;
}

.modal-body{ padding:16px; }
.hint{ font-size:12px; color:var(--muted); }

.form{ display:grid; gap:10px; margin-top:10px; }
.row{ display:grid; gap:10px; grid-template-columns:1fr 1fr; }

input, textarea{
  width:100%;
  border-radius:14px;
  border:1px solid var(--line);
  padding:12px;
  font: inherit;
  font-size:13px;
  outline:none;
  background:#fff;
}

textarea{ min-height:110px; resize:vertical; }
.modal-actions{ display:flex; gap:10px; flex-wrap:wrap; margin-top:10px; }
#resultHint{ display:none; margin-top:8px; font-size:12px; }

/* =========================
   FOOTER
   ========================= */
footer{
  margin-top:24px;
  background:#0b1220;
  color:#e5e7eb;
  padding:26px 0;
  border-top: 1px solid rgba(255,255,255,.08);
}

.footer-grid{ display:grid; grid-template-columns: 2fr 1fr 1fr; gap:18px; }
footer h4{ margin:0 0 10px; font-size:14px; }
footer p, footer li{ margin:0; color:#cbd5e1; font-size:13px; line-height:1.5; }
.footer-list{ list-style:none; padding:0; margin:0; display:grid; gap:8px; }

.footer-bottom{
  margin-top:18px;
  padding-top:14px;
  border-top:1px solid rgba(255,255,255,.10);
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:#94a3b8;
  font-size:12px;
}

/* =========================
   RESPONSIVE
   ========================= */
@media (max-width: 980px){
  .hero-title{ font-size: 44px; }
  .hero-subtitle{ font-size: 22px; }
  .footer-grid{ grid-template-columns:1fr; }
  .row{ grid-template-columns:1fr; }
}

@media (max-width: 768px){
  .bubble{ grid-column: span 12; }
}

@media (max-width: 560px){
  .actions-box{ flex-direction:column; align-items:flex-start; }
  .actions-right{ width:100%; justify-content:stretch; }
  .btn{ flex:1; }
  .service-desk{ width:84px; height:84px; border-radius:26px; }
  .svc2-card{ flex-basis: 85%; }
}
