/*
Theme Name: Hello Biz Child
Template: hello-biz
Version: 1.0.0
Text Domain: hello-biz-child
*/

/* =========================
   GLOBAL
========================= */

:root {
    --agh-primary: #082f63;
    --agh-secondary: #0097b2;
    --agh-accent: #cf2e66;
    --agh-light: #f4f9fd;
    --agh-white: #ffffff;
    --agh-text: #1f2937;
    --agh-muted: #667085;
    --agh-border: #dbe8f1;
    --agh-shadow: 0 12px 35px rgba(8, 47, 99, 0.10);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: var(--agh-text);
    background: var(--agh-white);
    line-height: 1.7;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    color: inherit;
    text-decoration: none;
    transition: 0.25s ease;
}

.agh-container,
.package-container {
    width: min(1180px, calc(100% - 40px));
    margin-left: auto;
    margin-right: auto;
}

/* =========================
   HEADER
========================= */

.agh-header {
    position: relative;
    width: 100%;
    background: var(--agh-white);
    border-bottom: 1px solid var(--agh-border);
    z-index: 999;
}

.agh-header .container {
    width: min(1180px, calc(100% - 40px));
    min-height: 88px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 30px;
}

.agh-header .logo {
    flex-shrink: 0;
}

.agh-header .logo a {
    display: flex;
    align-items: center;
}

.agh-header .custom-logo {
    width: auto;
    max-width: 220px;
    max-height: 70px;
}

.agh-header .logo h2 {
    margin: 0;
    color: var(--agh-primary);
    font-size: 25px;
}

.main-menu {
    flex: 1;
}

.main-menu ul {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.main-menu li {
    margin: 0;
}

.main-menu a {
    position: relative;
    color: var(--agh-primary);
    font-size: 15px;
    font-weight: 600;
    padding: 31px 0;
}

.main-menu a:hover,
.main-menu .current-menu-item > a,
.main-menu .current-menu-parent > a {
    color: var(--agh-secondary);
}

.main-menu a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 22px;
    width: 0;
    height: 2px;
    background: var(--agh-secondary);
    transition: width 0.25s ease;
}

.main-menu a:hover::after,
.main-menu .current-menu-item > a::after {
    width: 100%;
}

.appointment-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 12px 23px;
    border-radius: 7px;
    background: linear-gradient(
        135deg,
        var(--agh-primary),
        var(--agh-secondary)
    );
    color: var(--agh-white);
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(0, 151, 178, 0.20);
}

.appointment-btn:hover {
    color: var(--agh-white);
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 151, 178, 0.28);
}

/* =========================
   PAGE CONTENT
========================= */

.site-main,
main {
    min-height: 450px;
}

.entry-title,
.page-title {
    color: var(--agh-primary);
}

.agh-page-banner {
    padding: 85px 0;
    background:
        linear-gradient(
            90deg,
            rgba(8, 47, 99, 0.94),
            rgba(0, 151, 178, 0.82)
        );
    color: var(--agh-white);
}

.agh-page-banner h1 {
    margin: 0 0 8px;
    font-size: 44px;
    color: var(--agh-white);
}

.agh-page-banner p {
    margin: 0;
    color: rgba(255, 255, 255, 0.85);
}

/* =========================
   HEALTH PACKAGE PAGE
========================= */

.package-container {
    padding-top: 65px;
    padding-bottom: 80px;
}

.package-top {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 55px;
    align-items: center;
}

.package-image {
    position: relative;
}

.package-image::before {
    content: "";
    position: absolute;
    width: 80%;
    height: 80%;
    left: -18px;
    bottom: -18px;
    border-radius: 24px;
    background: var(--agh-light);
    z-index: -1;
}

.package-image img {
    display: block;
    width: 100%;
    border-radius: 20px;
    box-shadow: var(--agh-shadow);
}

.package-info {
    padding: 10px 0;
}

.package-info::before {
    content: "Health Package";
    display: inline-flex;
    padding: 7px 15px;
    margin-bottom: 16px;
    border-radius: 50px;
    background: rgba(0, 151, 178, 0.10);
    color: var(--agh-secondary);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.package-info h1 {
    margin: 0 0 18px;
    color: var(--agh-primary);
    font-size: clamp(34px, 4vw, 52px);
    line-height: 1.15;
}

.package-info p {
    margin: 0 0 20px;
    color: var(--agh-muted);
    font-size: 17px;
}

.price {
    margin: 28px 0;
    color: var(--agh-secondary);
    font-size: 38px;
    font-weight: 800;
    line-height: 1;
}

.book-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    min-height: 52px;
    padding: 14px 28px;
    border-radius: 8px;
    background: linear-gradient(
        135deg,
        var(--agh-primary),
        var(--agh-secondary)
    );
    color: var(--agh-white);
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 151, 178, 0.20);
}

.book-btn:hover {
    color: var(--agh-white);
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(0, 151, 178, 0.28);
}

.section {
    margin-top: 55px;
}

.section h2 {
    position: relative;
    margin: 0 0 25px;
    padding-bottom: 13px;
    color: var(--agh-primary);
    font-size: 32px;
}

.section h2::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 65px;
    height: 3px;
    border-radius: 10px;
    background: var(--agh-secondary);
}

.section-content {
    padding: 30px;
    border: 1px solid var(--agh-border);
    border-radius: 16px;
    background: var(--agh-light);
    box-shadow: 0 8px 25px rgba(8, 47, 99, 0.05);
}

.section-content p {
    margin-top: 0;
    margin-bottom: 10px;
}

.section-content p:last-child {
    margin-bottom: 0;
}

/* =========================
   FOOTER
========================= */

.agh-footer {
    margin-top: 70px;
    color: rgba(255, 255, 255, 0.78);
    background: var(--agh-primary);
}

.agh-footer-main {
    padding: 70px 0 55px;
}

.agh-footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.9fr 1.1fr;
    gap: 45px;
}

.agh-footer-column h3 {
    position: relative;
    margin: 0 0 24px;
    padding-bottom: 12px;
    color: var(--agh-white);
    font-size: 18px;
}

.agh-footer-column h3::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 38px;
    height: 2px;
    background: var(--agh-secondary);
}

.agh-footer-column p {
    margin-top: 20px;
}

.agh-footer-column ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.agh-footer-column li {
    margin-bottom: 11px;
}

.agh-footer-column a {
    color: rgba(255, 255, 255, 0.78);
}

.agh-footer-column a:hover {
    color: var(--agh-white);
    padding-left: 4px;
}

.agh-footer-logo .custom-logo {
    width: auto;
    max-width: 220px;
    max-height: 75px;
    background: var(--agh-white);
    padding: 8px;
    border-radius: 8px;
}

.agh-footer-logo h2 {
    color: var(--agh-white);
}

.agh-social-links {
    display: flex;
    gap: 10px;
    margin-top: 22px;
}

.agh-social-links a {
    width: 38px;
    height: 38px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: 50%;
    color: var(--agh-white);
    font-size: 13px;
    font-weight: 700;
}

.agh-social-links a:hover {
    padding-left: 0;
    border-color: var(--agh-secondary);
    background: var(--agh-secondary);
    transform: translateY(-2px);
}

.agh-footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(0, 0, 0, 0.12);
}

.agh-footer-bottom-inner {
    min-height: 68px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 25px;
}

.agh-footer-bottom p {
    margin: 0;
    font-size: 14px;
}

.agh-footer-bottom a {
    color: rgba(255, 255, 255, 0.78);
}

.agh-footer-bottom a:hover {
    color: var(--agh-white);
}

/* =========================
   WORDPRESS ADMIN BAR
========================= */

.admin-bar .agh-header {
    top: 0;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 1050px) {

    .agh-header .container {
        flex-wrap: wrap;
        padding-top: 15px;
        padding-bottom: 15px;
    }

    .main-menu {
        order: 3;
        width: 100%;
    }

    .main-menu ul {
        justify-content: flex-start;
        flex-wrap: wrap;
        gap: 18px 25px;
    }

    .main-menu a {
        padding: 8px 0;
    }

    .main-menu a::after {
        bottom: 0;
    }

    .agh-footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

}

@media (max-width: 768px) {

    .agh-container,
    .package-container,
    .agh-header .container {
        width: min(100% - 28px, 1180px);
    }

    .agh-header .container {
        justify-content: space-between;
    }

    .agh-header .custom-logo {
        max-width: 170px;
        max-height: 58px;
    }

    .appointment-btn {
        min-height: 43px;
        padding: 10px 16px;
        font-size: 13px;
    }

    .main-menu ul {
        display: block;
    }

    .main-menu li {
        border-top: 1px solid var(--agh-border);
    }

    .main-menu a {
        display: block;
        padding: 12px 0;
    }

    .main-menu a::after {
        display: none;
    }

    .package-container {
        padding-top: 38px;
        padding-bottom: 55px;
    }

    .package-top {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .package-info h1 {
        font-size: 34px;
    }

    .price {
        font-size: 31px;
    }

    .section {
        margin-top: 38px;
    }

    .section h2 {
        font-size: 27px;
    }

    .section-content {
        padding: 22px;
    }

    .agh-footer {
        margin-top: 50px;
    }

    .agh-footer-main {
        padding-top: 50px;
    }

    .agh-footer-grid {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .agh-footer-bottom-inner {
        padding-top: 18px;
        padding-bottom: 18px;
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

}

@media (max-width: 480px) {

    .agh-header .logo {
        width: 100%;
    }

    .appointment-btn {
        width: 100%;
    }

    .package-info h1 {
        font-size: 29px;
    }

    .book-btn {
        width: 100%;
    }

}