﻿*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --black: #000000;
    --teal: #008C8C;
    --teal-dark: #006666;
    --orange: #E85224;
    --yellow: #F2C318;
    --cyan: #10B8C8;
    --charcoal: #1F1F1F;
    --white: #FFFFFF;
    --light: #F7F7F7;
    --gray: #E2E2E2;
    --text-muted: #6B6B6B;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5%;
    height: 72px;
    background: rgba(0,0,0,0.92);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,140,140,0.2);
}

.nav-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.25rem;
    color: var(--white);
    letter-spacing: -0.02em;
    text-decoration: none;
}

    .nav-logo span {
        color: var(--teal);
    }

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

    .nav-links a {
        font-size: 0.875rem;
        font-weight: 500;
        color: rgba(255,255,255,0.75);
        text-decoration: none;
        transition: color 0.2s;
    }

        .nav-links a:hover {
            color: var(--teal);
        }

.nav-cta {
    background: var(--teal);
    color: var(--white) !important;
    padding: 0.5rem 1.25rem;
    border-radius: 4px;
}

    .nav-cta:hover {
        background: var(--teal-dark) !important;
    }

/* PAGE HEADER */
.page-header {
    background: var(--black);
    background-image: radial-gradient(ellipse at 80% 50%, rgba(0,140,140,0.18) 0%, transparent 65%);
    padding: 9rem 5% 5rem;
    position: relative;
    overflow: hidden;
}

.page-header-bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}

.page-header-content {
    position: relative;
    z-index: 2;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

    .breadcrumb a {
        font-size: 0.8rem;
        color: rgba(255,255,255,0.4);
        text-decoration: none;
        transition: color 0.2s;
    }

        .breadcrumb a:hover {
            color: var(--teal);
        }

.breadcrumb-sep {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.2);
}

.breadcrumb-current {
    font-size: 0.8rem;
    color: var(--teal);
}

.page-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1rem;
}

.page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 900;
    color: var(--white);
    letter-spacing: -0.02em;
    line-height: 1.08;
    margin-bottom: 1rem;
}

    .page-title em {
        font-style: normal;
        color: var(--teal);
    }

.page-subtitle {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.55);
    max-width: 500px;
    line-height: 1.7;
}

/* MAIN */
.contact-page {
    padding: 5rem 5%;
    background: var(--light);
}

.contact-page-inner {
    display: grid;
    grid-template-columns: 1fr 1.6fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

/* SIDEBAR */
.contact-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--white);
    border: 1.5px solid var(--gray);
    border-radius: 8px;
    padding: 1.75rem;
}

.sidebar-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 1.1rem;
}

.expect-item {
    display: flex;
    align-items: flex-start;
    gap: 0.875rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray);
}

    .expect-item:last-child {
        border-bottom: none;
        padding-bottom: 0;
    }

    .expect-item:first-of-type {
        padding-top: 0;
    }

.expect-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--teal);
    margin-top: 0.35rem;
    flex-shrink: 0;
}

.expect-text {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.6;
}

    .expect-text strong {
        color: var(--black);
    }

.industry-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.industry-chip {
    background: var(--light);
    border: 1px solid var(--gray);
    border-radius: 100px;
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--black);
}

.dark-card {
    background: var(--charcoal);
    border: 1px solid rgba(0,140,140,0.2);
    border-radius: 8px;
    padding: 1.75rem;
}

.dark-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--cyan);
    margin-bottom: 0.75rem;
}

.dark-card-body {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.65;
}

    .dark-card-body a {
        color: var(--teal);
        text-decoration: none;
    }

/* FORM CARD */
.form-card {
    background: var(--white);
    border: 1.5px solid var(--gray);
    border-radius: 10px;
    padding: 3rem;
}

.form-card-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--black);
    letter-spacing: -0.02em;
    margin-bottom: 0.4rem;
}

.form-card-sub {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    line-height: 1.6;
}

.form-divider {
    height: 1px;
    background: var(--gray);
    margin-bottom: 2rem;
}

.form-section-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    margin-bottom: 1.25rem;
}

    .form-group label {
        font-family: 'Montserrat', sans-serif;
        font-size: 0.7rem;
        font-weight: 700;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--black);
    }

.required {
    color: var(--orange);
    margin-left: 2px;
}

.form-group input, .form-group select, .form-group textarea {
    background: var(--light);
    border: 1.5px solid var(--gray);
    border-radius: 4px;
    padding: 0.8rem 1rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--black);
    outline: none;
    transition: border-color 0.2s, background 0.2s;
    width: 100%;
    appearance: none;
}

    .form-group input:focus, .form-group select:focus, .form-group textarea:focus {
        border-color: var(--teal);
        background: var(--white);
    }

    .form-group input::placeholder, .form-group textarea::placeholder {
        color: #ABABAB;
    }

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.select-wrapper {
    position: relative;
}

    .select-wrapper::after {
        content: '\25BE';
        position: absolute;
        right: 1rem;
        top: 50%;
        transform: translateY(-50%);
        color: var(--text-muted);
        pointer-events: none;
    }

.field-error {
    font-size: 0.75rem;
    color: var(--orange);
    margin-top: 0.25rem;
    display: none;
}

.input-error {
    border-color: var(--orange) !important;
}

.char-count {
    font-size: 0.72rem;
    color: var(--text-muted);
    text-align: right;
    margin-top: 0.25rem;
}

/* ALERTS */
.alert {
    border-radius: 6px;
    padding: 1rem 1.25rem;
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    line-height: 1.5;
    display: none;
}

.alert-error {
    background: rgba(232,82,36,0.07);
    border: 1.5px solid rgba(232,82,36,0.3);
    color: #a83a18;
}

.alert-success-banner {
    background: rgba(0,140,140,0.08);
    border: 1.5px solid rgba(0,140,140,0.3);
    color: var(--teal-dark);
}

/* SUBMIT */
.form-submit-area {
    margin-top: 2rem;
    padding-top: 1.75rem;
    border-top: 1px solid var(--gray);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.form-disclaimer {
    font-size: 0.75rem;
    color: var(--text-muted);
    max-width: 280px;
    line-height: 1.5;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--orange);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.875rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.9rem 2.25rem;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: background 0.2s, transform 0.15s;
}

    .btn-submit:hover {
        background: #c9431a;
        transform: translateY(-1px);
    }

    .btn-submit:disabled {
        background: var(--gray);
        color: var(--text-muted);
        cursor: not-allowed;
        transform: none;
    }

/* HONEYPOT - must be invisible to real users */
.hp-field {
    opacity: 0;
    position: absolute;
    top: 0;
    left: 0;
    height: 0;
    width: 0;
    z-index: -1;
    overflow: hidden;
}

.recaptcha-note {
    font-size: 0.72rem;
    color: var(--text-muted);
    margin-top: 0.75rem;
}

    .recaptcha-note a {
        color: var(--teal);
        text-decoration: none;
    }

/* SUCCESS ICON text fallback */
.success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(0,140,140,0.1);
    border: 2px solid rgba(0,140,140,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--teal);
}

.success-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--black);
    margin-bottom: 0.75rem;
}

.success-body {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
    max-width: 380px;
    margin: 0 auto 2rem;
}

.btn-back {
    display: inline-block;
    border: 1.5px solid var(--teal);
    color: var(--teal);
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    border-radius: 4px;
    text-decoration: none;
    transition: all 0.2s;
}

    .btn-back:hover {
        background: rgba(0,140,140,0.08);
    }

/* FOOTER */
footer {
    background: var(--black);
    padding: 4rem 5% 2.5rem;
    border-top: 1px solid rgba(0,140,140,0.2);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    margin-bottom: 2rem;
}

.footer-logo {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 1.35rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

    .footer-logo span {
        color: var(--teal);
    }

.footer-tagline {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.35);
    line-height: 1.6;
    max-width: 280px;
}

.footer-col-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
    margin-bottom: 1.25rem;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

    .footer-links a {
        font-size: 0.875rem;
        color: rgba(255,255,255,0.6);
        text-decoration: none;
        transition: color 0.2s;
    }

        .footer-links a:hover {
            color: var(--teal);
        }

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.25);
}

.footer-teal {
    color: var(--teal);
}

/* RESPONSIVE */
@media (max-width: 900px) {
    .contact-page-inner {
        grid-template-columns: 1fr;
    }

    .contact-sidebar {
        position: static;
    }

    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .nav-links {
        display: none;
    }
}

@media (max-width: 600px) {
    .form-grid {
        grid-template-columns: 1fr;
    }

    .form-card {
        padding: 1.75rem;
    }

    .form-submit-area {
        flex-direction: column;
        align-items: stretch;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}
