/* Contact page modern styling */

.contact-hero {
  background: linear-gradient(135deg, rgba(1, 147, 202, 0.05) 0%, rgba(0, 96, 131, 0.02) 100%);
  padding: 3rem 2rem 2rem;
  border-radius: var(--radius-lg);
  margin-bottom: 2.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(1, 147, 202, 0.08) 0%, transparent 70%);
  animation: pulse 8s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.5; }
  50% { transform: scale(1.1); opacity: 0.8; }
}

.contact-hero__title {
  position: relative;
  font-size: 2.75rem;
  font-weight: 700;
  background: linear-gradient(135deg, #0193ca 0%, #006083 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem;
  letter-spacing: -0.02em;
}

.contact-hero__subtitle {
  position: relative;
  font-size: 1.125rem;
  color: var(--color-muted);
  max-width: 800px;
  margin: 0 auto;
  line-height: 1.6;
}

/* Hero highlights */
.contact-highlights { display: flex; gap: 0.5rem; flex-wrap: wrap; justify-content: center; margin-top: 1.25rem; }
.pill { display: inline-flex; align-items: center; gap: 0.4rem; padding: 0.4rem 0.7rem; border-radius: 999px; font-weight: 600; font-size: 0.85rem; background: rgba(1,147,202,0.08); border: 1px solid rgba(1,147,202,0.14); color: var(--color-primary-600); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

@media (min-width: 768px) {
  .contact-grid { grid-template-columns: 1fr 1fr; }
}

.contact-card {
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04), 0 1px 2px rgba(0, 0, 0, 0.06);
  transition: all 0.3s cubic-bezier(0.2, 1.4, 0.4, 1);
  border: 1px solid rgba(1, 147, 202, 0.08);
  position: relative;
  overflow: hidden;
}

.contact-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #0193ca 0%, #006083 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s cubic-bezier(0.2, 1.4, 0.4, 1);
}

.contact-card:hover::before { transform: scaleX(1); }

.contact-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(1, 147, 202, 0.15), 0 6px 12px rgba(0, 0, 0, 0.08);
  border-color: rgba(1, 147, 202, 0.25);
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  background: linear-gradient(135deg, rgba(1, 147, 202, 0.12) 0%, rgba(0, 96, 131, 0.06) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.75rem;
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card__icon {
  transform: scale(1.1) rotate(5deg);
  background: linear-gradient(135deg, rgba(1, 147, 202, 0.2) 0%, rgba(0, 96, 131, 0.1) 100%);
}

.contact-card__title { font-size: 1.375rem; font-weight: 600; margin-bottom: 1.25rem; color: var(--color-text); }

.contact-methods { list-style: none; padding: 0; margin: 0; }

.contact-methods__item {
  margin-bottom: 0.875rem;
  padding: 1rem 1.125rem;
  background: rgba(1, 147, 202, 0.03);
  border-radius: var(--radius-md);
  transition: all 0.25s cubic-bezier(0.2, 1.4, 0.4, 1);
  border: 1px solid transparent;
}

.contact-methods__item:hover {
  background: linear-gradient(135deg, rgba(1, 147, 202, 0.08) 0%, rgba(1, 147, 202, 0.04) 100%);
  transform: translateX(6px);
  border-color: rgba(1, 147, 202, 0.15);
  box-shadow: 0 2px 8px rgba(1, 147, 202, 0.1);
}

.contact-methods__item:last-child { margin-bottom: 0; }

.contact-methods__label { display: block; font-size: 0.6875rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; color: var(--color-muted); margin-bottom: 0.375rem; }

.contact-methods__link { display: inline-flex; align-items: center; gap: 0.5rem; font-size: 1.0625rem; font-weight: 500; color: var(--color-primary); text-decoration: none; transition: all 0.25s ease; }
.contact-methods__link:hover { color: var(--color-primary-600); text-decoration: none; gap: 0.875rem; }
.contact-methods__link::after { content: '→'; font-size: 1.25rem; transition: transform 0.25s cubic-bezier(0.2, 1.4, 0.4, 1); display: inline-block; }
.contact-methods__link:hover::after { transform: translateX(4px); }

.contact-location { display: flex; align-items: center; gap: 0.625rem; margin-top: 1.75rem; padding-top: 1.75rem; border-top: 1px solid var(--color-border); color: var(--color-muted); font-size: 0.9375rem; font-weight: 500; }
.contact-location::before { content: '📍'; font-size: 1.375rem; }

.contact-cta {
  background: linear-gradient(135deg, #0193ca 0%, #006083 100%);
  color: white;
  padding: 2.25rem;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.contact-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: pulseLight 6s ease-in-out infinite;
  pointer-events: none;
}

@keyframes pulseLight { 0%, 100% { transform: scale(1); opacity: 0.3; } 50% { transform: scale(1.05); opacity: 0.6; } }

.contact-cta .contact-card__icon { background: rgba(255, 255, 255, 0.15); margin-left: auto; margin-right: auto; }
.contact-cta:hover .contact-card__icon { background: rgba(255, 255, 255, 0.25); transform: scale(1.15) rotate(5deg); }

.contact-cta__title { position: relative; color: white; margin-bottom: 0.875rem; font-size: 1.375rem; }
.contact-cta__description { position: relative; color: rgba(255, 255, 255, 0.92); margin-bottom: 1.75rem; font-size: 1rem; line-height: 1.6; }

.contact-cta .btn { position: relative; background: white; color: var(--color-primary); font-weight: 600; padding: 0.875rem 1.75rem; font-size: 1.0625rem; box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); border-radius: var(--radius-md); transition: all 0.3s cubic-bezier(0.2, 1.4, 0.4, 1); }
.contact-cta .btn:hover { background: rgba(255, 255, 255, 0.95); transform: translateY(-3px); box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25); text-decoration: none; }
.contact-cta .btn:active { transform: translateY(-1px); }

/* What to expect */
.expect-grid { margin: 0 0 2.5rem; background: rgba(1,147,202,0.04); border: 1px solid rgba(1,147,202,0.08); border-radius: var(--radius-lg); padding: 1.25rem; }
.expect__title { text-align: center; font-size: 1.25rem; margin-bottom: 0.75rem; }
.expect__steps { display: grid; grid-template-columns: 1fr; gap: 0.875rem; }
@media (min-width: 700px) { .expect__steps { grid-template-columns: repeat(3, 1fr); } }
.expect__step { display: flex; gap: 0.875rem; align-items: flex-start; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 1rem; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.expect__step:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); }
.expect__icon { width: 40px; height: 40px; border-radius: 10px; display: inline-flex; align-items: center; justify-content: center; background: rgba(1,147,202,0.1); font-size: 1.25rem; }
.expect__step-title { margin: 0 0 0.25rem 0; font-size: 1rem; }
.expect__step-text { margin: 0; color: var(--color-muted); font-size: 0.95rem; }

/* FAQ */
.contact-faq { margin-bottom: 2rem; }
.faq__title { text-align: center; font-size: 1.25rem; margin-bottom: 0.75rem; }
.faq__items { display: grid; gap: 0.5rem; max-width: 800px; margin: 0 auto; }
.faq__item { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-md); padding: 0.75rem 1rem; transition: border-color 0.2s ease, box-shadow 0.2s ease; }
.faq__item[open] { border-color: rgba(1,147,202,0.25); box-shadow: 0 8px 24px rgba(1,147,202,0.10); }
.faq__q { cursor: pointer; list-style: none; font-weight: 600; color: var(--color-text); }
.faq__a { margin-top: 0.5rem; color: var(--color-muted); }

.contact-footer { text-align: center; padding: 2rem 0 1rem; color: var(--color-muted); font-size: 0.9375rem; }
.contact-footer__badge { display: inline-flex; align-items: center; gap: 0.625rem; padding: 0.625rem 1.25rem; background: rgba(1, 147, 202, 0.06); border-radius: 999px; border: 1px solid rgba(1, 147, 202, 0.12); transition: all 0.25s ease; }
.contact-footer__badge:hover { background: rgba(1, 147, 202, 0.1); border-color: rgba(1, 147, 202, 0.2); transform: scale(1.02); }
.contact-footer__badge::before { content: '⏱️'; font-size: 1.125rem; }

/* Founders section */
.founders { margin: 0 0 2.5rem; }
.founders__title { text-align: center; font-size: 1.25rem; margin-bottom: 1rem; }
.founders__grid { display: grid; grid-template-columns: 1fr; gap: 1rem; }
@media (min-width: 640px) { .founders__grid { grid-template-columns: 1fr 1fr; } }

.founder-card { display: grid; grid-template-columns: auto 1fr; gap: 1rem; align-items: center; background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius-lg); padding: 1rem; box-shadow: var(--shadow-1); transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease; }
.founder-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-2); border-color: rgba(1,147,202,0.2); }

.founder-card__avatar { width: 84px; height: 84px; border-radius: 999px; object-fit: cover; background: #f2f6f8; border: 1px solid rgba(0,0,0,0.06); }
@media (min-width: 900px) { .founder-card__avatar { width: 96px; height: 96px; } }

.founder-card__name { margin: 0; font-size: 1.0625rem; }
.founder-card__role { margin: 0.125rem 0 0.75rem; color: var(--color-muted); font-size: 0.9375rem; }

.founder-methods { list-style: none; padding: 0; margin: 0; display: grid; gap: 0.35rem; }
.founder-methods__item { }
.founder-methods__link { display: inline-flex; align-items: center; gap: 0.5rem; color: var(--color-primary); font-weight: 500; text-decoration: none; border-bottom: 1px dashed rgba(1,147,202,0.35); padding-bottom: 2px; }
.founder-methods__link:hover { color: var(--color-primary-600); border-bottom-color: rgba(1,147,202,0.6); text-decoration: none; }

/* Animations */
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
.contact-hero { animation: fadeInUp 0.6s ease backwards; }
.contact-card { animation: fadeInUp 0.7s ease backwards; }
.contact-card:nth-child(1) { animation-delay: 0.15s; }
.contact-card:nth-child(2) { animation-delay: 0.25s; }
.contact-footer { animation: fadeInUp 0.7s ease backwards 0.35s; }

/* Responsive adjustments */
@media (max-width: 767px) {
  .contact-hero { padding: 2rem 1.5rem 1.5rem; }
  .contact-hero__title { font-size: 2.125rem; }
  .contact-hero__subtitle { font-size: 1rem; }
  .contact-card { padding: 1.75rem; }
  .contact-cta { padding: 1.75rem; }
  .contact-card__title, .contact-cta__title { font-size: 1.25rem; }
}
