/* Styles for Contact page */

/* General Layout */
.contact-container {
    padding: 80px 0;
    background-color: #376AAD;
    color: white;
}

.header-container {
    background-color: #376AAD;
}

.pl-100 {
    padding-left: 100px;
}

.pr-100 {
    padding-right: 100px;
}

/* Title and subtitle styles */
.contact-title {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 700;
    font-style: normal;
    font-size: 128px;
    line-height: 144px;
    letter-spacing: -4%;
    margin-bottom: 40px;
    color: #F2CB06;
}

.contact-subtitle {
    font-family: "Switzer Variable", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    line-height: 100%;
    letter-spacing: -4%;
    margin-bottom: 40px;
    position: relative;
    color: #f5f5f5;
}

.contact-subtitle p {
    margin-bottom: 0;
}

.yellow-underline {
    position: absolute;
    height: 8px;
    background-color: #FFD500;
    bottom: 0;
    left: 0;
    width: 50%;
    border-radius: 4px;
    z-index: 1;
}

/* Talk button */
.talk-button-container {
    margin-top: 50px;
}

.talk-button {
    display: inline-block;
    font-family: "Switzer Variable", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 48px;
    line-height: 70px;
    letter-spacing: -4%;
    color: #F3B707;
    text-decoration: none;
    transition: transform 0.3s ease;
    position: relative;
}

.talk-button:hover {
    color: #F3B707;
    transform: translateY(-5px);
}

.plus-icon {
    font-weight: 700;
    margin-left: 5px;
}

/* Contact Form */
.contact-form-container {
    margin-top: 20px;
}

.contact-form {
    background-color: white;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.form-label {
    font-weight: 600;
    color: #333;
}

.form-control {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 10px 15px;
    margin-bottom: 10px;
    background-color: #f9f9f9;
}

.form-control:focus {
    border-color: #2E63AB;
    box-shadow: 0 0 0 0.25rem rgba(46, 99, 171, 0.25);
}

.btn-submit {
    background-color: #FFD500;
    color: #333;
    font-weight: 600;
    padding: 10px 30px;
    border: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    width: 100%;
    font-size: 18px;
}

.btn-submit:hover {
    background-color: #FFE44D;
    transform: translateY(-2px);
}

.form-check-label {
    color: #333;
    font-size: 14px;
}

.form-check-label a {
    color: #2E63AB;
    text-decoration: underline;
}

.form-check-input:checked {
    background-color: #2E63AB;
    border-color: #2E63AB;
}

/* Alerts */
.alert {
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 20px;
}

.alert-success {
    background-color: rgba(40, 167, 69, 0.1);
    border: 1px solid rgba(40, 167, 69, 0.2);
    color: #155724;
}

.alert-danger {
    background-color: rgba(220, 53, 69, 0.1);
    border: 1px solid rgba(220, 53, 69, 0.2);
    color: #721c24;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-title {
        font-size: 60px;
    }
    
    .contact-subtitle {
        font-size: 20px;
    }
}

@media (max-width: 768px) {
    .pl-100, .pr-100 {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .contact-title {
        font-size: 50px;
        margin-bottom: 30px;
    }
    
    .contact-form {
        margin-top: 40px;
    }
}

@media (max-width: 576px) {
    .contact-container {
        padding: 40px 0;
    }
    
    .contact-title {
        font-size: 42px;
    }
    
    .contact-subtitle {
        font-size: 18px;
    }
    
    .talk-button {
        font-size: 20px;
    }
}

