/* Styles modernisés pour la page contact */

/* HERO SECTION */
.contact-hero {
    position: relative;
    background: linear-gradient(135deg, #142c69 0%, #0f2046 100%);
    color: #fff;
    padding: 100px 0 80px;
    text-align: center;
    overflow: hidden;
    border-bottom: 5px solid #f8b133;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/pattern-dots.png");
    opacity: 0.1;
    z-index: 1;
}

.contact-hero .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.5px;
    color: #ffffff;
}

.contact-hero p {
    font-size: 1.25rem;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 40px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-hero .highlight {
    color: #f8b133;
    font-weight: 600;
    position: relative;
    display: inline-block;
}

/* Badge animé */
.contact-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(248, 177, 51, 0.15);
    border: 2px solid #f8b133;
    padding: 10px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
    position: relative;
    box-shadow: 0 5px 15px rgba(248, 177, 51, 0.2);
}

.contact-badge i {
    margin-right: 10px;
    font-size: 1.25rem;
    color: #f8b133;
}

.contact-badge span {
    font-weight: 700;
    color: #f8b133;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-pulse {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 30px;
    border: 2px solid rgba(248, 177, 51, 0.7);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    70% {
        transform: scale(1.1);
        opacity: 0;
    }
    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* Statistiques dans la hero section */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 40px;
}

.stat-item {
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    padding: 15px 20px;
    border-radius: 10px;
    border-left: 3px solid #f8b133;
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

.stat-icon {
    background: rgba(248, 177, 51, 0.2);
    height: 48px;
    width: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.stat-icon i {
    font-size: 1.5rem;
    color: #f8b133;
}

.stat-content {
    text-align: left;
}

.stat-value {
    font-size: 1.5rem;
    font-weight: 800;
    color: #ffffff;
    line-height: 1;
}

.stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 5px;
}

/* CONTACT MAIN SECTION */
.contact-main {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.section-intro {
    margin-bottom: 60px;
}

.section-intro h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #142c69;
    margin-bottom: 20px;
}

.section-intro .lead {
    font-size: 1.2rem;
    color: #5e6278;
    max-width: 800px;
    margin: 0 auto;
}

.section-divider {
    position: relative;
    height: 2px;
    width: 120px;
    background-color: #e5e9f2;
    margin: 30px auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.divider-icon {
    position: absolute;
    background-color: #f8f9fa;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.divider-icon i {
    color: #f8b133;
    font-size: 1.25rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 30px;
    margin-top: 40px;
}

/* Notifications */
.notification {
    display: flex;
    align-items: flex-start;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 30px;
    position: relative;
    animation: fadeInDown 0.5s ease-out;
}

.notification.success {
    background-color: rgba(16, 185, 129, 0.1);
    border-left: 4px solid #10b981;
}

.notification.error {
    background-color: rgba(239, 68, 68, 0.1);
    border-left: 4px solid #ef4444;
}

.notif-icon {
    margin-right: 15px;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.notification.success .notif-icon {
    background-color: rgba(16, 185, 129, 0.2);
    color: #10b981;
}

.notification.error .notif-icon {
    background-color: rgba(239, 68, 68, 0.2);
    color: #ef4444;
}

.notif-icon i {
    font-size: 1.25rem;
}

.notif-content {
    flex-grow: 1;
}

.notif-content h4 {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.notification.success .notif-content h4 {
    color: #10b981;
}

.notification.error .notif-content h4 {
    color: #ef4444;
}

.notif-content p {
    margin: 0;
    color: #5e6278;
    line-height: 1.6;
}

.close-notif {
    position: absolute;
    top: 15px;
    right: 15px;
    background: transparent;
    border: none;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.3s;
    color: #5e6278;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.close-notif:hover {
    opacity: 1;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Contact Form */
.form-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

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

.form-header {
    background: linear-gradient(135deg, #142c69 0%, #1a3a8a 100%);
    color: white;
    padding: 25px;
    display: flex;
    align-items: center;
}

.form-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
}

.form-icon i {
    font-size: 1.5rem;
    color: #fff;
}

.form-header h3 {
    margin: 0;
    font-weight: 600;
    font-size: 1.5rem;
}

.form-body {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -15px;
}

.col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
    padding: 0 15px;
}

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

/* Floating Labels */
.floating-label-group {
    position: relative;
    margin-bottom: 0;
}

.floating-label-group .input-icon {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b7c3;
    z-index: 2;
    transition: all 0.3s ease;
}

.textarea-group .input-icon {
    top: 25px;
    transform: none;
}

.form-control {
    height: 56px;
    padding: 20px 15px 10px 45px;
    font-size: 1rem;
    border: 1px solid #e5e9f2;
    border-radius: 8px;
    background-color: #fff;
    transition: all 0.3s ease;
    width: 100%;
}

textarea.form-control {
    height: auto;
    min-height: 150px;
    padding-top: 25px;
}

.form-control:focus {
    outline: none;
    border-color: #142c69;
    box-shadow: 0 5px 15px rgba(20, 44, 105, 0.1);
}

.floating-label {
    position: absolute;
    top: 50%;
    left: 45px;
    transform: translateY(-50%);
    font-size: 1rem;
    color: #b0b7c3;
    pointer-events: none;
    transition: all 0.3s ease;
}

textarea.form-control + .floating-label {
    top: 25px;
    transform: none;
}

.form-control:focus + .floating-label,
.form-control:not(:placeholder-shown) + .floating-label {
    top: 10px;
    left: 45px;
    font-size: 0.75rem;
    color: #142c69;
    font-weight: 600;
}

textarea.form-control:focus + .floating-label,
textarea.form-control:not(:placeholder-shown) + .floating-label {
    top: 10px;
}

.focus-indicator {
    position: absolute;
    bottom: 0;
    left: 0;
    height: 3px;
    width: 0;
    background-color: #f8b133;
    transition: width 0.3s ease;
    border-radius: 0 0 0 8px;
}

.form-control:focus ~ .focus-indicator {
    width: 100%;
}

.floating-label-group:focus-within .input-icon {
    color: #142c69;
}

/* Select Style */
.select-wrapper {
    position: relative;
}

.select-wrapper .form-control {
    appearance: none;
    cursor: pointer;
}

.select-wrapper::after {
    content: '\f078';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: #b0b7c3;
    pointer-events: none;
    transition: all 0.3s ease;
}

.select-wrapper:focus-within::after {
    color: #142c69;
}

/* Checkbox Style */
.custom-checkbox {
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    user-select: none;
    display: inline-flex;
    align-items: center;
}

.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkbox-icon {
    position: absolute;
    top: 0;
    left: 0;
    height: 24px;
    width: 24px;
    background-color: #fff;
    border: 2px solid #e5e9f2;
    border-radius: 6px;
    transition: all 0.3s ease;
}

.custom-checkbox:hover input ~ .checkbox-icon {
    border-color: #142c69;
}

.custom-checkbox input:checked ~ .checkbox-icon {
    background-color: #142c69;
    border-color: #142c69;
}

.checkbox-icon::after {
    content: '';
    position: absolute;
    display: none;
    left: 8px;
    top: 4px;
    width: 6px;
    height: 12px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.custom-checkbox input:checked ~ .checkbox-icon::after {
    display: block;
}

.checkbox-text {
    font-size: 0.95rem;
    line-height: 1.4;
    color: #5e6278;
}

.checkbox-text a {
    font-weight: 600;
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Button Style */
.form-submit {
    margin-top: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    user-select: none;
    border: 2px solid transparent;
    padding: 0.75rem 1.5rem;
    font-size: 1rem;
    line-height: 1.5;
    border-radius: 8px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-lg {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

.btn-primary {
    background-color: #142c69;
    color: #fff;
    border-color: #142c69;
}

.btn-primary:hover {
    background-color: #1a3a8a;
    border-color: #1a3a8a;
}

.btn i {
    margin-right: 8px;
}

.btn-hover-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    z-index: -1;
    transition: left 0.6s ease;
}

.btn:hover .btn-hover-effect {
    left: 100%;
}

/* Contact Info Styles */
.contact-info-container {
    height: 100%;
}

.info-card {
    height: 100%;
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-header {
    background: linear-gradient(135deg, #f8b133 0%, #f89b1c 100%);
    color: white;
    padding: 25px;
    border-radius: 12px 12px 0 0;
}

.info-header h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin: 0 0 10px;
}

.info-header p {
    margin: 0;
    opacity: 0.9;
}

.info-items {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
    padding: 20px;
    border-radius: 10px;
    border-left: 3px solid #142c69;
}

.info-item:hover {
    background-color: #edf2f7;
    transform: translateX(5px);
}

.info-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(20, 44, 105, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.info-icon i {
    color: #142c69;
    font-size: 1.25rem;
}

.info-content {
    flex-grow: 1;
}

.info-content h4 {
    margin: 0 0 10px;
    font-size: 1.1rem;
    color: #142c69;
}

.contact-link {
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    display: block;
    margin-bottom: 5px;
}

.contact-link:hover {
    color: #142c69;
}

.response-time,
.availability {
    display: block;
    font-size: 0.85rem;
    color: #5e6278;
}

address {
    font-style: normal;
    line-height: 1.6;
    color: #333;
}

/* FAQ Section Styles */
.faq-section {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid #e5e9f2;
}

.faq-container {
    margin-top: 40px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.custom-accordion {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    background-color: #fff;
}

.accordion-item {
    border: none;
    border-bottom: 1px solid #e5e9f2;
}

.accordion-item:last-child {
    border-bottom: none;
}

.accordion-header {
    margin: 0;
}

.accordion-button {
    padding: 25px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #142c69;
    background-color: #fff;
    border: none;
    width: 100%;
    text-align: left;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.3s ease;
}

.accordion-button:not(.collapsed) {
    color: #f8b133;
    background-color: rgba(248, 177, 51, 0.05);
    box-shadow: none;
}

.accordion-icon {
    margin-right: 15px;
    transition: all 0.3s ease;
    color: #a0aec0;
}

.accordion-button:not(.collapsed) .accordion-icon {
    transform: rotate(90deg);
    color: #f8b133;
}

.accordion-body {
    padding: 0 30px 25px 70px;
    color: #5e6278;
    line-height: 1.7;
}

/* Map Section Styles */
.map-section {
    margin-top: 80px;
    padding-top: 50px;
    border-top: 1px solid #e5e9f2;
}

.map-container {
    margin-top: 40px;
}

.map-card {
    background-color: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.07);
}

.map-wrapper {
    height: 450px;
    position: relative;
    overflow: hidden;
    border-bottom: 5px solid #142c69;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.location-details {
    padding: 30px;
}

.location-card {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 25px;
    border-left: 4px solid #f8b133;
}

.location-header {
    margin-bottom: 20px;
}

.location-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #142c69;
    margin: 0;
    display: flex;
    align-items: center;
}

.location-content {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-item {
    display: flex;
    align-items: flex-start;
}

.location-item i {
    width: 40px;
    height: 40px;
    background-color: rgba(20, 44, 105, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #142c69;
    margin-right: 15px;
    flex-shrink: 0;
}

.location-item h4 {
    font-size: 1rem;
    margin: 0 0 8px;
    color: #142c69;
}

.metro-line {
    display: inline-block;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: white;
    font-weight: bold;
    text-align: center;
    line-height: 24px;
    font-size: 14px;
    margin-right: 5px;
}

.line1 {
    background-color: #FFBE00;
}

.line9 {
    background-color: #CEC92B;
}

.metro-station {
    font-weight: 500;
}

/* CTA Section */
.cta-section {
    margin-top: 80px;
}

.cta-card {
    background: linear-gradient(135deg, #142c69 0%, #1a3a8a 100%);
    border-radius: 12px;
    padding: 50px 30px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(20, 44, 105, 0.3);
}

.cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("../img/pattern-dots.png");
    opacity: 0.05;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-card h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: #fff;
}

.cta-card p {
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 30px;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.btn-outline-light {
    background-color: transparent;
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.btn-outline-light:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: white;
}

/* Responsive Styles */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .stat-item {
        width: 100%;
        max-width: 300px;
    }
    
    .form-row {
        flex-direction: column;
    }
    
    .col-md-6 {
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .section-intro h2 {
        font-size: 2rem;
    }
    
    .accordion-button {
        font-size: 1rem;
        padding: 20px;
    }
    
    .accordion-body {
        padding: 0 20px 20px 60px;
    }
}

@media (max-width: 576px) {
    .contact-badge span {
        font-size: 0.8rem;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .form-header {
        flex-direction: column;
        text-align: center;
    }
    
    .form-icon {
        margin: 0 auto 15px;
    }
    
    .info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .info-icon {
        margin: 0 auto 15px;
    }
    
    .location-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .location-item i {
        margin: 0 0 15px;
    }
}

button.btn-primary:hover {
    background-color: #152c69;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(30, 58, 138, 0.2);
}

/* Contact Info */
.contact-info-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.contact-info h3 {
    color: #1E3A8A;
    font-size: 24px;
    margin-bottom: 25px;
}

.info-item {
    display: flex;
    margin-bottom: 25px;
}

.info-icon {
    background-color: rgba(30, 58, 138, 0.1);
    color: #1E3A8A;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 20px;
}

.info-content h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 5px;
}

.info-content p {
    color: #555;
    margin-bottom: 5px;
}

.info-content a {
    color: #1E3A8A;
    text-decoration: none;
    transition: color 0.3s ease;
}

.info-content a:hover {
    color: #152c69;
}

.info-note {
    font-size: 14px;
    color: #777;
}

/* Social Contact */
.social-contact {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.social-contact h3 {
    color: #1E3A8A;
    font-size: 24px;
    margin-bottom: 20px;
}

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

.social-icon {
    background-color: #f8f9fa;
    color: #1E3A8A;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-icon:hover {
    background-color: #1E3A8A;
    color: #fff;
    transform: translateY(-3px);
}

/* FAQ Preview */
.faq-preview {
    background-color: #fff;
    border-radius: 10px;
    padding: 30px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
}

.faq-preview h3 {
    color: #1E3A8A;
    font-size: 24px;
    margin-bottom: 20px;
}

.faq-item {
    margin-bottom: 20px;
}

.faq-item h4 {
    font-size: 16px;
    color: #333;
    margin-bottom: 8px;
}

.faq-item p {
    color: #555;
    font-size: 14px;
}

.btn-outline {
    display: inline-block;
    background-color: transparent;
    color: #1E3A8A;
    border: 2px solid #1E3A8A;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
    margin-top: 10px;
}

.btn-outline:hover {
    background-color: #1E3A8A;
    color: #fff;
    transform: translateY(-3px);
}

/* MAP SECTION */
.map-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.map-section h2 {
    text-align: center;
    color: #1E3A8A;
    font-size: 28px;
    margin-bottom: 40px;
}

.map-container {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    height: 450px;
}

.map-container iframe {
    border-radius: 10px;
}

/* CTA SECTION */
.cta-section {
    background-color: #1E3A8A;
    padding: 80px 0;
    color: #fff;
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
}

.btn-primary {
    background-color: #fff;
    color: #1E3A8A;
    padding: 14px 30px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background-color: #f0f0f0;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(255, 255, 255, 0.2);
}

/* THANK YOU PAGE */
.thank-you-container {
    padding: 80px 0;
    text-align: center;
}

.thank-you-content {
    max-width: 800px;
    margin: 0 auto;
}

.thank-you-icon {
    color: #1E3A8A;
    font-size: 80px;
    margin-bottom: 30px;
}

.thank-you-content h1 {
    color: #1E3A8A;
    font-size: 36px;
    margin-bottom: 20px;
}

.thank-you-content p {
    font-size: 18px;
    color: #555;
    margin-bottom: 20px;
}

.response-time {
    margin-bottom: 40px;
}

.next-steps {
    margin: 60px 0;
}

.next-steps h3 {
    color: #1E3A8A;
    font-size: 24px;
    margin-bottom: 30px;
}

.next-steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.next-step {
    background-color: #f8f9fa;
    border-radius: 10px;
    padding: 30px 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.step-icon {
    font-size: 30px;
    color: #1E3A8A;
    margin-bottom: 20px;
}

.next-step h4 {
    font-size: 18px;
    color: #333;
    margin-bottom: 15px;
}

.next-step p {
    font-size: 14px;
    color: #555;
    margin-bottom: 20px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

.return-home {
    margin-top: 40px;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .next-steps-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        padding: 60px 0;
    }
    
    .page-hero h1 {
        font-size: 32px;
    }
    
    .map-container {
        height: 350px;
    }
}

@media (max-width: 480px) {
    .contact-form-container, 
    .contact-info, 
    .social-contact, 
    .faq-preview {
        padding: 20px;
    }
    
    .cta-content h2 {
        font-size: 28px;
    }
    
    .btn-primary {
        width: 100%;
        margin-bottom: 10px;
    }
}
