/* Fix header alignment */
.header-wrap {
    display: flex !important;
    align-items: center;
    /* vertical center */
    justify-content: space-between;
}

/* Keep menu inline */
.nav-wrap.style1,
.nav-wrap.style2 {
    display: flex;
    align-items: center;
}

/* Logo fix */
.logo {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Remove extra spacing pushing menu down */
.header-wrap>div {
    margin: 0 !important;
}

/* Menu spacing */
.mainnav .menu {
    display: flex;
    align-items: center;
    gap: 25px;
}

.logo img {
    height: 55px;
}

.header-wrap {
    min-height: 80px;
}



/* ===== PAGE HERO ===== */
.page-hero {
    position: relative;
    padding: 120px 0 80px;
    color: #fff;
    overflow: hidden;
}

/* Background Image */
.page-hero-bg {
    position: absolute;
    inset: 0;
    background: url('/image/home/slider1.jpg') center/cover no-repeat;
    z-index: 0;
}

/* Dark Gradient Overlay */
.page-hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
            rgba(10, 20, 50, 0.9) 0%,
            rgba(10, 20, 50, 0.7) 40%,
            rgba(10, 20, 50, 0.4) 100%);
    z-index: 1;
}

/* Content */
.page-hero-content {
    position: relative;
    z-index: 2;
}

/* Breadcrumb */
.breadcrumb-modern {
    font-size: 14px;
    margin-bottom: 15px;
    opacity: 0.8;
}

.breadcrumb-modern a {
    color: #fff;
    text-decoration: none;
}

.breadcrumb-modern span {
    margin: 0 6px;
}

.breadcrumb-modern .active {
    color: var(--accent);
}

/* Title */
.hero-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    letter-spacing: 1px;
    color: #ddd;
}

/* Subtitle */
.hero-subtitle {
    font-size: 18px;
    max-width: 600px;
    color: #ddd;
}

/* Decorative Line */
.hero-title::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background: var(--accent);
    margin-top: 15px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .page-hero {
        padding: 90px 0 60px;
    }

    .hero-title {
        font-size: 32px;
    }

    .hero-subtitle {
        font-size: 14px;
    }

    .mainnav .menu {
        flex-direction: column;
    }
}