
:root {
  --pink:       #e6007e;
  --blue:       #009fe3;
  --teal:       #27cfc3;
  --grad:       linear-gradient(135deg, #e6007e 0%, #009fe3 100%);
  --dark:       #0d0d0d;
  --dark-600:   #1a1a1a;
  --dark-500:   #242424;
  --dark-400:   #2e2e2e;
  --dark-300:   #3a3a3a;
  --grey-500:   #676767;
  --grey-400:   #888888;
  --grey-100:   #e0e0e0;
  --white:      #ffffff;

  --font-display: 'Bebas Neue', 'Arial Black', sans-serif;
  --font-serif:   'EB Garamond', Georgia, serif;
  --font-heading: 'Poppins', system-ui, sans-serif;
  --font-body:    'Poppins', system-ui, sans-serif;
  --font-input:   'Poppins', system-ui, sans-serif;

  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  --grid-max:    2000px;
  --grid-margin: clamp(24px, 5vw, 80px);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  background: var(--dark);
  color: var(--grey-100);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════
   NEON BLUR ORBS
   ═══════════════════════════════════════════════════════════ */

.neon-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  pointer-events: none;
  will-change: transform;
}

.neon-orb--1 {
  width: clamp(300px, 40vw, 700px);
  height: clamp(300px, 40vw, 700px);
  background: radial-gradient(circle, rgba(230,0,126,0.35) 0%, rgba(230,0,126,0.1) 40%, transparent 70%);
  top: -10%;
  left: -8%;
  animation: orbDrift1 14s ease-in-out infinite;
}

.neon-orb--2 {
  width: clamp(200px, 28vw, 500px);
  height: clamp(200px, 28vw, 500px);
  background: radial-gradient(circle, rgba(0,159,227,0.25) 0%, rgba(0,159,227,0.06) 40%, transparent 70%);
  bottom: -10%;
  right: -5%;
  animation: orbDrift2 18s ease-in-out infinite;
}

@keyframes orbDrift1 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(50px, -60px) scale(1.1); }
  66%  { transform: translate(-30px, 30px) scale(0.95); }
  100% { transform: translate(0, 0) scale(1); }
}

@keyframes orbDrift2 {
  0%   { transform: translate(0, 0) scale(1); }
  33%  { transform: translate(-40px, 40px) scale(1.08); }
  66%  { transform: translate(50px, -20px) scale(0.92); }
  100% { transform: translate(0, 0) scale(1); }
}

/* ═══════════════════════════════════════════════════════════
   CONTACT FORM SECTION
   ═══════════════════════════════════════════════════════════ */

.contact {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) var(--grid-margin);
}

.contact-inner {
  position: relative;
  z-index: 1;
  max-width: var(--grid-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(32px, 4vw, 48px);
  align-items: start;
  text-align: center;
}

/* ─── LEFT: INTRO COLUMN ────────────────────────────────── */

.contact-intro {
  padding-top: 16px;
  text-align: center;
}

.contact-eyebrow {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  justify-content: center;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-eyebrow::before {
  content: '';
  width: 32px;
  height: 2px;
  background: var(--grad);
  flex-shrink: 0;
}

.contact-headline {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5rem);
  letter-spacing: 0.04em;
  line-height: 0.92;
  color: var(--white);
  margin-bottom: 20px;
}

.contact-headline em {
  font-style: normal;
  background: var(--grad);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.contact-sub {
  font-family: var(--font-serif);
  font-size: clamp(16px, 1.6vw, 1.2rem);
  font-style: italic;
  font-weight: 400;
  color: var(--grey-400);
  line-height: 1.7;
  max-width: 440px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}

.contact-details {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 16px;
}

.contact-detail-icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--dark-400);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: border-color 0.3s ease, background 0.3s ease;
}

.contact-detail:hover .contact-detail-icon {
  border-color: rgba(230,0,126,0.3);
  background: rgba(230,0,126,0.06);
}

.contact-detail-icon svg {
  width: 18px;
  height: 18px;
  stroke: var(--pink);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-detail-text {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--grey-100);
  line-height: 1.4;
}

.contact-detail-label {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--grey-500);
  margin-bottom: 2px;
}

/* ─── RIGHT: FORM CARD ──────────────────────────────────── */

.cf-card {
  background: var(--dark-600);
  border: 1px solid var(--dark-400);
  border-radius: 16px;
  padding: clamp(32px, 4vw, 56px);
  position: relative;
  overflow: hidden;
  text-align: left;
  max-width: 65%;
  margin: 0 auto;
  width: 100%;
}


.cf-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.04em;
  color: var(--white);
  margin-bottom: 6px;
}

.cf-subtitle {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--grey-500);
  line-height: 1.6;
  margin-bottom: 32px;
}

/* Success / Error banners */
.cf-success, .cf-error {
  display: none;
  padding: 14px 18px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  line-height: 1.5;
}

.cf-success {
  background: rgba(39,207,195,0.08);
  border: 1px solid rgba(39,207,195,0.25);
  color: var(--teal);
}

.cf-error {
  background: rgba(230,0,126,0.06);
  border: 1px solid rgba(230,0,126,0.25);
  color: #ff4a9e;
}

.cf-success.show, .cf-error.show { display: block; }

/* Honeypot */
.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

/* Two-column row */
.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* Fields */
.cf-field { margin-bottom: 20px; }

.cf-field > label:first-child {
  display: block;
  font-family: var(--font-heading);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-100);
  margin-bottom: 8px;
}

.cf-field > label .req { color: var(--pink); }
.cf-field > label .opt { font-weight: 400; color: var(--grey-500); text-transform: none; letter-spacing: 0; }

.cf-field input[type="text"],
.cf-field input[type="email"],
.cf-field input[type="tel"],
.cf-field textarea {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid var(--dark-400);
  border-radius: 4px;
  padding: 12px 14px;
  color: var(--grey-100);
  font-family: var(--font-body);
  font-size: 14px;
  line-height: 1.5;
  outline: none;
  transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.2s var(--ease-out);
}

.cf-field input[type="text"]:focus,
.cf-field input[type="email"]:focus,
.cf-field input[type="tel"]:focus,
.cf-field textarea:focus {
  border-color: var(--pink);
  background: rgba(255,255,255,0.06);
  box-shadow: 0 0 0 3px rgba(230,0,126,0.1);
}

.cf-field input::placeholder,
.cf-field textarea::placeholder { color: rgba(255,255,255,0.18); }

.cf-field textarea { min-height: 120px; resize: vertical; }

.cf-field input.invalid,
.cf-field textarea.invalid {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(230,0,126,0.1);
  animation: cfShake 0.4s ease;
}

@keyframes cfShake {
  0%, 100% { transform: translateX(0); }
  20% { transform: translateX(-6px); }
  40% { transform: translateX(5px); }
  60% { transform: translateX(-4px); }
  80% { transform: translateX(3px); }
}

/* Divider */
.cf-divider {
  border: none;
  border-top: 1px solid var(--dark-400);
  margin: 24px 0;
}

/* Services grid — pill toggle tiles */
.cf-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.cf-services-grid label {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--grey-400);
  cursor: pointer;
  padding: 12px 14px;
  background: rgba(255,255,255,0.02);
  border: 1.5px solid var(--dark-400);
  border-radius: 8px;
  transition: border-color 0.25s ease, background 0.25s ease, color 0.25s ease, transform 0.2s var(--ease-out), box-shadow 0.25s ease;
  text-align: center;
  user-select: none;
}

.cf-services-grid label:hover {
  border-color: rgba(230,0,126,0.3);
  color: var(--grey-100);
  transform: translateY(-1px);
}

.cf-services-grid input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.cf-services-grid label:has(input:checked) {
  border-color: var(--pink);
  background: rgba(230,0,126,0.1);
  color: var(--white);
  box-shadow: 0 0 16px rgba(230,0,126,0.12);
}

/* Footer: consent + submit */
.cf-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
}

/* Consent checkbox */
.cf-checkbox {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.cf-checkbox input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  width: 22px;
  height: 22px;
  border: 2px solid var(--dark-300);
  border-radius: 6px;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.25s ease;
  position: relative;
  background: transparent;
}

.cf-checkbox input[type="checkbox"]:checked {
  background: var(--pink);
  border-color: var(--pink);
}

.cf-checkbox input[type="checkbox"]:checked::after {
  content: '\2713';
  position: absolute;
  top: 0;
  left: 3px;
  font-size: 13px;
  font-weight: 900;
  color: var(--white);
}

.cf-checkbox input[type="checkbox"]:hover {
  border-color: rgba(230,0,126,0.5);
}

.cf-checkbox input[type="checkbox"].invalid {
  border-color: var(--pink);
  animation: cfShake 0.4s ease;
}

.cf-checkbox label {
  font-family: var(--font-input);
  font-size: 12px;
  color: var(--grey-500);
  cursor: pointer;
  line-height: 1.4;
}

/* Submit button */
.cf-submit {
  width: auto;
  padding: 16px 48px;
  background: var(--grad);
  background-size: 200% 200%;
  color: var(--white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  flex-shrink: 0;
  outline: 2px solid transparent;
  outline-offset: 3px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease, outline-color 0.3s ease;
  animation: cfGrad 8s ease infinite;
}

@keyframes cfGrad {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.cf-submit:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 8px 32px rgba(0,159,227,0.35), 0 0 20px rgba(0,159,227,0.25);
  outline-color: rgba(0,159,227,0.8);
}

.cf-submit:active { transform: translateY(0) scale(1); }
.cf-submit:disabled { opacity: 0.4; cursor: not-allowed; transform: none; animation: none; }

/* ═══════════════════════════════════════════════════════════
   SCROLL REVEAL
   ═══════════════════════════════════════════════════════════ */

.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ═══════════════════════════════════════════════════════════
   BREAKPOINTS
   ═══════════════════════════════════════════════════════════ */

@media (max-width: 1800px) {
  :root { --grid-margin: clamp(24px, 4.5vw, 72px); }
}

@media (max-width: 1600px) {
  .contact-headline { font-size: clamp(2.6rem, 4.5vw, 4.2rem); }
}

@media (max-width: 1400px) {
  .contact-headline { font-size: clamp(2.4rem, 4vw, 3.6rem); }
}

@media (max-width: 1200px) {
  :root { --grid-margin: clamp(20px, 4vw, 56px); }
  .contact-inner { gap: clamp(32px, 4vw, 56px); }
}

@media (max-width: 1000px) {
  :root { --grid-margin: clamp(20px, 3.5vw, 40px); }
  .contact-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }
  .contact-intro { text-align: center; }
  .contact-eyebrow { justify-content: center; }
  .contact-sub { margin-left: auto; margin-right: auto; }
  .contact-details {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }
}

@media (max-width: 800px) {
  :root { --grid-margin: 24px; }
  .cf-card { max-width: 100%; }
  .cf-services-grid { grid-template-columns: repeat(2, 1fr); }
  .cf-row { grid-template-columns: 1fr; gap: 0; }
  .cf-footer { flex-direction: column; align-items: stretch; gap: 16px; }
  .cf-submit { width: 100%; text-align: center; }
}

@media (max-width: 600px) {
  :root { --grid-margin: 20px; }
  .contact-headline { font-size: clamp(2rem, 7vw, 2.8rem); }
  .cf-card { padding: 28px 20px 24px; }
  .contact-details { flex-direction: column; align-items: center; }
}

@media (max-width: 400px) {
  :root { --grid-margin: 16px; }
  .contact-headline { font-size: 1.8rem; }
  .cf-services-grid { grid-template-columns: 1fr 1fr; gap: 8px; }
  .cf-services-grid label { font-size: 12px; padding: 10px 10px; }
}

