﻿.portfolio-modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 21, 37, 0.85); /* match navy */
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  font-family: 'Inter', sans-serif;
}
.portfolio-modal {
  background: #0c2040; /* match navy2 */
  border-radius: 12px;
  width: 100%;
  max-width: 380px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.4);
  color: #e2e8f0;
  border: 1px solid rgba(255,255,255,0.08); /* match border */
}
.modal-header {
  background: #071525; /* match navy */
  color: #ffffff;
  text-align: center;
  padding: 28px 20px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.modal-logo {
  display: flex;
  justify-content: center;
  margin-bottom: 8px;
}
.modal-logo-img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}
.modal-subtitle {
  font-size: 10px;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: #7f9ab5;
  text-transform: uppercase;
}
.modal-body {
  padding: 30px 24px;
  text-align: center;
}
.modal-body p {
  font-size: 14px;
  line-height: 1.6;
  color: #e2e8f0; /* match text */
  margin-bottom: 20px;
}
.modal-body strong {
  color: #ffffff;
  font-weight: 700;
}
.modal-separator {
  border: none;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin: 20px 0;
}
.modal-links {
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 24px;
  color: #7f9ab5;
}
.modal-links a {
  color: #FF6B00;
  text-decoration: none;
  transition: color 0.2s;
}
.modal-links a:hover {
  color: #e05d00;
}
.modal-btn-primary, .modal-btn-secondary {
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 8px;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}
.modal-btn-primary {
  background: linear-gradient(135deg, #ff8520, #FF6B00, #e05000); /* match orange cta */
  color: #ffffff;
  border: none;
  margin-bottom: 12px;
  box-shadow: 0 4px 18px rgba(255,107,0,0.35);
}
.modal-btn-primary:hover {
  background: #e05d00;
  transform: translateY(-1px);
}
.modal-btn-secondary {
  background: transparent;
  color: #ffffff;
  border: 1px solid #FF6B00;
}
.modal-btn-secondary:hover {
  background: rgba(255,107,0,0.1);
}
