/* ============================================
   ABOUT US PAGE SPECIFIC STYLES
   ============================================ */

/* About Banner Section */
.about-banner {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding-top: 80px;
}

.banner-content {
    position: relative;
    z-index: 2;
    color: var(--white);
    max-width: 800px;
}

.banner-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 20px rgba(0, 147, 208, 0.5);
}

.banner-content p {
    font-size: 1.3rem;
    opacity: 0.95;
    line-height: 1.8;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 5rem 0;
    position: relative;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}

.mission-vision-card {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 0;
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
}

.mission-vision-card:hover {
    border-color: var(--secondary-blue);
    box-shadow: 0 0 30px rgba(0, 147, 208, 0.3);
    transform: translateY(-10px);
}

.mv-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.mv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.mission-vision-card:hover .mv-image img {
    transform: scale(1.1);
}

.mv-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(43, 60, 140, 0.95), rgba(0, 147, 208, 0.9));
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-smooth);
}

.mission-vision-card:hover .mv-overlay {
    opacity: 1;
}

.mv-overlay i {
    font-size: 4rem;
    color: var(--white);
    animation: pulse 2s infinite;
}

.mv-content {
    padding: 2.5rem;
    position: relative;
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 0 30px var(--blue-glow);
    transform: rotate(45deg);
}

.mv-icon i {
    font-size: 2rem;
    color: var(--white);
    transform: rotate(-45deg);
}

.mv-content h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.mv-content p {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Business Grow Section */
.business-grow-section {
    padding: 5rem 0;
    position: relative;
}

.business-grow-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.ceo-image {
    position: relative;
}

.ceo-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 3px solid var(--border-color);
    transition: var(--transition-smooth);
}

.ceo-image:hover img {
    transform: scale(1.05);
    box-shadow: 0 20px 60px rgba(0, 147, 208, 0.4);
    border-color: var(--secondary-blue);
}

.ceo-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: linear-gradient(135deg, var(--accent-orange), #ff9500);
    padding: 1rem 1.5rem;
    border-radius: 0;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 4px 20px rgba(253, 184, 19, 0.5);
}

.ceo-badge i {
    font-size: 1.5rem;
    color: var(--white);
}

.ceo-badge span {
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.business-grow-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.ceo-info {
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 1.5rem;
    margin-bottom: 2rem;
    border-left: 4px solid var(--accent-orange);
}

.ceo-info h3 {
    font-size: 1.8rem;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
}

.ceo-title {
    color: var(--accent-orange);
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 0;
}

.business-grow-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.growth-highlights {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.growth-item {
    flex: 1;
    min-width: 150px;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 0;
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transition: var(--transition-smooth);
}

.growth-item:hover {
    border-color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(253, 184, 19, 0.3);
    transform: translateY(-5px);
}

.growth-item i {
    font-size: 2rem;
    color: var(--accent-orange);
}

.growth-item span {
    color: var(--text-primary);
    font-weight: 600;
    text-align: center;
}

/* Who We Are Section */
.who-we-are-section {
    padding: 5rem 0;
    position: relative;
}

.who-we-are-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    margin-top: 3rem;
}

.who-we-are-content h2 {
    font-size: 2.5rem;
    color: var(--text-primary);
    margin-bottom: 1.5rem;
}

.who-we-are-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.services-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin: 2rem 0;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-radius: 0;
    transition: var(--transition-smooth);
}

.service-item:hover {
    border-color: var(--secondary-blue);
    box-shadow: 0 0 15px rgba(0, 147, 208, 0.2);
    transform: translateX(10px);
}

.service-item i {
    color: var(--success-green);
    font-size: 1.3rem;
}

.service-item span {
    color: var(--text-primary);
    font-weight: 500;
    font-size: 1.05rem;
}

.emphasis-text {
    font-size: 1.15rem !important;
    color: var(--text-primary) !important;
    font-weight: 600;
    background: var(--bg-dark-card);
    border: 1px solid var(--border-color);
    border-left: 4px solid var(--secondary-blue);
    padding: 1.5rem;
    border-radius: 0;
    margin-top: 2rem !important;
}

.who-we-are-image {
    position: relative;
}

.who-we-are-image img {
    width: 100%;
    border-radius: 0;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    border: 2px solid var(--border-color);
    transition: var(--transition-smooth);
}

.who-we-are-image:hover img {
    transform: scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 147, 208, 0.3);
    border-color: var(--secondary-blue);
}

.image-decorative-corner {
    position: absolute;
    width: 60px;
    height: 60px;
    border: 3px solid var(--accent-orange);
    pointer-events: none;
}

.image-decorative-corner.decorative-top-right {
    top: -15px;
    right: -15px;
    border-left: none;
    border-bottom: none;
}

.image-decorative-corner.decorative-bottom-left {
    bottom: -15px;
    left: -15px;
    border-right: none;
    border-top: none;
}

/* Why Choose Section */
.why-choose-section {
    padding: 5rem 0;
}

/* Final CTA Banner */
.final-cta-banner {
    min-height: 60vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.final-cta-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 2;
    padding: 3rem;
}

.final-cta-content .cta-icon {
    width: 100px;
    height: 100px;
    background: var(--accent-orange);
    border-radius: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transform: rotate(45deg);
    box-shadow: 0 0 40px rgba(253, 184, 19, 0.6);
    animation: float 3s ease-in-out infinite;
}

.final-cta-content .cta-icon i {
    font-size: 2.5rem;
    color: var(--white);
    transform: rotate(-45deg);
}

.final-cta-content h2 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    color: var(--white);
    text-shadow: 0 0 20px rgba(0, 147, 208, 0.5);
}

.final-cta-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.95);
}

.final-cta-content .cta-subtext {
    font-size: 1.1rem;
    font-style: italic;
    opacity: 0.9;
    margin-bottom: 2.5rem !important;
}

.cta-contact-info {
    display: flex;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.cta-contact-info span {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-contact-info i {
    color: var(--accent-orange);
    font-size: 1.2rem;
}

/* Responsive Design */
@media (max-width: 968px) {
    .banner-content h1 {
        font-size: 2.5rem;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
    }

    .business-grow-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .ceo-image {
        order: -1;
    }

    .who-we-are-grid {
        grid-template-columns: 1fr;
    }

    .who-we-are-image {
        order: -1;
    }

    .growth-highlights {
        flex-direction: column;
    }

    .cta-contact-info {
        flex-direction: column;
        gap: 1rem;
    }

    .final-cta-content h2 {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .banner-content h1 {
        font-size: 2rem;
    }

    .banner-content p {
        font-size: 1.1rem;
    }

    .mv-content h3,
    .business-grow-content h2,
    .who-we-are-content h2 {
        font-size: 1.8rem;
    }

    .mv-image {
        height: 200px;
    }

    .final-cta-content {
        padding: 2rem 1rem;
    }

    .final-cta-content h2 {
        font-size: 1.8rem;
    }
}
