:root {
    --bg: #FAFAFA;
    --surface: #FFFFFF;
    --text: #101010;
    --text-muted: #666666;
    --green: #234E35;
    --green-light: #F0F5F2;
    --border: #EBEBEB;
    --radius-md: 24px;
    --radius-pill: 100px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

body {
    font-family: 'Satoshi', sans-serif;
    background: var(--bg);
    color: var(--text);
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

a {
    text-decoration: none;
    color: inherit;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* Navbar (Minimal for contact page) */
.navbar {
    padding: 24px 5vw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid var(--border);
    background: var(--surface);
}

.logo {
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.04em;
}

.logo span {
    color: var(--green);
}

.back-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.2s;
}

.back-link:hover {
    color: var(--text);
}

/* Layout */
.contact-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 80px 5vw;
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    width: 100%;
}

/* Left Side */
.contact-text h1 {
    font-size: clamp(3rem, 5vw, 5rem);
    font-weight: 500;
    letter-spacing: -0.03em;
    line-height: 1;
    margin-bottom: 24px;
}

.contact-text p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 60px;
    max-width: 400px;
    line-height: 1.6;
}

.info-block {
    margin-bottom: 32px;
}

.info-block h5 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin-bottom: 8px;
}

.info-block p {
    font-size: 1.25rem;
    font-weight: 500;
}

/* Form Side */
.contact-form-card {
    background: var(--surface);
    padding: 60px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.03);
}

.form-group {
    margin-bottom: 32px;
}

.form-group label {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 12px;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 16px 20px;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    transition: border-color 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--green);
}

select.form-control {
    appearance: none;
    cursor: pointer;
}

.select-wrapper {
    position: relative;
}

.select-wrapper::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23101010' 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-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    padding: 18px;
    border-radius: var(--radius-pill);
    background: var(--text);
    color: var(--bg);
    font-size: 1.1rem;
    font-weight: 500;
    transition: background 0.3s;
    margin-top: 16px;
}

.btn-submit:hover {
    background: var(--green);
}

.btn-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* Success Message */
.success-message {
    display: none;
    background: var(--green-light);
    color: var(--green);
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    font-weight: 500;
    margin-top: 24px;
}

@media (max-width: 900px) {
    .contact-inner {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .contact-form-card {
        padding: 40px 24px;
    }
}

/* Page Transition Overlay */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--green);
    z-index: 9999;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}

.transition-logo {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.04em;
    color: var(--surface);
}

.transition-logo span {
    color: var(--green-light);
}