/* header.css - Header styles */
.site-header {
    background: white;
    border-bottom: 1px solid #dce3ed;
    padding: 12px 0;
    box-shadow: 0 2px 6px rgba(0,0,0,0.02);
    position: relative;
    z-index: 1000;
}

.header-flex {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.logo-area .logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 1.4rem;
    color: #0b2b4a;
    text-decoration: none;
}

.logo-icon {
    background: #1e5b9c;
    color: white;
    border-radius: 8px;
    padding: 2px 10px;
    font-weight: 700;
}

.logo-area .logo img {
    height: 95px;
    width: auto;
}

/* Search Bar */
.search-area {
    flex: 1 1 auto;
    display: flex;
    background: #f0f4fa;
    border-radius: 40px;
    padding: 0 12px;
    max-width: 400px;
    min-width: 150px;
}

.search-area input {
    border: none;
    background: transparent;
    padding: 10px 0;
    width: 100%;
    font-size: 0.95rem;
    outline: none;
}

.search-area button {
    background: transparent;
    border: none;
    font-size: 1.2rem;
    cursor: pointer;
    padding: 0 6px;
}

/* Desktop Navigation */
.header-nav-desktop {
    display: flex;
    align-items: center;
    gap: 20px;
}

.header-nav-desktop .nav-item {
    text-decoration: none;
    color: #1f2a3a;
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.header-nav-desktop .nav-item span {
    font-size: 1.3rem;
}

.header-nav-desktop .nav-item.hide {
    display: none;
}

.header-nav-desktop .cta-btn {
    background: #1e5b9c;
    color: white;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 500;
    text-decoration: none;
    font-size: 0.95rem;
}

/* Hamburger Button */
.hamburger-btn {
    display: none;
    background: none;
    border: none;
    font-size: 2rem;
    cursor: pointer;
    padding: 4px 8px;
    color: #0b2b4a;
    transition: 0.2s;
    line-height: 1;
}

.hamburger-btn:active {
    opacity: 0.6;
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    flex-direction: column;
    background: white;
    padding: 16px 20px;
    border-top: 1px solid #dce3ed;
    margin-top: 12px;
    border-radius: 0 0 24px 24px;
    box-shadow: 0 8px 16px rgba(0,0,0,0.04);
    width: 100%;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu .nav-item {
    text-decoration: none;
    color: #1f2a3a;
    font-size: 1rem;
    padding: 12px 0;
    border-bottom: 1px solid #eef3fa;
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-menu .nav-item:last-child {
    border-bottom: none;
}

.mobile-menu .nav-item span {
    font-size: 1.2rem;
}

/* Responsive Header */
@media (max-width: 700px) {
    .header-flex {
        flex-direction: row;
        align-items: center;
    }
    .search-area {
        max-width: 100%;
        flex: 1;
        min-width: 80px;
        padding: 0 8px;
    }
    .search-area input {
        font-size: 0.85rem;
        padding: 8px 0;
    }
    .header-nav-desktop {
        display: none;
    }
    .hamburger-btn {
        display: block;
    }
}