.contact-section {
    padding: 50px; margin-top: 100px;
}
.contact-section .icon {
    width: 40px;
    height: 40px;
    background-color: #E69A1E;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-right: 15px;
}
.contact-section .icon i {
    color: white;
    font-size: 20px;
}
.contact-section .info-text {
    color: #1B3942 !important; font-weight: 300;
}
.contact-section .info-text span{font-weight: 600;}
.contact-section .form-control {
    background-color: #f5f5f5;
    border: none;
    border-radius: 20px;
    padding: 12px;
}
.contact-section .btn-submit {
    background-color: #E69A1E;
    color: white;
    border-radius: 20px;
    width: 100%;
    padding: 12px;
    border: none;
}
.contact-section h2.us{font-size: 58px !important;}
.contact-section .form-control{border: none; background-color: #f5f5f5; border-radius: 20px; padding: 20px;}
.contact-section .btn.btn-submit{border: none; background-color: #0A6EF1; border-radius: 20px; padding: 20px; color: rgb(255, 255, 255) !important;}
.contact-section .conctact-img img{width: 100%; max-width: 500px; height: auto; object-fit: cover; opacity: 0.2;}
.contact-section .guidance-contact{display: flex; justify-content: center; flex-direction: column;}

@media (max-width: 768px) {
    .contact-section h2.us{font-size: 42px !important;}
    .contact-section{padding: 18px;}
}

/* Ambient Background Mesh */
.ambient-mesh {
    position: relative;
    z-index: 1;
}
.ambient-mesh::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%; width: 200%; height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(230, 140, 18, 0.05), transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(15, 42, 53, 0.03), transparent 50%);
    z-index: -1;
    animation: ambientShift 20s infinite alternate ease-in-out;
    pointer-events: none;
}
@keyframes ambientShift {
    0% { transform: translate(0, 0) scale(1); }
    100% { transform: translate(-5%, 5%) scale(1.1); }
}

/* Floating Label Inputs */
.form-floating > .form-control,
.form-floating > .form-select {
    padding: 1rem 0.75rem;
    height: calc(3.5rem + 2px);
    line-height: 1.25;
}
.form-floating > label {
    padding: 1rem 0.75rem;
    color: #6c757d;
    transition: transform 0.2s ease-in-out, opacity 0.2s ease-in-out;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    pointer-events: none;
    border: 1px solid transparent;
    transform-origin: 0 0;
}
.form-floating > .form-control:focus, .form-floating > .form-control:not(:placeholder-shown),
.form-floating > .form-select:focus, .form-floating > .form-select:not([value=""]) {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}
.form-floating > .form-control:focus ~ label, .form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    opacity: .65;
    transform: scale(.85) translateY(-0.5rem) translateX(0.15rem);
}
.form-floating > .form-select {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

/* Interactive Contact Detail Cards */
.contact-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(15, 42, 53, 0.05);
    border-radius: 16px;
    padding: 16px 20px;
    margin-bottom: 16px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    text-decoration: none !important;
    color: inherit;
    position: relative;
    overflow: hidden;
}
.contact-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(230, 140, 18, 0.15);
    border-color: rgba(230, 140, 18, 0.3);
}
.contact-card:hover .icon i {
    animation: iconPulse 1s infinite alternate;
}
@keyframes iconPulse {
    0% { transform: scale(1); }
    100% { transform: scale(1.15); }
}
.contact-card p {
    margin: 0;
    font-weight: 500;
    color: #1B3942;
    transition: color 0.3s;
}
.contact-card:hover p {
    color: #E68C12;
}

/* Live Validation Micro-Interactions */
.validation-wrapper {
    position: relative;
}
.validation-icon {
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    color: #25D366;
    pointer-events: none;
    display: flex;
    align-items: center;
    justify-content: center;
}
.form-control:not(:placeholder-shown):valid {
    border-color: rgba(37, 211, 102, 0.5);
    padding-right: 40px;
}
.form-control:not(:placeholder-shown):valid ~ .validation-icon {
    transform: translateY(-50%) scale(1);
    opacity: 1;
}
.form-control:not(:placeholder-shown):invalid {
    border-color: rgba(220, 53, 69, 0.5);
    animation: shake 0.4s 1;
}
@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}