.contact-page {
    margin-top: 80px;
    background: white;
    color: #282c34;
    min-height: calc(100vh - 80px);
}

/* Hero */
.contact-hero {
    padding: 5rem 10% 2rem;
    text-align: center;
}

.contact-hero h2 {
    font-size: 2.5rem;
    color: #282c34;
    margin-bottom: 1rem;
}

.contact-hero .divider {
    width: 80px;
    height: 3px;
    background: #609981;
    margin: 0 auto 2rem;
}

.contact-summary {
    max-width: 720px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

/* Form Section */
.contact-form-section {
    padding: 0 10% 5rem;
    max-width: 640px;
    margin: 0 auto;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #999;
    font-weight: 600;
}

.form-group input,
.form-group textarea {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 1rem;
    font-family: 'Arial', sans-serif;
    color: #282c34;
    background: #fafafa;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #609981;
    box-shadow: 0 0 0 3px rgba(96, 153, 129, 0.15);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #bbb;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
}

.submit-btn {
    padding: 0.9rem 2rem;
    background: #609981;
    color: white;
    border: none;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.2s ease;
    align-self: flex-start;
}

.submit-btn:hover {
    background: #4c7a67;
    transform: translateY(-2px);
}

/* Mobile */
@media (max-width: 768px) {
    .contact-hero {
        padding: 3rem 6% 1.5rem;
    }

    .contact-hero h2 {
        font-size: 2rem;
    }

    .contact-form-section {
        padding: 0 6% 4rem;
    }

    .submit-btn {
        width: 100%;
        text-align: center;
    }
}
