:root {
    --wih-color-primary: #0a1128;
    --wih-color-secondary: #1f2d50;
    --wih-color-accent: #d4af37;
    --wih-color-accent-hover: #f1c453;
    --wih-color-text-light: #f8f9fa;
    --wih-color-text-dark: #212529;
    --wih-font-heading: 'Times New Roman', Times, serif;
    --wih-font-body: 'Arial', sans-serif;
    --wih-radius: 8px;
    --wih-transition: 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--wih-font-body);
    background-color: var(--wih-color-primary);
    color: var(--wih-color-text-light);
    line-height: 1.6;
}

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

.wih_container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header */
.wih_header_wrapper {
    background-color: rgba(10, 17, 40, 0.95);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: sticky;
    top: 0;
    z-index: 100;
}

.wih_header_inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
}

.wih_logo_box {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border: 2px solid var(--wih-color-accent);
    border-radius: 50%;
}

.wih_logo_text {
    font-family: var(--wih-font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--wih-color-accent);
}

.wih_brand_box {
    text-align: center;
    flex-grow: 1;
}

.wih_brand_name {
    font-family: var(--wih-font-heading);
    font-size: 1.5rem;
    color: var(--wih-color-accent);
    letter-spacing: 1px;
}

.wih_brand_sub {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wih-color-text-light);
    opacity: 0.8;
}

.wih_badge_box {
    border: 1px solid var(--wih-color-accent);
    padding: 5px 15px;
    border-radius: 20px;
}

.wih_badge_text {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--wih-color-accent);
}

/* Hero Section */
.wih_hero_section {
    padding: 100px 20px;
    text-align: center;
    background: radial-gradient(circle at center, var(--wih-color-secondary) 0%, var(--wih-color-primary) 100%);
    border-bottom: 2px solid var(--wih-color-accent);
}

.wih_hero_inner {
    max-width: 800px;
    margin: 0 auto;
}

.wih_hero_kicker {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--wih-color-accent);
    margin-bottom: 15px;
}

.wih_hero_title {
    font-family: var(--wih-font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: #ffffff;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}

.wih_hero_text {
    font-size: 1.1rem;
    margin-bottom: 50px;
    opacity: 0.9;
}

.wih_hero_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.wih_hero_card {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(212, 175, 55, 0.2);
    padding: 20px;
    border-radius: var(--wih-radius);
    transition: transform var(--wih-transition), border-color var(--wih-transition);
}

.wih_hero_card:hover {
    transform: translateY(-5px);
    border-color: var(--wih-color-accent);
}

.wih_hcard_title {
    display: block;
    font-size: 0.9rem;
    text-transform: uppercase;
    color: var(--wih-color-accent);
    margin-bottom: 10px;
    font-weight: 600;
}

.wih_hcard_desc {
    font-family: var(--wih-font-heading);
    font-size: 1.2rem;
}

/* General Sections */
.wih_info_section {
    padding: 80px 0;
}

.wih_bg_dark {
    background-color: var(--wih-color-primary);
}

.wih_bg_light {
    background-color: var(--wih-color-secondary);
}

.wih_section_header {
    text-align: center;
    margin-bottom: 60px;
}

.wih_section_title {
    font-family: var(--wih-font-heading);
    font-size: 2.5rem;
    color: var(--wih-color-accent);
    margin-bottom: 15px;
}

.wih_section_subtitle {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
    opacity: 0.8;
}

.wih_cards_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.wih_feature_card {
    background: rgba(10, 17, 40, 0.5);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 40px 30px;
    border-radius: var(--wih-radius);
    transition: all var(--wih-transition);
}

.wih_feature_card:hover {
    background: rgba(10, 17, 40, 0.8);
    border-color: var(--wih-color-accent);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.wih_fc_kicker {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--wih-color-accent);
    display: block;
    margin-bottom: 10px;
}

.wih_fc_title {
    font-family: var(--wih-font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.wih_fc_text {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 25px;
    min-height: 65px;
}

.wih_fc_list {
    list-style: none;
}

.wih_fc_list li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 10px;
    font-size: 0.9rem;
    opacity: 0.9;
}

.wih_fc_list li::before {
    content: "•";
    color: var(--wih-color-accent);
    position: absolute;
    left: 0;
    top: -2px;
    font-size: 1.2rem;
}

/* Footer */
.wih_footer_wrapper {
    background-color: #050914;
    padding: 60px 20px 30px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.wih_footer_inner {
    max-width: 1200px;
    margin: 0 auto;
}

.wih_footer_top {
    text-align: center;
    margin-bottom: 40px;
}

.wih_footer_slogan {
    font-family: var(--wih-font-heading);
    font-size: 2rem;
    color: var(--wih-color-accent);
}

.wih_footer_columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.wih_footer_col {
    opacity: 0.8;
    font-size: 0.95rem;
}

.wih_footer_warning {
    color: #e0e0e0;
    font-style: italic;
    border-left: 2px solid var(--wih-color-accent);
    padding-left: 15px;
}

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

.wih_contact_info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.wih_footer_nav {
    display: flex;
    gap: 20px;
}

.wih_nav_link {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.wih_nav_link:hover {
    color: var(--wih-color-accent);
}

/* Responsive */
@media (max-width: 900px) {
    .wih_hero_grid,
    .wih_cards_grid {
        grid-template-columns: 1fr;
    }
    
    .wih_footer_columns {
        grid-template-columns: 1fr;
    }

    .wih_header_inner {
        flex-direction: column;
        gap: 15px;
    }

    .wih_hero_title {
        font-size: 2.5rem;
    }
    
    .wih_footer_bottom {
        flex-direction: column;
        text-align: center;
    }
}
