﻿.page-banner {
    margin-top: -128px;
    padding: 120px 0 7px;
    background: linear-gradient( 135deg, #051937, #082A5A );
    position: relative;
    overflow: hidden;
}

    /* Glow */

    .page-banner::before {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: #20C997;
        filter: blur(150px);
        opacity: .15;
        top: -150px;
        right: -100px;
    }

.banner-wrapper {
    display: grid;
    grid-template-columns: 1fr 500px;
    gap: 50px;
    padding: 30px 0 0 40px;
    align-items: center;
}

.banner-badge {
    display: inline-block;
    padding: 12px 22px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    color: #20C997;
    border: 1px solid rgba(255,255,255,.1);
    margin-bottom: 25px;
}

.banner-content h1 {
    color: #fff;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 25px;
}

    .banner-content h1 span {
        color: #20C997;
    }

.banner-content p {
    color: #D8E8FF;
    max-width: 550px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.breadcrumb-box {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 25px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    backdrop-filter: blur(15px);
}

    .breadcrumb-box a {
        color: #fff;
        text-decoration: none;
    }

    .breadcrumb-box span:last-child {
        color: #20C997;
    }

.banner-image {
    text-align: center;
}
    .banner-image img {
        width: 100%;
        margin-bottom: -20px;
        max-width: 470px;
        animation: floatDoctor 5s ease-in-out infinite;
    }

@keyframes floatDoctor {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0px);
    }
}
.banner-content {
    animation: slideLeft 1s ease forwards;
}

.banner-image {
    animation: slideRight 1s ease forwards;
}

@keyframes slideLeft {

    from {
        opacity: 0;
        transform: translateX(-60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideRight {

    from {
        opacity: 0;
        transform: translateX(60px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}
/* Responsive */

@media(max-width:991px) {

    .banner-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .banner-content p {
        margin: auto auto 35px;
    }

    .banner-content h1 {
        font-size: 52px;
    }

    .banner-image {
        margin-top: 30px;
    }
}

@media(max-width:576px) {

    .page-banner {
        padding: 150px 0 60px;
    }

    .banner-content h1 {
        font-size: 38px;
    }
}

.banner-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient( rgba(255,255,255,.03) 1px, transparent 1px ), linear-gradient( 90deg, rgba(255,255,255,.03) 1px, transparent 1px );
    background-size: 60px 60px;
    animation: gridMove 12s linear infinite;
    pointer-events: none;
}

@keyframes gridMove {

    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(60px);
    }
}
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .25;
    animation: floatGlow 8s ease-in-out infinite;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: #20C997;
    top: 10%;
    left: -100px;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: #0D6EFD;
    right: -100px;
    top: 20%;
    animation-delay: 2s;
}

.glow-3 {
    width: 250px;
    height: 250px;
    background: #22D3EE;
    bottom: -80px;
    left: 40%;
    animation-delay: 4s;
}

@keyframes floatGlow {

    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-40px);
    }

    100% {
        transform: translateY(0px);
    }
}
.premium-contact {
    padding: 60px 0;
    background: #f8fafc;
    position: relative;
}

/* GRID */

.contact-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 40px;
}

/* LEFT PANEL */

.contact-info-panel {
    background: linear-gradient( 135deg, #061B47, #0A4EA3 );
    padding: 45px;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
}

    .contact-info-panel::before {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: #20C997;
        filter: blur(120px);
        opacity: .15;
        top: -80px;
        right: -80px;
    }

.contact-tag {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 50px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.10);
    color: #20C997;
    margin-bottom: 20px;
}

.contact-info-panel h2 {
    color: #fff;
    font-size: 39px;
    margin-bottom: 20px;
}

    .contact-info-panel h2 span {
        color: #20C997;
    }

.contact-info-panel p {
    color: #D8E8FF;
    line-height: 1.8;
    margin-bottom: 35px;
}

/* CONTACT CARD */

.contact-card {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px;
    margin-bottom: 18px;
    border-radius: 20px;
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.08);
    backdrop-filter: blur(15px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient( 135deg, #20C997, #0D6EFD );
    display: flex;
    align-items: center;
    justify-content: center;
}

    .contact-icon i {
        color: #fff;
        font-size: 22px;
    }

.contact-card h4 {
    color: #fff;
    margin-bottom: 5px;
}

.contact-card span {
    color: #D8E8FF;
}

/* FORM PANEL */

.contact-form-panel {
    background: #fff;
    padding: 45px;
    border-radius: 35px;
    box-shadow: 0 20px 60px rgba(0,0,0,.06);
}

    .contact-form-panel h3 {
        font-size: 36px;
        color: #081B3D;
        margin-bottom: 30px;
    }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-panel input,
.contact-form-panel textarea {
    width: 100%;
    border: none;
    outline: none;
    background: #f8fafc;
    border: 1px solid #e5e7eb;
    border-radius: 16px;
    padding: 16px 18px;
}

.contact-form-panel textarea {
    height: 180px;
    resize: none;
    margin-bottom: 25px;
}

.contact-form-panel button {
    border: none;
    padding: 18px 35px;
    border-radius: 50px;
    background: linear-gradient( 135deg, #0A4EA3, #2563eb );
    color: #fff;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
}

/* RESPONSIVE */

@media(max-width:991px) {

    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media(max-width:576px) {

    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 30px;
    }
}