/* assets/css/contact.css */

:root {
    --primary-color: #293857;
    --secondary-color: #f4d03f;
    --accent-color: #2c3e50;
    --text-dark: #2c3e50;
    --text-light: #6c757d;
    --bg-light: #f8f9fa;
    --white: #ffffff;
}

body {
    font-family: 'Source Sans Pro', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
	background: #ebebeb
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.3)), url('../images/67eff37139379ae25002ddb5.jpg') center/cover no-repeat;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    position: relative;
}

.hero-image-container {
    position: relative;
    height: 100%;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(60, 72, 99, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
}



.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    font-family: 'Playfair Display', serif;
}

/* Contact Info Section */
.contact-info {

}

.contact-card {
    border: 1px solid #e9ecef;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.contact-icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle {
    width: 80px;
    height: 80px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: background-color 0.3s ease;
}

.contact-card:hover .icon-circle {
    background-color: var(--secondary-color);
    color: var(--text-dark);
}

.contact-title {
    color: var(--primary-color);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.contact-details {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 0;
    line-height: 1.6;
}

.email-link {
    color: #007bff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.email-link:hover {
    color: #0056b3;
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form {

}

.form-container {
    border: 1px solid #e9ecef;
}

.form-title {
    color: var(--primary-color);
    font-size: 2.2rem;
    font-weight: 700;
    text-align: left;
    margin-bottom: 2rem;
    font-family: 'Playfair Display', serif;
}

.form-label {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.form-control {
    border: 1px solid #ced4da;
    border-radius: 5px;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
    background-color: #f8f9fa;
}

.form-control:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(60, 72, 99, 0.25);
    background-color: var(--white);
}

.form-control::placeholder {
    color: #adb5bd;
    font-style: italic;
}

/* Captcha Styling */
.captcha-container {
    margin-top: 0.5rem;
}

.captcha-box {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 1rem;
    background-color: #f9f9f9;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    max-width: 300px;
}

.captcha-checkbox {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
}

.captcha-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    margin: 0;
    cursor: pointer;
    flex-grow: 1;
}

.captcha-icon {
    display: flex;
    align-items: center;
}

.captcha-img {
    width: 32px;
    height: 32px;
    opacity: 0.7;
}

/* Submit Button */
.btn-submit {
    background-color: var(--secondary-color);
    border-color: var(--secondary-color);
    color: var(--text-dark);
    font-weight: 700;
    font-size: 1.1rem;
    padding: 0.75rem 2rem;
    border-radius: 5px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-submit:hover {
    background-color: #f1c40f;
    border-color: #f1c40f;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(244, 208, 63, 0.4);
    color: var(--text-dark);
}

.btn-submit:focus {
    box-shadow: 0 0 0 0.25rem rgba(244, 208, 63, 0.5);
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .contact-card {
        min-height: 200px;
        margin-bottom: 2rem;
    }

    .icon-circle {
        width: 60px;
        height: 60px;
    }

    .icon-circle svg {
        width: 24px;
        height: 24px;
    }

    .contact-title {
        font-size: 1.5rem;
    }

    .contact-details {
        font-size: 1rem;
    }

    .form-container {
        padding: 2rem !important;
    }

    .form-title {
        font-size: 1.8rem;
    }

    .captcha-box {
        max-width: 100%;
    }
}

@media (max-width: 576px) {
    .hero-section {
        height: 300px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .form-container {
        padding: 1.5rem !important;
    }

    .form-title {
        font-size: 1.6rem;
    }

    .contact-card {
        padding: 1.5rem !important;
    }
}

/* Animation Effects */
.contact-card {
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.contact-card.animate-in {
    opacity: 1;
    transform: translateY(0);
}

.form-container {
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.form-container.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Focus States for Accessibility */
.captcha-checkbox:focus {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
}

.btn-submit:focus {
    outline: none;
}

/* Form Validation Styles */
.form-control.is-invalid {
    border-color: #dc3545;
}

.form-control.is-valid {
    border-color: #28a745;
}

.invalid-feedback {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}

.valid-feedback {
    color: #28a745;
    font-size: 0.875rem;
    margin-top: 0.25rem;
}
