/* ============ PREMIUM POLICIES STYLES ============ */
@import url('responsive-core.css');

.policies-body {
    background-color: var(--color-bg);
}

.policy-hero {
    background-color: var(--color-header-bg);
    padding-block: clamp(6rem, 12vw, 10rem);
    text-align: left;
    position: relative;
    overflow: hidden;
}

/* Subpage hero overlay handled in style.css */

.policy-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding-inline: var(--container-padding);
}

.policy-hero-subtitle {
    color: var(--accent-orange);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: inline-block;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    animation: fadeInDown 0.8s ease;
}

.policy-hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
    animation: fadeInLeft 0.8s ease;
}

.policy-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: -4rem auto 6rem;
    padding-inline: var(--container-padding);
    position: relative;
    z-index: 10;
}

/* Sidebar Navigation */
.policy-sidebar {
    position: sticky;
    top: 100px;
    align-self: start;
}

.policy-nav-card {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
}

.policy-nav-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-navy);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--bg-light);
}

.policy-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.policy-nav-item {
    margin-bottom: 0.5rem;
}

.policy-nav-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--color-text-muted);
    text-decoration: none;
    font-weight: 500;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.policy-nav-link i {
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

.policy-nav-link:hover,
.policy-nav-link.active {
    background: rgba(255, 106, 61, 0.1);
    color: var(--accent-orange);
}

/* Content Area */
.policy-content-card {
    background: var(--bg-white);
    padding: clamp(2rem, 5vw, 4rem);
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--color-border);
}

.policy-section {
    margin-bottom: 3.5rem;
    animation: fadeInUp 0.8s ease;
}

.policy-section:last-child {
    margin-bottom: 0;
}

.policy-section-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.5rem;
}

.policy-section-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--accent-orange), #ff4500);
    color: white;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(255, 106, 61, 0.2);
}

.policy-section h2 {
    font-size: 1.75rem;
    color: var(--primary-navy);
    margin: 0;
    font-weight: 700;
}

.policy-section p {
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
}

.policy-list {
    list-style: none;
    padding-left: 0;
}

.policy-list li {
    position: relative;
    padding-left: 1.75rem;
    margin-bottom: 1rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

.policy-list li::before {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: #10b981;
    font-size: 1.1rem;
}

.policy-compact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.policy-mini-card {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.policy-mini-card:hover {
    transform: translateY(-5px);
    background: var(--bg-white);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.policy-mini-card h3 {
    font-size: 1.1rem;
    color: var(--primary-navy);
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.policy-mini-card p {
    font-size: 0.95rem;
    margin-bottom: 0;
}

/* Contact Module */
.policy-contact-box {
    background: linear-gradient(135deg, var(--color-header-bg), #1a2238);
    padding: 2.5rem;
    border-radius: 12px;
    color: white;
    text-align: center;
    margin-top: 4rem;
}

.policy-contact-box h3 {
    color: white;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.policy-contact-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--accent-orange);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.policy-contact-btn:hover {
    transform: scale(1.05);
    background: #ff4500;
}

@media (max-width: 1024px) {
    .policy-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
        margin-top: -2rem;
    }

    .policy-sidebar {
        position: static;
        order: 2;
    }

    .policy-nav-list {
        display: flex;
        flex-wrap: wrap;
        gap: 0.5rem;
    }

    .policy-nav-item {
        flex: 1 1 200px;
    }
}

@media (max-width: 768px) {
    .policy-hero {
        padding-block: 4rem 6rem;
    }

    .policy-hero-title {
        font-size: 2.2rem;
    }

    .policy-content-card {
        padding: 1.5rem;
    }
}