/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    padding: 10rem 2rem 5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.page-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('/images/hero-bg.jpg') center/cover no-repeat;
    opacity: 0.08;
}
.page-hero .section-container { position: relative; }
.page-hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 3rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 1rem;
}
.page-hero p {
    color: rgba(255,255,255,0.7);
    font-size: 1.15rem;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.8;
}
.page-hero .breadcrumb {
    margin-bottom: 1.5rem;
    font-size: 0.85rem;
}
.page-hero .breadcrumb a {
    color: var(--gold);
    transition: color 0.3s;
}
.page-hero .breadcrumb a:hover { color: var(--gold-light); }
.page-hero .breadcrumb span { color: rgba(255,255,255,0.5); }

/* ===== NAVBAR DROPDOWNS ===== */
.has-dropdown { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(11,29,58,0.97);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    padding: 0.5rem 0;
    min-width: 200px;
    list-style: none;
    box-shadow: 0 12px 40px rgba(0,0,0,0.3);
    z-index: 100;
}
.dropdown li a {
    display: block;
    padding: 0.6rem 1.2rem;
    color: rgba(255,255,255,0.8) !important;
    font-size: 0.85rem !important;
    text-transform: none !important;
    white-space: nowrap;
    transition: all 0.2s;
}
.dropdown li a:hover {
    background: rgba(201,168,76,0.1);
    color: var(--gold) !important;
}
.has-dropdown:hover > .dropdown { display: block; }

/* ===== STORY SECTION ===== */
.story-section { background: var(--white); }
.story-content { max-width: 800px; margin: 0 auto; }
.story-content p {
    color: #555;
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 1.5rem;
}

/* ===== MISSION / VISION CARDS ===== */
.mv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 2rem; }
.mv-card {
    background: var(--off-white);
    border-radius: 12px;
    padding: 2.5rem;
    border-left: 4px solid var(--gold);
}
.mv-card h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}
.mv-card p { color: #555; line-height: 1.8; }

/* ===== CORE VALUES ===== */
.core-values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.core-value-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}
.core-value-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,29,58,0.08); }
.core-value-card h4 {
    font-size: 1.1rem;
    color: var(--navy);
    margin-bottom: 0.6rem;
}
.core-value-card p { color: var(--gray); font-size: 0.9rem; line-height: 1.7; }

/* ===== LEADERSHIP TEAM ===== */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.team-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
    text-align: center;
}
.team-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(11,29,58,0.1); }
.team-card-img {
    width: 100%;
    height: 260px;
    overflow: hidden;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-card-img img { width: 100%; height: 100%; object-fit: cover; }
.team-card-img .placeholder {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold);
}
.team-card-body { padding: 1.5rem; }
.team-card-body h4 { font-size: 1.15rem; color: var(--navy); margin-bottom: 0.3rem; }
.team-card-body .role { color: var(--blue); font-size: 0.85rem; font-weight: 600; margin-bottom: 0.8rem; }
.team-card-body p { color: var(--gray); font-size: 0.88rem; line-height: 1.6; }
.team-card-body .team-linkedin {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 1rem;
    color: var(--blue);
    font-size: 0.85rem;
    font-weight: 600;
    transition: color 0.3s;
}
.team-card-body .team-linkedin:hover { color: var(--navy); }
.team-card-body .team-linkedin svg { width: 16px; height: 16px; fill: currentColor; }

/* ===== TIMELINE ===== */
.timeline { position: relative; max-width: 800px; margin: 0 auto; }
.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 100%;
    background: linear-gradient(to bottom, var(--gold), var(--blue));
}
.timeline-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2.5rem;
    position: relative;
}
.timeline-item:nth-child(odd) { flex-direction: row-reverse; text-align: right; }
.timeline-dot {
    width: 16px;
    height: 16px;
    background: var(--gold);
    border: 3px solid var(--white);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    box-shadow: 0 0 0 4px rgba(201,168,76,0.2);
}
.timeline-content {
    width: 45%;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 1.5rem;
}
.timeline-item:nth-child(odd) .timeline-content { margin-right: 5%; }
.timeline-item:nth-child(even) .timeline-content { margin-left: 55%; }
.timeline-year {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.3rem;
}
.timeline-content h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.4rem; }
.timeline-content p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ===== ESG PILLARS ===== */
.esg-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.esg-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.06);
    border-top: 4px solid var(--gold);
    transition: all 0.3s;
}
.esg-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,29,58,0.08); }
.esg-card-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
}
.esg-card-icon svg { width: 28px; height: 28px; stroke: var(--gold); fill: none; stroke-width: 1.5; }
.esg-card h4 { font-size: 1.15rem; color: var(--navy); margin-bottom: 1rem; }
.esg-card ul { list-style: none; }
.esg-card ul li {
    padding: 0.4rem 0;
    font-size: 0.88rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.esg-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

/* ===== GOALS / METRICS ===== */
.goals-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.goal-card {
    text-align: center;
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.06);
}
.goal-metric { font-size: 3rem; font-weight: 800; color: var(--navy); line-height: 1.2; }
.goal-label { font-size: 0.9rem; font-weight: 700; color: var(--blue); margin: 0.3rem 0; }
.goal-desc { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ===== ENVIRONMENTAL PRACTICES ===== */
.practices-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.practice-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.8rem;
    border: 1px solid rgba(0,0,0,0.06);
    border-left: 4px solid var(--blue);
}
.practice-card h4 { font-size: 1rem; color: var(--navy); margin-bottom: 0.5rem; }
.practice-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

/* ===== CAREERS ===== */
.perks-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
.perk-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
}
.perk-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,29,58,0.08); }
.perk-card h4 { font-size: 1.05rem; color: var(--navy); margin-bottom: 0.5rem; }
.perk-card p { font-size: 0.9rem; color: var(--gray); line-height: 1.7; }

.benefits-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 800px;
    margin: 0 auto;
}
.benefit-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: var(--navy);
    font-weight: 500;
}
.benefit-item::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== JOB LISTINGS ===== */
.jobs-grid { display: grid; grid-template-columns: 1fr; gap: 1.5rem; max-width: 900px; margin: 0 auto; }
.job-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.3s;
}
.job-card:hover { box-shadow: 0 8px 30px rgba(11,29,58,0.08); }
.job-header { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 1rem; margin-bottom: 1rem; }
.job-header h3 { font-size: 1.2rem; color: var(--navy); }
.job-tags { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.job-tag {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.job-tag.type { background: rgba(30,109,212,0.1); color: var(--blue); }
.job-tag.location { background: rgba(201,168,76,0.15); color: #8a7020; }
.job-card > p { color: #555; font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.2rem; }
.job-card h4 { font-size: 0.9rem; color: var(--navy); margin-bottom: 0.5rem; }
.job-card ul { list-style: none; margin-bottom: 1.2rem; }
.job-card ul li {
    padding: 0.25rem 0;
    font-size: 0.88rem;
    color: var(--gray);
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}
.job-card ul li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.55rem;
}
.job-apply-btn {
    background: var(--navy);
    color: var(--white);
    padding: 0.7rem 2rem;
    border: none;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.job-apply-btn:hover { background: var(--navy-light); }

/* ===== APPLICATION FORM ===== */
.apply-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
}
.apply-section .section-tag { background: rgba(201,168,76,0.15); color: var(--gold); }
.apply-section .section-header h2 { color: var(--white); }
.apply-section .section-header p { color: rgba(255,255,255,0.6); }
.apply-form-wrap { max-width: 700px; margin: 0 auto; }
.apply-form {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 2.5rem;
    backdrop-filter: blur(10px);
}
.apply-form .form-group label { color: rgba(255,255,255,0.85); }
.apply-form .form-group input,
.apply-form .form-group select,
.apply-form .form-group textarea {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.15);
    color: var(--white);
}
.apply-form .form-group input::placeholder,
.apply-form .form-group textarea::placeholder { color: rgba(255,255,255,0.35); }
.apply-form .form-group input:focus,
.apply-form .form-group select:focus,
.apply-form .form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}
.apply-form .form-group select option { background: var(--navy); color: var(--white); }

/* ===== HSEQ ===== */
.policy-box {
    background: var(--off-white);
    border-left: 4px solid var(--navy);
    border-radius: 0 12px 12px 0;
    padding: 2rem 2.5rem;
    max-width: 900px;
    margin: 0 auto;
}
.policy-box p { color: #555; font-size: 1.05rem; line-height: 1.9; }

.commitments-list {
    max-width: 800px;
    margin: 0 auto;
    list-style: none;
}
.commitments-list li {
    padding: 0.7rem 0;
    font-size: 0.95rem;
    color: #555;
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(0,0,0,0.04);
}
.commitments-list li::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--gold);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 0.5rem;
}

.cert-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.cert-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.8rem;
    border: 1px solid rgba(0,0,0,0.06);
    text-align: center;
    transition: all 0.3s;
}
.cert-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(11,29,58,0.08); }
.cert-code {
    display: inline-block;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    color: var(--gold);
    padding: 0.5rem 1.2rem;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 0.8rem;
}
.cert-card h4 { font-size: 0.95rem; color: var(--navy); margin-bottom: 0.5rem; }
.cert-card p { font-size: 0.82rem; color: var(--gray); line-height: 1.6; }

.safety-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; }
.safety-stat {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
}
.safety-stat .stat-number { font-size: 2.5rem; font-weight: 800; color: var(--gold); }
.safety-stat .stat-label { font-size: 0.9rem; font-weight: 700; color: var(--white); margin: 0.3rem 0; }
.safety-stat .stat-desc { font-size: 0.82rem; color: rgba(255,255,255,0.6); }

.hseq-sections-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; max-width: 900px; margin: 0 auto; }
.hseq-section-card {
    background: var(--white);
    border-radius: 12px;
    padding: 2rem;
    border: 1px solid rgba(0,0,0,0.06);
}
.hseq-section-card h3 { font-size: 1.2rem; color: var(--navy); margin-bottom: 0.8rem; }
.hseq-section-card > p { color: #555; font-size: 0.95rem; line-height: 1.7; margin-bottom: 1rem; }
.hseq-section-card ul { list-style: none; }
.hseq-section-card ul li {
    padding: 0.3rem 0;
    font-size: 0.88rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.hseq-section-card ul li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--blue);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ===== NEWS ===== */
.featured-article {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
    margin-bottom: 3rem;
}
.featured-article:hover { box-shadow: 0 16px 50px rgba(11,29,58,0.1); }
.featured-article-img { overflow: hidden; }
.featured-article-img img { width: 100%; height: 100%; object-fit: cover; min-height: 300px; transition: transform 0.5s; }
.featured-article:hover .featured-article-img img { transform: scale(1.05); }
.featured-article-body { padding: 2.5rem; display: flex; flex-direction: column; justify-content: center; }
.featured-article-body .news-meta { margin-bottom: 1rem; }
.featured-article-body h2 { font-family: 'Playfair Display', serif; font-size: 1.8rem; color: var(--navy); margin-bottom: 1rem; line-height: 1.3; }
.featured-article-body p { color: #555; font-size: 1rem; line-height: 1.7; }

.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.news-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.06);
    transition: all 0.3s;
}
.news-card:hover { transform: translateY(-6px); box-shadow: 0 16px 50px rgba(11,29,58,0.1); }
.news-card-img { overflow: hidden; height: 200px; }
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.news-card:hover .news-card-img img { transform: scale(1.08); }
.news-card-body { padding: 1.5rem; }
.news-meta { display: flex; align-items: center; gap: 0.8rem; font-size: 0.8rem; }
.news-date { color: var(--gray); }
.news-category {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.news-category.company { background: rgba(30,109,212,0.1); color: var(--blue); }
.news-category.industry { background: rgba(201,168,76,0.15); color: #8a7020; }
.news-card-body h3 { font-size: 1.1rem; color: var(--navy); margin: 0.8rem 0 0.6rem; line-height: 1.4; }
.news-card-body p { font-size: 0.88rem; color: var(--gray); line-height: 1.6; }

/* ===== SAFETY RECORD SECTION (dark bg) ===== */
.safety-record-section {
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 100%);
    color: var(--white);
}
.safety-record-section .section-tag { background: rgba(201,168,76,0.15); color: var(--gold); }
.safety-record-section .section-header h2 { color: var(--white); }

/* ===== CTA SECTION ===== */
.page-cta {
    background: var(--off-white);
    text-align: center;
}
.page-cta h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--navy);
    margin-bottom: 1rem;
}
.page-cta p {
    color: var(--gray);
    font-size: 1.05rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .team-grid { grid-template-columns: repeat(2, 1fr); }
    .esg-grid { grid-template-columns: repeat(2, 1fr); }
    .goals-grid { grid-template-columns: repeat(2, 1fr); }
    .cert-grid { grid-template-columns: repeat(2, 1fr); }
    .safety-stats-grid { grid-template-columns: repeat(2, 1fr); }
    .featured-article { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .page-hero { padding: 8rem 2rem 3rem; }
    .page-hero h1 { font-size: 2.2rem; }
    .mv-grid { grid-template-columns: 1fr; }
    .core-values-grid { grid-template-columns: 1fr; }
    .team-grid { grid-template-columns: 1fr; }
    .esg-grid { grid-template-columns: 1fr; }
    .goals-grid { grid-template-columns: 1fr; }
    .practices-grid { grid-template-columns: 1fr; }
    .perks-grid { grid-template-columns: 1fr; }
    .benefits-list { grid-template-columns: 1fr; }
    .cert-grid { grid-template-columns: 1fr; }
    .safety-stats-grid { grid-template-columns: 1fr 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .timeline::before { left: 20px; }
    .timeline-dot { left: 20px; }
    .timeline-item, .timeline-item:nth-child(odd) { flex-direction: column; text-align: left; }
    .timeline-content,
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content { width: 100%; margin-left: 50px; margin-right: 0; }

    /* Mobile dropdown */
    .has-dropdown .dropdown {
        display: none;
        position: static;
        transform: none;
        background: rgba(255,255,255,0.05);
        border: none;
        box-shadow: none;
        border-radius: 0;
        min-width: 0;
    }
    .has-dropdown.open .dropdown { display: block; }
    .has-dropdown:hover > .dropdown { display: none; }
    .has-dropdown.open:hover > .dropdown { display: block; }
}
