*,
html,
body {
    margin: 0;
    padding: 0;
    scroll-behavior: smooth;
    box-sizing: border-box;
    position: relative;
    font-family: 'Raleway', 'Poppins', sans-serif;
}

:root {
    --gradient-primary: linear-gradient(145deg, #0866ad, #0a4c7e);
    --gradient-secondary: linear-gradient(145deg, #001627, #001e35);
    
    --primary: #0866ad;
    --primary-hover: #0a4c7e;
    --primary-soft: rgba(8, 102, 173, 0.1);
    --secondary: #001627;
    --secondary-hover: #001e35;
    --secondary-soft: rgba(0, 22, 39, 0.05);
    --light-bg: #ffffff;

    --text-light: #ffffff;
    --text-soft: #f8f9fa;
    --text-muted: #444c53;
    --text-dark: #001627;

    --shadow-sm: 0 5px 15px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 8px 25px rgba(8, 102, 173, 0.15);
    --shadow-lg: 0 15px 40px rgba(8, 102, 173, 0.2);
    
    --border-radius-sm: 10px;
    --border-radius-md: 15px;
    --border-radius-lg: 25px;
}

/* nav bar */
.landing_fab {
    width: 100%;
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    transition: 0.5s ease-in-out;
    & > .land_container {
        width: 80%;
        position: relative;
        margin: 0 auto;
        transition: 0.5s ease-in-out;
        z-index: 2;
    }
}

/* Mini theme Header */
.mini_header_container {
    display: flex;
    flex-direction: row;
    justify-self: center;
    align-items: center;
    margin: 0 auto;
    gap: 10px;
    
    &.center {
        justify-content: center;
    }
    
    & > .theme_block {
        height: 15px;
        width: 15px;
        background-color: var(--primary);
    }
    
    & > .header_title > h3 {
        color: var(--secondary);
        font-size: 1.1em;
        font-weight: 450;
    }
}

.section_title {
    font-size: 2.5em;
    line-height: 1.4;
    font-weight: 700;
    color: var(--secondary);
    text-align: center;
    margin-bottom: 50px;
    
    & > span {
        color: var(--primary);
    }
    
    &.light {
        color: var(--text-light);
    }
}

/* Hero Section */
.fab_hero {
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, var(--secondary) 0%, #002b4a 100%);
    background-image: url(../IMAGES/fabrication-slide-1.jpg);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
    
    & > .fab_transparent {
        width: 100%;
        margin: 0;
        padding: 0;
        background-color: rgba(0, 0, 0, .7);
        position: relative;
        overflow: hidden;
        
        & > .overflow_container {
            position: absolute;
            bottom: 150px;
            right: -100px;
            pointer-events: none;
            opacity: .7;
            
            & > .shape {
                position: absolute;
                bottom: 0;
                right: 0;
                width: 600px;
                height: 650px;
                border-radius: 50px;
                transform: rotate(45deg);
                transform-origin: bottom right;
                
                &.shape-1 {
                    border: 70px solid #084572;
                    transform: rotate(45deg) translate(31.5%, 28%);
                    z-index: 2;
                }
                
                &.shape-2 {
                    border: 70px solid #1e6fa8;
                    transform: rotate(45deg) translate(15%, 10%);
                    z-index: 1;
                }
                
                &.shape-3 {
                    background-color: var(--light-bg);
                    width: 500px;
                    height: 550px;
                    transform: rotate(45deg) translate(38%, 12%);
                    z-index: 3;
                }
            }
        }
        
        & > .fab_hero_container {
            width: 80%;
            margin: 0 auto;
            padding: 100px 0;
            position: relative;
            
            & > .fab_hero_content {
                width: 60%;
                margin: 0 auto;
                
                & > .mini_header_container > .header_title > h3 {
                    color: var(--text-light);
                }
                
                & > .fab_hero_title {
                    font-size: 4em;
                    line-height: 1.2;
                    font-weight: 300;
                    color: var(--text-light);
                    margin: 20px 0;
                    text-align: center;
                    
                    & > span {
                        display: block;
                        font-weight: 700;
                        background: linear-gradient(135deg, #ffffff, #adcadf);
                        -webkit-background-clip: text;
                        -webkit-text-fill-color: transparent;
                        background-clip: text;
                    }
                }
                
                & > .fab_hero_text {
                    font-size: 1.2em;
                    line-height: 1.6;
                    color: var(--text-soft);
                    margin-bottom: 40px;
                    opacity: 0.9;
                    text-align: center;
                }
                
                & > .fab_hero_cta {
                    display: flex;
                    gap: 20px;
                    align-items: center;
                    justify-content: center;
                    
                    & > .btn_primary {
                        display: inline-block;
                        padding: 18px 35px;
                        background: var(--primary);
                        color: var(--text-light);
                        text-decoration: none;
                        border-radius: var(--border-radius-md);
                        font-weight: 600;
                        transition: all 0.3s ease;
                        
                        &:hover {
                            background-color: var(--primary-hover);
                            transform: translateY(-3px);
                            box-shadow: var(--shadow-lg);
                        }
                    }
                    
                    & > .btn_secondary {
                        display: inline-block;
                        padding: 18px 35px;
                        background: transparent;
                        color: var(--text-light);
                        text-decoration: none;
                        border-radius: var(--border-radius-md);
                        font-weight: 600;
                        border: 2px solid rgba(255, 255, 255, 0.3);
                        transition: all 0.3s ease;
                        
                        &:hover {
                            border-color: var(--primary);
                            background: rgba(8, 102, 173, 0.1);
                            transform: translateY(-3px);
                        }
                    }
                }
            }
            
            & > .fab_hero_stats {
                display: flex;
                gap: 50px;
                margin-top: 60px;
                justify-content: center;
                
                & > .stat_item {
                    & > h4 {
                        font-size: 2em;
                        color: var(--primary);
                        font-weight: 700;
                        margin-bottom: 5px;
                    }
                    
                    & > p {
                        color: var(--text-light);
                        opacity: 0.8;
                        font-size: 1em;
                    }
                }
            }
        }
    }
}

/* Introduction Section */
.fab_intro {
    padding: 50px 0;
    background: #f8fafc;
    
    & > .fab_intro_container {
        width: 80%;
        margin: 0 auto;
        
        & > .mini_header_container {
            justify-self: normal;
        }
        
        & > .section_title {
            text-align: left;
            margin: 10px 0 40px 0;
        }
        
        & > .fab_intro_grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            
            & > .fab_intro_content {
                & > p {
                    font-size: 1.2em;
                    line-height: 1.8;
                    color: var(--text-muted);
                    margin-bottom: 40px;
                }
                
                & > .fab_highlight_item {
                    display: flex;
                    gap: 20px;
                    margin-bottom: 25px;
                    
                    & > .fab_highlight_icon {
                        font-size: 2em;
                        min-width: 50px;
                    }
                    
                    & > div > h4 {
                        font-size: 1.2em;
                        color: var(--secondary);
                        margin-bottom: 5px;
                        font-weight: 700;
                    }
                    
                    & > div > p {
                        color: var(--text-muted);
                        line-height: 1.5;
                        font-size: 1em;
                    }
                }
            }
            
            & > .fab_intro_image {
                & > .image_placeholder {
                    background: linear-gradient(135deg, #e2e8f0, #cbd5e0);
                    border-radius: var(--border-radius-md);
                    height: 400px;
                    display: flex;
                    width: fit-content;
                    flex-direction: column;
                    align-items: center;
                    justify-content: center;
                    box-shadow: var(--shadow-lg);
                    & > img {
                        object-fit: cover;
                        height: 400px;
                        border-radius: var(--border-radius-md);
                        box-shadow: var(--shadow-lg);
                    }
                }
            }
        }
    }
}

/* Capabilities Section */
.fab_capabilities {
    background: var(--text-light);
    background-image: url(../IMAGES/7-1024x683.jpeg);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    
    & > .transparent_bg {
        background-color: rgba(0, 0, 0, .85);
        padding: 50px 0;
        
        & > .fab_capabilities_container {
            width: 80%;
            margin: 0 auto;
            
            & > .mini_header_container {
                & > .header_title > h3 {
                    color: var(--text-light);
                }
            }
            
            & > .section_title {
                color: var(--text-light);
                
                & > span {
                    color: var(--primary);
                }
            }
            
            & > .fab_capabilities_grid {
                display: grid;
                grid-template-columns: repeat(3, 1fr);
                gap: 30px;
                margin-top: 50px;
                
                & > .fab_capability_card {
                    background: rgba(255, 255, 255, 0.95);
                    border-radius: var(--border-radius-md);
                    padding: 40px 25px;
                    transition: all 0.3s ease;
                    border: 1px solid rgba(255, 255, 255, 0.2);
                    
                    &:hover {
                        transform: translateY(-10px);
                        box-shadow: var(--shadow-lg);
                        border-color: var(--primary);
                        background: #ffffff;
                    }
                    
                    &.featured {
                        border: 2px solid var(--primary);
                        transform: scale(1.03);
                        background: #ffffff;
                        
                        &:hover {
                            transform: scale(1.03) translateY(-10px);
                        }
                    }
                    
                    & > .card_icon {
                        font-size: 2.5em;
                        margin-bottom: 20px;
                    }
                    
                    & > h3 {
                        font-size: 1.3em;
                        color: var(--secondary);
                        margin-bottom: 20px;
                        font-weight: 700;
                    }
                    
                    & > ul {
                        list-style: none;
                        padding: 0;
                        margin: 0 0 20px 0;
                        
                        & > li {
                            padding: 8px 0;
                            color: var(--text-muted);
                            border-bottom: 1px dashed #e2e8f0;
                            font-size: 0.95em;
                            
                            &::before {
                                content: '→';
                                color: var(--primary);
                                margin-right: 10px;
                                font-weight: 600;
                            }
                        }
                    }
                    
                    & > .card_badge {
                        display: inline-block;
                        padding: 5px 15px;
                        background: var(--primary-soft);
                        color: var(--primary);
                        border-radius: 20px;
                        font-size: 0.85em;
                        font-weight: 600;
                    }
                }
            }
        }
    }
}

/* Materials Section */
.fab_materials {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #002b4a 100%);
    
    & > .fab_materials_container {
        width: 80%;
        margin: 0 auto;
        
        & > .mini_header_container > .header_title > h3 {
            color: var(--text-light);
        }
        
        & > .section_title {
            color: var(--text-light);
            
            & > span {
                color: var(--primary);
            }
        }
        
        & > .fab_materials_grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            margin-top: 50px;
            
            & > .fab_materials_card {
                background: rgba(255, 255, 255, 0.05);
                backdrop-filter: blur(10px);
                border-radius: var(--border-radius-md);
                padding: 40px 25px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                
                & > h3 {
                    color: var(--primary);
                    font-size: 1.3em;
                    margin-bottom: 25px;
                    font-weight: 700;
                }
                
                & > .material_item,
                & > .standard_item,
                & > .quality_item {
                    display: flex;
                    justify-content: space-between;
                    padding: 12px 0;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
                    color: var(--text-light);
                    
                    & > span:first-child {
                        font-weight: 500;
                    }
                    
                    & > span:last-child {
                        color: var(--primary);
                        font-size: 0.9em;
                    }
                }
                
                & > .quality_item {
                    justify-content: flex-start;
                    gap: 15px;
                    
                    & > span:first-child {
                        font-size: 1.2em;
                    }
                    
                    & > span:last-child {
                        color: var(--text-light);
                    }
                }
            }
        }
    }
}

/* Industries Section */
.fab_industries {
    padding: 50px 0;
    background: #f8fafc;
    
    & > .fab_industries_container {
        width: 80%;
        margin: 0 auto;
        
        & > .section_title {
            margin-bottom: 40px;
        }
        
        & > .fab_industries_grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            
            & > .industry_card {
                background: var(--text-light);
                border-radius: var(--border-radius-md);
                padding: 40px 25px;
                text-align: center;
                box-shadow: var(--shadow-sm);
                transition: all 0.3s ease;
                border: 1px solid #e2e8f0;
                
                &:hover {
                    transform: translateY(-5px);
                    box-shadow: var(--shadow-lg);
                    border-color: var(--primary);
                }
                
                & > .industry_icon {
                    font-size: 3em;
                    margin-bottom: 20px;
                }
                
                & > h4 {
                    font-size: 1.3em;
                    color: var(--secondary);
                    margin-bottom: 15px;
                    font-weight: 700;
                }
                
                & > p {
                    color: var(--text-muted);
                    line-height: 1.6;
                    font-size: 0.95em;
                }
            }
        }
    }
}

/* Process Section */
.fab_process {
    padding: 50px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #002b4a 100%);
    
    & > .fab_process_container {
        width: 80%;
        margin: 0 auto;
        
        & > .mini_header_container > .header_title > h3 {
            color: var(--text-light);
        }
        
        & > .section_title {
            color: var(--text-light);
            
            & > span {
                color: var(--primary);
            }
        }
        
        & > .fab_process_steps {
            max-width: 800px;
            margin: 50px auto 0;
            
            & > .process_step {
                display: flex;
                gap: 30px;
                margin-bottom: 30px;
                position: relative;
                
                &:not(:last-child)::after {
                    content: '';
                    position: absolute;
                    left: 30px;
                    top: 70px;
                    bottom: -30px;
                    width: 2px;
                    background: linear-gradient(to bottom, var(--primary), transparent);
                }
                
                & > .step_number {
                    font-size: 2.5em;
                    font-weight: 800;
                    color: var(--primary);
                    opacity: 0.5;
                    min-width: 80px;
                }
                
                & > .step_content {
                    padding-bottom: 30px;
                    
                    & > h4 {
                        font-size: 1.3em;
                        color: var(--primary);
                        margin-bottom: 5px;
                        font-weight: 700;
                    }
                    
                    & > p {
                        color: rgba(255, 255, 255, 0.8);
                        font-size: 0.95em;
                    }
                }
            }
        }
    }
}

/* Specifications Table */
.fab_specs {
    padding: 50px 0;
    background: #f8fafc;
    
    & > .fab_specs_container {
        width: 80%;
        margin: 0 auto;
        
        & > .section_title {
            margin-bottom: 40px;
        }
        
        & > .fab_specs_table {
            max-width: 1000px;
            margin: 0 auto;
            background: var(--text-light);
            border-radius: var(--border-radius-md);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            
            & > table {
                width: 100%;
                border-collapse: collapse;
                
                & > thead > tr > th {
                    background: var(--primary);
                    color: var(--text-light);
                    padding: 15px 20px;
                    text-align: left;
                    font-weight: 600;
                    font-size: 1.1em;
                }
                
                & > tbody > tr > td {
                    padding: 15px 20px;
                    border-bottom: 1px solid #e2e8f0;
                    color: var(--text-muted);
                    font-size: 1em;
                    
                    &:first-child {
                        font-weight: 600;
                        color: var(--secondary);
                    }
                }
                
                & > tbody > tr:last-child > td {
                    border-bottom: none;
                }
                
                & > tbody > tr:hover > td {
                    background: var(--primary-soft);
                }
            }
        }
    }
}

/* FAQ Section */
.fab_faq {
    padding: 50px 0;
    background: var(--text-light);
    
    & > .fab_faq_container {
        width: 80%;
        margin: 0 auto;
        
        & > .section_title {
            margin-bottom: 40px;
        }
        
        & > .fab_faq_grid {
            max-width: 900px;
            margin: 0 auto;
            
            & > .faq_item {
                border: 1px solid #e2e8f0;
                border-radius: var(--border-radius-md);
                margin-bottom: 15px;
                overflow: hidden;
                
                &:hover {
                    border-color: var(--primary);
                }
                
                & > .faq_question {
                    padding: 20px 30px;
                    background: #f8fafc;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    cursor: pointer;
                    
                    & > h4 {
                        font-size: 1.1em;
                        color: var(--secondary);
                        font-weight: 600;
                    }
                    
                    & > .faq_toggle {
                        font-size: 1.5em;
                        color: var(--primary);
                        font-weight: 600;
                    }
                }
                
                & > .faq_answer {
                    padding: 0 30px;
                    max-height: 0;
                    overflow: hidden;
                    transition: all 0.3s ease;
                    
                    & > p {
                        color: var(--text-muted);
                        line-height: 1.6;
                        font-size: 0.95em;
                    }
                }
                
                &.active > .faq_answer {
                    padding: 0 30px 25px 30px;
                    max-height: 200px;
                }
            }
        }
    }
}

/* Inquiry Section */
.fab_inquiry {
    padding: 50px 0;
    background: #f8fafc;
    
    & > .fab_inquiry_container {
        width: 80%;
        margin: 0 auto;
        
        & > .section_title {
            margin-bottom: 40px;
        }
        
        & > .fab_inquiry_grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 40px;
            
            & > .fab_form {
                background: var(--text-light);
                padding: 40px;
                border-radius: var(--border-radius-md);
                box-shadow: var(--shadow-lg);
                
                & > .form_row {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 20px;
                    margin-bottom: 20px;
                    
                    & > input,
                    & > select,
                    & > textarea {
                        width: 100%;
                        padding: 12px 15px;
                        border: 2px solid #e2e8f0;
                        border-radius: var(--border-radius-sm);
                        font-family: inherit;
                        font-size: 1em;
                        
                        &:focus {
                            outline: none;
                            border-color: var(--primary);
                            box-shadow: 0 0 0 3px var(--primary-soft);
                        }
                    }
                    
                    & > textarea {
                        resize: vertical;
                        min-height: 120px;
                    }
                }
                
                & > .submit_btn {
                    width: 100%;
                    padding: 15px;
                    background: var(--primary);
                    color: var(--text-light);
                    border: none;
                    border-radius: var(--border-radius-md);
                    font-size: 1.1em;
                    font-weight: 600;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    margin-top: 10px;
                    
                    &:hover {
                        background: var(--primary-hover);
                        transform: translateY(-2px);
                        box-shadow: var(--shadow-md);
                    }
                }
            }
            
            & > .fab_contact_card {
                background: linear-gradient(135deg, var(--secondary) 0%, #002b4a 100%);
                color: var(--text-light);
                padding: 40px 30px;
                border-radius: var(--border-radius-md);
                height: fit-content;
                
                & > h3 {
                    font-size: 1.5em;
                    margin-bottom: 30px;
                    color: var(--primary);
                    font-weight: 700;
                }
                
                & > .contact_item {
                    display: flex;
                    gap: 15px;
                    margin-bottom: 25px;
                    
                    & > span {
                        font-size: 1.5em;
                        min-width: 40px;
                    }
                    
                    & > div > strong {
                        display: block;
                        margin-bottom: 5px;
                        color: var(--primary);
                        font-size: 1em;
                    }
                    
                    & > div > p {
                        opacity: 0.9;
                        line-height: 1.5;
                        font-size: 0.95em;
                    }
                }
            }
        }
    }
}

/* Floating Catalogue */
.floating-catalogue {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    
    & > .floating-btn {
        display: flex;
        align-items: center;
        gap: 12px;
        padding: 16px 28px;
        background-color: var(--secondary);
        color: var(--text-light);
        text-decoration: none;
        border-radius: 50px;
        box-shadow: 0 5px 20px var(--primary-hover);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
        
        &:hover {
            background-color: var(--secondary-hover);
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(8, 102, 173, 0.5);
        }
        
        & > .icon {
            font-size: 1.6em;
        }
        
        & > .text {
            font-weight: 500;
            font-size: 1em;
        }
    }
}

/* Responsive Design */
@media screen and (max-width: 1700px) {
    .fab_hero > .fab_transparent > .fab_hero_container {
        width: 85%;
    }
}

@media screen and (max-width: 1440px) {
    .fab_hero > .fab_transparent > .fab_hero_container > .fab_hero_content {
        width: 70%;
        
        & > .fab_hero_title {
            font-size: 3.5em;
        }
    }
    
    .fab_capabilities > .transparent_bg > .fab_capabilities_container,
    .fab_materials > .fab_materials_container,
    .fab_industries > .fab_industries_container,
    .fab_process > .fab_process_container,
    .fab_specs > .fab_specs_container,
    .fab_faq > .fab_faq_container,
    .fab_inquiry > .fab_inquiry_container,
    .fab_intro > .fab_intro_container {
        width: 85%;
    }
}

@media screen and (max-width: 1200px) {
    .fab_hero > .fab_transparent > .fab_hero_container > .fab_hero_stats {
        gap: 30px;
        
        & > .stat_item > h4 {
            font-size: 1.8em;
        }
    }
    
    .fab_capabilities > .transparent_bg > .fab_capabilities_container > .fab_capabilities_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .fab_industries > .fab_industries_container > .fab_industries_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .fab_materials > .fab_materials_container > .fab_materials_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .fab_inquiry > .fab_inquiry_container > .fab_inquiry_grid {
        gap: 30px;
    }
}

@media screen and (max-width: 992px) {
    .fab_hero > .fab_transparent > .fab_hero_container > .fab_hero_content {
        width: 100%;
        
        & > .fab_hero_title {
            font-size: 3em;
        }
    }
    
    .fab_intro > .fab_intro_container > .fab_intro_grid {
        grid-template-columns: 1fr;
        gap: 40px;
        
        & > .fab_intro_image {
            order: -1;
            
            & > .image_placeholder {
                margin: 0 auto;
            }
        }
    }
    
    .fab_inquiry > .fab_inquiry_container > .fab_inquiry_grid {
        grid-template-columns: 1fr;
    }
    
    .fab_process > .fab_process_container > .fab_process_steps > .process_step {
        & > .step_number {
            font-size: 2.2em;
            min-width: 70px;
        }
    }
}

@media screen and (max-width: 768px) {
    .section_title {
        font-size: 2.2em;
        margin-bottom: 30px;
    }
    
    .fab_hero > .fab_transparent > .fab_hero_container {
        padding: 80px 0;
        width: 90%;
        
        & > .fab_hero_content {
            & > .fab_hero_title {
                font-size: 2.5em;
            }
            
            & > .fab_hero_text {
                font-size: 1.1em;
                padding: 0 20px;
            }
            
            & > .fab_hero_cta {
                flex-direction: row;
                gap: 15px;
                
                & > .btn_primary,
                & > .btn_secondary {
                    text-align: center;
                    padding: 10px 20px;
                }
            }
        }
        
        & > .fab_hero_stats {
            flex-direction: column;
            gap: 20px;
            margin-top: 40px;
            
            & > .stat_item > h4 {
                font-size: 2em;
            }
        }
    }
    
    .fab_capabilities > .transparent_bg > .fab_capabilities_container {
        width: 90%;
        
        & > .fab_capabilities_grid {
            grid-template-columns: 1fr;
            
            & > .fab_capability_card {
                padding: 30px 20px;
                
                &.featured {
                    transform: scale(1);
                    
                    &:hover {
                        transform: translateY(-10px);
                    }
                }
            }
        }
    }
    
    .fab_materials > .fab_materials_container {
        width: 90%;
        
        & > .fab_materials_grid {
            grid-template-columns: 1fr;
        }
    }
    
    .fab_industries > .fab_industries_container {
        width: 90%;
        
        & > .fab_industries_grid {
            grid-template-columns: 1fr;
        }
    }
    
    .fab_process > .fab_process_container {
        width: 90%;
        
        & > .fab_process_steps > .process_step {
            flex-direction: column;
            gap: 10px;
            
            &:not(:last-child)::after {
                left: 15px;
                top: 110px;
            }
            
            & > .step_number {
                font-size: 2em;
                min-width: auto;
            }
        }
    }
    
    .fab_specs > .fab_specs_container {
        width: 90%;
        
        & > .fab_specs_table {
            overflow-x: auto;
            
            & > table {
                min-width: 600px;
            }
        }
    }
    
    .fab_faq > .fab_faq_container {
        width: 90%;
        
        & > .fab_faq_grid > .faq_item > .faq_question {
            padding: 15px 20px;
            
            & > h4 {
                font-size: 1em;
            }
        }
    }
    
    .fab_inquiry > .fab_inquiry_container {
        width: 90%;
        
        & > .fab_inquiry_grid > .fab_form {
            padding: 30px 20px;
            
            & > .form_row {
                grid-template-columns: 1fr;
                gap: 15px;
            }
        }
    }
    
    .floating-catalogue > .floating-btn {
        padding: 12px 20px;
        
        & > .text {
            display: none;
        }
        
        & > .icon {
            font-size: 1.5em;
        }
    }
}

@media screen and (max-width: 598px) {
    .section_title {
        font-size: 2em;
    }

    .landing_fab {
        & > .land_container {
            width: 90%;
        }
    }
    
    .fab_hero {
        & > .fab_transparent {
            & > .overflow_container {
                & > .shape {
                    width: 400px;
                    height: 250px;
                    &.shape-1 {
                        border: 50px solid #084572;
                        transform: rotate(45deg) translate(30%, 35%);
                    }
                    &.shape-2 {
                        border: 50px solid #1e6fa8;
                    }
                    &.shape-3 {
                        transform: rotate(45deg) translate(56.5%, 5%);
                    }
                }
            }
            & > .fab_hero_container {
                & > .fab_hero_stats {
                    align-items: center;
                    & > .stat_item {
                        justify-content: center;
                        justify-self: center;
                        & > h4, 
                        & > p {
                            text-align: center;
                        }
                    }
                }
    
                & > .fab_hero_content {
                    & > .fab_hero_title {
                        font-size: 2em;
                    }
                    
                    & > .fab_hero_text {
                        font-size: 1em;
                    }
                }
            }
        }
    }
    
    .fab_intro > .fab_intro_container > .fab_intro_grid > .fab_intro_image > .image_placeholder,
    .fab_intro > .fab_intro_container > .fab_intro_grid > .fab_intro_image > .image_placeholder > img {
        height: 300px;
    }
    
    .fab_intro {
        padding: 40px 0;
    }
    
    .fab_capabilities > .transparent_bg {
        padding: 40px 0;
    }
    
    .fab_materials,
    .fab_industries,
    .fab_process,
    .fab_specs,
    .fab_faq,
    .fab_inquiry {
        padding: 40px 0;
    }
    
    .fab_materials > .fab_materials_container > .fab_materials_grid > .fab_materials_card,
    .fab_industries > .fab_industries_container > .fab_industries_grid > .industry_card {
        padding: 30px 20px;
    }
    
    .fab_inquiry > .fab_inquiry_container > .fab_inquiry_grid > .fab_contact_card {
        padding: 30px 20px;
        
        & > h3 {
            font-size: 1.3em;
            margin-bottom: 20px;
        }
    }
}

@media screen and (max-width: 480px) {
    .section_title {
        font-size: 1.8em;
    }
    
    .fab_hero > .fab_transparent > .fab_hero_container > .fab_hero_content {
        & > .fab_hero_title {
            font-size: 1.8em;
        }
    }
    
    .fab_hero > .fab_transparent > .fab_hero_container {
        & > .fab_hero_stats {
            align-items: center;
            & > .stat_item {
                justify-content: center;
                justify-self: center;
                & > h4, 
                & > p {
                    text-align: center;
                }
            }
        }
    }

    .fab_hero > .fab_transparent > .fab_hero_container > .fab_hero_stats > .stat_item > h4 {
        font-size: 1.8em;
    }
    
    .fab_intro > .fab_intro_container > .fab_intro_grid > .fab_intro_image > .image_placeholder,
    .fab_intro > .fab_intro_container > .fab_intro_grid > .fab_intro_image > .image_placeholder > img {
        height: 200px;
    }
    
    .fab_intro > .fab_intro_container > .fab_intro_grid > .fab_intro_content > .fab_highlight_item {
        flex-direction: column;
        gap: 10px;
        text-align: center;
        
        & > .fab_highlight_icon {
            margin: 0 auto;
        }
    }

    .fab_intro {
        & > .fab_intro_container {
            & > .fab_intro_grid {
                & > .fab_intro_content {
                    & > p {
                        font-size: 1em;
                        line-height: 1.5;
                    }
                }
            }
        }
    }
}

/* Landscape Mode */
@media screen and (max-height: 600px) and (orientation: landscape) {
    .fab_hero > .fab_transparent > .fab_hero_container {
        padding: 60px 0;
        
        & > .fab_hero_content > .fab_hero_title {
            font-size: 2.2em;
        }
        
        & > .fab_hero_stats {
            margin-top: 30px;
        }
    }
}

/* Loading spinner animation */
@keyframes cgFabSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.fa-spin {
    animation: cgFabSpin 1s linear infinite;
}

.submit_btn {
    position: relative;
    transition: all 0.3s ease;
}

.submit_btn:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

.cg-fab-success-message {
    background: #dcfce7;
    color: #16a34a;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #16a34a;
}

.cg-fab-error-message {
    background: #fee2e2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #dc2626;
}

.cg-fab-error-list {
    background: #fee2e2;
    color: #dc2626;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #dc2626;
}

.cg-fab-error-list ul {
    margin: 5px 0 0 20px;
    padding: 0;
}

.cg-fab-error-list li {
    margin: 5px 0;
}

.cg-fab-info-message {
    background: #e0f2fe;
    color: #0284c7;
    padding: 12px 16px;
    border-radius: 8px;
    margin-bottom: 20px;
    border-left: 4px solid #0284c7;
}