/* ===================================
   ABOUT PAGE SPECIFIC STYLES
   =================================== */

/* ========== HEADER OVERRIDE FOR INNER PAGES - MATCH INDEX BLUR ========== */
.inner-page .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.inner-page .header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.inner-page .header .top-bar {
    background: transparent;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    padding: 0.8rem 0;
}

.inner-page .header .navbar {
    background: transparent;
}

.inner-page .top-bar-left a,
.inner-page .top-bar-right a {
    color: var(--dark-bg);
}

.inner-page .top-bar-left a:hover {
    color: var(--primary-red);
}

.inner-page .top-bar-right a {
    color: var(--dark-bg);
}

.inner-page .top-bar-right a:hover {
    background: var(--primary-red);
    color: var(--white);
    transform: translateY(-2px);
}

/* Logo Styling - Match Index Page */
.inner-page .logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 1001;
    text-decoration: none;
}

.inner-page .logo a {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-decoration: none;
}

.inner-page .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.inner-page .logo-text {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-bg) !important;
    letter-spacing: 1px;
    white-space: nowrap;
}

/* Navigation Container */
.inner-page .nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

/* Navigation Menu */
.inner-page .nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
    margin: 0;
    padding: 0;
}

.inner-page .nav-link {
    color: var(--dark-bg) !important;
}

.inner-page .nav-link:hover,
.inner-page .nav-link.active {
    color: var(--primary-red) !important;
}

/* Mobile Menu Fixes - specific to inner pages (original About page behavior) */
@media (max-width: 768px) {
    .inner-page .hamburger {
        display: flex;
    }
    
    .inner-page .nav-menu {
        position: fixed;
        left: -100%;
        top: 0;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        width: 100%;
        height: 100vh;
        padding: 120px 0 2rem;
        transition: left 0.4s ease;
        gap: 0;
        box-shadow: 5px 0 20px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
        align-items: stretch;
    }
    
    .inner-page .nav-menu.active {
        left: 0;
    }
    
    .inner-page .nav-item {
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .inner-page .nav-link {
        padding: 1.2rem 2rem;
        display: flex;
        justify-content: flex-start;
        width: 100%;
        color: rgba(255, 255, 255, 0.95) !important;
        font-size: 1.1rem;
    }
    
    .inner-page .nav-link:hover {
        background: rgba(227, 30, 36, 0.1);
        color: var(--primary-red) !important;
    }
    
    /* Dropdown Mobile */
    .inner-page .dropdown-toggle {
        position: relative;
        justify-content: space-between;
        padding-right: 3rem;
    }
    
    .inner-page .dropdown-toggle i {
        position: absolute;
        right: 2rem;
        font-size: 0.7rem;
        transition: transform 0.3s ease;
    }
    
    .inner-page .dropdown.active .dropdown-toggle i {
        transform: rotate(180deg);
    }
    
    .inner-page .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border-radius: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.5s ease;
        background: rgba(255, 255, 255, 0.03);
        margin: 0;
        padding: 0;
    }
    
    .inner-page .dropdown.active .dropdown-menu {
        max-height: 1000px;
        padding: 0.5rem 0;
    }
    
    .inner-page .dropdown-menu a {
        padding: 1rem 3rem;
        color: rgba(255, 255, 255, 0.8);
        font-size: 1rem;
    }
    
    .inner-page .dropdown-menu a:hover {
        background: rgba(227, 30, 36, 0.15);
        padding-left: 3.5rem;
        color: var(--primary-red) !important;
    }
    
    .inner-page .nav-item-enquiry {
        border-bottom: none;
        padding: 1.5rem 2rem 1rem;
    }
    
    .inner-page .nav-link.enquiry-btn {
        width: 100%;
        text-align: center;
        justify-content: center;
        padding: 1rem 2rem;
        background: var(--primary-red);
        color: var(--white) !important;
        border-radius: 50px;
    }
    
    .inner-page .nav-link.enquiry-btn:hover {
        background: var(--red-hover);
        transform: translateY(-2px);
    }
    
    /* Mobile Contact Section in Menu */
    .inner-page .nav-contact {
        display: flex;
        flex-direction: column;
        padding: 0 2rem 1.5rem;
        margin-bottom: 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .inner-page .nav-contact-title {
        color: rgba(255, 255, 255, 0.7);
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 1px;
        font-weight: 700;
        margin-bottom: 0.8rem;
        margin-top: 0.5rem;
    }
    
    .inner-page .nav-contact-link {
        display: flex;
        align-items: center;
        gap: 0.5rem;
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        font-weight: 600;
        font-size: 0.95rem;
        margin-bottom: 0.8rem;
        transition: var(--transition);
    }
    
    .inner-page .nav-contact-link i {
        color: var(--primary-red);
    }
    
    .inner-page .nav-contact-link:hover {
        color: var(--primary-red);
    }
    
    .inner-page .nav-contact-social {
        display: flex;
        gap: 0.6rem;
        margin-top: 0.8rem;
        justify-content: flex-start;
    }
    
    .inner-page .nav-contact-social a {
        width: 32px;
        height: 32px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        border: 1px solid rgba(255, 255, 255, 0.2);
        color: rgba(255, 255, 255, 0.9);
        text-decoration: none;
        transition: var(--transition);
    }
    
    .inner-page .nav-contact-social a:hover {
        border-color: var(--primary-red);
        background: var(--primary-red);
        color: var(--white);
    }
}

/* Mobile Menu Fixes moved to global style.css so all pages match */

/* ========== BIG HERO SECTION - DARKER OVERLAY ========== */
.page-hero-big {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 700px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: scroll;
    overflow: hidden;
    margin-top: 0;
    padding-top: 0;
}

.page-hero-big::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0,0,0,0.5) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

/* Ensure hero starts from top */
.inner-page {
    padding-top: 0;
}

body.inner-page {
    padding-top: 0;
}

/* Section Common Styles */
.section-tag {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-bg);
    line-height: 1.2;
    margin-bottom: 20px;
}

.section-title-center {
    font-size: 2.8rem;
    font-weight: 800;
    color: var(--dark-bg);
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: center;
}

.white-title {
    color: var(--white) !important;
}

.title-underline {
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin: 20px 0 30px 0;
}

.title-underline-center {
    width: 80px;
    height: 4px;
    background: var(--primary-red);
    margin: 20px auto 30px auto;
}

.section-header-center {
    text-align: center;
    margin-bottom: 60px;
}

/* Company Overview Section */
.overview-section {
    padding: 6rem 0;
    background: var(--grey-light);
}

.overview-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 5rem;
    align-items: center;
}

.overview-image {
    position: relative;
}

.overview-image img {
    width: 100%;
    height: 580px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

.year-badge {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: var(--primary-red);
    color: var(--white);
    padding: 30px;
    text-align: center;
    min-width: 120px;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(227, 30, 36, 0.4);
}

.badge-since {
    display: block;
    font-size: 0.9rem;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.badge-year {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
}

.overview-text {
    font-size: 1.05rem;
    line-height: 1.9;
    color: var(--grey-mid);
    margin-bottom: 25px;
}

.overview-highlights {
    display: grid;
    gap: 20px;
    margin-top: 40px;
}

.highlight-box {
    background: var(--white);
    padding: 30px;
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: var(--transition);
    border-radius: 10px;
    border-left: 4px solid transparent;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.highlight-box:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-left-color: var(--primary-red);
}

.highlight-box i {
    font-size: 2.5rem;
    color: var(--primary-red);
    flex-shrink: 0;
    transition: var(--transition);
}

.highlight-box:hover i {
    transform: scale(1.15) rotate(360deg);
}

.highlight-box h4 {
    color: var(--dark-bg);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.highlight-box p {
    color: var(--grey-mid);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* What Sets Us Apart Section */
.unique-section {
    padding: 6rem 0;
    background: var(--white);
}

.unique-wrapper {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 5rem;
    align-items: center;
}

.unique-text {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--grey-mid);
    margin-bottom: 40px;
}

.unique-text strong {
    color: var(--primary-red);
    font-weight: 700;
}

.unique-features {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.unique-feature {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    padding: 20px;
    background: var(--grey-light);
    border-radius: 10px;
    transition: var(--transition);
}

.unique-feature:hover {
    background: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform: translateX(10px);
}

.unique-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    flex-shrink: 0;
    border-radius: 10px;
    transition: var(--transition);
}

.unique-feature:hover .unique-icon {
    background: var(--dark-bg);
    transform: scale(1.1) rotate(360deg);
}

.unique-feature h4 {
    color: var(--dark-bg);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.unique-feature p {
    color: var(--grey-mid);
    font-size: 0.95rem;
    line-height: 1.6;
}

.unique-image img {
    width: 100%;
    height: 550px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
}

/* Stats Section (Dark) */
.stats-section {
    background: var(--dark-bg);
    padding: 5rem 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-5px);
    border-color: var(--primary-red);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: var(--primary-red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon i {
    font-size: 2rem;
    color: var(--white);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
}

/* ========== Featured Showcase with TRANSPARENT IMAGE ========== */
.featured-showcase {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.showcase-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    align-items: center;
    min-height: 600px;
}

.showcase-text {
    padding: 80px 60px 80px 120px;
    background: var(--white);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.showcase-tag {
    display: inline-block;
    color: var(--primary-red);
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
}

.showcase-title {
    font-size: 3rem;
    font-weight: 900;
    color: var(--dark-bg);
    line-height: 1.2;
    margin-bottom: 20px;
}

.showcase-description {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--grey-mid);
    margin-bottom: 30px;
}

.showcase-features {
    list-style: none;
    margin-bottom: 40px;
}

.showcase-features li {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    font-size: 1rem;
    color: var(--grey-mid);
    font-weight: 600;
}

.showcase-features li i {
    color: var(--primary-red);
    font-size: 1.2rem;
}

.showcase-image {
    height: 600px;
    position: relative;
    overflow: visible;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.main-showcase-img {
    width: 90%;
    height: auto;
    max-height: 550px;
    object-fit: contain;
    transition: transform 0.6s ease;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.25));
}

.featured-showcase:hover .main-showcase-img {
    transform: scale(1.05);
}

/* Mission Section */
.mission-section {
    padding: 6rem 0;
    background: var(--white);
}

.mission-wrapper {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
}

.mission-box {
    text-align: center;
    padding: 3rem 2rem;
    background: var(--grey-light);
    transition: var(--transition);
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.mission-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--primary-red);
    transform: scaleX(0);
    transition: var(--transition);
}

.mission-box:hover::before {
    transform: scaleX(1);
}

.mission-box:hover {
    background: var(--white);
    box-shadow: 0 15px 50px rgba(0,0,0,0.15);
    transform: translateY(-15px);
}

.mission-icon {
    width: 90px;
    height: 90px;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    margin: 0 auto 30px;
    transition: var(--transition);
    border-radius: 50%;
}

.mission-box:hover .mission-icon {
    background: var(--dark-bg);
    transform: rotateY(360deg);
}

.mission-box h3 {
    color: var(--dark-bg);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.mission-box p {
    color: var(--grey-mid);
    font-size: 0.95rem;
    line-height: 1.8;
}

/* Why Choose Us Section (Dark) */
.why-choose-section {
    padding: 6rem 0;
}

.dark-section {
    background: var(--dark-bg);
}

.dark-section .section-tag {
    color: var(--primary-red);
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.why-card {
    background: rgba(255, 255, 255, 0.05);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: var(--transition);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.why-card:hover {
    background: var(--primary-red);
    transform: translateY(-10px);
    border-color: var(--primary-red);
}

.why-icon {
    width: 80px;
    height: 80px;
    background: var(--primary-red);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 25px;
    transition: var(--transition);
    border-radius: 50%;
}

.why-card:hover .why-icon {
    background: var(--white);
    color: var(--primary-red);
    transform: scale(1.15) rotate(360deg);
}

.why-card h4 {
    color: var(--white);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
}

.why-card p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.7;
}

.why-card:hover p {
    color: var(--white);
}

/* ========== Large Image Showcase with TRANSPARENT IMAGES ========== */
.large-image-showcase {
    padding: 0;
    background: var(--dark-bg);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.showcase-item {
    position: relative;
    height: 450px;
    overflow: hidden;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
}

.showcase-item img {
    width: 90%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    transition: transform 0.5s ease;
    filter: drop-shadow(0 15px 40px rgba(0, 0, 0, 0.4));
}

.showcase-item:hover img {
    transform: scale(1.1);
}

.showcase-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 40px;
    opacity: 0;
    transition: var(--transition);
}

.showcase-item:hover .showcase-overlay {
    opacity: 1;
}

.showcase-overlay h3 {
    color: var(--white);
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
    transform: translateY(20px);
    transition: var(--transition);
}

.showcase-item:hover .showcase-overlay h3 {
    transform: translateY(0);
}

.showcase-overlay p {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    margin-bottom: 20px;
    transform: translateY(20px);
    transition: var(--transition);
    transition-delay: 0.1s;
}

.showcase-item:hover .showcase-overlay p {
    transform: translateY(0);
}

.overlay-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--primary-red);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    transform: translateY(20px);
    transition-delay: 0.2s;
    width: fit-content;
}

.showcase-item:hover .overlay-btn {
    transform: translateY(0);
}

.overlay-btn:hover {
    background: var(--white);
    color: var(--primary-red);
    gap: 15px;
}

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--grey-dark) 100%);
    padding: 6rem 0;
    position: relative;
    text-align: center;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.03;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
}

/* ===== RESPONSIVE DESIGN ===== */

@media (max-width: 1024px) {
    .page-hero-big {
        height: 80vh;
        min-height: 600px;
    }
    
    .overview-wrapper,
    .unique-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .showcase-content {
        grid-template-columns: 1fr;
    }
    
    .showcase-text {
        padding: 60px 40px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .mission-wrapper {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .showcase-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .page-hero-big {
        height: 70vh;
        min-height: 500px;
        background-attachment: scroll;
    }
    
    .section-title,
    .section-title-center,
    .showcase-title {
        font-size: 2rem;
    }
    
    .overview-section,
    .unique-section,
    .mission-section,
    .why-choose-section {
        padding: 4rem 0;
    }
    
    .overview-image img,
    .unique-image img {
        height: 400px;
    }
    
    .showcase-text {
        padding: 50px 30px;
    }
    
    .showcase-image {
        height: 400px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .page-hero-big {
        height: 60vh;
        min-height: 450px;
    }
    
    .section-title,
    .section-title-center {
        font-size: 1.7rem;
    }
    
    .overview-image img,
    .unique-image img {
        height: 300px;
    }
    
    .showcase-text {
        padding: 40px 20px;
    }
    
    .year-badge {
        padding: 20px;
        min-width: 100px;
    }
    
    .badge-year {
        font-size: 2rem;
    }
    
    .cta-title {
        font-size: 1.7rem;
    }
    
    .showcase-item {
        height: 350px;
    }
}