/* ISO Certifications Page Styles */

/* Hero Section */
.iso-hero {
    background: linear-gradient(135deg, #1E1E1E 0%, #2C2C2C 100%);
    color: white;
    padding: 5rem 0 4rem;
    text-align: center;
}

.iso-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.iso-badge-large {
    width: 180px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 20px rgba(233, 30, 99, 0.3));
}

.iso-hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.iso-hero .hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto;
}

/* Introduction Section */
.intro-section {
    padding: 5rem 0;
    background: var(--background-light);
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.intro-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-light);
}

/* ISO Detail Sections */
.iso-detail-section {
    padding: 5rem 0;
    background: white;
}

.iso-detail-section:nth-child(even),
.iso-detail-section.alternate {
    background: var(--background);
}

.iso-detail-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    align-items: start;
}

.iso-detail-content.reverse {
    grid-template-columns: 2fr 1fr;
}

.iso-logo-section {
    position: sticky;
    top: 100px;
}

.iso-badge-wrapper {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 3rem 2rem;
    border-radius: 16px;
    text-align: center;
    color: white;
    box-shadow: 0 10px 40px rgba(233, 30, 99, 0.2);
}

.iso-badge-wrapper i {
    font-size: 4rem;
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.iso-badge-wrapper h3 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.iso-badge-wrapper p {
    font-size: 1rem;
    opacity: 0.9;
    margin: 0;
}

.iso-text h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-intro {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2rem;
}

.why-matters {
    background: linear-gradient(135deg, #FFF3E0 0%, #FFE0B2 100%);
    border-left: 5px solid #FF9800;
    padding: 2rem;
    border-radius: 8px;
    margin: 2rem 0;
    box-shadow: 0 2px 10px rgba(255, 152, 0, 0.1);
}

.why-matters h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #E65100;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.why-matters i {
    font-size: 1.5rem;
}

.why-matters ul {
    list-style: none;
    margin: 1rem 0 0 0;
}

.why-matters ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
    line-height: 1.7;
}

.why-matters ul li::before {
    content: "→";
    position: absolute;
    left: 0;
    color: #FF9800;
    font-weight: bold;
}

.certification-includes {
    margin: 3rem 0;
}

.certification-includes h4 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.includes-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.include-item {
    background: var(--background-light);
    padding: 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
}

.include-item:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.include-item i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.include-item h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.include-item p {
    color: var(--text-light);
    font-size: 0.95rem;
    margin: 0;
}

/* Risks Section */
.risks-section,
.risk-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #FFEBEE 0%, #FCE4EC 100%);
}

.risks-section h2,
.risk-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1.5rem;
}

.risks-section .section-subtitle,
.risk-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

.risks-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

.risk-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.risk-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.risk-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #E53935, #C62828);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.risk-icon i {
    font-size: 2rem;
    color: white;
}

.risk-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.risk-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.risk-card ul {
    list-style: none;
    margin: 1rem 0 0 0;
}

.risk-card ul li {
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    position: relative;
    color: var(--text-light);
}

.risk-card ul li::before {
    content: "✗";
    position: absolute;
    left: 0;
    color: #E53935;
    font-weight: bold;
}

/* Questions Section */
.questions-section {
    padding: 5rem 0;
    background: white;
}

.questions-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 1rem;
}

.questions-section .section-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 3rem;
}

.questions-list {
    max-width: 900px;
    margin: 0 auto;
}

.question-item {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    padding: 2rem;
    background: var(--background-light);
    border-radius: 12px;
    transition: transform 0.3s, box-shadow 0.3s;
}

.question-item:hover {
    transform: translateX(5px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.question-number {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.question-content {
    flex: 1;
}

.question-content h4 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.question-content > p {
    color: var(--text-light);
    margin-bottom: 1rem;
    line-height: 1.7;
}

.answer {
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-top: 1rem;
}

.emembership-answer {
    border-left: 4px solid var(--success);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.emembership-answer i {
    color: var(--success);
    font-size: 1.3rem;
}

.emembership-answer strong {
    color: var(--primary-color);
}

/* Comparison Section */
.iso-comparison-section {
    padding: 5rem 0;
    background: var(--background);
}

.iso-comparison-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.comparison-table-simple {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.comparison-table-simple table {
    width: 100%;
    border-collapse: collapse;
}

.comparison-table-simple thead {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
}

.comparison-table-simple th {
    padding: 1.5rem;
    text-align: left;
    font-weight: 700;
    font-size: 1.1rem;
}

.comparison-table-simple td {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-color);
}

.comparison-table-simple tbody tr:last-child td {
    border-bottom: none;
}

.comparison-table-simple tbody tr:hover {
    background: var(--background-light);
}

.comparison-table-simple .cert-status {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
}

.comparison-table-simple .cert-status.yes {
    color: var(--success);
}

.comparison-table-simple .cert-status.no {
    color: #E53935;
}

.comparison-table-simple .cert-status i {
    font-size: 1.3rem;
}

/* Benefits Section */
.benefits-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, #E8F5E9 0%, #C8E6C9 100%);
}

.benefits-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    text-align: center;
    margin-bottom: 3rem;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.benefit-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s, box-shadow 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.benefit-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--success), #43A047);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.benefit-icon i {
    font-size: 2rem;
    color: white;
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.7;
    margin: 0;
}

/* Commitment Section */
.commitment-section {
    padding: 5rem 0;
    background: white;
}

.commitment-content {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.iso-badge-medium {
    width: 140px;
    height: auto;
    margin-bottom: 2rem;
    filter: drop-shadow(0 4px 15px rgba(233, 30, 99, 0.3));
}

.commitment-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.commitment-text {
    font-size: 1.2rem;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 3rem;
}

.commitment-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.commitment-feature {
    background: var(--background-light);
    padding: 2rem 1.5rem;
    border-radius: 12px;
    text-align: center;
    transition: background 0.3s, transform 0.3s;
}

.commitment-feature:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.commitment-feature i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.commitment-feature h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.commitment-feature p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.commitment-cta {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* CTA Section */
.iso-cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    text-align: center;
}

.iso-cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.iso-cta-section h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: white;
}

.iso-cta-section p {
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.iso-cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Responsive Design */
@media (max-width: 992px) {
    .iso-hero h1 {
        font-size: 2.8rem;
    }

    .iso-detail-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .iso-detail-content.reverse {
        grid-template-columns: 1fr;
    }

    .iso-logo-section {
        position: static;
    }

    .includes-grid {
        grid-template-columns: 1fr;
    }

    .risks-grid {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    .commitment-features {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .iso-hero {
        padding: 3rem 0 2rem;
    }

    .iso-hero h1 {
        font-size: 2.2rem;
    }

    .iso-hero .hero-subtitle {
        font-size: 1.1rem;
    }

    .iso-badge-large {
        width: 140px;
    }

    .intro-content h2,
    .iso-text h2,
    .risks-section h2,
    .questions-section h2,
    .iso-comparison-section h2,
    .benefits-section h2,
    .iso-cta-section h2 {
        font-size: 2rem;
    }

    .question-item {
        flex-direction: column;
        gap: 1.5rem;
    }

    .iso-cta-buttons {
        flex-direction: column;
    }

    .iso-cta-buttons .btn-large {
        width: 100%;
    }

    .commitment-features {
        grid-template-columns: 1fr;
    }

    .commitment-cta {
        flex-direction: column;
    }

    .commitment-cta .btn-large {
        width: 100%;
    }
}
