/* ===== SECTION CONTACT ===== */
.contact-section {
    min-height: 100vh;
    padding: 100px 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(to bottom, var(--bg-primary), var(--cream));
    scroll-snap-align: start;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: repeat(2, 1.5fr);
    gap: 80px;
    margin-top: 80px;
}

/* Infos */
.contact-info h3 {
    margin-bottom: 24px;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.contact-info p {
    margin-bottom: 40px;
    line-height: 1.8;
    color: var(--text-secondary);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 16px;
    color: var(--text-secondary);
}

.contact-item svg {
    color: var(--forest-green);
}

/* Formulaire */
.contact-form-wrapper {
    padding: 50px;
    background: var(--bg-primary);
    border: 2px solid var(--beige);
    border-radius: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    transition: background-color 0.3s ease;
}

.form-row {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

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

.form-group label {
    display: block;
    margin-bottom: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font: inherit;
    font-size: 1rem;
    color: var(--text-primary);
    background: var(--bg-secondary);
    border: 2px solid var(--beige);
    border-radius: 12px;
    transition: 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    background: var(--bg-primary);
    border-color: var(--sage-green);
    box-shadow: 0 0 0 4px rgba(149, 199, 174, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    width: 100%;
    padding: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font: inherit;
    font-size: 1.05rem;
    font-weight: 600;
    color: #fff;
    background: linear-gradient(135deg, var(--forest-green), var(--deep-green));
    border: none;
    border-radius: 12px;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(90, 143, 123, 0.3);
    transition: 0.4s ease;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(90, 143, 123, 0.5);
}

/* Notifications */
.notification-toast {
    position: fixed;
    left: 50%;
    bottom: -100px;
    transform: translateX(-50%);
    padding: 18px 30px;
    font: 600 0.95rem var(--font-mono);
    background: #fff;
    border: 2px solid var(--beige);
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    z-index: 10000;
    transition: bottom 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.notification-toast.show {
    bottom: 40px;
}

.notification-success,
.notification-error {
    background: linear-gradient(135deg, #fff 0%, transparent 100%);
}

.notification-success {
    color: var(--forest-green);
    border-color: var(--sage-green);
    background: linear-gradient(135deg, #fff, var(--mint-light));
}

.notification-error {
    color: #c7554e;
    border-color: #f5b4ae;
    background: linear-gradient(135deg, #fff, #ffe5e3);
}

/* Notifications en mode nuit */
body.dark-mode .notification-toast {
    background: var(--bg-primary);
    border-color: var(--sage-green);
    color: var(--text-primary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
}

/* Types de notifications */
body.dark-mode .notification-success,
body.dark-mode .notification-error {
    border-width: 2px;
}

/* Succès */
body.dark-mode .notification-success {
    background: linear-gradient(135deg, #0f1a14, var(--mint-light));
    color: #a8e6c1;
    border-color: var(--forest-green);
}

/* Erreur */
body.dark-mode .notification-error {
    background: linear-gradient(135deg, #1a0f0f, #2a1412);
    color: #ff9b94;
    border-color: #c7554e;
}

/* ===== RESPONSIVE ===== */


/* mobile  768px */
@media (max-width: 768px) {

    .contact-section {
        min-height: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 80px 0;
    }

    .contact-wrapper {
    display: flex;
    flex-direction: column;
    }

    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 30px; }
}

