@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=Inter:wght@400;500;600&display=swap');

.premium-hero {
    position: relative;
    background-color: #0b1d33;
    color: #ffffff;
    overflow: hidden;
    padding: 40px 0 80px;
}

/* Blurred Background with Pseudo-element */
.premium-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../../images/backgrounds/hero-premium-bg.png');
    background-size: cover;
    background-position: center;
    filter: blur(8px) brightness(0.4);
    transform: scale(1.1);
    /* Avoid white edges from blur */
    z-index: 0;
}

.premium-hero .container {
    position: relative;
    z-index: 2;
}

/* Tagline with Gold Line */
.hero-tag {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.hero-tag .line {
    display: inline-block;
    width: 40px;
    height: 1px;
    background-color: #d8ac2f;
}

.hero-tag .tag-text {
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    color: #e0e0e0;
    font-family: 'Inter', sans-serif;
}

/* Headline */
.hero-title {
    font-family: "Exo", serif;
    font-size: 51px;
    line-height: 65px;
    font-weight: 600;
    margin-bottom: 25px;
    color: #ffffff;
}

.hero-title .highlight {
    color: #d8ac2f;
    font-style: normal;
}

/* Description */
.hero-desc {
    font-family: 'Inter', sans-serif;
    font-size: 18px;
    line-height: 1.6;
    color: #fff;
    max-width: 500px;
    margin-bottom: 45px;
}

/* Stats Section */
.hero-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(216, 172, 47, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(216, 172, 47, 0.9);
    border: 1px solid rgba(216, 172, 47, 0.25);
    font-size: 14px;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Inter', sans-serif;
    line-height: 2.2;
}

.stat-label {
    font-size: 14px;
    color: #fff;
    line-height: 1.4;
    text-transform: capitalize;
}

/* Buttons */
.hero-btns {
    display: flex;
    gap: 20px;
    align-items: center;
}

.btn-gold {
    background-color: #d8ac2f;
    color: #ffffff;
    padding: 16px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-gold:hover {
    background-color: #c99c25;
}

.btn-outline {
    background-color: transparent;
    color: #ffffff;
    padding: 16px 35px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-outline:hover {
    background-color: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
}

.play-icon {
    width: 28px;
    height: 28px;
    border: 1px solid #d8ac2f;
    background: rgba(216, 172, 47, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    color: #d8ac2f;
}

/* Image Container */
.hero-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
}

.hero-image {
    position: relative;
    max-width: 100%;
    z-index: 1;
    margin-bottom: -81px;
    /* Offsets the 80px padding-bottom of the section */
}

.hero-image img {
    max-width: 85%;
    display: block;
    height: auto;
    filter: drop-shadow(0 0px 40px rgba(0, 0, 0, 0.8));
    /* margin-left: auto; */
}

/* Doctor Badge/Card */
.doctor-badge {
    position: absolute;
    bottom: 22px;
    right: 0;
    background: #d8ac2f;
    padding: 20px 30px;
    border-radius: 13px;
    min-width: 270px;
    z-index: 3;
    box-shadow: -10px -10px 40px rgba(0, 0, 0, 0.4);
}

.badge-name {
    font-size: 26px;
    font-weight: 500;
    color: #ffffff;
    margin-bottom: 5px;
    font-family: "Exo", serif;
}

.badge-qual {
    font-size: 14px;
    color: #ffffff;
    opacity: 0.9;
    /* margin-bottom: 5px; */
}

.badge-role {
    font-size: 14px;
    color: #bbbbbb;
    margin-bottom: 20px;
}

.signature {
    margin-top: 15px;
}

.signature img {
    height: 45px;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

/* Responsive */
@media (max-width: 1199px) {
    .premium-hero {
        padding: 80px 0 80px;
    }

    .hero-title {
        font-size: 56px;
    }

    .hero-image img {
        max-width: 100%;
        transform: none;
    }
}

@media (max-width: 991px) {
    .premium-hero {
        padding: 60px 0 60px;
        text-align: center;
    }

    .hero-tag {
        justify-content: center;
    }

    .hero-desc {
        margin: 0 auto 40px;
    }

    .hero-stats {
        justify-content: center;
        gap: 20px;
    }

    .hero-btns {
        justify-content: center;
        flex-direction: column;
    }

    .btn-gold,
    .btn-outline {
        width: 100%;
        max-width: 320px;
    }

    .hero-image-container {
        justify-content: center;
        margin-top: 50px;
        padding-bottom: 20px;
    }

    .hero-image img {
        max-width: 100%;
        margin: 0 auto;
    }

    .doctor-badge {
        display: none;
    }
}

@media (max-width: 575px) {
    .hero-title {
        font-size: 40px;
    }

    .hero-stats {
        display: inline-flex;
        flex-direction: column;
        align-items: flex-start;
    }

    .stat-item {
        width: auto;
        text-align: left;
    }
}