/* ==========================================================
   INDUSTRIES PAGE - TAB EXPLORER STYLESHEET
   ========================================================== */

/* 1. Hero Header */
.ind-hero {
    position: relative;
    padding: 180px 40px 100px;
    background: #060b14;
    color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.ind-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('https://images.unsplash.com/photo-1486406146926-c627a92ad1ab?auto=format&fit=crop&w=1600&q=80');
    background-size: cover;
    background-position: center;
    opacity: 0.25;
}

.ind-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, rgba(10, 17, 30, 0.3) 0%, rgba(6, 11, 20, 0.95) 100%);
}

.ind-hero-content {
    position: relative;
    z-index: 2;
    max-width: 820px;
    margin: 0 auto;
}

.hero-tag {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 2.5px;
    color: var(--primary-gold);
    background: rgba(178, 138, 68, 0.15);
    border: 1px solid rgba(178, 138, 68, 0.3);
    padding: 6px 16px;
    border-radius: 20px;
    display: inline-block;
    margin-bottom: 16px;
}

.ind-hero h1 {
    font-family: var(--font-heading);
    font-size: 44px;
    line-height: 1.2;
    margin-bottom: 12px;
}

.ind-hero p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 300;
}

/* 2. Interactive Sector Explorer */
.ind-explorer-section {
    padding: 90px 40px;
    background: #fafaf9;
}

.section-container {
    max-width: 1240px;
    margin: 0 auto;
}

.section-title-wrapper.center {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 40px;
}

.section-title-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--navy-dark);
    margin-bottom: 6px;
}

.section-subtext {
    font-size: 13px;
    color: var(--text-muted);
}

/* Tab List Buttons */
.ind-tab-list {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.ind-tab-btn {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: var(--navy-dark);
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 700;
    padding: 12px 22px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.02);
}

.ind-tab-btn:hover,
.ind-tab-btn.active {
    background: var(--navy-dark);
    color: #ffffff;
    border-color: var(--navy-dark);
    box-shadow: 0 8px 20px rgba(10, 17, 30, 0.15);
}

/* Tab Display Stage Cards */
.ind-display-stage {
    position: relative;
}

.ind-stage-card {
    display: none;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.ind-stage-card.active {
    display: block;
    animation: fadeIn 0.4s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.stage-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    min-height: 440px;
}

.stage-media {
    position: relative;
    background-size: cover;
    background-position: center;
}

.badge-overlay {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(6, 11, 20, 0.85);
    backdrop-filter: blur(8px);
    color: var(--primary-gold);
    border: 1px solid var(--primary-gold);
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 1.5px;
    padding: 6px 14px;
    border-radius: 20px;
}

.stage-info {
    padding: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.stage-info h3 {
    font-family: var(--font-heading);
    font-size: 26px;
    color: var(--navy-dark);
    margin-bottom: 12px;
}

.lead-text {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-gold);
    margin-bottom: 10px;
    line-height: 1.5;
}

.body-text {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 24px;
}

.sector-highlights-box {
    display: flex;
    flex-direction: column;
    gap: 12px;
    border-top: 1px solid #f1f5f9;
    padding-top: 20px;
}

.s-feat {
    display: flex;
    flex-direction: column;
}

.s-feat strong {
    font-size: 12px;
    color: var(--navy-dark);
}

.s-feat span {
    font-size: 11px;
    color: var(--text-muted);
}

/* 3. Matrix Section */
.ind-matrix-section {
    padding: 90px 40px;
    background: #ffffff;
}

.ind-matrix-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1240px;
    margin: 0 auto;
}

.matrix-card {
    background: #fcfbf9;
    border: 1px solid rgba(0, 0, 0, 0.05);
    border-radius: 12px;
    padding: 32px 28px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.matrix-card:hover {
    transform: translateY(-6px);
    border-color: var(--primary-gold);
}

.m-icon {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-gold);
    margin-bottom: 14px;
}

.matrix-card h3 {
    font-family: var(--font-heading);
    font-size: 18px;
    color: var(--navy-dark);
    margin-bottom: 10px;
}

.matrix-card p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* 4. CTA Section */
.ind-cta-section {
    padding: 80px 40px;
    background: #fafaf9;
}

.cta-box {
    background: linear-gradient(135deg, #101a2d 0%, #060b14 100%);
    border-radius: 16px;
    padding: 50px 40px;
    text-align: center;
    color: #ffffff;
    max-width: 900px;
    margin: 0 auto;
    border: 1px solid rgba(178, 138, 68, 0.3);
}

.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 30px;
    margin-bottom: 12px;
}

.cta-box p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 24px;
}

/* Responsive */
@media (max-width: 992px) {

    .stage-grid,
    .ind-matrix-grid {
        grid-template-columns: 1fr;
    }

    .stage-media {
        height: 240px;
    }

    .ind-hero h1 {
        font-size: 32px;
    }
}