
/* Contact Page Styles */
.contact-section {
    background-color: #faf9f6;
    padding: 80px 0;
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-page-container {
    background-color: #fffaf5;
    border-radius: 12px;
    max-width: 1200px;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    overflow: hidden;
}

.contact-page-header {
    text-align: center;
    padding: 60px 50px 40px;
}

.contact-page-title {
    font-size: 48px;
    font-weight: 700;
    color: #000;
    margin-bottom: 12px;
    line-height: 1.2;
    font-family: "Urbanist", sans-serif;
}

.contact-page-subtitle {
    font-size: 18px;
    color: #333;
    font-weight: 400;
    line-height: 1.6;
}

.contact-page-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
}

.contact-form-section {
    padding: 60px 50px;
    overflow-y: auto;
}

.contact-image-section {
    background-color: #fef8f3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px;
    position: relative;
    gap: 40px;
}

.contact-info-box {
    width: 100%;
    max-width: 400px;
}

.contact-info-title {
    font-size: 28px;
    font-weight: 700;
    color: #000;
    margin-bottom: 32px;
    border-bottom: 1px solid #000;
    padding-bottom: 12px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.contact-detail-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}

.contact-detail-item svg {
    flex-shrink: 0;
    margin-top: 4px;
}

.contact-label {
    font-size: 14px;
    color: #666;
    margin-bottom: 8px;
    font-weight: 500;
}

.contact-value {
    font-size: 18px;
    color: #000;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value:hover {
    color: #63cfbf;
}

.contact-page-image {
    width: 100%;
    height: auto;
    max-width: 500px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .contact-page-content {
        grid-template-columns: 1fr;
    }
    
    .contact-image-section {
        order: -1;
        min-height: 300px;
        flex-direction: row;
        gap: 40px;
    }
    
    .contact-info-box {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-section .container{
        padding-inline: 0;
    }
    .contact-section {
        padding: 0;
    }
    .contact-page-container{
        box-shadow: none;
    }
    .contact-page-image{
        display: none;
    }
    
    .contact-page-container {
        border-radius: 8px;
    }
    
    .contact-page-header {
        padding: 40px 16px 0;
    }
    
    .contact-page-title {
        font-size: 36px;
    }
    
    .contact-page-subtitle {
        font-size: 16px;
    }
    
    .contact-form-section {
        padding: 40px 16px;
        padding-top: 0;
    }
    
    .contact-image-section {
        padding: 30px 16px;
        flex-direction: column;
        gap: 30px;
    }
    
    .contact-info-title {
        font-size: 24px;
    }
}