/* ===== Contact Section ===== */

.contact-nap {
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.contact-nap::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: rgba(26, 44, 163, 0.12); 
  pointer-events: none;
}

.contact-nap::after {
  content: '';
  position: absolute;
  bottom: -80px;
  left: 5%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: rgba(255, 179, 0, 0.05);
  pointer-events: none;
}

.overlay {
  display: none;
}

/* Container */
.contact-nap .container {
  position: relative;
  z-index: 1;
  max-width: 1200px;
  margin: 0 auto;
}

/* Grid */
.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(16px, 3vw, 32px);
  align-items: stretch;
}

/* NAP Cards */
.nap-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
  height: 100%;
  justify-content: space-between;
}

.nap-card {
  background: #fff;
  border: 1px solid rgba(26, 44, 163, 0.12);
  border-radius: 16px;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  transition: background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.nap-card:hover {
  border-color: rgba(255, 179, 0, 0.5);
  box-shadow: 0 4px 20px rgba(26, 44, 163, 0.08);
}

.nap-card i {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: #1A2CA3;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #FFB300;
  font-size: 18px;
}

.nap-card h4 {
  font-size: 15px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: #888;
  margin-bottom: 4px;
  font-weight: 600;
}

.nap-card p {
  font-weight: 600;
  color: #1A2CA3;
  margin: 0;
}

/* CTA Box */
.cta-box {
  background: #1A2CA3;
  border: none;
  border-radius: 20px;
  padding: clamp(24px, 3vw, 38px);
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.cta-box h3 {
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  letter-spacing: -0.3px;
}

.cta-box > p {
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.6;
  margin: 0;
}


.cta-box .note {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.35);
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 14px;
  margin: 0;
}

/* ── Tablet ≤900px ── */
@media (max-width: 900px) {
  .contact-content     { grid-template-columns: 1fr; }
  .cta-box             { border-radius: 16px; }
  .contact-nap::before { width: 220px; height: 220px; top: -40px; right: -40px; }
}

/* ── Mobile ≤600px ── */
@media (max-width: 600px) {
  .nap-card   { padding: 16px; gap: 12px; }
  .nap-card i { width: 38px; height: 38px; font-size: 16px; border-radius: 10px; }
  .cta-box    { padding: 22px 18px; }
}

/* ── Small ≤480px ── */
@media (max-width: 480px) {
  .nap-card p     {  }
  
}

/* ── Very Small ≤360px ── */
@media (max-width: 360px) {
  .contact-nap    { padding: 28px 12px; }
  .nap-card i     { width: 32px; height: 32px; font-size: 16px; }
  .nap-card p     {  }
  
}

/* ── Ultra Small ≤320px ── */
@media (max-width: 320px) {
  .nap-card   { gap: 9px; padding: 13px 12px; }
  .cta-box h3 {  }
}

/* =========================================
   TYPOGRAPHY STANDARDIZATION (USER REQUESTED)
   ========================================= */
/* Desktop */
.contact-nap h2, .cta-box h2 { font-size: 40px !important; }
.contact-nap h3, .cta-box h3 { font-size: 22px !important; }
.contact-nap p, .cta-box p, .nap-card p { font-size: 18px !important; line-height: 1.6 !important; }
.contact-nap li { font-size: 18px !important; line-height: 1.6 !important; }

/* Tablet and Mobile (<= 1024px) */
@media (max-width: 1024px) {
    .contact-nap h2, .cta-box h2 { font-size: 35px !important; }
    .contact-nap h3, .cta-box h3 { font-size: 22px !important; }
    .contact-nap p, .cta-box p, .nap-card p { font-size: 18px !important; line-height: 1.6 !important; }
    .contact-nap li { font-size: 18px !important; line-height: 1.6 !important; }
}