:root {
  --bg-dark: #0b0b0b;
  --bg-soft: #111;
  --bg-card: #141414;
  --text: #eaeaea;
  --muted: #9a9a9a;
  --accent: #f5c400;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Segoe UI", sans-serif;
}

body {
  background: var(--bg-dark);
  color: var(--text);
}

/* .container definition removed to use global.css */

section {
  padding: 90px 0;
}

span {
  color: var(--accent);
}

/* HERO */
.contact-hero {
  text-align: center;
}

.contact-hero h1 {
  font-size: 3rem;
}

.contact-hero p {
  margin-top: 18px;
  color: var(--muted);
}

/* MAIN GRID */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: flex-start;
}

/* INFO */
.contact-info h2 {
  margin-bottom: 15px;
}

.info-desc {
  color: var(--muted);
  margin-bottom: 30px;
  line-height: 1.6;
}

.info-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.info-card {
  background: var(--bg-card);
  padding: 20px;
  border-left: 4px solid var(--accent);
}

.info-card h4 {
  margin-bottom: 6px;
}

/* FORM */
.contact-form {
  background: var(--bg-soft);
  padding: 35px;
}

.contact-form h2 {
  margin-bottom: 10px;
}

.form-note {
  color: var(--muted);
  margin-bottom: 20px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 16px;
  padding: 14px;
  background: #0f0f0f;
  border: 1px solid #222;
  color: var(--text);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.btn {
  width: 100%;
  padding: 14px;
  background: var(--accent);
  color: #000;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

/* CTA */
.contact-cta {
  background: linear-gradient(135deg, #111, #000);
  text-align: center;
}

/* ANIMATION */
.reveal {
  opacity: 0;
  transform: translateY(40px);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
  transition: 0.8s ease;
}

/* RESPONSIVE */
@media(max-width:900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .contact-hero h1 {
    font-size: 2.2rem;
  }

  .info-cards {
    grid-template-columns: 1fr;
  }
}