/* outreach/contact.css
   Modern, Sleek, and Compact Contact Page Design
   Redesigned: 2026-01-13
*/

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400..900;1,400..900&family=Outfit:wght@100..900&display=swap');

:root {
    /* Palette - Deep Luxury Tech */
    --bg-page: #FDFBF7;
    --bg-gradient: radial-gradient(circle at 10% 20%, #FDFBF7 0%, #F2EEE5 90%);

    --text-main: #1A1A1A;
    --text-muted: #555;
    --text-light: #888;

    --accent-gold: #C5A059;
    --accent-gold-dark: #A08040;
    --accent-gold-soft: rgba(197, 160, 89, 0.1);

    --surface-glass: rgba(255, 255, 255, 0.75);
    --surface-glass-border: rgba(255, 255, 255, 0.8);
    --surface-input: #FFFFFF;

    --shadow-float: 0 30px 60px -10px rgba(0, 0, 0, 0.08), 0 10px 30px -5px rgba(197, 160, 89, 0.05);

    /* Typography */
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Outfit', sans-serif;
}

* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-sans);
    color: var(--text-main);
    background-color: var(--bg-page);
    background-image: url('contact-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

h1,
h2,
h3 {
    font-family: var(--font-serif);
    margin: 0;
    color: var(--text-main);
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

/* Header/Nav styles now inherited from pages.css */


/* =========================================
   CONTACT SPECIFIC STYLES - The New Look
   ========================================= */

#main {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem 1rem;
    position: relative;
    overflow: hidden;
}

/* Background Accents */
#main::before,
#main::after {
    content: '';
    position: absolute;
    width: 60vh;
    height: 60vh;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-gold-soft) 0%, transparent 70%);
    filter: blur(80px);
    z-index: -1;
    pointer-events: none;
}

#main::before {
    top: -10%;
    left: -10%;
    opacity: 0.6;
}

#main::after {
    bottom: -10%;
    right: -10%;
    opacity: 0.4;
}


.contact-container {
    width: 100%;
    max-width: 1000px;
    z-index: 10;
}

.contact-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    background: var(--surface-glass);
    border: 1px solid var(--surface-glass-border);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 2rem;
    box-shadow: var(--shadow-float);
    overflow: hidden;
    position: relative;
}

.contact-card-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, transparent 100%);
}

/* Left: Contact Info */
.contact-info {
    padding: 4rem 3rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), rgba(255, 255, 255, 0.1));
}

.info-header {
    margin-bottom: 3rem;
}

.kicker {
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    font-weight: 700;
    color: var(--accent-gold);
    display: block;
    margin-bottom: 1rem;
}

.headline {
    font-size: 3rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
}

.subheadline {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 90%;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.method-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.6);
    padding: 1rem;
    border-radius: 1rem;
    transition: transform 0.2s, background 0.2s;
    border: 1px solid transparent;
}

.method-item:hover {
    transform: translateX(5px);
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(197, 160, 89, 0.3);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
}

.icon-circle {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--surface-glass);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.method-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    font-weight: 600;
}

.value {
    font-weight: 500;
    color: var(--text-main);
    font-size: 1rem;
}

/* Right: Form */
.contact-form-wrapper {
    padding: 4rem 3rem;
    background: var(--surface-input);
}

.input-group {
    position: relative;
    margin-bottom: 2rem;
}

.modern-input,
.modern-textarea {
    width: 100%;
    padding: 1rem 0;
    border: none;
    border-bottom: 1px solid #E0E0E0;
    background: transparent;
    font-family: var(--font-sans);
    font-size: 1.1rem;
    color: var(--text-main);
    transition: border-color 0.3s, background-size 0.3s;
    border-radius: 0;
}

.modern-textarea {
    resize: none;
    min-height: 40px;
    line-height: 1.5;
}

.modern-input:focus,
.modern-textarea:focus {
    outline: none;
    border-bottom-color: var(--accent-gold);
}

/* Floating Labels */
.floating-label {
    position: absolute;
    top: 1rem;
    left: 0;
    font-size: 1.1rem;
    color: var(--text-muted);
    pointer-events: none;
    transition: 0.2s ease all;
}

.modern-input:focus~.floating-label,
.modern-input:not(:placeholder-shown)~.floating-label,
.modern-textarea:focus~.floating-label,
.modern-textarea:not(:placeholder-shown)~.floating-label {
    top: -0.75rem;
    font-size: 0.8rem;
    color: var(--accent-gold-dark);
    font-weight: 600;
}

.btn-submit-modern {
    background: var(--text-main);
    color: white;
    border: none;
    padding: 1.25rem 2.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 1rem;
    border-radius: 999px;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-submit-modern:hover {
    background: var(--accent-gold);
    transform: translateY(-2px);
    box-shadow: 0 15px 35px rgba(197, 160, 89, 0.3);
}

.arrow-icon {
    transition: transform 0.3s ease;
}

.btn-submit-modern:hover .arrow-icon {
    transform: translateX(4px);
}

/* Status Messages */
.form-status {
    padding: 1rem;
    border-radius: 8px;
    margin-bottom: 2rem;
    font-size: 0.95rem;
}


/* Footer styles now inherited from pages.css */

/* Responsiveness */
@media (max-width: 900px) {
    .contact-card {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 3rem 2rem;
        text-align: center;
    }

    .contact-methods {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }

    .info-header {
        margin-bottom: 2rem;
    }

    .headline {
        font-size: 2.5rem;
    }

    .contact-form-wrapper {
        padding: 3rem 2rem;
    }
}

@media (max-width: 600px) {
    .contact-methods {
        flex-direction: column;
        width: 100%;
    }

    .topbar {
        padding: 1rem 0;
    }

    .nav {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }
}