@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,300;1,400;1,600&display=swap');

/* ============================================================
   CSS VARIABLES – Azen Health Palette
   ============================================================ */
:root {
    --orange: #E8724A;
    --orange-dark: #C95A33;
    --brown: #7B5246;
    --brown-light: #A07060;
    --sage: #8AAF88;
    --sage-dark: #6A9068;
    --blush: #F2B49A;
    --cream: #FDF6F2;
    --white: #FFFFFF;
    --dark: #2B1F1A;
    --gray: #6B6B6B;
    --gray-light: #F5F0ED;
    --border: #E8DDD9;
    --font: 'Poppins', sans-serif;
    --shadow: 0 4px 24px rgba(123, 82, 70, .10);
    --radius: 10px;
    --transition: all .3s ease;
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font);
    font-size: 16px;
    color: var(--dark);
    background: var(--white);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

a:hover {
    color: var(--orange);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul {
    list-style: none;
}

.section-space {
    padding: 80px 0;
}

.section-space-sm {
    padding: 50px 0;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 14px;
    line-height: 1.25;
}

.section-title span {
    color: var(--orange);
}

.section-subtitle {
    color: var(--gray);
}

.btn-primary-az {
    display: inline-block;
    background: var(--orange);
    color: var(--white) !important;
    padding: 13px 32px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    letter-spacing: .3px;
    border: 2px solid var(--orange);
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.btn-primary-az:hover {
    background: var(--orange-dark);
    border-color: var(--orange-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(232, 114, 74, .3);
    position: relative;
    z-index: 1;
}

.btn-outline-az {
    display: inline-block;
    background: transparent;
    color: #ffffff !important;
    padding: 11px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: .95rem;
    border: 2px solid #ffffff;
    transition: var(--transition);
    osition: relative;
    z-index: 1;
}

.btn-outline-az:hover {
    background: var(--orange);
    color: var(--white) !important;
    transform: translateY(-2px);
    osition: relative;
    z-index: 1;
}

/* ============================================================
   TOP BAND
   ============================================================ */
.top-band {
    background: var(--brown);
    color: var(--white);
    font-size: .82rem;
    padding: 7px 0;
}

.top-band a {
    color: var(--blush);
}

.top-band a:hover {
    color: var(--white);
}

.top-band .top-band-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.top-band-links {
    display: flex;
    gap: 18px;
    align-items: center;
}

.top-band-links a {
    display: flex;
    align-items: center;
    gap: 5px;
    color: rgba(255, 255, 255, .85);
}

.top-band-links a:hover {
    color: var(--white);
}

.top-band marquee {
    flex: 1;
    color: rgba(255, 255, 255, .9);
}

/* ============================================================
   HEADER / NAVBAR
   ============================================================ */
.site-header {
    background: var(--white);
    box-shadow: 0 2px 16px rgba(123, 82, 70, .08);
    position: sticky;
    top: 0;
    z-index: 999;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 0;
    gap: 20px;
}

.logo img {
    height: 52px;
    width: auto;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    font-size: .92rem;
    font-weight: 500;
    color: var(--dark);
    padding: 8px 70px;
    border-radius: 50px;
    transition: var(--transition);
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--orange);
    background: rgba(232, 114, 74, .08);
}

.main-nav a.nav-cta {
    background: var(--orange);
    color: var(--white) !important;
    padding: 9px 22px;
}

.main-nav a.nav-cta:hover {
    background: var(--orange-dark);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.hamburger span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--brown);
    border-radius: 2px;
    transition: var(--transition);
}

/* ============================================================
   HERO CAROUSEL
   ============================================================ */
.hero-carousel {
    position: relative;
    overflow: hidden;
}

.hero-slide {
    min-height: 600px;
    display: flex;
    align-items: center;
    position: relative;
    background-size: cover;
    background-position: center;
}

.hero-slide::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg, rgba(43, 31, 26, .72) 40%, rgba(138, 175, 136, .30) 100%);
}

.hero-slide-1 {
    background-image: url('../images/hero-1.jpg');
}

.hero-slide-2 {
    background-image: url('../images/hero-2.jpg');
}

.hero-slide-3 {
    background-image: url('../images/hero-3.jpg');
}

.hero-slide-fallback {
    background: linear-gradient(135deg, var(--brown) 0%, var(--orange) 60%, var(--sage) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 640px;
    color: var(--white);
    animation: fadeUp .8s ease both;
}

.hero-content .tagline {
    font-size: .85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--blush);
    margin-bottom: 16px;
}

.hero-content h1 {
    font-size: clamp(2rem, 4.5vw, 3rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content p {
    font-weight: 300;
    margin-bottom: 32px;
    opacity: .92;
}

.hero-btns {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
}

.carousel-indicators-az {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

.carousel-indicators-az button {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    cursor: pointer;
    padding: 0;
    transition: var(--transition);
}

.carousel-indicators-az button.active {
    background: var(--orange);
    border-color: var(--orange);
    width: 28px;
    border-radius: 10px;
}

.carousel-ctrl {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, .18);
    border: 2px solid rgba(255, 255, 255, .4);
    color: var(--white);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.carousel-ctrl:hover {
    background: var(--orange);
    border-color: var(--orange);
}

.carousel-ctrl.prev {
    left: 20px;
}

.carousel-ctrl.next {
    right: 20px;
}

/* ============================================================
   DISCLAIMER BAND
   ============================================================ */
.disclaimer-band {
    background: var(--sage);
    color: var(--white);
    padding: 10px 0;
    font-size: .82rem;
    text-align: center;
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--cream);
    border-top: 3px solid var(--orange);
    padding: 40px 0;
}

.stat-item {
    text-align: center;
}

.stat-item .num {
    font-size: 2.4rem;
    font-weight: 800;
    color: var(--orange);
    line-height: 1;
}

.stat-item .lbl {
    font-size: .9rem;
    color: var(--brown);
    font-weight: 500;
    margin-top: 4px;
}

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-section {
    background: var(--white);
}

.about-img-wrap {
    position: relative;
}

.about-img-wrap img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    width: 100%;
    object-fit: cover;
}

.about-badge {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--orange);
    color: var(--white);
    padding: 22px 26px;
    border-radius: var(--radius);
    text-align: center;
    box-shadow: 0 8px 24px rgba(232, 114, 74, .35);
}

.about-badge .num {
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
}

.about-badge .lbl {
    font-size: .78rem;
    font-weight: 500;
    margin-top: 4px;
}

.about-content {
    padding-left: 40px;
}

.about-content .lead {
    font-size: 1.08rem;
    color: var(--gray);
    margin-bottom: 24px;
}

.about-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 30px;
}

.about-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: .95rem;
    color: var(--dark);
}

.about-list li .icon {
    width: 28px;
    height: 28px;
    min-width: 28px;
    background: rgba(232, 114, 74, .12);
    color: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    margin-top: 2px;
}

/* ============================================================
   WHY CHOOSE / FEATURES
   ============================================================ */
.features-section {
    background: var(--gray-light);
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border-bottom: 3px solid transparent;
}

.feature-card:hover {
    transform: translateY(-6px);
    border-bottom-color: var(--orange);
    box-shadow: 0 12px 36px rgba(232, 114, 74, .15);
}

.feature-card .icon {
    width: 68px;
    height: 68px;
    background: linear-gradient(135deg, var(--blush), var(--orange));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 1.6rem;
    color: var(--white);
}

.feature-card h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 10px;
}


/* ============================================================
   SERVICES / PROGRAMS
   ============================================================ */
.services-section {
    background: var(--white);
}

.service-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 24px;
    border-radius: var(--radius);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.service-item:hover {
    box-shadow: var(--shadow);
    border-color: var(--blush);
}

.service-item .icon {
    width: 52px;
    height: 52px;
    min-width: 52px;
    background: var(--cream);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--orange);
    align-items: center !important;

}

.service-item p {
    display: none;
}

.service-item h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 6px;
}

.service-item p {
    font-size: .88rem;
    color: var(--gray);
    margin: 0;
}

/* ============================================================
   MISSION / VISION BAND
   ============================================================ */
.mission-band {
    background: linear-gradient(135deg, var(--brown) 0%, var(--orange) 100%);
    color: var(--white);
    padding: 70px 0;
}

.mission-band h2 {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 16px;
}

.mission-band p {
    margin: auto;
}

.mission-card {
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: var(--radius);
    padding: 30px 24px;
    backdrop-filter: blur(4px);
}

.mission-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--blush);
}

.mission-card p {
    font-size: .9rem;
    opacity: .9;
    margin: 0;
}

/* ============================================================
   NEWS / INSIGHTS
   ============================================================ */
.news-section {
    background: var(--gray-light);
}

.news-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
}

.news-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 36px rgba(123, 82, 70, .14);
}

.news-card .thumb {
    background: linear-gradient(135deg, var(--blush), var(--sage));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--white);
}

.news-card .body {
    padding: 22px;
}

.news-card .tag {
    display: inline-block;
    background: rgba(232, 114, 74, .12);
    color: var(--orange);
    font-size: .75rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 50px;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.news-card h5 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-card p {
    font-size: .88rem;
    color: var(--gray);
    margin-bottom: 14px;
}

.news-card .read-more {
    font-size: .85rem;
    font-weight: 600;
    color: var(--orange);
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-card .read-more:hover {
    gap: 10px;
}

/* ============================================================
   PARTNERS LOGOS
   ============================================================ */
.partners-section {
    background: var(--white);
    padding: 60px 0;
}

.partner-logo {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(1) opacity(.5);
    transition: var(--transition);
    padding: 0 20px;
}

.partner-logo:hover {
    filter: none;
}

.partner-logo-placeholder {
    background: var(--gray-light);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 24px;
    font-size: .85rem;
    font-weight: 600;
    color: var(--brown-light);
    white-space: nowrap;
}

/* ============================================================
   CTA BAND
   ============================================================ */
.cta-band {
    background: var(--sage);
    padding: 70px 0;
    color: var(--white);
    text-align: center;
}

.cta-band h2 {
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 14px;
}

.cta-band p {
    margin-bottom: 28px;
    margin-left: auto;
    margin-right: auto;
}

.btn-white-az {
    display: inline-block;
    background: var(--white);
    color: var(--orange) !important;
    padding: 13px 34px;
    border-radius: 50px;
    font-weight: 700;
    border: 2px solid var(--white);
    transition: var(--transition);
}

.btn-white-az:hover {
    background: transparent;
    color: var(--white) !important;
    transform: translateY(-2px);
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
    background: #70483d;
    color: rgba(255, 255, 255, .75);
    padding-top: 64px;
}

.footer-logo img {
    height: 46px;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-desc {
    font-size: .88rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer-widget-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--orange);
    display: inline-block;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.footer-links a {
    font-size: .88rem;
    color: rgba(255, 255, 255, .7);
    display: flex;
    align-items: center;
    gap: 7px;
}

.footer-links a:hover {
    color: var(--blush);
    padding-left: 4px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 14px;
}

.footer-contact-item .icon {
    width: 34px;
    height: 34px;
    min-width: 34px;
    background: rgba(232, 114, 74, .18);
    color: var(--blush);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .9rem;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.footer-social a {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, .08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .7);
    font-size: .9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--orange);
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .08);
    padding: 20px 0;
    margin-top: 48px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .8rem;
    color: rgba(255, 255, 255, .5);
    background: #3b2119;
}

.footer-bottom a {
    color: rgba(255, 255, 255, .6);
}

.footer-bottom a:hover {
    color: var(--blush);
}

/* ============================================================
   FLOATING CHAT / FEEDBACK
   ============================================================ */
.float-wrap {
    position: fixed;
    right: 22px;
    bottom: 28px;
    z-index: 9000;
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-end;
}

.float-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--orange);
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 50px;
    font-size: .85rem;
    font-weight: 600;
    box-shadow: 0 6px 20px rgba(232, 114, 74, .4);
    transition: var(--transition);
    white-space: nowrap;
}

.float-btn:hover {
    background: var(--orange-dark);
    transform: translateY(-2px);
}

.float-btn.feedback {
    background: var(--brown);
    box-shadow: 0 6px 20px rgba(123, 82, 70, .4);
}

.float-btn.feedback:hover {
    background: var(--brown-light);
}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
    color: var(--white);
    padding: 90px 0 90px;
    background: url(../images/inner_banner.jpg);
    position: relative;
    background-size: cover !important;
    background-position: 65% 50%;
    height: 450px;
}

.page-hero::after {
    background: linear-gradient(120deg, rgba(43, 31, 26, .72) 40%, rgba(138, 175, 136, .30) 100%);
    position: absolute;
    width: 100%;
    height: 100%;
    content: "";
    top: 0;
}

.page-hero h1 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 10px;
    z-index: 1;
    position: relative;
}

.page-hero p {
    z-index: 1;
    position: relative;
}

.heropara {
}

.breadcrumb-az {
    display: flex;
    gap: 8px;
    align-items: center;
    margin-top: 14px;
    font-size: .85rem;
    z-index: 1;
    position: relative;
}

.breadcrumb-az a {
    color: var(--blush);
}

.breadcrumb-az span {
    opacity: .6;
}

/* ============================================================
   CARDS (generic)
   ============================================================ */
.generic-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 30px 26px;
    box-shadow: var(--shadow);
    border-left: 4px solid var(--orange);
    transition: var(--transition);
    height: 100%;
}

.generic-card:hover {
    transform: translateY(-4px);
}

.generic-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--brown);
    margin-bottom: 10px;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-form-wrap {
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.form-label-az {
    font-size: .88rem;
    font-weight: 600;
    color: var(--brown);
    margin-bottom: 5px;
}

.form-control-az {
    width: 100%;
    padding: 11px 16px;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    font-family: var(--font);
    font-size: .92rem;
    color: var(--dark);
    background: var(--white);
    transition: var(--transition);
    outline: none;
}

.form-control-az:focus {
    border-color: var(--orange);
    box-shadow: 0 0 0 3px rgba(232, 114, 74, .12);
}

.form-group {
    margin-bottom: 20px;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.animate-on-scroll {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991px) {
    .about-content {
        padding-left: 0;
        margin-top: 40px;
    }

    .about-badge {
        bottom: -16px;
        right: 10px;
    }

    .main-nav {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--white);
        padding: 20px;
        box-shadow: 0 12px 32px rgba(0, 0, 0, .1);
        border-top: 2px solid var(--orange);
    }

    .main-nav.open {
        display: flex;
    }

    .hamburger {
        display: flex;
    }

    .site-header {
        position: relative;
    }

    .hero-slide {
        min-height: 480px;
    }

    .mission-band .row>div:last-child {
        margin-top: 30px;
    }
}

@media (max-width: 767px) {
    .section-space {
        padding: 55px 0;
    }

    .hero-slide {
        min-height: 420px;
    }

    .hero-content h1 {
        font-size: 1.8rem;
    }

    .page-hero{
        height: auto !important;
        padding:50px 0;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .float-wrap {
        right: 14px;
        bottom: 18px;
    }

    .float-btn {
        padding: 9px 14px;
        font-size: .8rem;
    }

    .contact-form-wrap {
        padding: 24px;
    }

    .stats-bar .row>div {
        margin-bottom: 24px;
    }
}

@media (max-width: 480px) {
    .hero-btns {
        flex-direction: column;
    }

    .hero-btns .btn-primary-az,
    .hero-btns .btn-outline-az {
        text-align: center;
    }

    .carousel-ctrl {
        display: none;
    }
}

/* =======================================================
                         Mobile
========================================================== */

@media (max-width: 768px) {
    .page-hero {
        background-position: left !important;
    }
}

@media only screen and (min-width: 1200px) and (max-width:1399px) {
    .site-header .container {
        max-width: 95%;
    }

    .page-hero{
        background-position: right !important;
    }

    .page-hero h1{
        font-size: 2rem !important;
    }
}