.contact-toast-error {
    background: #fff4f4;
    color: #b71c1c;
    border-color: #f44336;
}

.contact-toast {
    position: fixed;
    top: 82px;
    right: 40px;
    left: auto;
    transform: translateY(-40px);
    opacity: 0;
    z-index: 1200;
    transition: transform 0.5s cubic-bezier(.4, 1.6, .4, 1), opacity 0.5s cubic-bezier(.4, 1.6, .4, 1);
    background: #fff;
    color: #222;
    padding: 16px 36px 16px 20px;
    border-radius: 10px;
    box-shadow: 0 6px 32px rgba(0, 0, 0, 0.18), 0 1.5px 6px rgba(0, 0, 0, 0.10);
    font-size: 1rem;
    min-width: 220px;
    max-width: 350px;
    display: flex;
    align-items: center;
    gap: 14px;
    border: 1.5px solid #e0e0e0;
    font-weight: 500;
    letter-spacing: 0.01em;
    box-sizing: border-box;
}

.contact-toast.toast-in {
    transform: translateY(0);
    opacity: 1;
    transition: transform 0.5s cubic-bezier(.4, 1.6, .4, 1), opacity 0.5s cubic-bezier(.4, 1.6, .4, 1);
}

.contact-toast.toast-out {
    transform: translateX(120vw);
    opacity: 0;
    transition: transform 5s cubic-bezier(.4, 1.6, .4, 1), opacity 0.7s;
}

.contact-toast .close-toast {
    background: none;
    border: none;
    color: #888;
    font-size: 1.3rem;
    cursor: pointer;
    margin-left: auto;
    line-height: 1;
    padding: 0 4px;
    transition: color 0.2s;
}

.contact-toast .close-toast:hover {
    color: #d32f2f;
}

.contact-toast::before {
    content: '';
    display: inline-block;
    width: 22px;
    height: 22px;
    margin-right: 10px;
    background: url('data:image/svg+xml;utf8,<svg fill="%2328a745" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><circle cx="12" cy="12" r="12" fill="%23eafaf1"/><path d="M17 8.5l-6.25 6.25L7 11" stroke="%2328a745" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round" fill="none"/></svg>') no-repeat center center;
    background-size: contain;
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

html {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

.contact-container {
    background-color: #fff;
    width: 100%;
    max-width: 100%;
    padding: 0;
    margin: 0;
}

.contact-map-section {
    width: 100%;
    height: 450px;
    margin-bottom: 60px;
    padding: 0;
}

.contact-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

.locations-section {
    padding: 80px 0;
    background-color: #f8f9fa;
}

.locations-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 3rem;
    color: #333;
    text-align: center;
}

.location-card {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
    background-color: white;
}

.location-info {
    padding: 20px;
}

.location-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2ab1ad;
    margin-bottom: 10px;
}

.location-address {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.location-phone {
    font-size: 1rem;
    color: #555;
    margin-bottom: 15px;
}

.location-hours {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 0;
}

.contact-form-section {
    padding: 80px 0;
}

.contact-form-container {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.contact-form-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: #333;
    text-align: center;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-label {
    font-weight: 500;
    color: #333;
}

.form-control {
    border-radius: 8px;
    border: 1px solid #ddd;
    padding: 12px 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-control:focus {
    border-color: #2ab1ad;
    box-shadow: 0 0 0 0.25rem rgba(42, 177, 173, 0.25);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.btn-submit {
    background-color: #2ab1ad;
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    color: white;
    border-radius: 8px;
    transition: background-color 0.3s ease, transform 0.3s ease;
    display: block;
    min-width: 150px;
}

.btn-submit:hover {
    background-color: #1e9490;
    color: white;
}

.btn-submit:focus {
    box-shadow: 0 0 0 0.25rem rgba(42, 177, 173, 0.25);
}

.form-control.is-invalid {
    border-color: #dc3545;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath stroke-linejoin='round' d='M5.8 3.6h.4L6 6.5z'/%3e%3ccircle cx='6' cy='8.2' r='.6' fill='%23dc3545' stroke='none'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.form-control.is-valid {
    border-color: #198754;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%23198754' d='M2.3 6.73L.6 4.53c-.4-1.04.46-1.4 1.1-.8l1.1 1.4 3.4-3.8c.6-.63 1.6-.27 1.2.7l-4 4.6c-.43.5-.8.4-1.1.1z'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right calc(0.375em + 0.1875rem) center;
    background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

@media (max-width: 767px) {
    .contact-toast {
        right: 10px;
        left: 10px;
        min-width: unset;
        max-width: unset;
        width: auto;
        font-size: 0.95rem;
        padding: 12px 16px 12px 16px;
        top: 70px;
        border-radius: 8px;
        box-sizing: border-box;
        word-break: break-word;
    }

    .contact-map-section {
        height: 350px;
    }

    .locations-section {
        padding: 60px 0;
    }

    .locations-title {
        font-size: 2rem;
    }

    .contact-form-section {
        padding: 60px 0;
    }

    .contact-form-title {
        font-size: 1.75rem;
    }
}