/* Contact Form Component Styles */
.contact-form-component {
    background-color: #fff;
    padding: 80px 0 100px;
}

.contact-form-title {
    font-family: 'Source Serif 4', serif;
    font-size: 35px;
    font-weight: 400;
    color: #AB844E;
    text-align: center;
    margin: 0 0 60px 0;
}

.contact-form-wrapper {
    max-width: 770px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
}

.contact-form-row-full {
    margin-bottom: 40px;
}

.contact-form-field {
    position: relative;
}

.contact-form-input {
    width: 100%;
    padding: 0 0 10px 0;
    border: none;
    border-bottom: 1px solid #888888;
    background-color: transparent;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: #999999;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.contact-form-input::placeholder {
    color: #CCCCCC;
    font-weight: 300;
}

.contact-form-input:focus {
    outline: none;
    border-bottom-color: #AB844E;
    background-color: transparent;
}

.contact-form-textarea {
    width: 100%;
    padding: 0 0 10px 0;
    border: none;
    border-bottom: 1px solid #888888;
    background-color: transparent;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 16px;
    color: #999999;
    min-height: 80px;
    resize: none;
    box-sizing: border-box;
    transition: border-color 0.3s ease;
}

.contact-form-textarea::placeholder {
    color: #CCCCCC;
    font-weight: 300;
}

.contact-form-textarea:focus {
    outline: none;
    border-bottom-color: #AB844E;
    background-color: transparent;
}

.contact-form-checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 13px;
    color: #AAAAAA;
    cursor: pointer;
    line-height: 1.6;
}

.contact-form-checkbox {
    margin-top: 4px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
    border-radius: 50%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 2px solid #AAAAAA;
    background: transparent;
    position: relative;
}

.contact-form-checkbox:checked {
    background: #AB844E;
    border-color: #AB844E;
}

.contact-form-checkbox:checked::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.contact-form-submit {
    display: flex;
    justify-content: center;
    margin-top: 50px;
}

.contact-form-btn {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 10px 22px 10px 40px;
    background: transparent;
    color: #AB844E;
    border: 2px solid #AB844E;
    border-radius: 60px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 18px;
    font-weight: 400;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease, color 0.3s ease;
}

.contact-form-btn .arrow-circle {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
}

.contact-form-btn .arrow-circle img {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
}

.contact-form-btn .arrow-default {
    opacity: 1;
}

.contact-form-btn .arrow-hover {
    opacity: 0;
}

.contact-form-btn:hover {
    background-color: #d7a461;
    border-color: #d7a461;
    color: #fff;
}

.contact-form-btn:hover .arrow-default {
    opacity: 0;
}

.contact-form-btn:hover .arrow-hover {
    opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-form-component {
        padding: 60px 0 80px;
    }

    .contact-form-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .contact-form-row {
        grid-template-columns: 1fr;
        gap: 30px;
        margin-bottom: 30px;
    }

    .contact-form-row-full {
        margin-bottom: 30px;
    }

    .contact-form-submit {
        margin-top: 40px;
    }
}

@media (max-width: 480px) {
    .contact-form-title {
        font-size: 24px;
    }

    .contact-form-btn {
        width: 100%;
        justify-content: center;
    }
}
