/* Inner Page Specific Styles - Premium Enterprise Grade */

/* 1. Hero Section */
.inner-hero {
    position: relative;
    padding: 140px 0 90px;
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
    color: #fff;
    overflow: hidden;
}

.inner-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.05) 0%, transparent 20%),
        radial-gradient(circle at 90% 90%, rgba(255, 255, 255, 0.05) 0%, transparent 20%);
    pointer-events: none;
}

.inner-hero h1 {
    font-size: 56px;
    font-weight: 800;
    margin-bottom: 24px;
    letter-spacing: -1px;
    line-height: 1.1;
}

.breadcrumb {
    display: flex;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.8;
    margin-bottom: 32px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb a {
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #fff;
}

.breadcrumb span {
    color: var(--color-accent);
}

/* 2. Content Overview */
.section-overview {
    padding: 100px 0;
}

.overview-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.overview-text h2 {
    font-size: 42px;
    margin-bottom: 30px;
    color: #1e293b;
    font-weight: 700;
    line-height: 1.2;
}

.overview-text p {
    font-size: 17px;
    line-height: 1.8;
    color: #475569;
    margin-bottom: 24px;
}

.overview-img img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
}

/* 3. Mission & Vision */
.section-mission {
    padding: 100px 0;
    background: #f8fafc;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mission-card {
    background: #fff;
    padding: 50px;
    border-radius: 16px;
    border-left: 6px solid var(--color-primary);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.mission-icon {
    font-size: 40px;
    margin-bottom: 24px;
    display: inline-block;
    padding: 12px;
    background: #ecfdf5;
    border-radius: 12px;
    color: var(--color-primary);
}

.mission-card h3 {
    font-size: 24px;
    margin-bottom: 16px;
    color: #1e293b;
}

/* 4. Stats Strip */
.section-stats-strip {
    background: #0f172a;
    padding: 80px 0;
    color: #fff;
    position: relative;
    z-index: 1;
}

.stats-flex {
    display: flex;
    justify-content: space-evenly;
    /* Better distribution */
    text-align: center;
    gap: 40px;
}

.stat-item h3 {
    font-size: 64px;
    font-weight: 800;
    color: var(--color-accent);
    margin-bottom: 8px;
    line-height: 1;
}

.stat-item p {
    font-size: 15px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #94a3b8;
    font-weight: 600;
}

/* 5. Expertise / Chart */
.section-expertise {
    padding: 120px 0;
    text-align: center;
}

.section-expertise h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

/* 6. Core Values (Grid) */
.section-values {
    padding: 100px 0;
    background: #f8fafc;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.value-card:hover {
    border-color: var(--color-primary);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #e0f2fe 0%, #f0f9ff 100%);
    color: var(--color-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    margin: 0 auto 24px;
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: rotateY(180deg);
}

.value-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
    color: #1e293b;
}

/* 7. Leaders / Team */
.section-team-preview {
    padding: 100px 0;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.team-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease;
}

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

.team-img {
    height: 280px;
    background: #e2e8f0;
    background-size: cover;
    background-position: center top;
}

.team-info {
    padding: 24px;
    text-align: center;
}

.team-info h5 {
    font-size: 18px;
    margin-bottom: 4px;
    color: #0f172a;
}

/* 8. Journey / Timeline */
.section-timeline {
    padding: 100px 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
}

.timeline-scroll {
    display: flex;
    gap: 40px;
    /* Reduced gap for wrapped view */
    flex-wrap: wrap;
    /* No slider, just list */
    justify-content: center;
    padding: 40px 20px;
}

/* JS Moving Slider Styles */
.slider-wrapper {
    position: relative;
    padding: 0 60px;
    /* Space for arrows */
}

.slider-controls {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    pointer-events: none;
    /* Let clicks pass through center */
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e2e8f0;
    color: var(--color-primary);
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    pointer-events: auto;
    /* Re-enable clicks */
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: all 0.2s;
    z-index: 10;
}

.slider-btn:hover {
    background: var(--color-primary);
    color: #fff;
    transform: scale(1.1);
}

.timeline-item {
    min-width: 280px;
    position: relative;
    padding-top: 30px;
    border-top: 3px solid var(--color-primary);
}

.timeline-item::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    width: 14px;
    height: 14px;
    background: var(--color-accent);
    border-radius: 50%;
    border: 3px solid #fff;
    box-shadow: 0 0 0 2px var(--color-primary);
}

.timeline-year {
    font-size: 32px;
    font-weight: 800;
    color: var(--color-primary);
    margin-bottom: 12px;
    font-family: var(--font-heading);
}

/* 9. Philosophy */
.section-philosophy {
    padding: 100px 0;
    background: #1e293b;
    color: #fff;
}

.philosophy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
}

.phil-item h4 {
    font-size: 22px;
    margin-bottom: 16px;
    color: var(--color-accent);
}

.phil-item p {
    color: #cbd5e1;
    line-height: 1.6;
}

/* 10. Trusted By */
.section-clients {
    padding: 80px 0;
    background: #fff;
    border-top: 1px solid #f1f5f9;
}

.logo-grid-flex {
    display: flex;
    justify-content: center;
    gap: 80px;
    opacity: 0.5;
    flex-wrap: wrap;
    align-items: center;
    filter: grayscale(100%);
    transition: opacity 0.3s;
}

.logo-grid-flex:hover {
    opacity: 1;
    filter: grayscale(0%);
}

/* 11. Industries List */
.section-industries-list {
    padding: 100px 0;
    background: #0f172a;
    color: #fff;
}

.industry-list-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    border-top: 1px solid #334155;
    padding-top: 40px;
}

.industry-link {
    color: #94a3b8;
    text-decoration: none;
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid #334155;
    transition: all 0.3s;
    font-size: 16px;
}

.industry-link:hover {
    color: var(--color-accent);
    padding-left: 8px;
    border-bottom-color: var(--color-accent);
}

/* 12. FAQ */
.section-faq {
    padding: 100px 0;
    background: #f8fafc;
}

.accordion-item {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 16px;
    overflow: hidden;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
}

.accordion-header {
    background: #fff;
    padding: 24px 30px;
    cursor: pointer;
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.2s;
}

.accordion-header:hover {
    background: #f8fafc;
}

.accordion-body {
    padding: 0 30px 30px;
    color: #475569;
    line-height: 1.7;
    display: none;
}

/* 13. Consultation */
.section-consultation {
    padding: 120px 0;
    background: url('../assets/images/cta-bg.jpg') center/cover no-repeat fixed;
    position: relative;
    color: #fff;
}

.section-consultation::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, #0f172a 0%, rgba(15, 23, 42, 0.8) 100%);
}

.consult-form-container {
    position: relative;
    max-width: 600px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(12px);
    padding: 50px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
}

.form-control {
    width: 100%;
    padding: 16px 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
    color: #fff;
    border-radius: 8px;
    font-size: 16px;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    background: rgba(0, 0, 0, 0.5);
    border-color: var(--color-accent);
}

.form-btn {
    width: 100%;
    padding: 18px;
    background: var(--color-primary);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: 0.3s;
    margin-top: 10px;
}

/* 14. Security Deliverables Grid */
.deliverables-grid {
    margin-top: 40px;
}

.deliverable-card:hover {
    transform: translateY(-5px);
    border-color: #eab308 !important;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.06) !important;
}

.deliverable-card h4 {
    transition: color 0.3s ease;
}

.deliverable-card:hover h4 {
    color: var(--color-primary) !important;
}

@media (max-width: 768px) {
    .deliverables-grid {
        grid-template-columns: 1fr !important;
    }

    .deliverable-card {
        padding: 30px !important;
    }

    .section-deliverables {
        padding: 60px 0 !important;
    }
}