/* ============================================
   Inner Pages - Shared Styles
   ============================================ */

/*body.inner-page .page-loader {*/
/*    display: none;*/
/*}*/

.navbar-inner {
    background-color: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
}

/* Page Hero - consistent banner height on inner pages */
.page-hero {
    position: relative;
    min-height: 380px;
    height: 380px;
    max-height: 50vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}
@media (max-width: 768px) {
    .page-hero {
        min-height: 280px;
        height: 280px;
        max-height: 40vh;
    }
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
}

.page-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85) 0%, rgba(255, 107, 53, 0.4) 100%);
}

.page-hero-content {
    padding: 4rem 0;
    text-align: center;
    color: var(--white);
}

.page-hero-content h1 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.page-hero-content p {
    font-size: 1.125rem;
    opacity: 0.95;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: rgba(255, 107, 53, 0.15);
    color: var(--primary-color);
    font-size: 0.8125rem;
    font-weight: 600;
    padding: 0.35rem 0.85rem;
    border-radius: 50px;
    letter-spacing: 0.03em;
}

/* About Page - Image Grid */
.about-image-grid {
    max-width: 500px;
    margin: 0 auto;
}

.about-image-grid .main-img {
    border-radius: var(--border-radius-lg) !important;
}

.floating-card {
    position: absolute;
    bottom: -1rem;
    right: -1rem;
    background: var(--white);
    padding: 1rem 1.25rem;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-lg);
}

.floating-icon {
    width: 48px;
    height: 48px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
}

/* Mission & Vision Cards */
.mission-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    border-left: 4px solid var(--primary-color);
}

.mission-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    border-radius: var(--border-radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1.25rem;
}

.mission-card h3 {
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

/* Value Cards */
.value-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.75rem;
    margin: 0 auto 1rem;
}

.value-card h4 {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.value-card p {
    font-size: 0.9375rem;
    color: var(--text-light);
    margin: 0;
}

/* Why List */
.why-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.why-list li {
    padding: 0.5rem 0;
}

/* Feature Box */
.feature-box {
    background: #F8F9FA;
    padding: 1.5rem;
    border-radius: var(--border-radius);
    text-align: center;
    transition: all 0.3s ease;
}

.feature-box:hover {
    background: rgba(255, 107, 53, 0.08);
}

.feature-box i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
}

.feature-box h5 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.feature-box p {
    font-size: 0.8125rem;
    color: var(--text-light);
    margin: 0;
}
