

body.contact-page {
  padding-top: 70px;
  background: #f9fafb;
  min-height: 100vh;
}

body.contact-page .navbar {
  background: rgba(0, 0, 0, 0.92);
}

.contact-hero {
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  padding: 70px 20px 60px;
  text-align: center;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.contact-hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 14px;
  animation: contactFadeUp 0.8s ease-out forwards;
}

.contact-hero h1 span { color: #00aaff; }

.contact-hero p {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  color: #9ca3af;
  max-width: 520px;
  margin: 0 auto;
  line-height: 1.8;
  animation: contactFadeUp 0.9s ease-out 0.15s both;
}

body.contact-page .contact-container {
  flex-direction: row;
  align-items: stretch;
  max-width: 1150px;
  gap: 32px;
  padding: 70px 20px 90px;
}

body.contact-page .contact-map {
  flex: 1.1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

body.contact-page .contact-map iframe {
  height: 100%;
  min-height: 460px;
  border-radius: 16px;
}

body.contact-page .contact-info {
  flex: 1;
  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 18px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
  padding: 40px 36px;
  margin: 0;
  transition: transform 0.4s cubic-bezier(0.34,1.2,0.64,1),
              box-shadow 0.35s ease,
              border-color 0.35s ease;
}

body.contact-page .contact-info:hover {
  transform: translateY(-4px);
  border-color: #00aaff;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.12);
}

.contact-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: #111827;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid #f3f4f6;
}

.contact-info h2 {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  margin-bottom: 6px;
  font-size: 0.95rem;
  font-weight: 700;
  color: #111827;
}

.contact-info h2:first-of-type { margin-top: 0; }

.contact-info h2 i {
  width: 34px;
  height: 34px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(0, 170, 255, 0.08);
  border: 1px solid rgba(0, 170, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: #00aaff;
  transition: background 0.3s, transform 0.3s;
}

.contact-info h2:hover i {
  background: rgba(0, 170, 255, 0.15);
  transform: scale(1.08) rotate(-3deg);
}

.contact-info p,
.contact-info a {
  font-size: 0.92rem;
  color: #6b7280;
  line-height: 1.7;
  padding-left: 46px;
}

.contact-info a {
  color: #00aaff;
  transition: color 0.2s;
}

.contact-info a:hover {
  color: #0088cc;
  text-decoration: underline;
}

body.js-contact-ready .contact-reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.6s ease, transform 0.6s cubic-bezier(0.34,1.1,0.64,1);
}

body.js-contact-ready .contact-reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

@media (hover: none) {
  body.contact-page .contact-info.in-view {
    transform: translateY(-4px);
    border-color: #00aaff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  }
}

@keyframes contactFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

@media (max-width: 900px) {
  body.contact-page .contact-container {
    flex-direction: column;
    padding: 50px 16px 70px;
    gap: 24px;
  }

  body.contact-page .contact-map iframe {
    min-height: 320px;
  }

  body.contact-page .contact-info {
    padding: 28px 22px;
  }
}

@media (max-width: 600px) {
  .contact-hero { padding: 50px 16px 40px; }

  .contact-info p,
  .contact-info a {
    padding-left: 0;
    display: block;
    margin-top: 4px;
  }

  .contact-info h2 { margin-top: 18px; }
}