
.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  position: sticky;
  top: 0;
  z-index: 999;
}

.header-wrap {
  max-width: 1300px;
  margin: auto;
  padding: 14px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* Logo */
.brand-name {
  text-decoration: none;
  font-size: 33px;
  font-weight: 800;
  letter-spacing: -0.7px;
  color: #0f172a;
  line-height: 1;
}

.brand-name:hover {
  color: #1d4ed8;
}

/* Navigation */
.main-nav {
  display: flex;
  gap: 36px;
}

.main-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 0;
  height: 2px;
  background: #0f4c81;
  transition: 0.3s ease;
}

.main-nav a:hover::after {
  width: 100%;
}

/* Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}

/* Call box */
.call-box {
  display: flex;
  align-items: center;
  gap: 10px;
}

.call-box > span[aria-hidden="true"] {
  font-size: 13px;
  font-weight: 700;
  color: #0f4c81;
  background: #e6f0f8;
  border-radius: 999px;
  padding: 6px 10px;
}

.call-icon {
  width: 42px;
  height: 42px;
  background: #e6f0f8;
  color: #0f4c81;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 18px;
}

.call-text span {
  font-size: 12px;
  color: #334155;
  display: block;
}



/* Register Button */
.whatsapp-btn {
  background:#15803d;
  color: #fff;
  padding: 12px 20px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: 0.3s ease;
}

.whatsapp-btn:hover {
  background:#166534;
  transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
    display: none;
}

.hamburger span {
  width: 18px;
  height: 2px;
  background: #0f172a;
  border-radius: 2px;
}

/* Responsive */
@media (max-width: 780px) {
  .brand-name {
    font-size: 28px;
  }

  .main-nav,
  .call-box,
  .whatsapp-btn {
    display: none;
  }

  .hamburger {
    display: flex;
  }
}


/* Overlay */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45);
  backdrop-filter: blur(4px);
  opacity: 0;
  pointer-events: none;
  transition: 0.35s ease;
  z-index: 998;
}

.mobile-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

/* Drawer */
.mobile-drawer {
  position: fixed;
  top: 0;
  right: -100%;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  box-shadow: -10px 0 40px rgba(0,0,0,0.15);
  transition: 0.4s cubic-bezier(.22,.61,.36,1);
  z-index: 999;
  display: flex;
  flex-direction: column;
  
  }


.mobile-drawer.open {
  right: 0;
}

/* Top */
.drawer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px;
  border-bottom: 1px solid #e5e7eb;
}

.drawer-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.drawer-avatar {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, #0f4c81, #1e6bb8);
  color: white;
  font-weight: 700;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.drawer-brand strong {
  font-size: 14px;
  color: #0f172a;
}

.drawer-brand span {
  font-size: 11px;
  color: #64748b;
}

.drawer-close {
  background: #f1f5f9;
  border: none;
  width: 36px;
  height: 36px;
  border-radius: 10px;
  cursor: pointer;
  font-size: 18px;
}

/* Nav */
.drawer-nav {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.drawer-nav a {
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  color: #0f172a;
  padding: 12px 14px;
  border-radius: 10px;
  transition: 0.3s ease;
}

.drawer-nav a:hover {
  background: #f1f5f9;
}

.drawer-nav a.active {
  background: #e6f0f8;
  color: #0f4c81;
}

/* Actions */
.drawer-actions {
  margin-top: auto;
  padding: 20px;
  display: flex;
  gap: 12px;
}

.drawer-whatsapp,
.drawer-call {
  flex: 1;
  text-align: center;
  padding: 12px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}

.drawer-whatsapp {
  background: #15803d;
  color: white;
}

.drawer-call {
  background: #0f4c81;
  color: white;
}
.call-header
{
  text-decoration: none;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  color: #0f172a;
}
