/* SUPERIOR-INSPIRED ABOUT US STYLES */



/* --- NEW HERO SECTION --- */
.about-hero-new {
    padding: 30px 0 45px;
    background: var(--white-primary);
    overflow: hidden;
}

@media (min-width: 900px) {
    .about-hero-new {
        padding: 50px 0 90px;
    }
}

.about-hero-inner {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

.hero-content {
    flex: 1;
}

.stats-row {
    display: flex;
    gap: 40px;
    padding-top: 20px;
    flex-wrap: wrap;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.stat-num {
    font-family: var(--fontH);
    font-size: 2.8em;
    font-weight: var(--font-weight-bold);
    color: var(--primary-color);
    line-height: 1;
}

@media (min-width: 768px) {
    .stat-num {
        font-size: 3.5em;
    }
}

.stat-label {
    font-size: 1em;
    color: var(--black-secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    line-height: 1.4;
}

.hero-images {
    flex: 1;
    position: relative;
}

.img-main {
    width: 90%;
    margin-left: auto;
    position: relative;
    z-index: 1;
}

.img-main img {
    width: 100%;
    height: auto;
    display: block;
}

.img-secondary {
    position: absolute;
    bottom: -20px;
    left: 0;
    width: 60%;
    z-index: 2;
    border: 8px solid var(--white-primary);
}

.img-secondary img {
    width: 100%;
    height: auto;
    display: block;
}

.experience-badge {
    position: absolute;
    top: 20px;
    left: 0;
    background: var(--primary-color);
    color: #ffffff;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 3;
    font-family: var(--fontH);
    font-size: 0.9em;
    font-weight: 600;
}

.experience-badge i {
    font-size: 1.8em;
}

@media (min-width: 900px) {
    .about-hero-inner {
        flex-direction: row;
        align-items: center;
    }

    .img-main {
        width: 80%;
    }

    .img-secondary {
        bottom: -40px;
        width: 50%;
        border-width: 10px;
    }

    .experience-badge {
        top: 40px;
        left: -20px;
        padding: 15px 25px;
        font-size: 1.1em;
        gap: 12px;
    }
}

/* --- NEW PROCESS SECTION --- */
.about-process-new {
    padding: 30px 0;
    background: var(--bg-section-light);
}

@media (min-width: 900px) {
    .about-process-new {
        padding: 50px 0;
    }
}

.step-content .step-title {
    font-size: 1.4em;
    margin-bottom: 15px;
    color: var(--black-primary);
}

@media (min-width: 768px) {
    .step-content .step-title {
        font-size: 1.8em;
    }
}

.process-header {
    text-align: center;
    margin-bottom: 60px;
}

.process-header .bodyCopy {
    max-width: 700px;
    margin: 0 auto;
}

.process-slider-wrapper {
    position: relative;
    width: 100%;
    min-height: 400px;
}

.process-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.process-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s ease, visibility 0.8s;
}

.process-slide.active {
    position: relative;
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.step-card {
    background: transparent;
    display: flex;
    flex-direction: column;
    position: relative;
    gap: 20px;
}

.step-number {
    font-family: var(--fontH);
    font-size: 3.5em;
    font-weight: var(--font-weight-bold);
    color: transparent;
    -webkit-text-stroke: 1.5px var(--primary-color);
    line-height: 1;
    opacity: 0.6;
}

@media (min-width: 768px) {
    .step-number {
        font-size: 5em;
    }
}

.step-content {
    padding: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.step-content p {
    font-size: 1em;
    color: var(--black-secondary);
    line-height: 1.7;
    margin-bottom: 25px;
}

@media (min-width: 768px) {
    .step-content p {
        font-size: 1.1em;
    }
}


.step-image {
    flex: 1;
}

.step-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0;
}

@media (min-width: 768px) {
    .step-card {
        flex-direction: row;
        gap: 60px;
        align-items: center;
    }
}

.process-nav {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 40px;
}

.process-nav button {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 1px solid rgba(0, 0, 0, 0.1);
    background: var(--white-primary);
    color: var(--black-primary);
    font-size: 20px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.process-nav button:hover {
    background: var(--primary-color);
    color: var(--white-primary);
    border-color: var(--primary-color);
    transform: scale(1.1);
}

.timeline-header {
    text-align: center;
    margin-bottom: 60px;
}





/* 3. Mission & Vision */
.missionVision {
    display: flex;
    flex-direction: column;
}

.mv-block {
    padding: 25px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.mv-block.mission {
    background: var(--bg-dark);
    color: var(--white-primary);
}

.mv-block.vision {
    background: var(--primary-color);
    color: var(--white-primary);
}



.mv-block p {
    font-size: 1.1em;
    line-height: 1.6;
    max-width: 600px;
}

@media (min-width: 768px) {
    .mv-block p {
        font-size: 1.3em;
    }
}

@media (min-width: 900px) {
    .missionVision {
        flex-direction: row;
    }

    .mv-block {
        padding: 50px 60px;
    }
}

/* 4. Our Values - Upgraded Image Cards */
.aboutValues {
    padding: 30px 0;
}

@media (min-width: 900px) {
    .aboutValues {
        padding: 50px 0;
    }
}

.values-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.value-item {
    position: relative;
    height: 400px;
    border-radius: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 30px;
    color: var(--white-primary);
    text-align: left;
}

.value-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.value-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.value-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 94, 184, 0.4) 50%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 2;
    transition: background 0.4s ease;
}

.value-item:hover .value-bg img {
    transform: scale(1.1);
}

.value-item:hover .value-overlay {
    background: linear-gradient(to top, rgba(0, 94, 184, 0.95) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.value-content {
    position: relative;
    z-index: 3;
}

.value-icon {
    color: #ffffff;
    margin-bottom: 15px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--primary-color);
    border-radius: 50%;
    width: 70px;
    height: 70px;
}

.value-item h3 {
    font-family: var(--fontH);
    font-size: 1.5em;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #ffffff;
}

.value-item p {
    font-size: 1em;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

@media (min-width: 768px) {
    .value-item h3 {
        font-size: 1.8em;
    }

    .value-item p {
        font-size: 1.1em;
    }
}

@media (min-width: 768px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* 5. NEW OWNER SECTION */
.aboutTeam {
    padding: 75px 0 40px;
    background-color: var(--white-primary);
}

@media (min-width: 1024px) {
    .aboutTeam {
        padding: 90px 0 80px;
    }
}

.owner-feature-section {
    display: flex;
    flex-direction: column;
    gap: 60px;
}

@media (min-width: 1024px) {
    .owner-feature-section {
        flex-direction: row;
        align-items: center;
        gap: 80px;
    }
}

/* Image Side */
.owner-image-wrapper {
    position: relative;
    flex: 0 0 45%;
    z-index: 1;
    margin: 0 15px;
}

@media (min-width: 1024px) {
    .owner-image-wrapper {
        margin: 0;
    }
}

.owner-image-main {
    width: 100%;
    height: auto;
    border-radius: var(--radius-md);
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    display: block;
}

.owner-accent-box {
    position: absolute;
    bottom: -15px;
    left: -15px;
    width: 80%;
    height: 80%;
    background-color: var(--primary-color);
    border-radius: var(--radius-md);
    z-index: 0;
}

.owner-experience-badge {
    position: absolute;
    top: -50px;
    right: -15px;
    background: var(--black-primary);
    color: var(--white-primary);
    padding: 15px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 10px;
}

@media (min-width: 768px) {
    .owner-accent-box {
        bottom: -30px;
        left: -30px;
    }

    .owner-experience-badge {
        top: 40px;
        right: -30px;
        padding: 20px 30px;
        gap: 15px;
    }
}

.owner-experience-badge .num {
    font-family: var(--fontH);
    font-size: 2em;
    font-weight: 800;
    color: var(--white-primary);
    line-height: 1;
}

@media (min-width: 768px) {
    .owner-experience-badge .num {
        font-size: 2.5em;
    }
}

.owner-experience-badge .text {
    font-size: 0.9em;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    line-height: 1.3;
    color: var(--white-primary);
}

/* Content Side */
.owner-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.owner-role {
    font-family: var(--fontH);
    font-size: 15px;
    color: var(--black-secondary);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .owner-role {
        font-size: 18px;
    }
}

.owner-quote {
    position: relative;
    padding-left: 30px;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 30px;
}

.owner-quote .quote-icon {
    position: absolute;
    top: -15px;
    left: 20px;
    font-size: 3em;
    color: rgba(0, 94, 184, 0.1);
    z-index: -1;
}

.owner-quote p {
    font-family: var(--fontH);
    font-size: 1.2em;
    font-weight: 500;
    color: var(--black-primary);
    line-height: 1.5;
    font-style: italic;
    margin: 0;
}

.owner-bio {
    font-size: 1em;
    color: var(--black-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .owner-quote p {
        font-size: 1.4em;
    }

    .owner-bio {
        font-size: 1.15em;
    }
}

.owner-contact-info {
    display: flex;
    align-items: center;
    gap: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--border-color);
    width: 100%;
    flex-wrap: wrap;
}

.contact-details {
    display: flex;
    flex-direction: column;
}

.owner-contact-label {
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    margin-bottom: 5px;
    font-weight: 700;
}

.owner-phone-link {
    color: var(--primary-color);
    font-size: 22px;
    text-decoration: none;
    font-weight: 700;
    font-family: var(--fontH);
    transition: color 0.3s;
    line-height: 1;
}

@media (min-width: 768px) {
    .owner-phone-link {
        font-size: 30px;
    }
}

.owner-phone-link:hover {
    color: var(--primary-hover);
}

/* --- Mission & Vision Inline Style Cleanups --- */
.about-mission-vision {
    background: var(--bg-section-light);
}



.aboutValues .main-h2 {
    text-align: center;
    margin-bottom: 60px;
}