/* CONTACT SECTION */
.contact-section {
    /* padding: 80px 20px; */
    background: #f8f8f8;
    margin-top: 4rem;
}

.contact-container {
    max-width: 900px;
    margin: auto;
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 5px 25px rgba(0,0,0,0.08);
}

.contact-header {
    text-align: center;
    margin-bottom: 35px;
}

.contact-header h2 {
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #111;
}

.contact-header p {
    color: #666;
    line-height: 1.7;
    max-width: 600px;
    margin: auto;
}

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

.form-row {
    display: flex;
    gap: 20px;
}

.form-group {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    color: #222;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #ddd;
    border-radius: 10px;
    outline: none;
    font-size: 15px;
    transition: 0.3s ease;
    box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #000;
}

.submit-btn {
    border: none;
    background: #000;
    color: #fff;
    padding: 16px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s ease;
}

.submit-btn:hover {
    background: #222;
}
.toast{
    position:fixed;
    top:20px;
    right:20px;
    background:#28a745;
    color:#fff;
    padding:15px 20px;
    border-radius:8px;
    display:none;
    z-index:9999;
}
.toast {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #28a745;
    color: white;
    padding: 14px 20px;
    border-radius: 8px;
    display: none;
    z-index: 9999;
    font-weight: 600;
}

/* TABLET */
@media (max-width: 768px) {
    .contact-container {
        padding: 30px 20px;
    }

    .form-row {
        flex-direction: column;
        gap: 20px;
    }

    .contact-header h2 {
        font-size: 1.8rem;
    }
}

/* MOBILE */
@media (max-width: 480px) {
    .contact-section {
        padding: 60px 15px;
    }

    .contact-container {
        padding: 25px 15px;
        border-radius: 12px;
    }

    .contact-header h2 {
        font-size: 1.5rem;
    }

    .contact-header p {
        font-size: 14px;
    }

    .submit-btn {
        width: 100%;
    }
}