﻿:root {
    --ayur-deep: #0a3622;
    --ayur-primary: #135232;
    --ayur-secondary: #278553;
    --ayur-gold: #d4af37;
    --ayur-bg: #f7faf7;
    --ayur-text: #1f2937;
    --ayur-muted: #5b6470;
}

/* ==========================
   PAGE BANNER
========================== */

.page-banner {
    padding: 60px 0 0;
    background: linear-gradient(135deg,#0a3622,#135232);
    position: relative;
    overflow: hidden;
}

    .page-banner::before {
        content: '';
        position: absolute;
        width: 450px;
        height: 450px;
        border-radius: 50%;
        background: #278553;
        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: var(--ayur-gold);
    border: 1px solid rgba(255,255,255,.1);
    margin-bottom: 25px;
    font-weight: 600;
}

.banner-content h1 {
    color: #fff;
    font-size: 42px;
    line-height: 1.1;
    margin-bottom: 25px;
}

    .banner-content h1 span {
        color: var(--ayur-gold);
    }

.banner-content p {
    color: #e8f5ea;
    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: var(--ayur-gold);
    }

.banner-image {
    text-align: center;
}

    .banner-image img {
        width: 100%;
        max-width: 366px;
        margin-bottom: -20px;
        animation: floatDoctor 5s ease-in-out infinite;
    }

@keyframes floatDoctor {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* GRID EFFECT */

.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;
}

@keyframes gridMove {
    from {
        transform: translateY(0);
    }

    to {
        transform: translateY(60px);
    }
}

/* GLOWS */

.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    opacity: .25;
}

.glow-1 {
    width: 300px;
    height: 300px;
    background: #278553;
    top: 10%;
    left: -100px;
}

.glow-2 {
    width: 350px;
    height: 350px;
    background: #135232;
    right: -100px;
    top: 20%;
}

.glow-3 {
    width: 250px;
    height: 250px;
    background: #d4af37;
    bottom: -80px;
    left: 40%;
}

/* ==========================
   CONTACT SECTION
========================== */

.premium-contact {
    padding: 70px 0;
    background: #f7faf7;
}

.contact-grid {
    display: grid;
    grid-template-columns: 450px 1fr;
    gap: 40px;
}

/* LEFT PANEL */

.contact-info-panel {
    background: linear-gradient(135deg,#0a3622,#135232);
    padding: 45px;
    border-radius: 35px;
    position: relative;
    overflow: hidden;
}

    .contact-info-panel::before {
        content: '';
        position: absolute;
        width: 250px;
        height: 250px;
        border-radius: 50%;
        background: #278553;
        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: var(--ayur-gold);
    margin-bottom: 20px;
}

.contact-info-panel h2 {
    color: #fff;
    font-size: 42px;
    margin-bottom: 20px;
}

    .contact-info-panel h2 span {
        color: var(--ayur-gold);
    }

.contact-info-panel p {
    color: #e8f5ea;
    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);
}

.contact-icon {
    width: 60px;
    height: 60px;
    border-radius: 18px;
    background: linear-gradient(135deg,#278553,#135232);
    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: #e8f5ea;
}

/* RIGHT 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: var(--ayur-text);
        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: #f8fbf8;
    border: 1px solid #dbe7dd;
    border-radius: 16px;
    padding: 16px 18px;
    color: var(--ayur-text);
}

.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,#278553,#135232);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: .3s;
}

    .contact-form-panel button:hover {
        transform: translateY(-2px);
    }

/* RESPONSIVE */

@media(max-width:991px) {

    .banner-wrapper {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .banner-content p {
        margin: auto auto 35px;
    }
}

@media(max-width:576px) {

    .banner-content h1 {
        font-size: 34px;
    }

    .contact-info-panel,
    .contact-form-panel {
        padding: 30px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}
