/* History Page Specific Enhancements */
.history-intro-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 60px;
}
.history-intro-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--gray-700);
}
.history-intro-text .lead-para {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--green-dark);
    margin-bottom: 22px;
    border-left: 4px solid var(--gold);
    padding-left: 20px;
    line-height: 1.8;
}
.history-intro-image-wrapper {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 3px solid var(--gold);
    padding: 3px;
}
.history-intro-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: calc(var(--radius-md) - 3px);
    transition: transform var(--transition);
}
.history-intro-image-wrapper:hover img {
    transform: scale(1.03);
}

.history-section-title {
    color: var(--green-dark);
    font-size: 2rem;
    font-weight: 800;
    margin-top: 50px;
    margin-bottom: 30px;
    position: relative;
    padding-bottom: 12px;
}
.history-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--gold);
    border-radius: 2px;
}
.history-section-title.center-title {
    text-align: center;
}
.history-section-title.center-title::after {
    left: 50%;
    transform: translateX(-50%);
}

.history-grid-2col {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.history-grid-3col {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
.history-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 30px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}
.history-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.history-card h4 {
    color: var(--green-primary);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.history-card h4 i {
    color: var(--gold);
    font-size: 1.4rem;
}
.history-card p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: justify;
}

/* Quote/Highlight block */
.history-quote-block {
    background: linear-gradient(135deg, var(--green-dark) 0%, var(--green-primary) 100%);
    color: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    position: relative;
    overflow: hidden;
    margin-bottom: 50px;
    border-left: 5px solid var(--gold);
}
.history-quote-block::before {
    content: '"';
    position: absolute;
    right: 20px;
    bottom: -30px;
    font-size: 12rem;
    color: rgba(255, 255, 255, 0.05);
    font-family: serif;
    pointer-events: none;
}
.history-quote-block p {
    font-size: 1.05rem;
    line-height: 1.8;
    position: relative;
    z-index: 2;
    margin-bottom: 0;
    font-style: italic;
    text-align: justify;
}

/* Profiles Grid */
.leader-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}
.leader-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.leader-header {
    background: var(--cream-light);
    padding: 24px;
    text-align: center;
    border-bottom: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.leader-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--green-light);
    color: var(--green-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    margin-bottom: 12px;
    border: 3px solid var(--gold);
}
.leader-name {
    font-weight: 750;
    color: var(--green-dark);
    font-size: 1.05rem;
    line-height: 1.4;
}
.leader-body {
    padding: 24px;
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--gray-700);
    flex-grow: 1;
    text-align: justify;
}

/* New Traditional Industry Cards */
.industry-card-new {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    display: flex;
    flex-direction: column;
}
.industry-card-new:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--gold);
}
.industry-img-wrapper {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
    border-bottom: 3px solid var(--gold);
}
.industry-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}
.industry-card-new:hover .industry-img-wrapper img {
    transform: scale(1.05);
}
.industry-body {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.industry-body h4 {
    color: var(--green-primary);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.industry-body h4 i {
    color: var(--gold);
    font-size: 1.35rem;
}
.industry-body p {
    color: var(--gray-700);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 0;
    text-align: justify;
}

/* Walauwa Featured Section */
.walauwa-featured-block {
    background: var(--cream-light);
    border-radius: var(--radius-md);
    padding: 45px;
    border-left: 5px solid var(--green-primary);
    margin-bottom: 50px;
}
.walauwa-featured-block h4 {
    color: var(--green-dark);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.walauwa-featured-block h4 i {
    color: var(--gold);
}
.walauwa-featured-block p {
    color: var(--gray-700);
    font-size: 0.98rem;
    line-height: 1.85;
    text-align: justify;
}

/* Ramsar Table */
.ramsar-table-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 35px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(0, 0, 0, 0.04);
    margin-bottom: 50px;
}
.ramsar-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.ramsar-col {
    background: var(--cream-light);
    padding: 25px;
    border-radius: var(--radius-md);
    border-top: 4px solid var(--gold);
    display: flex;
    flex-direction: column;
}
.ramsar-col h4 {
    color: var(--green-dark);
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.ramsar-col h4 i {
    color: var(--green-primary);
}
.ramsar-col p {
    color: var(--gray-700);
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 0;
    text-align: justify;
}

/* Conclusion & Credits */
.conclusion-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(0, 0, 0, 0.03);
    margin-bottom: 50px;
}
.conclusion-card p {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--gray-700);
    margin-bottom: 24px;
    text-align: justify;
}
.credits-block {
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--cream-light);
    padding: 12px 24px;
    border-radius: 30px;
    width: fit-content;
    border: 1px solid rgba(0, 0, 0, 0.03);
}
.credits-block i {
    color: var(--gold);
    font-size: 1.2rem;
}
.credits-block span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--green-dark);
}

@media (max-width: 992px) {
    .history-intro-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .history-grid-3col {
        grid-template-columns: repeat(2, 1fr);
    }
    .ramsar-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .history-grid-2col,
    .history-grid-3col {
        grid-template-columns: 1fr;
    }
    .history-quote-block,
    .walauwa-featured-block,
    .ramsar-table-card,
    .conclusion-card {
        padding: 24px;
    }
    .industry-img-wrapper {
        height: 180px;
    }
}
