/* ========= PREMIUM LIGHT DESIGN SYSTEM ========= */
:root {
    --primary-blue: #0099ff;
    --secondary-blue: #0059d6;
    --logo-v: #72c2d1;
    --logo-l: #444b54;
    --light-blue: #d6f5ff;

    --accent-gradient: linear-gradient(135deg, #009eff 0%, #0059d6 100%);
    --bg-light: #f8fafc;
    --glass-bg: rgba(255, 255, 255, 0.7);
    --glass-border: rgba(255, 255, 255, 0.8);
    --card-shadow: 0 20px 40px rgba(0, 153, 255, 0.05);
}

body {
    background: #ffffff;
    color: var(--logo-l);
    overflow-x: hidden;
    font-family: 'Inter', sans-serif;
}

/* ========= MESH BACKGROUND ========= */
.contact-modern {
    position: relative;
    background-color: #ffffff;
    background-image:
        radial-gradient(at 0% 0%, hsla(197, 100%, 94%, 1) 0, transparent 50%),
        radial-gradient(at 50% 0%, hsla(202, 100%, 97%, 1) 0, transparent 50%),
        radial-gradient(at 100% 0%, hsla(190, 100%, 95%, 1) 0, transparent 50%),
        radial-gradient(at 50% 50%, hsla(204, 100%, 98%, 1) 0, transparent 50%);
    padding: 0 0 80px 0;
    /* Removed top padding */
    min-height: 100vh;
    overflow: hidden;
}

/* Moving Mesh Effect */
.contact-modern::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 50% 50%, var(--light-blue), transparent);
    opacity: 0.2;
    filter: blur(100px);
    animation: meshMove 15s infinite alternate ease-in-out;
    z-index: 0;
}

@keyframes meshMove {
    0% {
        transform: translate(-10%, -10%) scale(1);
    }

    100% {
        transform: translate(10%, 10%) scale(1.2);
    }
}

/* ========= PREMIUM HERO SECTION ========= */
.hero-premium-section {
    position: relative;
    height: 350px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    margin-bottom: 0;
    width: 100%;
    overflow: hidden;
    background: url('../img/contact-hero.png') no-repeat center center/cover;
    text-align: center;
    z-index: 10;
}

.hero-premium-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.425);
    z-index: 1;
}

.hero-premium-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.hero-premium-content h1 {
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 10px;
    line-height: 1.2;
}

.hero-premium-content h1 span {
    color: #ffffff;
    background: none;
    -webkit-background-clip: unset;
    background-clip: unset;
    -webkit-text-fill-color: unset;
}

.hero-premium-content p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
    font-style: italic;

    line-height: 1.6;
}

/* ========= GLASS CARD ========= */
.contact-card {
    position: relative;
    z-index: 2;
    margin-top: 60px;
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: var(--card-shadow);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

/* .contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 40px 80px rgba(0, 153, 255, 0.1);
} */

/* LEFT SIDE */
.contact-left {
    background: rgba(0, 153, 255, 0.02);
    padding: 60px;
    border-right: 1px solid rgba(0, 153, 255, 0.05);
}

.contact-left h4 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 40px;
    background: linear-gradient(135deg, #0099ff 0%, #00d2ff 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
    /* Required for background-clip: text to work properly on some elements */
}

.info-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 35px;
}

.info-item i {
    width: 60px;
    min-width: 60px;
    height: 60px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    margin-right: 20px;
    color: var(--primary-blue);
    font-size: 1.5rem;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.03);
    transition: 0.3s ease;
}

.info-item:hover i {
    background: var(--primary-blue);
    color: #fff;
    transform: rotate(-10deg) scale(1.1);
}

.info-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60px;
}

.info-item span,
.info-item span a{
    font-weight: 600;
    font-size: 1.1rem;
    color: #000 !important;
    line-height: 1.4;
}


.info-item span a:hover{
   
    color: #0099FF !important;
   
}

/* RIGHT SIDE */
.contact-right {
    padding: 60px;
    background: #fff;
}

/* FORM CONTROLS */
.form-group-premium {
    position: relative;
    margin-bottom: 30px;
}

.form-control-lite {
    width: 100%;
    padding: 15px 0;
    background: transparent;
    border: none;
    border-bottom: 2px solid #e2e8f0;
    color: var(--logo-l);
    font-size: 1.1rem;
    font-weight: 500;
    transition: 0.4s;
}

.form-control-lite:focus {
    outline: none;
    border-bottom-color: var(--primary-blue);
}

.form-label-lite {
    position: absolute;
    top: 15px;
    left: 0;
    color: #94a3b8;
    pointer-events: none;
    transition: 0.3s;
}

.form-control-lite:focus~.form-label-lite,
.form-control-lite:not(:placeholder-shown)~.form-label-lite {
    top: -10px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--primary-blue);
}

/* PREMIUM BUTTON */
.btn-premium-lite {
    background: var(--accent-gradient);
    color: #fff;
    width: 100%;
    padding: 20px;
    border-radius: 20px;
    border: none;
    font-size: 1.1rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 20px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 15px 30px rgba(0, 153, 255, 0.2);
    cursor: pointer;
}

.btn-premium-lite:hover {
    transform: translateY(-5px) scale(1.03);
    box-shadow: 0 25px 50px rgba(0, 153, 255, 0.4);
    filter: brightness(1.1);
}

.btn-premium-lite:active {
    transform: translateY(-2px) scale(0.98);
}

/* ALERTS */
.contact-right .alert {
    border-radius: 15px;
    border: none;
    padding: 15px 25px;
    font-weight: 600;
    font-size: 0.95rem;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 10px 30px rgba(0, 153, 255, 0.1);
}

.contact-right .alert-success {
    background: rgba(0, 136, 255, 0.15);
    color: #0088ff;
    border-left: 5px solid #0088ff;
}

.contact-right .alert-danger {
    background: rgba(255, 46, 91, 0.1);
    color: #ff2e5b;
    border-left: 5px solid #ff2e5b;
}

/* RESPONSIVE */
@media (max-width: 991.98px) {
    .contact-left {
        border-right: none;
        border-bottom: 1px solid rgba(0, 153, 255, 0.05);
    }
}

@media (max-width: 768px) {
    .contact-hero-lite h1 {
        font-size: 2.5rem;
    }

    .contact-left,
    .contact-right {
        padding: 40px;
    }
}