/* Contact Page Styles */
.contact-page {
    position: relative;
    min-height: 100vh;
    padding: 100px 0 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
}

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

.contact-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #2C3E50;
    margin: 0;
}

/* Contact Info Cards */
.contact-info-cards {
    margin-bottom: 60px;
}

.contact-info-card {
    background: rgba(240, 247, 255, 0.75);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.contact-info-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, #5C6BC0 0%, #4A5BB0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 2rem;
}

.contact-info-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 20px;
}

.contact-info-content {
    color: #000000;
}

.contact-info-content p {
    font-size: 1.05rem;
    margin-bottom: 10px;
    color: #000000;
}

.contact-info-content p:last-child {
    margin-bottom: 0;
}

.contact-info-content a {
    color: #5C6BC0;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-info-content a:hover {
    color: #4A5BB0;
    text-decoration: underline;
}

/* Contact Form */
.contact-form-wrapper {
    background: rgba(240, 247, 255, 0.75);
    border-radius: 16px;
    padding: 50px 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #2C3E50;
    margin-bottom: 30px;
    text-align: center;
}

.contact-form {
    max-width: 100%;
}

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

.form-group label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: #2C3E50;
    margin-bottom: 8px;
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    font-size: 1rem;
    color: #000000;
    background-color: #ffffff;
    border: 1px solid #E0E0E0;
    border-radius: 8px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #5C6BC0;
    box-shadow: 0 0 0 3px rgba(92, 107, 192, 0.1);
}

.form-control::placeholder {
    color: #999;
}

textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-contact-submit {
    width: 100%;
    padding: 15px 30px;
    background: linear-gradient(135deg, #5C6BC0 0%, #4A5BB0 100%);
    color: #ffffff;
    font-size: 1.1rem;
    font-weight: 600;
    border: none;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(92, 107, 192, 0.3);
}

.btn-contact-submit:hover {
    background: linear-gradient(135deg, #4A5BB0 0%, #3A4BA0 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(92, 107, 192, 0.4);
}

.btn-contact-submit:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-title {
        font-size: 2.75rem;
    }
    
    .contact-info-card {
        padding: 35px 25px;
        margin-bottom: 20px;
    }
    
    .contact-form-wrapper {
        padding: 40px 30px;
    }
    
    .contact-form-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        padding: 60px 0 50px;
        background-attachment: scroll;
    }
    
    .contact-header {
        margin-bottom: 40px;
    }
    
    .contact-title {
        font-size: 2.25rem;
    }
    
    .contact-info-cards {
        margin-bottom: 40px;
    }
    
    .contact-info-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
        margin-bottom: 20px;
    }
    
    .contact-info-title {
        font-size: 1.35rem;
        margin-bottom: 15px;
    }
    
    .contact-info-content p {
        font-size: 1rem;
    }
    
    .contact-form-wrapper {
        padding: 35px 25px;
    }
    
    .contact-form-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }
    
    .form-group {
        margin-bottom: 20px;
    }
    
    .form-control {
        padding: 10px 12px;
        font-size: 0.95rem;
    }
    
    .btn-contact-submit {
        padding: 12px 25px;
        font-size: 1rem;
    }
}

@media (max-width: 576px) {
    .contact-title {
        font-size: 1.75rem;
    }
    
    .contact-info-card {
        padding: 30px 20px;
    }
    
    .contact-info-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .contact-info-title {
        font-size: 1.25rem;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-form-title {
        font-size: 1.5rem;
    }
}
