/* ========== ABOUT PAGE HERO ========== */
.about-hero {
    height: 50vh;
    min-height: 300px;
    background-image: url('/images/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    margin-top: 9vh;
}

/* Dark overlay */
.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
}

.about-hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.about-hero-content {
    max-width: 700px;
}

.about-hero-title {
    font-family: var(--font-primary);
    font-size: 3.5rem;
    font-weight: 200;
    color: var(--color-white);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-hero-subtitle {
    font-family: var(--font-body);
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
    max-width: 600px;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .about-hero {
        height: 35vh;
        min-height: 250px;
        margin-top: 9vh;
    }
    
    .about-hero-title {
        font-size: 2.2rem;
    }
    
    .about-hero-subtitle {
        font-size: 1rem;
    }
}

/* ========== COMPANY OVERVIEW SECTION (ABOUT PAGE) ========== */
.company-overview {
    padding: 80px 0;
    background: var(--color-white);
}

.co-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 40% 60%;
    gap: 3rem;
    align-items: start;
}

/* Left Side */
.co-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.co-icon {
    width: 24px;
    height: 24px;
}

.co-eyebrow span {
    color: var(--color-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.co-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.co-image-wrapper {
    margin-top: 1rem;
}

.co-image {
    width: 100%;
    height: 350px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.co-image:hover {
    transform: scale(1.02);
}

/* Right Side */
.co-text {
    color: #444;
    line-height: 1.8;
}

.co-text p {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

.co-text p:last-child {
    margin-bottom: 0;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .co-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .co-title {
        font-size: 2rem;
    }
    
    .co-image {
        max-width: 80%;
        display: block;
        margin: 0 auto;
        height: 250px;
    }
}

@media (max-width: 768px) {
    .company-overview {
        padding: 60px 0;
    }
    
    .co-title {
        font-size: 1.8rem;
    }
    
    .co-image {
        max-width: 100%;
    }
    
    .co-text p {
        font-size: 0.95rem;
    }
}

/* ========== COMPANY EVOLUTION SECTION ========== */
.company-evolution {
    padding: 80px 0;
    background: var(--color-white);
}

.ce-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Part: 50/50 Split */
.ce-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    align-items: start;
}

.ce-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.ce-icon {
    width: 24px;
    height: 24px;
}

.ce-eyebrow span {
    color: var(--color-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.ce-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--color-dark);
    font-weight: 200;
}

.ce-title strong {
    font-weight: 700;
    color: var(--color-primary);
}

.ce-description {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Bottom Part: 3 Columns */
.ce-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

/* Column 1: Tabs */
.ce-tabs {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background-color: var(--color-light-gray);
    border-radius: 20px;
}

.ce-tab {
    background: transparent;
    border: none;
    text-align: center;
    padding: 1.5rem 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.ce-tab:hover {
    background: #f0f4f8;
}

.ce-tab.active {
    background: var(--color-primary);
}

.ce-tab.active .ce-tab-year,
.ce-tab.active .ce-tab-title {
    color: var(--color-white);
}

.ce-tab-year {
    font-size: 0.85rem;
    color: var(--color-primary);
    letter-spacing: 1px;
}

.ce-tab-title {
    font-size: 1.2rem;
    color: var(--color-dark);
    transition: color 0.3s ease;
}

/* Column 2: Dynamic Content */
.ce-content {
    padding: 2rem;
    border-radius: 20px;
    min-height: 350px;
    transition: all 0.3s ease;
}

.ce-content-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.ce-content-text {
    color: #555;
    line-height: 1.7;
    font-size: 1.1rem;
}

/* Column 3: Dynamic Image */
.ce-image {
    border-radius: 20px;
    overflow: hidden;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.ce-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.ce-img:hover {
    transform: scale(1.02);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .ce-top {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .ce-title {
        font-size: 1.8rem;
    }
    
    .ce-bottom {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .ce-tabs {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .ce-tab {
        flex: 1;
        min-width: 150px;
        text-align: center;
        align-items: center;
    }
    
    .ce-content {
        order: 2;
    }
    
    .ce-image {
        order: 3;
        min-height: 250px;
    }
}

@media (max-width: 768px) {
    .company-evolution {
        padding: 60px 0;
    }
    
    .ce-title {
        font-size: 1.5rem;
    }
    
    .ce-tabs {
        flex-direction: column;
    }
    
    .ce-tab {
        text-align: left;
        align-items: flex-start;
    }
    
    .ce-content {
        padding: 1.5rem;
        min-height: auto;
    }
    
    .ce-content-title {
        font-size: 1.2rem;
    }
}

/* Fade transition for dynamic content */
.ce-content-title,
.ce-content-text,
.ce-image {
    transition: opacity 0.2s ease;
}

/* ========== BUSINESS DIVISIONS SECTION ========== */
.business-divisions {
    background-image: url('https://images.unsplash.com/photo-1519389950473-47ba0277781c?ixlib=rb-4.0.3&auto=format&fit=crop&w=2070&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: scroll;
    position: relative;
    padding: 80px 0 120px 0;
}

/* Dark overlay */
.business-divisions::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.bd-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

/* Top Part - 50/50 Split */
.bd-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.bd-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.bd-icon {
    width: 24px;
    height: 24px;
}

.bd-eyebrow span {
    color: var(--color-white);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.bd-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    line-height: 1.3;
    color: var(--color-white);
    font-weight: 200;
}

.bd-title strong {
    font-weight: 700;
    color: var(--color-white);
}

.bd-description {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.6;
    font-size: 1rem;
}

/* Card Wrapper */
.bd-card-wrapper {
    position: relative;
    z-index: 3;
    margin-top: 80px;
}

.bd-card {
    max-width: 1400px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-bottom: -350px;
}

/* Tabs */
.bd-tabs {
    display: flex;
    border-bottom: 2px solid #e0e0e0;
    background: var(--color-white);
}

.bd-tab {
    flex: 1;
    background: transparent;
    border: none;
    padding: 2.5rem 1rem;
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.bd-tab:hover {
    color: var(--color-white);
    background-color: var(--color-primary);
}

.bd-tab.active {
    color: var(--color-white);
    background-color: var(--color-primary);
}

.bd-tab.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--color-primary);
}

/* Dynamic Content Area */
.bd-content-area {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 3rem;
    
}

.bd-content-title {
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 1rem;
}

.bd-content-description {
    color: #555;
    line-height: 1.7;
    font-size: 1.2rem;
}

.bd-image {
    border-radius: 20px;
    overflow: hidden;
    height: 250px;
}

.bd-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.bd-img:hover {
    transform: scale(1.02);
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .bd-top {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .bd-title {
        font-size: 1.8rem;
    }
    
    .bd-tabs {
        flex-direction: column;
        border-bottom: none;
        gap: 0.5rem;
        padding: 1rem;
    }
    
    .bd-tab {
        text-align: center;
        padding: 0.8rem;
        border-radius: 8px;
    }
    
    .bd-tab.active::after {
        display: none;
    }
    
    .bd-tab.active {
        background: var(--color-primary);
        color: var(--color-white);
    }
    
    .bd-content-area {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem;
    }
    
    .bd-content-title {
        font-size: 1.3rem;
    }
}

@media (max-width: 768px) {
    .business-divisions {
        padding: 60px 0 80px 0;
    }
    
    .bd-title {
        font-size: 1.5rem;
    }
    
    .bd-content-area {
        padding: 1.5rem;
    }
    
    .bd-content-title {
        font-size: 1.2rem;
    }
    
    .bd-content-description {
        font-size: 0.9rem;
    }
}

#bdText,
#bdImage {
    transition: opacity 0.2s ease;
}

/* ========== TOOLS & EQUIPMENT SECTION ========== */
.tools-equipment {
    padding: 80px 0;
    background: var(--color-white);
    padding-top: 25rem;
}

.te-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Part: 50/50 Split (swapped) */
.te-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 3rem;
}

.te-left {
    text-align: left;
}

.te-description {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

.te-right {
    text-align: left;
}

.te-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.te-icon {
    width: 24px;
    height: 24px;
}

.te-eyebrow span {
    color: var(--color-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.te-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--color-dark);
    font-weight: 200;
}

.te-title strong {
    font-weight: 700;
    color: var(--color-primary);
}

/* Bottom Box */
.te-box {
    background: #f8f9fa;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* Row Layout (2 columns) */
.te-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

/* Text Column with padding */
.te-col-text {
    padding: 2rem;
    position: relative;
}

/* Image Column - no padding, full bleed */
.te-col-image {
    padding: 0;
    display: flex;
    position: relative;
}

/* Vertical Divider (between columns in both rows) */
.te-col-text:first-child {
    border-right: 1px solid #e0e0e0;
}

.te-col-image:first-child {
    border-right: 1px solid #e0e0e0;
}

/* Horizontal Divider (between rows) */
.te-divider-horizontal {
    height: 1px;
    background: #e0e0e0;
    width: 100%;
}

/* Content Styling */
.te-subtitle {
    font-family: var(--font-primary);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 1.2rem;
}

.te-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.te-list li {
    padding: 0.5rem 0;
    padding-left: 1.2rem;
    position: relative;
    color: #444;
    font-size: 0.95rem;
    line-height: 1.5;
}

.te-list li::before {
    content: '▹';
    position: absolute;
    left: 0;
    color: var(--color-primary);
}

/* Image styling - fills entire column */
.te-col-image {
    min-height: 400px;
}

.te-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.te-col-image {
    position: relative;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .te-top {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .te-title {
        font-size: 1.8rem;
    }
    
    .te-row {
        grid-template-columns: 1fr;
    }
    
    .te-col-text:first-child {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .te-col-image:first-child {
        border-right: none;
        border-bottom: 1px solid #e0e0e0;
    }
    
    .te-divider-horizontal {
        display: none;
    }
    
    .te-col-text {
        padding: 1.5rem;
    }
    
    .te-col-image {
        min-height: 250px;
    }
    
    .te-img {
        position: relative;
    }
}

@media (max-width: 768px) {
    .tools-equipment {
        padding: 60px 0;
        padding-top: 25rem;
    }
    
    .te-title {
        font-size: 1.5rem;
    }
    
    .te-subtitle {
        font-size: 1.1rem;
    }
    
    .te-list li {
        font-size: 0.85rem;
    }
    
    .te-col-image {
        min-height: 200px;
    }
}

@media (max-width: 992px) {
    .te-row {
        display: flex;
        flex-direction: column;
    }
    
    /* Top row: Image first, then text */
    .te-row:first-child .te-col-image {
        order: 1;
    }
    
    .te-row:first-child .te-col-text {
        order: 2;
    }
    
    /* Bottom row: Image first, then text */
    .te-row:last-child .te-col-image {
        order: 1;
    }
    
    .te-row:last-child .te-col-text {
        order: 2;
    }
}

@media (max-width: 992px) {
    /* Reverse order for top part */
    .te-top {
        display: flex;
        flex-direction: column;
        align-items: start;
    }
    
    /* Title comes first, description below */
    .te-right {
        order: 1;
    }
    
    .te-left {
        order: 2;
    }
}

/* ========== OPERATIONAL DELIVERY MODEL SECTION ========== */
.operational-delivery {
    padding: 80px 0;
    background: var(--color-white);
}

.od-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Top Part: 50/50 Split */
.od-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-bottom: 3rem;
}

.od-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.od-icon {
    width: 24px;
    height: 24px;
}

.od-eyebrow span {
    color: var(--color-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.od-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    line-height: 1.3;
    color: var(--color-dark);
    font-weight: 200;
}

.od-title strong {
    font-weight: 700;
    color: var(--color-primary);
}

.od-description {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin-top: 0.5rem;
}

/* Bottom Part: 2 Columns */
.od-bottom {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Left Side - Static Content */
.od-left-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.od-writeup-top,
.od-writeup-bottom {
    color: #444;
    line-height: 1.7;
    font-size: 1.1rem;
    margin: 0;
}

.od-image-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.od-image {
    width: 100%;
    height: 30rem;
    display: block;
    transition: transform 0.3s ease;
}

.od-image:hover {
    transform: scale(1.02);
}

/* Right Side - Step Card */
.od-steps-card {
    background: #f8f9fa;
    border-radius: 24px;
    padding: 0 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    gap: 1rem
}

.od-step {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 2rem;
    border-radius: 40px;
    transition: all 0.3s ease;
    cursor: pointer;
}

/* Step container - needs relative positioning */
.od-step {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Pseudo-element for fill animation */
.od-step::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--color-primary);
    z-index: -1;
    transform: scaleY(0);
    transform-origin: top;
    transition: transform 0.4s ease-in-out;
}

/* Active ON - fill top to bottom */
.od-step.active::before {
    transform: scaleY(1);
    transform-origin: top;
}

/* Active OFF - recede bottom to top */
.od-step:not(.active)::before {
    transform: scaleY(0);
    transform-origin: bottom;
}

/* Ensure text stays above fill */
.od-step-number,
.od-step-title {
    position: relative;
    z-index: 2;
}

/* Remove background from hover and active (pseudo-element handles it) */
.od-step.active,
.od-step:hover {
    background: transparent;
}

.od-step.active .od-step-number {
    color: var(--color-white);
}

.od-step.active .od-step-title {
    color: var(--color-white);
}

.od-step-number {
    font-family: var(--font-primary);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-primary);
    min-width: 55px;
    transition: all 0.3s ease;
}

.od-step-title {
    font-family: var(--font-primary);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--color-dark);
    line-height: 1.4;
    transition: all 0.3s ease;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .od-top {
        grid-template-columns: 1fr;
        gap: 1rem;
        margin-bottom: 2rem;
    }
    
    .od-title {
        font-size: 1.8rem;
    }
    
    .od-bottom {
        display: flex;
        flex-direction: column;
    }

    .od-description{
        display: none;
    }

    .od-image{
        height: auto;
    }
}

@media (max-width: 768px) {
    .operational-delivery {
        padding: 60px 0;
    }
    
    .od-title {
        font-size: 1.5rem;
    }
    
    .od-step {
        padding: 1rem;
        gap: 1rem
    }
    
    .od-step-number {
        font-size: 1.5rem;
        min-width: 45px;
    }
    
    .od-step-title {
        font-size: 0.85rem;
    }
    
    .od-writeup-top,
    .od-writeup-bottom {
        font-size: 1rem;
    }
}

/* ========== QUALITY ASSURANCE (SPLIT SCREEN) ========== */
.quality-assurance-split {
    display: flex;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
}

/* Left Side - Dark Background */
.qa-left-side {
    flex: 1;
    background: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.qa-content-container {
    max-width: 650px;
    width: 100%;
}

.qa-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.qa-icon {
    width: 24px;
    height: 24px;
}

.qa-eyebrow span {
    color: var(--color-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.qa-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-white);
    font-weight: 200;
}

.qa-title strong {
    font-weight: 700;
    color: var(--color-primary);
}

.qa-description {
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* 3x2 Grid */
.qa-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1.2rem;
}

.qa-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(2px);
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    height: 200px;
}

.qa-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* First Card - Image */
.qa-card-image {
    padding: 0;
    overflow: hidden;
}

.qa-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.qa-card-image:hover .qa-card-img {
    transform: scale(1.05);
}

/* Icon Cards */
.qa-card-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.qa-card-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

/* Right Side - Full Height Image */
.qa-right-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.qa-full-image {
    width: 100%;
    height: 120vh;
    object-fit: cover;
    display: block;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .quality-assurance-split {
        flex-direction: column;
        min-height: auto;
    }
    
    .qa-left-side {
        padding: 3rem 1.5rem;
        min-height: auto;
    }
    
    .qa-content-container {
        max-width: 100%;
    }
    
    .qa-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .qa-right-side {
        min-height: 400px;
    }
    
    .qa-full-image {
        height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .qa-left-side {
        padding: 2rem 1.2rem;
    }
    
    .qa-title {
        font-size: 1.5rem;
    }
    
    .qa-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .qa-card {
        padding: 1rem;
    }

    .qa-card-image{
        display: none;
    }
    
    .qa-card-text {
        font-size: 1rem;
    }
    
    .qa-right-side {
        min-height: 300px;
    }
    
    .qa-full-image {
        height: 300px;
    }
}

/* ========== HSE (SPLIT SCREEN) ========== */
.hse-split {
    display: flex;
    width: 100%;
    overflow: hidden;
}

/* Left Side - Full Height Image */
.hse-left-side {
    flex: 1;
    position: relative;
    overflow: hidden;
}

.hse-full-image {
    width: 100%;
    height: 120vh;
    object-fit: cover;
    display: block;
}

/* Right Side - Light Background */
.hse-right-side {
    flex: 1;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4rem 2rem;
}

.hse-content-container {
    max-width: 650px;
    width: 100%;
}

.hse-eyebrow {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.hse-icon {
    width: 24px;
    height: 24px;
}

.hse-eyebrow span {
    color: var(--color-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.hse-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 1rem;
    color: var(--color-dark);
    font-weight: 200;
}

.hse-title strong {
    font-weight: 700;
    color: var(--color-primary);
}

.hse-description {
    color: #555;
    line-height: 1.6;
    font-size: 1rem;
    margin-bottom: 2rem;
}

/* 3x2 Grid */
.hse-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(3, auto);
    gap: 1.2rem;
}

.hse-card {
    background: var(--color-white);
    border-radius: 16px;
    padding: 1.2rem;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    height: 200px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.hse-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Last Card - Image */
.hse-card-image {
    padding: 0;
    overflow: hidden;
}

.hse-card-img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
}

.hse-card-image:hover .hse-card-img {
    transform: scale(1.05);
}

/* Icon Cards */
.hse-card-icon {
    width: 55px;
    height: 55px;
    object-fit: contain;
}

.hse-card-text {
    font-size: 1rem;
    color: #444;
    line-height: 1.4;
    margin: 0;
    font-weight: 500;
}

/* Mobile Responsive */
@media (max-width: 992px) {
    .hse-split {
        flex-direction: column;
        min-height: auto;
    }
    
    .hse-right-side {
        padding: 3rem 1.5rem;
        order: 1;
    }
    
    .hse-content-container {
        max-width: 100%;
    }
    
    .hse-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hse-left-side {
        order: 2;
        min-height: 400px;
    }
    
    .hse-full-image {
        height: 400px;
        object-fit: cover;
    }
}

@media (max-width: 768px) {
    .hse-right-side {
        padding: 2rem 1.2rem;
    }
    
    .hse-title {
        font-size: 1.5rem;
    }
    
    .hse-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .hse-card {
        padding: 1rem;
        height: auto;
        min-height: 160px;
    }
    
    .hse-card-image {
        display: none;
    }
    
    .hse-card-text {
        font-size: 0.9rem;
    }
    
    .hse-left-side {
        min-height: 300px;
    }
    
    .hse-full-image {
        height: 300px;
    }
}

/* ========== REGULATORY ALIGNMENT & LICENSING ========== */
.regulatory {
    padding: 80px 0;
    background: #f8f9fa;
}

.reg-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

.reg-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.reg-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.reg-icon {
    width: 24px;
    height: 24px;
}

.reg-eyebrow span {
    color: var(--color-primary);
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 600;
}

.reg-title {
    font-family: var(--font-primary);
    font-size: 2.2rem;
    line-height: 1.3;
    margin-bottom: 2rem;
    color: var(--color-dark);
    font-weight: 200;
}

.reg-title strong {
    font-weight: 700;
    color: var(--color-primary);
}

.reg-text-wrapper {
    text-align: left;
}

.reg-paragraph {
    color: #555;
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 1.5rem;
}

.reg-paragraph:last-child {
    margin-bottom: 0;
}

.reg-image-wrapper {
    width: 100%;
    margin-top: 3rem;
}

.reg-bottom-image {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: none;
}

@media (max-width: 768px) {
    .reg-bottom-image {
        height: 200px;
        display: block;
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .regulatory {
        padding: 60px 0;
    }
    
    .reg-title {
        font-size: 1.5rem;
    }
    
    .reg-paragraph {
        font-size: 0.9rem;
    }

    .reg-eyebrow{
        flex-direction: column;
    }
}