﻿/* --------------------------------------------------
   4473 TRANSFERS PAGE — EXTRACTED PAGE-SPECIFIC CSS
-------------------------------------------------- */

:root {
  --bg-dark: #0b0b0b;
  --text-light: #f5f5f5;
  --accent-red: #ff0000;
  --accent-gold: #ff9900;
  --font-header: 'Oswald', sans-serif;
  --font-body: 'Inter', sans-serif;
}

/* HERO */
.hero {
  text-align: center;
  padding: 2rem 1rem;
  background-color: #000;
  position: relative;
  overflow: hidden;
}

.hero img {
  max-width: 100%;
  height: auto;
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 20px rgba(255,153,0,0.3);
  margin-bottom: 1rem;
}

.hero::after {
  /* Overlay removed - image displays naturally without sepia/orange tint */
  display: none;
}

.hero h2 {
  font-size: 2.5rem;
  font-family: var(--font-header);
  color: var(--accent-gold);
  margin-bottom: 0.5rem;
  position: relative;
  z-index: 2;
}

.hero p {
  font-size: 1.2rem;
  color: var(--text-light);
  position: relative;
  z-index: 2;
}

/* SECTION WRAPPER */
section {
  padding: 2rem;
  max-width: 1000px;
  margin: auto;
  text-align: center;
}

/* TITLES */
.section-title {
  font-size: 2rem;
  font-family: var(--font-header);
  color: var(--accent-red);
  margin-bottom: 1rem;
}

/* GRID + CARDS */
.grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  justify-content: center;
}

.card {
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 1.5rem;
  flex: 1 1 300px;
  max-width: 400px;
  text-align: center;
  border-radius: 10px;
}

.card h3 {
  font-family: var(--font-header);
  font-size: 1.5rem;
  color: var(--accent-gold);
}

.card p {
  font-size: 1rem;
  color: var(--text-light);
}

/* CONTACT BOXES */
.contact-box {
  background-color: #1a1a1a;
  border: 1px solid #333;
  padding: 2rem;
  border-radius: 10px;
  margin-top: 1rem;
  text-align: left;
}

.contact-box p {
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

/* CTA BUTTONS */
.cta {
  text-align: center;
}

.cta a,
.cta button {
  display: inline-block;
  background-color: var(--accent-red);
  color: #fff;
  padding: 1rem 2rem;
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 8px;
  transition: background 0.3s;
  margin-top: 1.5rem;
  border: none;
  cursor: pointer;
}

.cta a:hover,
.cta button:hover {
  background-color: #cc0000;
}

/* FORM STYLING */
.transfer-form input,
.transfer-form textarea {
  width: 100%;
  padding: 0.8rem;
  margin-bottom: 1rem;
  border-radius: 6px;
  border: 1px solid #333;
  background: #111;
  color: #fff;
  font-family: var(--font-body);
}

.transfer-form textarea {
  resize: vertical;
}

/* MAP WRAPPER */
.map-wrapper {
  border: 2px solid var(--accent-gold);
  box-shadow: 0 0 20px rgba(255,153,0,0.3);
  border-radius: 8px;
  overflow: hidden;
  max-width: 900px;
  margin: auto;
}

/* CHECKMARK ANIMATION */
.check-animate p {
  position: relative;
  padding-left: 1.4rem;
}

.check-animate .checkmark {
  display: inline-block;
  width: 1.2rem;
  font-family: 'Inter', sans-serif !important;
  font-weight: 600;
  color: var(--text-light);
  will-change: color;
}

.check-animate.animate-now .checkmark {
  animation: waveCycle 6s ease-in-out infinite;
}

.check-animate.animate-now p:nth-child(1) .checkmark { animation-delay: 0.0s; }
.check-animate.animate-now p:nth-child(2) .checkmark { animation-delay: 0.4s; }
.check-animate.animate-now p:nth-child(3) .checkmark { animation-delay: 0.8s; }
.check-animate.animate-now p:nth-child(4) .checkmark { animation-delay: 1.2s; }
.check-animate.animate-now p:nth-child(5) .checkmark { animation-delay: 1.6s; }

@keyframes waveCycle {
  0%   { color: var(--text-light); }
  20%  { color: #00cc44; }
  55%  { color: #00cc44; }
  75%  { color: var(--text-light); }
  100% { color: var(--text-light); }
}

/* RESPONSIVE */
@media (max-width: 768px) {
  .grid {
    flex-direction: column;
    align-items: center;
  }
}