/* ===== SECTION STYLING ===== */
.contact-section {
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    padding: 5rem 0;
}

.section-label {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(111, 66, 193, 0.1));
    color: #0d6efd;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: #6c757d;
    max-width: 600px;
    margin: 0 auto;
}

/* ===== FORM CARD ===== */
.contact-form-card {
    background: #ffffff;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
    height: 100%;
}

/* ===== FORM INPUTS ===== */
.form-floating>.form-control {
    border: 2px solid #e9ecef;
    border-radius: 12px;
    padding: 1rem 1rem 1rem 3rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    background-color: #f8f9fa;
}

.form-floating>.form-control:focus {
    border-color: #0d6efd;
    background-color: #ffffff;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.1);
}

.form-floating>label {
    padding: 1rem 1rem 1rem 3rem;
    color: #6c757d;
    font-size: 0.95rem;
}

.form-floating>label i {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: #adb5bd;
    font-size: 1.1rem;
}

.form-floating>.form-control:focus~label i,
.form-floating>.form-control:not(:placeholder-shown)~label i {
    color: #0d6efd;
}

/* ===== CHECKBOX ===== */
.form-check {
    padding-left: 1.75rem;
}

.form-check-input {
    width: 1.25rem;
    height: 1.25rem;
    margin-top: 0.15rem;
    border: 2px solid #dee2e6;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: all 0.2s ease;
}

.form-check-input:checked {
    background-color: #0d6efd;
    border-color: #0d6efd;
}

.form-check-label {
    font-size: 0.95rem;
    color: #6c757d;
    cursor: pointer;
    user-select: none;
}

.form-check-label a {
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s ease;
}

.form-check-label a:hover {
    color: #0a58ca;
}

/* ===== SUBMIT BUTTON ===== */
.btn-submit {
    width: 100%;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #0d6efd 0%, #6f42c1 100%);
    color: #ffffff;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

.btn-submit::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(13, 110, 253, 0.35);
}

.btn-submit:active {
    transform: translateY(0);
}

.btn-icon {
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

.btn-submit:hover .btn-icon {
    transform: translateX(4px);
}

/* ===== CONTACT INFO ===== */
.contact-info-wrapper {
    position: relative;
}

.contact-visual {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
}

.image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.1);
}

.image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.image-wrapper:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(0, 0, 0, 0.3));
    pointer-events: none;
}

/* ===== INFO CARDS ===== */
.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    background: #ffffff;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #0d6efd, #6f42c1);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.info-card:hover::before {
    transform: scaleY(1);
}

.info-card.highlight {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.05), rgba(111, 66, 193, 0.05));
    border-color: rgba(13, 110, 253, 0.2);
}

.info-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.info-card:hover .info-icon {
    transform: scale(1.1) rotate(5deg);
}

.info-icon.email {
    background: linear-gradient(135deg, rgba(13, 110, 253, 0.1), rgba(13, 110, 253, 0.2));
    color: #0d6efd;
}

.info-icon.phone {
    background: linear-gradient(135deg, rgba(111, 66, 193, 0.1), rgba(111, 66, 193, 0.2));
    color: #6f42c1;
}

.info-icon.time {
    background: linear-gradient(135deg, rgba(32, 201, 151, 0.1), rgba(32, 201, 151, 0.2));
    color: #20c997;
}

.info-content {
    flex: 1;
}

.info-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #6c757d;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.info-link {
    color: #1a1a1a;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
    word-break: break-word;
}

.info-link:hover {
    color: #0d6efd;
}

.info-text {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

.phone-numbers {
    display: flex;
    flex-direction: column;
    gap: 0.375rem;
}

/* ===== FORM MESSAGES ===== */
.form-message {
    padding: 1rem 1.25rem;
    border-radius: 12px;
    font-size: 0.95rem;
    animation: slideDown 0.3s ease;
}

.form-message.success {
    background: linear-gradient(135deg, #d1e7dd, #a3cfbb);
    color: #0f5132;
    border: 1px solid #a3cfbb;
}

.form-message.error {
    background: linear-gradient(135deg, #f8d7da, #f1aeb5);
    color: #842029;
    border: 1px solid #f1aeb5;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== TOAST NOTIFICATIONS ===== */
.toast {
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(0, 0, 0, 0.08);
    overflow: hidden;
    min-width: 300px;
    animation: toastSlideIn 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes toastSlideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

.toast-header {
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
    border-bottom: 1px solid #e9ecef;
    padding: 0.875rem 1rem;
}

.toast-body {
    padding: 1rem;
    color: #495057;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 991.98px) {
    .contact-section {
        padding: 4rem 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .contact-visual {
        margin-bottom: 2rem;
    }
}

@media (max-width: 767.98px) {
    .contact-section {
        padding: 3rem 0;
    }

    .section-description {
        font-size: 1rem;
    }

    .contact-form-card {
        padding: 1.5rem;
    }

    .info-card {
        padding: 1.25rem;
    }

    .info-icon {
        width: 48px;
        height: 48px;
        font-size: 1.25rem;
    }
}

@media (max-width: 575.98px) {
    .btn-submit {
        font-size: 1rem;
        padding: 0.875rem 1.5rem;
    }

    .form-floating>.form-control {
        font-size: 0.95rem;
    }

    .info-link {
        font-size: 0.875rem;
    }
}