:root {
    --primary-gold: #c5a059;
    --deep-maroon: #630000;
    --matte-black: #0a0a0a;
    --soft-white: #f8f9fa;
    --glass: rgba(255, 255, 255, 0.03);
    --gold-glow: rgba(197, 160, 89, 0.1);
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: #050505;
}

::-webkit-scrollbar-thumb {
    background: var(--deep-maroon);
    border-radius: 10px;
}

body {
    background-color: var(--matte-black);
    color: var(--soft-white);
    font-family: 'Lato', sans-serif;
    overflow-x: hidden;
    line-height: 1.6;
}

/* --- CONTACT SECTION STYLING --- */
.contact-hero {
    padding: 100px 0 60px;
    text-align: center;
}

.gold-title {
    font-family: 'Cinzel', serif;
    color: var(--primary-gold);
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.contact-wrapper {
    background: var(--glass);
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 50px;
    border-radius: 4px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

.info-box {
    margin-bottom: 40px;
}

.info-box i {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 15px;
    display: block;
}

.info-box h5 {
    font-family: 'Cinzel', serif;
    font-size: 0.9rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.info-box p {
    opacity: 0.7;
    font-size: 0.95rem;
}

/* --- FORM STYLING --- */
.form-control {
    background: rgba(255, 255, 255, 0.02);
    border: none;
    border-bottom: 1px solid rgba(197, 160, 89, 0.3);
    border-radius: 0;
    color: white !important;
    padding: 15px 10px;
    margin-bottom: 25px;
    transition: 0.4s;
}

.form-control:focus {
    background: rgba(255, 255, 255, 0.05);
    border-bottom: 1px solid var(--primary-gold);
    box-shadow: none;
    outline: none;
}

/* Buttons */
.btn-premium {
    background: linear-gradient(45deg, var(--deep-maroon), #800000) !important;
    color: white !important;
    border: none !important;
    padding: 14px 45px !important;
    font-size: 0.8rem !important;
    letter-spacing: 3px !important;
    font-weight: 700 !important;
    border-radius: 2px !important;
    transition: 0.5s !important;
    box-shadow: 0 10px 30px rgba(99, 0, 0, 0.3) !important;
    text-transform: uppercase !important;
}

.btn-premium:hover {
    transform: translateY(-5px) !important;
    box-shadow: 0 15px 40px rgba(99, 0, 0, 0.5) !important;
    color: white !important;
    background: linear-gradient(45deg, #800000, var(--deep-maroon)) !important;
}