/* ========================================
   CONTACT PAGE - STYLES
======================================== */

.contact-page {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, #F6F2EE 0%, #ffffff 100%);
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    color: #000000;
    margin-bottom: 20px;
}

.contact-header p {
    font-size: 18px;
    color: #3A3A3A;
    max-width: 600px;
    margin: 0 auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    background-color: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.contact-info {
    background: linear-gradient(135deg, #D3AFC0 0%, #A8B7A0 100%);
    padding: 50px 40px;
    color: #ffffff;
}

.contact-info h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #ffffff;
    margin-bottom: 15px;
}

.contact-info p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    font-size: 15px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 22px;
    color: #ffffff;
}

.info-details h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 5px;
}

.info-details p,
.info-details a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
}

.info-details a:hover {
    text-decoration: underline;
}

.contact-social {
    margin-top: 40px;
}

.contact-social h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 45px;
    height: 45px;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-3px);
}

.social-links i {
    font-size: 20px;
    color: #ffffff;
}

.contact-form-wrapper {
    padding: 50px 40px;
}

.contact-form-wrapper h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: #000000;
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    font-weight: 600;
    color: #3A3A3A;
    margin-bottom: 10px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #E5E5E5;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 15px;
    color: #3A3A3A;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #D3AFC0;
    box-shadow: 0 0 0 3px rgba(211, 175, 192, 0.1);
}

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

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.submit-btn {
    background-color: #000000;
    color: #ffffff;
    border: none;
    padding: 18px 50px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
    border-radius: 8px;
    width: 100%;
}

.submit-btn:hover {
    background-color: #D3AFC0;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(211, 175, 192, 0.3);
}

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
    .contact-header h1 {
        font-size: 3rem;
    }

    .contact-content {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 100px 0 60px;
    }

    .contact-header h1 {
        font-size: 2.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info {
        padding: 40px 30px;
    }

    .contact-form-wrapper {
        padding: 40px 30px;
    }
}

@media (max-width: 480px) {
    .contact-header h1 {
        font-size: 2rem;
    }

    .contact-info {
        padding: 30px 20px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

    .info-item {
        gap: 15px;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }
}
