*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
  --navy: #1a237e;
  --accent: #ff6f00;
  --sky: #e8eaf6;
  --text: #1a1a2e;
  --text-light: #5c5c7a;
  --light-indigo: #c5cae9;
}
body {
  font-family: 'Heebo', system-ui, sans-serif;
  background: #fafafa;
  color: var(--text);
  opacity: 0;
  transition: opacity 0.15s;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }

/* ═══ NAV ═══ */
.nav {
  background: var(--navy);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 60px;
  height: 64px;
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav-logo {
  font-family: 'Karantina', system-ui;
  font-size: 26px;
  color: rgba(255,255,255,0.85);
  letter-spacing: 3px;
  text-decoration: none;
}
.nav-logo span { color: var(--accent); }
.nav-links { display: flex; gap: 32px; align-items: center; }
.nav-links a {
  color: rgba(255,255,255,0.55);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 1px;
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  width: 0;
  height: 2px;
  background: var(--accent);
  transition: width 0.3s;
}
.nav-links a:hover { color: white; }
.nav-links a:hover::after { width: 100%; }
.wa-btn {
  display: flex !important;
  align-items: center;
  gap: 6px;
  background: #25D366 !important;
  color: white !important;
  padding: 7px 18px !important;
  clip-path: polygon(5px 0, 100% 0, calc(100% - 5px) 100%, 0 100%);
  font-size: 12px !important;
  font-weight: 600;
  letter-spacing: 0;
  transition: all 0.3s;
}
.wa-btn::after { display: none !important; }
.wa-btn:hover { background: #1da851 !important; }
.wa-btn svg { flex-shrink: 0; }
.nav-burger {
  display: none;
  background: none; border: none; cursor: pointer;
  padding: 8px; flex-direction: column; gap: 5px;
}
.nav-burger span {
  display: block; width: 22px; height: 2px;
  background: rgba(255,255,255,0.8); transition: all 0.3s;
}
.mobile-menu {
  position: fixed; inset: 0; z-index: 200;
  visibility: hidden; pointer-events: none;
}
.mobile-menu.open { visibility: visible; pointer-events: auto; }
.mobile-menu-overlay {
  position: absolute; inset: 0;
  background: rgba(0,0,0,0.5); backdrop-filter: blur(4px);
  opacity: 0; transition: opacity 0.3s;
}
.mobile-menu.open .mobile-menu-overlay { opacity: 1; }
.mobile-menu-panel {
  position: absolute; top: 0; right: 0;
  width: 280px; height: 100%;
  background: var(--navy); padding: 80px 32px 32px;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex; flex-direction: column;
}
.mobile-menu.open .mobile-menu-panel { transform: translateX(0); }
.mobile-menu-close {
  position: absolute; top: 18px; left: 18px;
  background: none; border: none;
  color: rgba(255,255,255,0.5); font-size: 24px; cursor: pointer;
}
.mobile-menu-panel a {
  display: block; color: rgba(255,255,255,0.7);
  font-size: 16px; font-weight: 500; padding: 16px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  text-decoration: none; transition: color 0.3s;
}
.mobile-menu-panel a:hover { color: white; }
.mobile-menu-panel .mm-wa {
  display: flex; align-items: center; gap: 8px;
  margin-top: 24px; background: #25D366; color: white !important;
  padding: 14px 20px; border-bottom: none; font-weight: 600;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
}
.wa-modal-overlay {
  position: fixed; inset: 0; background: rgba(0,0,0,0.6); z-index: 1000;
  display: flex; align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
  opacity: 0; visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.wa-modal-overlay.show { opacity: 1; visibility: visible; }
.wa-modal {
  background: white; padding: 48px 40px; max-width: 420px; width: 90%;
  margin: 0 auto;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%);
  text-align: center; position: relative;
  transform: scale(0.9) translateY(20px);
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}
.wa-modal-overlay.show .wa-modal {
  transform: scale(1) translateY(0);
}
.wa-modal h3 {
  font-family: 'Karantina', system-ui; font-size: 36px; color: var(--navy);
  margin-bottom: 12px; letter-spacing: 2px;
}
.wa-modal p { font-size: 15px; color: var(--text-light); line-height: 1.8; margin-bottom: 28px; }
.wa-modal .wa-join {
  display: inline-flex; align-items: center; gap: 10px;
  background: #25D366; color: white; padding: 14px 36px;
  font-size: 16px; font-weight: 700; border: none; cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  text-decoration: none; transition: all 0.3s;
}
.wa-modal .wa-join:hover { background: #1da851; }
.wa-modal .wa-close {
  position: absolute; top: 16px; left: 16px; background: none; border: none;
  font-size: 22px; color: var(--text-light); cursor: pointer; padding: 4px;
}
.wa-modal .wa-close:hover { color: var(--navy); }

/* ═══ PAGE HEADER ═══ */
.page-header {
  background: #060a24;
  padding: 60px;
  text-align: center;
}
.page-header .label {
  font-size: 11px;
  font-weight: 700;
  color: var(--accent);
  letter-spacing: 4px;
  margin-bottom: 12px;
}
.page-header h1 {
  font-family: 'Karantina', system-ui;
  font-size: 64px;
  color: white;
  letter-spacing: 3px;
}

/* ═══ CONTACT CONTENT ═══ */
.contact-wrap {
  max-width: 1100px;
  margin: 0 auto;
  padding: 64px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.contact-info {}
.contact-info h2 {
  font-family: 'Karantina', system-ui;
  font-size: 36px;
  color: var(--navy);
  letter-spacing: 2px;
  margin-bottom: 8px;
}
.contact-info > p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.9;
  margin-bottom: 36px;
}
.info-cards { display: flex; flex-direction: column; gap: 16px; }
.info-card {
  background: white;
  padding: 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 10px), calc(100% - 10px) 100%, 0 100%);
  box-shadow: 0 2px 12px rgba(26,35,126,0.06);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}
.info-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(26,35,126,0.1); }
.info-card-icon {
  width: 48px; height: 48px;
  background: var(--navy);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  clip-path: polygon(4px 0, 100% 0, calc(100% - 4px) 100%, 0 100%);
  flex-shrink: 0;
}
.info-card h4 { font-size: 14px; font-weight: 600; margin-bottom: 2px; }
.info-card p { font-size: 13px; color: var(--text-light); }

/* ═══ FORM ═══ */
.contact-form {
  background: white;
  padding: 40px;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
  box-shadow: 0 4px 24px rgba(26,35,126,0.08);
}
.contact-form h3 {
  font-family: 'Karantina', system-ui;
  font-size: 28px;
  color: var(--navy);
  letter-spacing: 2px;
  margin-bottom: 24px;
}
.form-notice {
  margin: 0 0 22px;
  padding: 14px 16px;
  border: 2px solid var(--sky);
  background: #f8fbff;
  color: var(--navy);
  font-size: 14px;
  font-weight: 600;
}
.form-notice--sent {
  border-color: #b8dfc5;
  background: #f3fbf5;
  color: #176238;
}
.form-notice--invalid,
.form-notice--error {
  border-color: #f0b7b7;
  background: #fff6f6;
  color: #a12a2a;
}
.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 2px;
  margin-bottom: 6px;
}
.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid var(--sky);
  font-family: 'Heebo', system-ui;
  font-size: 14px;
  color: var(--text);
  background: #fafafa;
  transition: border-color 0.3s;
  outline: none;
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--navy);
  background: white;
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-submit {
  display: inline-block;
  background: var(--navy);
  color: white;
  padding: 14px 44px;
  font-family: 'Heebo', system-ui;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  clip-path: polygon(6px 0, 100% 0, calc(100% - 6px) 100%, 0 100%);
  transition: all 0.3s;
  letter-spacing: 1px;
}
.form-submit:hover { background: var(--accent); }

/* ═══ MAP ═══ */
.map-section {
  background: var(--sky);
  position: relative;
  padding: 64px 60px;
}
.map-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(45deg, transparent 48%, rgba(26,35,126,0.03) 49%, rgba(26,35,126,0.03) 51%, transparent 52%);
  background-size: 40px 40px;
}
.map-inner {
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}
.map-inner h2 {
  font-family: 'Karantina', system-ui;
  font-size: 36px;
  color: var(--navy);
  letter-spacing: 2px;
  margin-bottom: 24px;
  text-align: center;
}
.map-frame {
  width: 100%;
  height: 360px;
  border: none;
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 16px), calc(100% - 16px) 100%, 0 100%);
}

/* ═══ FOOTER ═══ */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: 60px 60px 32px;
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
}
.footer h3 {
  font-family: 'Karantina', system-ui;
  font-size: 22px;
  color: var(--accent);
  margin-bottom: 16px;
}
.footer-logo {
  font-family: 'Karantina', system-ui;
  font-size: 32px;
  color: white;
  letter-spacing: 3px;
  margin-bottom: 12px;
}
.footer ul { list-style: none; }
.footer li { margin-bottom: 8px; font-size: 14px; }
.footer-bottom {
  max-width: 1200px;
  margin: 40px auto 0;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.08);
  text-align: center;
  font-size: 12px;
  color: rgba(255,255,255,0.3);
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 1024px) {
  .contact-wrap { grid-template-columns: 1fr; max-width: 700px; }
}
@media (max-width: 768px) {
  .nav { padding: 0 20px; height: 56px; }
  .nav-logo { font-size: 22px; letter-spacing: 2px; }
  .nav-links { display: none; }
  .nav-burger { display: flex; }
  .page-header { padding: 40px 24px; }
  .page-header h1 { font-size: 44px; }
  .contact-wrap { grid-template-columns: 1fr; padding: 40px 24px; gap: 40px; max-width: none; }
  .form-row { grid-template-columns: 1fr; }
  .map-section { padding: 40px 5px; }
  .footer { padding: 48px 24px 24px; }
  .footer-inner { grid-template-columns: 1fr; }
}
