/* =========================================
   QUALITY POLICY PAGE CSS
   ========================================= */

:root {
    --qp-primary: #b4d449;
    --qp-secondary: #083d2f;
    --qp-navy: #0B2545;
    --qp-bg: #f8fafc;
    --qp-white: #ffffff;
    --qp-text: #1e293b;
    --qp-muted: #64748b;
    --qp-border: #e2e8f0;
    --qp-ease: cubic-bezier(0.4, 0, 0.2, 1);
}

.quality-page {
    background: var(--qp-bg);
    overflow-x: hidden;
}

/* Base Utility */
.sol-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.sol-badge {
    display: inline-block;
    padding: 8px 18px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    border-radius: 30px;
    margin-bottom: 24px;
    background: rgba(180, 212, 73, 0.15);
    color: var(--qp-primary);
    border: 1px solid rgba(180, 212, 73, 0.3);
}

.sol-badge--dark {
    background: rgba(8, 61, 47, 0.08);
    color: var(--qp-secondary);
    border-color: rgba(8, 61, 47, 0.15);
}

.sol-badge--glow {
    background: rgba(180, 212, 73, 0.15);
    color: var(--qp-primary);
    border: 1px solid rgba(180, 212, 73, 0.4);
    box-shadow: 0 0 20px rgba(180, 212, 73, 0.15);
}

.qp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.qp-heading-secondary {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 800;
    color: #0b2545;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.text-white {
    color: var(--qp-white) !important;
}

/* ================= POLICY CONTENT SECTION ================= */
.qp-content-section {
    padding: 100px 0;
}

.qp-content-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid var(--qp-border);
    border-radius: 24px;
    padding: 60px;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    box-shadow: 0 20px 40px rgba(8, 61, 47, 0.05);
}

.qp-text p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--qp-muted);
    margin-bottom: 20px;
}

.qp-text p:last-child {
    margin-bottom: 0;
}

.qp-list {
    text-align: left;
    margin: 10px 0 25px 30px;
    padding: 0;
    list-style: none;
}

.qp-list li {
    font-size: 1.15rem;
    color: var(--qp-muted);
    line-height: 1.8;
    margin-bottom: 8px;
    position: relative;
}

.qp-list li::before {
    content: "•";
    color: var(--qp-primary);
    font-size: 1.5em;
    position: absolute;
    left: -20px;
    top: -4px;
}

/* ================= QUALITY HIGHLIGHTS ================= */
.qp-highlights-section {
    padding: 0 0 100px;
}

.qp-highlights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.qp-highlight-card {
    background: var(--qp-white);
    border: 1px solid var(--qp-border);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 24px;
    transition: all 0.4s var(--qp-ease);
}

.qp-highlight-card:hover {
    transform: translateY(-10px);
    border-color: rgba(180, 212, 73, 0.4);
    box-shadow: 0 20px 40px rgba(8, 61, 47, 0.08);
}

.qp-card-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    border-radius: 16px;
    background: rgba(180, 212, 73, 0.15);
    color: var(--qp-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s var(--qp-ease);
}

.qp-card-icon span {
    font-size: 32px;
}

.qp-highlight-card:hover .qp-card-icon {
    background: var(--qp-primary);
    transform: scale(1.1) rotate(5deg);
}

.qp-highlight-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--qp-text);
    line-height: 1.4;
}

/* ================= WHY QUALITY MATTERS ================= */
.qp-why-section {
    padding: 100px 0;
    background: var(--qp-navy);
    color: var(--qp-white);
}

.qp-why-section .sol-badge--dark {
    background: rgba(180, 212, 73, 0.1);
    color: var(--qp-primary);
    border-color: rgba(180, 212, 73, 0.2);
}

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

.qp-why-item {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s var(--qp-ease);
}

.qp-why-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(180, 212, 73, 0.4);
    transform: translateY(-8px);
}

.qp-why-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    border-radius: 50%;
    background: rgba(180, 212, 73, 0.2);
    color: var(--qp-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.4s var(--qp-ease);
}

.qp-why-icon span {
    font-size: 28px;
}

.qp-why-item:hover .qp-why-icon {
    transform: scale(1.15);
}

.qp-why-item h4 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--qp-white);
}

/* ================= CTA SECTION ================= */
.qp-cta {
    position: relative;
    padding: 120px 24px;
    background: var(--qp-primary);
    color: var(--qp-secondary);
    text-align: center;
    overflow: hidden;
}

.qp-cta__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.5) 0%, transparent 60%);
    pointer-events: none;
}

.qp-cta__inner {
    position: relative;
    z-index: 10;
}

.qp-cta__inner h2 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 20px;
    color: var(--qp-secondary);
}

.qp-cta__inner p {
    font-size: 1.15rem;
    color: rgba(8, 61, 47, 0.85);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

.qp-cta__btns {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* Buttons */
.sol-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    font-size: 1rem;
    font-weight: 700;
    border-radius: 30px;
    text-decoration: none;
    transition: all 0.35s var(--qp-ease);
    cursor: pointer;
    border: none;
}

.sol-btn--primary {
    background: var(--qp-secondary);
    color: white;
}

.sol-btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(8, 61, 47, 0.25);
    background: #05261d;
}

.sol-btn--outline {
    background: transparent;
    color: var(--qp-secondary);
    border: 1.5px solid var(--qp-secondary);
}

.sol-btn--outline:hover {
    background: rgba(8, 61, 47, 0.1);
    transform: translateY(-3px);
}

/* ================= ANIMATIONS ================= */
.gs-reveal {
    opacity: 0;
    transform: translateY(40px);
}

/* ================= RESPONSIVE ================= */
@media (max-width: 1024px) {
    .qp-highlights-grid {
        grid-template-columns: 1fr;
    }
    
    .qp-why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .qp-content-section, .qp-highlights-section, .qp-why-section {
        padding: 60px 0;
    }

    .qp-content-card {
        padding: 40px 20px;
    }

    .qp-text p {
        font-size: 1.05rem;
    }

    .qp-highlight-card {
        flex-direction: column;
        text-align: center;
        padding: 30px 20px;
    }

    .qp-why-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .qp-cta__btns {
        flex-direction: column;
        align-items: center;
    }
}
