/* =============================================
   CONTACT — CTA blue section
   ============================================= */

#contact {
  position: relative;
  z-index: 1;
  padding: 0;
}

.ctab {
  background: var(--blue);
  padding: 100px 64px;
  position: relative;
  overflow: hidden;
}

.ctab-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 56px 56px;
}

.ctab-glow {
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, .1), transparent 60%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ctac {
  position: relative;
  z-index: 1;
  text-align: center;
}

.ctag {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 4px;
  color: rgba(255, 255, 255, .65);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ctatit {
  font-size: clamp(36px, 6vw, 80px);
  font-weight: 700;
  letter-spacing: -3px;
  line-height: .95;
  color: #fff;
  margin-bottom: 20px;
}

.ctasub {
  font-size: 17px;
  color: rgba(255, 255, 255, .7);
  margin-bottom: 44px;
  max-width: 400px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

/* Calendar embed wrapper */
.cal-wrapper {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  max-width: 780px;
  margin: 0 auto;
  box-shadow: 0 24px 64px rgba(0, 0, 0, .18);
}

.cal-header {
  padding: 20px 28px 0;
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 129, 204, .1);
}

.cal-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0081cc;
  opacity: .5;
}

.cal-label {
  font-family: 'Space Mono', monospace;
  font-size: 10px;
  letter-spacing: 3px;
  color: #0081cc;
  text-transform: uppercase;
}

/* White CTA buttons */
.bw {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: #fff;
  color: var(--blue);
  padding: 16px 34px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: .4px;
  transition: all .25s;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .12);
}

.bw:hover {
  background: var(--pale);
  transform: translateY(-2px);
}

.bo {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: rgba(255, 255, 255, .85);
  padding: 16px 34px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(255, 255, 255, .3);
  letter-spacing: .4px;
  transition: all .25s;
}

.bo:hover {
  border-color: rgba(255, 255, 255, .7);
  color: #fff;
}
