:root {
    --gold: #d4af37;
    --gold-grad: linear-gradient(135deg, #d4af37 0%, #f9e29b 50%, #aa841e 100%);
    --black: #0a0a0a;
    --black-card: #121212;
    --header-h: 70px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
body { background: var(--black); color: #fff; font-family: 'Outfit', sans-serif; overflow-x: hidden; }

/* HEADER & LOGO FIX */
.header {
    height: var(--header-h);
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    position: fixed; width: 100%; top: 0; z-index: 1000;
    display: flex; align-items: center; backdrop-filter: blur(10px);
}
.header-container {
    max-width: 1200px; width: 100%; margin: 0 auto;
    padding: 0 2rem; display: flex; justify-content: space-between; align-items: center;
}
.logo { display: flex; align-items: center; text-decoration: none; gap: 10px; }
.logo img { height: 30px; width: auto; } /* FIXED LOGO SIZE */
.logo-text { font-weight: 700; font-size: 1.1rem; background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* DESKTOP NAV */
.nav { display: flex; gap: 1.5rem; align-items: center; }
.nav a { color: #fff; text-decoration: none; font-size: 0.9rem; transition: 0.3s; }
.nav a:hover { color: var(--gold); }
.nav-cta { background: var(--gold-grad); padding: 7px 18px; border-radius: 4px; color: #000 !important; font-weight: 600; }

/* HAMBURGER TOGGLE */
.menu-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.bar { width: 22px; height: 2px; background: var(--gold); transition: 0.3s; }

/* HERO */
.contact-hero { padding: 140px 2rem 40px; text-align: center; }
.contact-hero h1 { font-size: 2.5rem; margin-bottom: 10px; }
.gold-text { background: var(--gold-grad); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }

/* FORM & CARDS */
.contact-channels { max-width: 1100px; margin: 40px auto; padding: 0 2rem; }
.channels-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
.channel-card { background: var(--black-card); padding: 30px; border-radius: 12px; border: 1px solid #222; text-align: center; }
.icon-box { font-size: 2rem; margin-bottom: 10px; }
.contact-link { color: var(--gold); text-decoration: none; font-weight: 600; font-size: 0.9rem; }

.form-container { max-width: 700px; margin: 40px auto 100px; background: var(--black-card); padding: 40px; border-radius: 15px; border: 1px solid #222; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 15px; }
.form-group { margin-bottom: 20px; text-align: left; }
label { display: block; font-size: 0.8rem; color: var(--gold); text-transform: uppercase; margin-bottom: 5px; }
input, select, textarea { width: 100%; padding: 12px; background: #000; border: 1px solid #333; color: #fff; border-radius: 5px; font-family: inherit; }

.cta { width: 100%; padding: 15px; background: var(--gold-grad); border: none; font-weight: 700; cursor: pointer; position: relative; }
.loader { display: none; width: 20px; height: 20px; border: 2px solid #000; border-top: 2px solid transparent; border-radius: 50%; animation: spin 0.8s linear infinite; margin: 0 auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* SUCCESS TICKET */
.success-ticket { text-align: center; animation: fadeIn 0.5s; }
.ticket-details { background: #000; padding: 20px; border: 1px dashed var(--gold); margin: 20px 0; }
.status-badge { color: #0f0; font-size: 0.8rem; background: #111; padding: 2px 8px; }
.cta-outline { background: transparent; border: 1px solid var(--gold); color: var(--gold); padding: 10px 20px; cursor: pointer; }

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .menu-toggle { display: flex; z-index: 1001; }
    .nav { position: fixed; top: 0; right: -100%; height: 100vh; width: 70%; background: #0a0a0a; flex-direction: column; justify-content: center; transition: 0.4s; border-left: 1px solid #222; }
    .nav.open { right: 0; }
    .form-row { grid-template-columns: 1fr; }
    /* Hamburger to X */
    .menu-toggle.active .bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
    .menu-toggle.active .bar:nth-child(2) { opacity: 0; }
    .menu-toggle.active .bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
}

/* REVEAL ANIMATIONS */
.reveal, .reveal-up { opacity: 0; transform: translateY(20px); transition: 0.6s ease; }
.active { opacity: 1; transform: translateY(0); }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.channel-card a {
    color: #FFD700; /* Standard Gold hex code */
    font-weight: bold;
    text-decoration: none; /* Removes the underline if desired */
}

/* Optional: Add a hover effect so users know it's clickable */
.channel-card a:hover {
    color: #FFC107; /* A slightly different gold/amber on hover */
    text-decoration: underline;
}