/* Modern Contact Page Styles */
:root {
    --contact-bg: #0b0c10;
    --contact-surface: rgba(255, 255, 255, 0.03);
    --contact-surface-hover: rgba(255, 255, 255, 0.06);
    --contact-border: rgba(255, 255, 255, 0.1);
    --contact-text: #c5c6c7;
    --contact-heading: #ffffff;
    --contact-primary: #f2a900; /* Gold/Amber to match branding */
    --contact-primary-glow: rgba(242, 169, 0, 0.2);
}

.contact-hero {
    padding: 120px 0 60px;
    text-align: center;
    background: linear-gradient(to bottom, #000000, var(--contact-bg));
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    height: 60vw;
    background: radial-gradient(circle, var(--contact-primary-glow) 0%, transparent 70%);
    opacity: 0.5;
    z-index: 0;
    pointer-events: none;
}

.contact-hero .wrap {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 24px;
}

.contact-hero .eyebrow {
    display: inline-block;
    font-family: 'JetBrains Mono', monospace;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--contact-primary);
    margin-bottom: 16px;
    animation: fadeInDown 0.8s ease;
}

.contact-hero h1 {
    font-family: 'Sora', sans-serif;
    font-size: 3.5rem;
    font-weight: 300;
    color: var(--contact-heading);
    margin-bottom: 24px;
    line-height: 1.1;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.contact-hero .lede {
    font-size: 1.125rem;
    color: var(--contact-text);
    line-height: 1.6;
    animation: fadeInUp 0.8s ease 0.4s both;
}

.modern-contact-section {
    background-color: var(--contact-bg);
    padding: 40px 0 100px;
    color: var(--contact-text);
}

.modern-contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

@media (min-width: 992px) {
    .modern-contact-grid {
        grid-template-columns: 350px 1fr;
        gap: 60px;
    }
}

/* Sidebar info */
.modern-contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    animation: fadeInLeft 0.8s ease 0.6s both;
}

.info-card {
    padding: 32px;
    background: var(--contact-surface);
    border: 1px solid var(--contact-border);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.info-card:hover {
    background: var(--contact-surface-hover);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
}

.info-card .icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: rgba(242, 169, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--contact-primary);
}

.info-card h4 {
    font-family: 'Sora', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--contact-heading);
    margin-bottom: 12px;
}

.info-card p, .info-card a {
    font-size: 1rem;
    color: var(--contact-text);
    text-decoration: none;
    line-height: 1.5;
    transition: color 0.3s;
}

.info-card a:hover {
    color: var(--contact-primary);
}

/* Form Container */
.modern-form-wrapper {
    background: var(--contact-surface);
    border: 1px solid var(--contact-border);
    border-radius: 24px;
    padding: 40px;
    backdrop-filter: blur(20px);
    animation: fadeInRight 0.8s ease 0.6s both;
}

.modern-form-wrapper h3 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    font-weight: 300;
    color: var(--contact-heading);
    margin-bottom: 32px;
}

.modern-form {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 768px) {
    .modern-form {
        grid-template-columns: 1fr 1fr;
    }
    .full-width {
        grid-column: 1 / -1;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--contact-heading);
    letter-spacing: 0.5px;
}

.form-group label .required {
    color: var(--contact-primary);
}

.modern-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--contact-border);
    color: var(--contact-heading);
    padding: 16px;
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.3s ease;
}

.modern-input:focus {
    outline: none;
    border-color: var(--contact-primary);
    box-shadow: 0 0 0 4px var(--contact-primary-glow);
    background: rgba(0, 0, 0, 0.4);
}

.modern-input::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

textarea.modern-input {
    resize: vertical;
    min-height: 120px;
}

select.modern-input {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/200.svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='%23c5c6c7' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    background-size: 16px;
}

select.modern-input option {
    background: #111;
    color: #fff;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.checkbox-group input {
    width: 20px;
    height: 20px;
    accent-color: var(--contact-primary);
    margin-top: 2px;
}

.checkbox-group span {
    font-size: 0.875rem;
    line-height: 1.5;
    color: var(--contact-text);
}

.checkbox-group a {
    color: var(--contact-heading);
    text-decoration: underline;
}

.checkbox-group a:hover {
    color: var(--contact-primary);
}

.modern-submit {
    background: var(--contact-primary);
    color: #000;
    font-family: 'Sora', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    padding: 16px 32px;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 16px;
}

.modern-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px var(--contact-primary-glow);
    background: #f5b726;
}

.modern-submit svg {
    transition: transform 0.3s;
}

.modern-submit:hover svg {
    transform: translateX(4px);
}

.form-error {
    color: #ff4d4d;
    font-size: 0.85rem;
    margin-top: 4px;
    display: none;
}
.form-error.visible {
    display: block;
}

#contact-success {
    text-align: center;
    padding: 60px 20px;
    background: rgba(20, 20, 25, 0.8);
    border: 1px solid var(--contact-border);
    border-radius: 24px;
    animation: fadeIn 0.5s ease;
}

#contact-success svg {
    color: #4CAF50;
    width: 64px;
    height: 64px;
    display: block;
}
#contact-success h2 {
    font-family: 'Sora', sans-serif;
    font-size: 2rem;
    color: #fff;
    margin-bottom: 16px;
}
#contact-success p {
    color: var(--contact-text);
    font-size: 1.1rem;
}

@keyframes fadeInDown {
    from { opacity: 0; transform: translateY(-20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
