/* ==========================================================
   Static internal pages: ESNNA, FAQ, Contact
   Uses base.css + layout.css + page.css as foundation
   ========================================================== */

.static-content-section,
.faq-section-light,
.contact-section-light {
  padding: clamp(60px, 6vw, 96px) 0;
  background: #fff;
}

.static-section-head {
  max-width: 820px;
  margin: 0 auto 42px;
  text-align: center;
}

.static-section-head--left {
  margin: 0 0 28px;
  text-align: left;
}

.static-section-head h2 {
  margin: 10px 0 12px;
  color: #111827;
  font-size: clamp(34px, 4vw, 54px);
  font-weight: 900;
  line-height: 1.06;
  letter-spacing: -.04em;
}

.static-section-head p {
  margin: 0;
  color: #5f6b76;
  font-size: 17px;
  line-height: 1.7;
}

/* ==========================================================
   ESNNA
   ========================================================== */

.esnna-grid {
  display: grid;
  grid-template-columns: minmax(280px, 430px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
}

.esnna-image-card {
  position: relative;
  overflow: hidden;
  margin: 0;
  border-radius: 10px;
  background: #f5f7fa;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .12);
}

.esnna-image-card::after {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 255, 255, .7);
  border-radius: 18px;
  pointer-events: none;
}

.esnna-image-card img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 520px;
  object-fit: cover;
}

.static-info-panel {
  padding: clamp(28px, 4vw, 48px);
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .08);
}

.static-info-panel h3 {
  margin: 0 0 22px;
  color: #111827;
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.static-info-panel h4 {
  margin: 0 0 22px;
  color: #111827;
  font-size: clamp(19px, 2vw, 22px);
  font-weight: 900;
  line-height: 1.15;
  letter-spacing: -.03em;
}

.static-info-panel p {
  margin: 0 0 18px;
  color: #42505c;
  font-size: 15px;
  line-height: 1.78;
}

.static-info-panel p:last-child {
  margin-bottom: 0;
}

/* ==========================================================
   FAQ
   ========================================================== */

.faq-layout {
  display: grid;
  grid-template-columns: 360px minmax(0, 1fr);
  gap: clamp(28px, 4vw, 52px);
  align-items: start;
}

.faq-help-card {
  position: sticky;
  top: 130px;
  isolation: isolate;
  overflow: hidden;
  min-height: 470px;
  padding: 34px 30px;
  border-radius: 24px;
  color: #fff;
  background: #061f1a;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .16);
}

.faq-help-card::before,
.faq-help-card::after {
  content: "";
  position: absolute;
  inset: 0;
}

.faq-help-card::before {
  z-index: -2;
  background-image: var(--faq-card-bg);
  background-size: cover;
  background-position: center;
  transform: scale(1.06);
}

.faq-help-card::after {
  z-index: -1;
  background: linear-gradient(180deg, rgba(0,0,0,.42), rgba(0,0,0,.78));
}

.faq-help-card span {
  display: inline-block;
  margin-bottom: 14px;
  color: #03a1f0;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.faq-help-card h2 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  line-height: 1.05;
}

.faq-help-card p {
  margin: 0 0 28px;
  color: rgba(255,255,255,.88);
  font-size: 16px;
  line-height: 1.7;
}

.faq-help-card a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border-radius: 999px;
  background: #03a1f0;
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(3, 161, 240, .34);
  transition: transform .18s ease, background .18s ease;
}

.faq-help-card a:hover {
  transform: translateY(-2px);
  background: #028bd0;
}

.faq-panel {
  min-width: 0;
}

.faq-list {
  display: grid;
  gap: 14px;
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, .10);
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
}

.faq-item summary {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 68px;
  padding: 20px 24px;
  color: #101820;
  cursor: pointer;
  list-style: none;
  font-size: 17px;
  font-weight: 900;
  line-height: 1.35;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  content: "+";
  margin-left: auto;
  color: #03a1f0;
  font-size: 26px;
  font-weight: 900;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item summary span {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(3, 161, 240, .10);
  color: #03a1f0;
  font-size: 13px;
  font-weight: 900;
}

.faq-answer {
  padding: 0 24px 24px 70px;
  color: #51606c;
  font-size: 16px;
  line-height: 1.75;
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.empty-state-card {
  padding: 34px;
  border: 1px dashed rgba(15, 23, 42, .20);
  border-radius: 18px;
  background: #f8fafc;
}

.empty-state-card h3 {
  margin: 0 0 10px;
  font-size: 24px;
}

.empty-state-card p {
  margin: 0;
  color: #5f6b76;
}

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

.contact-layout {
  display: grid;
  grid-template-columns: minmax(300px, 430px) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 60px);
  align-items: start;
}

.contact-info-panel,
.contact-form-card {
  border: 1px solid rgba(15, 23, 42, .08);
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 22px 55px rgba(15, 23, 42, .08);
}

.contact-info-panel {
  padding: clamp(28px, 4vw, 42px);
}

.contact-info-panel h2 {
  margin: 12px 0 14px;
  color: #111827;
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.contact-info-panel h3 {
  margin: 12px 0 14px;
  color: #111827;
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -.04em;
}

.contact-info-panel > p {
  margin: 0 0 30px;
  color: #5f6b76;
  font-size: 16px;
  line-height: 1.72;
}

.contact-info-list {
  display: grid;
  gap: 16px;
}

.contact-info-item {
  display: grid;
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 18px;
  border-radius: 18px;
  background: #f8fbfd;
}

.contact-info-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(3, 161, 240, .10);
  color: #03a1f0;
  font-size: 20px;
  font-weight: 900;
}

.contact-info-item h3 {
  margin: 0 0 8px;
  color: #111827;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.contact-info-item a,
.contact-info-item p {
  display: block;
  margin: 0;
  color: #465560;
  font-size: 15px;
  line-height: 1.55;
  text-decoration: none;
}

.contact-info-item a:hover {
  color: #03a1f0;
}

.contact-form-card {
  padding: clamp(28px, 4vw, 46px);
}

.contact-form-card h2 {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(30px, 3.5vw, 44px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.contact-form-card h3 {
  margin: 0 0 10px;
  color: #111827;
  font-size: clamp(20px, 3.0vw, 24px);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -.035em;
}

.contact-form-card > p {
  margin: 0 0 28px;
  color: #5f6b76;
  line-height: 1.65;
}

.contact-form {
  display: grid;
  gap: 18px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #111827;
  font-size: 14px;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(15, 23, 42, .14);
  border-radius: 14px;
  background: #fff;
  color: #111827;
  font: inherit;
  font-size: 15px;
  outline: none;
  transition: border-color .18s ease, box-shadow .18s ease;
}

.contact-form input {
  min-height: 50px;
  padding: 0 15px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 14px 15px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: #03a1f0;
  box-shadow: 0 0 0 4px rgba(3, 161, 240, .12);
}

.contact-security-box {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: #f4f9fd;
}

.contact-security-box span {
  flex: 0 0 auto;
  color: #111827;
  font-size: 16px;
  font-weight: 900;
}

.contact-security-box input {
  min-height: 44px;
}

.contact-form button[type="submit"] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 28px;
  border: 0;
  border-radius: 14px;
  background: #03a1f0;
  color: #fff;
  cursor: pointer;
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
  box-shadow: 0 16px 35px rgba(3, 161, 240, .28);
  transition: transform .18s ease, background .18s ease, opacity .18s ease;
}

.contact-form button[type="submit"]:hover {
  transform: translateY(-2px);
  background: #028bd0;
}

.contact-form button[type="submit"].is-loading {
  opacity: .72;
  cursor: wait;
  pointer-events: none;
}

.contact-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px !important;
  height: 1px !important;
  opacity: 0 !important;
}

.contact-map-section iframe {
  display: block;
  width: 100%;
}

/* SweetAlert styling */
.swal2-container,
.swal2-container.aa-swal-container {
  z-index: 2147483647 !important;
}

.swal2-popup.aa-swal-popup {
  border-radius: 20px !important;
  padding: 28px 26px !important;
  font-family: inherit !important;
}

.swal2-confirm.aa-swal-confirm {
  min-width: 150px !important;
  min-height: 46px !important;
  border-radius: 10px !important;
  background: #03a1f0 !important;
  font-weight: 900 !important;
}

@media (max-width: 991px) {
  .esnna-grid,
  .faq-layout,
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .faq-help-card {
    position: relative;
    top: auto;
    min-height: 360px;
  }
}

@media (max-width: 640px) {
  .static-content-section,
  .faq-section-light,
  .contact-section-light {
    padding: 48px 0;
  }

  .static-info-panel,
  .contact-info-panel,
  .contact-form-card {
    padding: 24px 20px;
    border-radius: 10px;
  }

  .esnna-image-card img {
    min-height: 360px;
  }

  .faq-item summary {
    padding: 18px;
    font-size: 16px;
  }

  .faq-answer {
    padding: 0 18px 20px 18px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .contact-security-box {
    align-items: stretch;
    flex-direction: column;
  }
}
