/* Common CSS for Inner Pages (About, Contact, etc.) */

/* Page Banner */
.page-banner {
    background-size: cover;
    background-position: center;
    padding: 100px 0;
    color: #fff;
    position: relative;
}
.page-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-color: rgba(0,0,0,0.6);
    z-index: 1;
}
.page-banner .container {
    position: relative;
    z-index: 2;
}
.page-banner h1 {
    font-size: 40px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary);
}
.page-banner .breadcrumb {
    font-size: 14px;
    color: #ccc;
}
.page-banner .breadcrumb a {
    color: #fff;
    text-decoration: none;
}
.page-banner .breadcrumb span.separator {
    margin: 0 10px;
}
.page-banner .breadcrumb span.current {
    color: var(--primary);
}

/* About Us - Split Section */
.about-split-section {
    display: flex;
    margin-top: 60px;
    position: relative;
}
.about-split-left {
    flex: 1;
    background-color: #ffffff;
    padding: 80px 40px 80px 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}
.about-split-left .bg-decor {
    position: absolute;
    bottom: 0;
    left: 20px;
    max-height: 150px;
    z-index: 1;
    mix-blend-mode: multiply;
    filter: brightness(1.05) contrast(1.2);
}
.about-split-content {
    position: relative;
    z-index: 2;
}
.about-split-content .tag {
    font-size: 14px;
    letter-spacing: 1px;
    color: var(--primary);
    font-weight: bold;
}
.about-split-content h2 {
    font-size: 36px;
    margin: 15px 0;
    line-height: 1.2;
}
.about-split-content p {
    color: var(--text-light);
    margin-bottom: 30px;
    font-size: 15px;
    line-height: 1.8;
    text-align: justify;
}
.about-features {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}
.a-feature {
    text-align: center;
}
.a-feature i {
    font-size: 28px;
    color: #555;
    margin-bottom: 10px;
}
.a-feature span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}
.about-split-right {
    flex: 1;
    min-height: 500px;
    position: relative;
    overflow: hidden;
}
.about-split-right img {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Mission & Vision */
.mission-vision {
    padding: 80px 0;
    background-color: var(--light);
}
.mission-vision-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}
.mv-card {
    background: #fff;
    padding: 40px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}
.mv-card i {
    font-size: 40px;
    color: var(--primary);
    margin-bottom: 20px;
}
.mv-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--dark);
}
.mv-card p {
    color: var(--text-light);
    line-height: 1.8;
    text-align: justify;
    font-size: 15px;
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    background-color: var(--light);
}
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 40px;
}
.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.info-card {
    background: #fff;
    padding: 30px 20px;
    border-radius: 8px;
    text-align: center;
    border: 1px solid var(--border);
    box-shadow: 0 5px 15px rgba(0,0,0,0.02);
}
.info-card .icon-circle {
    width: 60px;
    height: 60px;
    background-color: rgba(203, 160, 82, 0.1);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin: 0 auto 15px;
}
.info-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--dark);
}
.info-card p {
    color: var(--text-light);
    font-size: 15px;
}

.contact-form-container {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    border: 1px solid var(--border);
    box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}
.contact-form-container .section-header {
    margin-bottom: 30px;
    text-align: left;
}
.contact-form-container h2 {
    font-size: 32px;
    margin-bottom: 15px;
    color: var(--dark);
}
.contact-form-container p {
    color: var(--text-light);
    font-size: 15px;
}

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}
.form-group {
    flex: 1;
}
.form-group label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}
.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}
.form-control:focus {
    border-color: var(--primary);
    outline: none;
}
textarea.form-control {
    resize: vertical;
}

/* Map Section */
.map-section iframe {
    border: 0;
    display: block;
    width: 100%;
    height: 400px;
}

/* Responsive adjustments for inner pages */
@media (max-width: 991px) {
    .about-split-section {
        flex-direction: column;
    }
    .about-split-left {
        padding: 40px 20px;
    }
    .about-split-right {
        min-height: 300px;
    }
    .contact-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 768px) {
    .page-banner {
        padding: 60px 0;
    }
    .page-banner h1 {
        font-size: 32px;
    }
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    .form-row {
        flex-direction: column;
        gap: 15px;
    }
    .contact-form-container {
        padding: 25px;
    }
}
