/* CONTACT PAGE */

.contact-page {
  position: relative;
  padding: clamp(140px, 20vh, 200px) 0 clamp(80px, 10vw, 140px);
  overflow: hidden;
  isolation: isolate;
  min-height: 100svh;
}
.aurora--c1 {
  width: 60vw; height: 60vw;
  left: -10vw; top: 10%;
  background: radial-gradient(closest-side, rgba(255,106,0,0.4), transparent 70%);
  z-index: -1;
}
.aurora--c2 {
  width: 50vw; height: 50vw;
  right: -10vw; bottom: -10vw;
  background: radial-gradient(closest-side, rgba(204,79,0,0.3), transparent 70%);
  z-index: -1;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: start;
}

@media (max-width: 880px) { .contact-grid { grid-template-columns: 1fr; } }

/* Left side */
.contact-side__title {
  margin: 24px 0 20px;
  max-width: 12ch;
}
.contact-side__sub {
  font-size: 17px;
  line-height: 1.6;
  max-width: 50ch;
  margin-bottom: 36px;
}

.email-card {
  position: relative;
  background: var(--bg-panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  isolation: isolate;
  overflow: hidden;
  transition: border-color .35s ease;
}
.email-card:hover { border-color: var(--accent); }
.email-card::before {
  content: "";
  position: absolute; inset: -1px;
  background: radial-gradient(150px 80px at var(--mx,50%) var(--my,50%), var(--accent-soft), transparent 70%);
  z-index: -1;
  opacity: 0;
  transition: opacity .4s ease;
}
.email-card:hover::before { opacity: 1; }
.email-card__head {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.email-card__label { color: var(--text-dim); }
.email-card__hint  { color: var(--accent); }
.email-card__email {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(20px, 2.5vw, 32px);
  letter-spacing: -0.02em;
  text-align: left;
  padding: 0;
  background: none; border: 0;
  color: var(--text);
  transition: color .3s ease;
}
.email-card__email:hover { color: var(--accent); }
.email-card__email svg { opacity: .6; transition: transform .4s var(--ease-out), opacity .3s ease; }
.email-card__email:hover svg { opacity: 1; transform: rotate(-12deg); }

.email-card__copied {
  position: absolute;
  bottom: 18px; right: 24px;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s ease, transform .35s ease;
}
.email-card.is-copied .email-card__copied { opacity: 1; transform: none; }

.contact-clock {
  margin-top: 36px;
  padding-top: 24px;
  border-top: 1px solid var(--border);
}
.contact-clock__time {
  margin-top: 6px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(28px, 3.6vw, 48px);
  letter-spacing: -0.02em;
  background: linear-gradient(180deg, #fff, #6a6a72);
  -webkit-background-clip: text; background-clip: text; color: transparent;
}

/* =====================================================================
   CONNECT PANEL — replaces old form. Hosts featured WhatsApp + socials
   ===================================================================== */
.connect-panel {
  --wa-green: #25d366;
  --wa-green-deep: #128c7e;
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  padding: clamp(26px, 3vw, 40px);
  border-radius: var(--radius-lg);
  background:
    radial-gradient(120% 140% at 100% 0%, rgba(255,106,0,0.08), transparent 60%),
    rgba(16,16,18,0.62);
  border: 1px solid var(--border);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  isolation: isolate;
  overflow: hidden;
}
.connect-panel::before {
  content: "";
  position: absolute; inset: -1px;
  background: linear-gradient(135deg, rgba(255,106,0,0.18), transparent 50%);
  z-index: -1;
  pointer-events: none;
}
.connect-panel__head { display: flex; flex-direction: column; gap: 8px; }
.connect-panel__sub { font-size: 14px; line-height: 1.55; max-width: 44ch; margin-top: 4px; }

/* Featured WhatsApp hero */
.wa-hero {
  position: relative;
  display: block;
  text-decoration: none;
  color: #fff;
  border-radius: 22px;
  overflow: hidden;
  isolation: isolate;
  padding: clamp(20px, 2.4vw, 28px);
  background:
    radial-gradient(140% 120% at 0% 0%, rgba(46, 227, 110, 0.18), transparent 55%),
    linear-gradient(155deg, rgba(37, 211, 102, 0.16) 0%, rgba(18, 140, 126, 0.10) 50%, rgba(8, 8, 10, 0.85) 100%);
  border: 1px solid rgba(37, 211, 102, 0.4);
  box-shadow: 0 16px 50px -18px rgba(37, 211, 102, 0.45);
  transition: transform .55s var(--ease-out, cubic-bezier(.2,.8,.2,1)), border-color .4s ease, box-shadow .4s ease;
}
.wa-hero:hover {
  transform: translateY(-3px);
  border-color: rgba(46, 227, 110, 0.8);
  box-shadow: 0 22px 60px -18px rgba(37, 211, 102, 0.65);
}
.wa-hero__pulse {
  position: absolute;
  top: -40%;
  right: -20%;
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(closest-side, rgba(46, 227, 110, 0.5), transparent 70%);
  filter: blur(30px);
  opacity: 0.55;
  z-index: -1;
  animation: waHeroPulse 6s ease-in-out infinite alternate;
}
.wa-hero__pulse--two {
  top: auto;
  right: auto;
  bottom: -40%;
  left: -20%;
  background: radial-gradient(closest-side, rgba(18, 140, 126, 0.55), transparent 70%);
  animation-delay: -3s;
}
@keyframes waHeroPulse {
  from { transform: scale(1) translate(0,0); opacity: 0.5; }
  to   { transform: scale(1.15) translate(2%, 2%); opacity: 0.75; }
}

.wa-hero__top {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.wa-hero__label { color: var(--wa-green); }
.wa-hero__status { display: inline-flex; align-items: center; gap: 8px; color: rgba(255,255,255,0.7); }
.wa-hero__status i {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--wa-green);
  box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.6);
  animation: waDot 1.6s ease-in-out infinite;
}
@keyframes waDot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.55); }
  50%      { box-shadow: 0 0 0 8px rgba(37, 211, 102, 0); }
}

.wa-hero__body {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-bottom: 22px;
}
.wa-hero__icon {
  flex: 0 0 auto;
  width: 64px; height: 64px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(140deg, #2ee36e 0%, var(--wa-green) 50%, var(--wa-green-deep) 100%);
  box-shadow: 0 14px 30px -12px rgba(37, 211, 102, 0.7),
              0 0 0 1px rgba(255, 255, 255, 0.08) inset;
}
.wa-hero__icon svg { width: 32px; height: 32px; color: #fff; }
.wa-hero__text { display: flex; flex-direction: column; gap: 4px; min-width: 0; }
.wa-hero__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: -0.02em;
  line-height: 1.1;
}
.wa-hero__num {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.85);
}
.wa-hero__sub {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.06em;
  color: rgba(255,255,255,0.55);
}

.wa-hero__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 20px;
  border-radius: 999px;
  background: linear-gradient(135deg, #2ee36e 0%, var(--wa-green) 60%, var(--wa-green-deep) 100%);
  color: #04140a;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 10px 24px -8px rgba(37, 211, 102, 0.7);
  transition: transform .4s var(--ease-out, cubic-bezier(.2,.8,.2,1));
}
.wa-hero__cta svg { width: 14px; height: 14px; }
.wa-hero:hover .wa-hero__cta { transform: translateX(2px); }
.wa-hero:hover .wa-hero__cta svg { animation: waArrow 0.9s ease-in-out infinite; }
@keyframes waArrow {
  0%, 100% { transform: translateX(0); }
  50%      { transform: translateX(3px); }
}

/* Divider */
.connect-panel__divider {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 6px 0 -6px;
}
.connect-panel__divider span {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.12), transparent);
}
.connect-panel__divider em {
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--text-dim);
}

/* Social grid */
.social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.social-tile {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  border: 1px solid var(--border);
  background: rgba(20,20,24,0.6);
  text-decoration: none;
  color: var(--text);
  overflow: hidden;
  isolation: isolate;
  transition: border-color .35s ease, transform .5s var(--ease-out, cubic-bezier(.2,.8,.2,1)), background .35s ease;
}
.social-tile::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 140% at 0% 0%, var(--social-glow, rgba(255,106,0,0.18)), transparent 55%);
  opacity: 0;
  transition: opacity .4s ease;
  z-index: -1;
}
.social-tile:hover {
  transform: translateY(-2px);
  border-color: var(--social-color, var(--accent));
  background: rgba(20,20,24,0.85);
}
.social-tile:hover::before { opacity: 1; }

.social-tile__icon {
  flex: 0 0 auto;
  width: 40px; height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--social-color, var(--accent));
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  transition: background .35s ease, border-color .35s ease, transform .5s var(--ease-out, cubic-bezier(.2,.8,.2,1));
}
.social-tile__icon svg { width: 20px; height: 20px; }
.social-tile:hover .social-tile__icon {
  background: var(--social-color, var(--accent));
  color: #000;
  border-color: transparent;
  transform: rotate(-4deg);
}

.social-tile__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.social-tile__platform {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: -0.01em;
}
.social-tile__handle {
  font-family: var(--font-mono);
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.social-tile__arrow {
  margin-left: auto;
  display: inline-flex;
  color: var(--text-muted);
  transition: color .3s ease, transform .4s var(--ease-out, cubic-bezier(.2,.8,.2,1));
}
.social-tile__arrow svg { width: 14px; height: 14px; }
.social-tile:hover .social-tile__arrow {
  color: var(--social-color, var(--accent));
  transform: translate(2px, -2px);
}

/* Per-platform brand colours */
.social-tile--instagram { --social-color: #e1306c; --social-glow: rgba(225, 48, 108, 0.18); }
.social-tile--dribbble  { --social-color: #ea4c89; --social-glow: rgba(234, 76, 137, 0.18); }
.social-tile--behance   { --social-color: #1769ff; --social-glow: rgba(23, 105, 255, 0.20); }
.social-tile--twitter   { --social-color: #ffffff; --social-glow: rgba(255, 255, 255, 0.10); }
.social-tile--linkedin  { --social-color: #0a66c2; --social-glow: rgba(10, 102, 194, 0.22); }
.social-tile--facebook  { --social-color: #1877f2; --social-glow: rgba(24, 119, 242, 0.22); }
.social-tile--youtube   { --social-color: #ff0033; --social-glow: rgba(255, 0, 51, 0.20); }
.social-tile--tiktok    { --social-color: #25f4ee; --social-glow: rgba(37, 244, 238, 0.18); }
.social-tile--github    { --social-color: #ffffff; --social-glow: rgba(255, 255, 255, 0.10); }

@media (max-width: 600px) {
  .social-grid { grid-template-columns: 1fr; }
  .wa-hero__icon { width: 54px; height: 54px; }
  .wa-hero__icon svg { width: 26px; height: 26px; }
}
