/* Header Styles */
.header {
    background-color: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 15px;
}

.logo a {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.logo-image {
    height: 40px;
    width: auto;
    max-width: 200px;
}

.logo-taga {
    color: #e84607;
    font-weight: 800;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}

.logo-bonus {
    color: #f8ce23;
    font-weight: 700;
    font-style: italic;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
    margin-left: 2px;
}

.logo-domain {
    color: #666;
    font-size: 0.8em;
    font-weight: 500;
    margin-left: 2px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

.nav a {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.nav a:hover {
    color: var(--primary-color);
}

.header-actions {
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 5px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: var(--text-dark);
    transition: all 0.3s ease;
}

/* Responsive Header */
@media (max-width: 968px) {
    .menu-toggle {
        display: flex;
    }

    .nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background-color: var(--white);
        box-shadow: var(--shadow);
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .nav.active {
        max-height: 500px;
    }

    .nav ul {
        flex-direction: column;
        padding: 20px;
        gap: 15px;
    }

    .header-actions {
        gap: 10px;
    }

    .btn-complain,
    .btn-login {
        padding: 6px 12px;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .header .container {
        padding: 8px 10px;
    }

    .logo-image {
        height: 35px;
        max-width: 180px;
    }

    .header-actions {
        gap: 8px;
    }

    .btn-complain,
    .btn-login {
        padding: 6px 10px;
        font-size: 0.8rem;
    }
}

/* Align feature icon and title on one line across pages */
.feature-card > .feature-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}

.feature-card > h3 {
    display: inline-flex;
    align-items: center;
    margin: 0 0 8px 0;
}

.feature-card > .feature-icon + h3 { margin-left: 0; }
