*,
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);
    --shadow-xl: 0 25px 50px rgba(0, 0, 0, 0.25);
    
    --border-radius-sm: 10px;
    --border-radius-md: 15px;
    --border-radius-lg: 25px;
    --border-radius-xl: 32px;
}

/* Nav Bar */
.landing_hyd {
    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;
    }
}

/* Theme Block */
.theme_block {
    width: 15px;
    height: 15px;
    background-color: var(--primary);
}

/* Mini Header */
.hyd_mini_header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    
    &.center {
        justify-content: center;
    }
    
    & > .theme_block {
        width: 15px;
        height: 15px;
        background-color: var(--primary);
    }
    
    & > span {
        font-size: 1.1em;
        font-weight: 600;
        color: var(--primary);
        letter-spacing: 2px;
    }
}

/* Section Title */
.hyd_section_title {
    font-size: 2.5em;
    line-height: 1.2;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 20px;
    
    & > span {
        color: var(--primary);
    }
    
    &.left {
        text-align: left;
    }
    
    &.light {
        color: var(--text-light);
    }
}

.hyd_section_subtitle {
    font-size: 1.2em;
    color: var(--text-muted);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

.hyd_image_placeholder {
    background: linear-gradient(135deg, #4a4a4a, #2d2d2d);
    border-radius: var(--border-radius-md);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 100%;
    
    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: radial-gradient(circle at 30% 50%, rgba(8, 102, 173, 0.2), transparent 70%);
        animation: glow 3s ease-in-out infinite;
    }
    
    & > img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        position: relative;
    }
    
    &.small {
        height: 200px;
    }
    
    &.failure {
        height: 400px;
    }
    
    &.hero_main {
        height: 550px;
        background: linear-gradient(135deg, #3a3a3a, #1a1a1a);
        
        & > span {
            z-index: 2;
            margin-bottom: 10px;
            font-weight: 500;
        }
        
        & > .hyd_placeholder_icon {
            font-size: 4em;
            z-index: 2;
            filter: drop-shadow(0 0 10px rgba(8, 102, 173, 0.5));
        }
    }
    
    &.small_card {
        height: 60px;
        width: 60px;
        
        & > span {
            font-size: 0.7em;
            text-align: center;
            margin: 0;
            padding: 0 5px;
        }
    }
}

@keyframes glow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

/* Hero Section */
.hyd_hero_new {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a1a 0%, #001627 100%);
    overflow: hidden;
    
    & > .hyd_hero_background {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-image: url(../storage/hydraulics/hydraulics-chinata-group.png);
        background-size: cover;
        background-position: center;
        opacity: 0.2;
        z-index: 0;
        
        &::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at 20% 50%, rgba(8, 102, 173, 0.15), transparent 70%);
        }
    }
    
    & > .hyd_nav_wrapper {
        position: relative;
        z-index: 10;
    }
    
    & > .hyd_hero_layout {
        position: relative;
        z-index: 5;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 50px;
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 80px;
        align-items: center;
        min-height: calc(100vh - 100px);
        
        & > .hyd_hero_left {
            padding: 30px 0;
            
            & > .hyd_hero_tagline {
                display: flex;
                align-items: center;
                gap: 15px;
                margin-bottom: 30px;
                
                & > .hyd_tagline_line {
                    width: 15px;
                    height: 15px;
                    background: var(--primary);
                }
                
                & > span {
                    color: var(--primary);
                    font-size: 0.9em;
                    font-weight: 600;
                    letter-spacing: 3px;
                    text-transform: uppercase;
                }
            }
            
            & > .hyd_hero_main_title {
                font-size: 4em;
                line-height: 1.2;
                font-weight: 300;
                color: var(--text-light);
                margin-bottom: 25px;
                
                & > span {
                    display: block;
                    font-weight: 800;
                    background: linear-gradient(135deg, var(--primary), #adcadf);
                    -webkit-background-clip: text;
                    -webkit-text-fill-color: transparent;
                    background-clip: text;
                }
            }
            
            & > .hyd_hero_description {
                & > p {
                    font-size: 1.2em;
                    line-height: 1.6;
                    color: rgba(255, 255, 255, 0.8);
                    margin-bottom: 40px;
                    max-width: 500px;
                }
            }
            
            & > .hyd_hero_buttons {
                display: flex;
                gap: 20px;
                margin-bottom: 50px;
                
                & > .hyd_primary_btn {
                    display: inline-block;
                    padding: 16px 35px;
                    background: var(--primary);
                    color: var(--text-light);
                    text-decoration: none;
                    border-radius: 50px;
                    font-weight: 600;
                    letter-spacing: 1px;
                    transition: all 0.3s ease;
                    
                    &:hover {
                        background: var(--primary-hover);
                        transform: translateY(-3px);
                        box-shadow: var(--shadow-lg);
                    }
                }
                
                & > .hyd_secondary_btn {
                    display: inline-block;
                    padding: 16px 35px;
                    background: transparent;
                    color: var(--text-light);
                    text-decoration: none;
                    border-radius: 50px;
                    font-weight: 600;
                    letter-spacing: 1px;
                    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);
                    }
                }
            }
            
            & > .hyd_hero_trust_badge {
                display: flex;
                align-items: center;
                gap: 30px;
                padding: 20px 0;
                border-top: 1px solid rgba(255, 255, 255, 0.1);
                
                & > .hyd_trust_item {
                    display: flex;
                    flex-direction: column;
                    
                    & > .hyd_trust_number {
                        font-size: 1.5em;
                        font-weight: 800;
                        color: var(--primary);
                        line-height: 1.2;
                    }
                    
                    & > .hyd_trust_label {
                        font-size: 0.85em;
                        color: rgba(255, 255, 255, 0.6);
                    }
                }
                
                & > .hyd_trust_divider {
                    width: 1px;
                    height: 40px;
                    background: rgba(255, 255, 255, 0.2);
                }
            }
        }
        
        & > .hyd_hero_right {
            position: relative;
            display: flex;
            justify-content: center;
            align-items: center;
            
            & > .hyd_image_gallery {
                position: relative;
                width: 100%;
                max-width: 550px;
                height: 550px;
                
                & > .hyd_gallery_main {
                    position: relative;
                    width: 100%;
                    height: 100%;
                    border-radius: var(--border-radius-lg);
                    overflow: hidden;
                    box-shadow: var(--shadow-xl);
                    transition: all 0.3s ease;
                    
                    &:hover {
                        transform: scale(1.02);
                        box-shadow: 0 30px 50px rgba(0, 0, 0, 0.3);
                    }
                    
                    & > .hyd_image_placeholder {
                        height: 100%;
                    }
                    
                    & > .hyd_image_badge {
                        position: absolute;
                        bottom: 20px;
                        right: 20px;
                        background: rgba(8, 102, 173, 0.9);
                        backdrop-filter: blur(10px);
                        padding: 8px 20px;
                        border-radius: 30px;
                        z-index: 5;
                        
                        & > span {
                            color: white;
                            font-size: 0.9em;
                            font-weight: 500;
                            letter-spacing: 1px;
                        }
                    }
                }
                
                & > .hyd_gallery_card {
                    position: absolute;
                    background: rgba(255, 255, 255, 0.95);
                    backdrop-filter: blur(10px);
                    border-radius: var(--border-radius-md);
                    padding: 12px;
                    display: flex;
                    align-items: center;
                    gap: 12px;
                    box-shadow: var(--shadow-lg);
                    border: 1px solid rgba(8, 102, 173, 0.2);
                    animation: floatCard 4s ease-in-out infinite;
                    transition: all 0.3s ease;
                    
                    &:hover {
                        transform: translateY(-5px) scale(1.05);
                        box-shadow: var(--shadow-xl);
                    }
                    
                    &.card_top {
                        top: -20px;
                        right: -30px;
                        animation-delay: 0s;
                    }
                    
                    &.card_bottom {
                        bottom: 50px;
                        left: -40px;
                        animation-delay: 1s;
                    }
                    
                    &.card_right {
                        top: 40%;
                        right: -40px;
                        animation-delay: 2s;
                    }
                    
                    & > .hyd_card_small_image {
                        width: 60px;
                        height: 60px;
                        border-radius: var(--border-radius-sm);
                        overflow: hidden;
                    }
                    
                    & > .hyd_card_small_info {
                        & > h4 {
                            font-size: 1em;
                            color: var(--text-dark);
                            margin-bottom: 3px;
                            font-weight: 700;
                        }
                        
                        & > p {
                            font-size: 0.8em;
                            color: var(--text-muted);
                        }
                    }
                }
            }
        }
    }
    
    & > .hyd_scroll_indicator {
        position: absolute;
        bottom: 40px;
        left: 50%;
        transform: translateX(-50%);
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 10px;
        z-index: 10;
        
        & > span {
            font-size: 0.8em;
            color: rgba(255, 255, 255, 0.5);
            letter-spacing: 1px;
        }
        
        & > .hyd_scroll_line {
            width: 2px;
            height: 40px;
            background: linear-gradient(to bottom, var(--primary), transparent);
            animation: scrollPulse 2s ease-in-out infinite;
        }
    }
}

@keyframes floatCard {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

@keyframes scrollPulse {
    0%, 100% {
        transform: scaleY(0.5);
        opacity: 0.3;
    }
    50% {
        transform: scaleY(1);
        opacity: 1;
    }
}

/* Services Banner */
.hyd_services_banner {
    padding: 80px 0;
    background: var(--light-bg);
    
    & > .hyd_services_container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
        
        & > .hyd_service_item {
            text-align: center;
            padding: 40px 30px;
            background: var(--text-soft);
            border-radius: var(--border-radius-lg);
            transition: all 0.3s ease;
            
            &:hover {
                transform: translateY(-5px);
                box-shadow: var(--shadow-md);
            }
            
            & > .hyd_service_icon {
                font-size: 3em;
                margin-bottom: 20px;
                color: var(--primary);
            }
            
            & > h3 {
                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;
            }
        }
    }
}

/* Capabilities Section */
.hyd_capabilities {
    padding: 100px 0;
    background: #f8fafc;
    
    & > .hyd_capabilities_header {
        text-align: center;
        margin-bottom: 60px;
        max-width: 900px;
        margin-left: auto;
        margin-right: auto;
    }
    
    & > .hyd_capabilities_flow {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        
        & > .hyd_flow_item {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
            margin-bottom: 80px;
            position: relative;
            
            &:last-child {
                margin-bottom: 0;
            }
            
            &.reverse {
                direction: rtl;
                
                & > .hyd_flow_content {
                    direction: ltr;
                }
            }
            
            & > .hyd_flow_number {
                position: absolute;
                top: -30px;
                left: 50%;
                transform: translateX(-50%);
                width: 60px;
                height: 60px;
                background: var(--primary);
                color: white;
                border-radius: 50%;
                display: flex;
                align-items: center;
                justify-content: center;
                font-size: 1.8em;
                font-weight: 700;
                z-index: 2;
                box-shadow: var(--shadow-md);
            }
            
            & > .hyd_flow_content {
                padding: 20px;
                
                & > h3 {
                    font-size: 1.5em;
                    color: var(--secondary);
                    margin-bottom: 20px;
                    font-weight: 700;
                }
                
                & > p {
                    color: var(--text-muted);
                    line-height: 1.6;
                    margin-bottom: 25px;
                    font-size: 1em;
                }
                
                & > .hyd_flow_specs {
                    display: flex;
                    flex-wrap: wrap;
                    gap: 12px;
                    
                    & > span {
                        background: var(--primary-soft);
                        color: var(--primary);
                        padding: 8px 16px;
                        border-radius: 30px;
                        font-size: 0.85em;
                        font-weight: 500;
                    }
                }
            }
            
            & > .hyd_flow_image {
                height: 280px;
                border-radius: var(--border-radius-lg);
                overflow: hidden;
                
                & > .hyd_image_placeholder {
                    height: 100%;
                }
            }
        }
    }
}

/* Equipment Support */
.hyd_equipment {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #002b4a 100%);
    
    & > .hyd_equipment_container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        
        & > .hyd_equipment_header {
            text-align: center;
            margin-bottom: 60px;
            
            & > .hyd_mini_header {
                justify-content: center;
                
                & > span {
                    color: var(--text-light);
                }
            }
            
            & > .hyd_section_title {
                color: var(--text-light);
            }
            
            & > .hyd_section_subtitle {
                color: rgba(255, 255, 255, 0.8);
            }
        }
        
        & > .hyd_equipment_grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            
            & > .hyd_equipment_category {
                background: rgba(255, 255, 255, 0.05);
                backdrop-filter: blur(10px);
                border-radius: var(--border-radius-lg);
                padding: 40px 30px;
                border: 1px solid rgba(255, 255, 255, 0.1);
                transition: all 0.3s ease;
                
                &:hover {
                    transform: translateY(-5px);
                    background: rgba(255, 255, 255, 0.1);
                }
                
                & > .hyd_category_icon {
                    font-size: 2.5em;
                    margin-bottom: 20px;
                    color: var(--primary);
                }
                
                & > h3 {
                    color: white;
                    font-size: 1.3em;
                    margin-bottom: 20px;
                    font-weight: 700;
                }
                
                & > ul {
                    list-style: none;
                    padding: 0;
                    
                    & > li {
                        padding: 8px 0;
                        color: rgba(255, 255, 255, 0.8);
                        position: relative;
                        padding-left: 20px;
                        font-size: 0.9em;
                        
                        &::before {
                            content: '→';
                            position: absolute;
                            left: 0;
                            color: var(--primary);
                        }
                    }
                }
            }
        }
    }
}

/* Repair Process */
.hyd_repair_process {
    padding: 100px 0;
    background: #f8fafc;
    
    & > .hyd_process_container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        
        & > .hyd_process_header {
            text-align: center;
            margin-bottom: 60px;
            
            & > .hyd_mini_header {
                justify-content: center;
            }
            
            & > .hyd_section_title {
                color: var(--secondary);
            }
            
            & > .hyd_process_subtitle {
                color: var(--text-muted);
                font-size: 1.1em;
            }
        }
        
        & > .hyd_process_steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
            
            & > .hyd_process_step {
                text-align: center;
                padding: 30px;
                background: white;
                border-radius: var(--border-radius-lg);
                box-shadow: var(--shadow-sm);
                transition: all 0.3s ease;
                
                &:hover {
                    transform: translateY(-5px);
                    box-shadow: var(--shadow-md);
                }
                
                & > .hyd_step_marker {
                    width: 60px;
                    height: 60px;
                    background: var(--primary);
                    color: white;
                    border-radius: 50%;
                    display: flex;
                    align-items: center;
                    justify-content: center;
                    font-size: 1.5em;
                    font-weight: 700;
                    margin: 0 auto 20px;
                }
                
                & > .hyd_step_content {
                    & > h4 {
                        font-size: 1.1em;
                        color: var(--secondary);
                        margin-bottom: 10px;
                        font-weight: 700;
                    }
                    
                    & > p {
                        color: var(--text-muted);
                        line-height: 1.5;
                        font-size: 0.9em;
                    }
                }
            }
        }
    }
}

/* Failure Analysis */
.hyd_failure_analysis {
    padding: 100px 0;
    background: white;
    
    & > .hyd_failure_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 1400px;
        margin: 0 auto;
        gap: 60px;
        align-items: center;
        
        & > .hyd_failure_content {
            padding: 0 20px;
            
            & > .hyd_failure_text {
                font-size: 1.1em;
                color: var(--text-muted);
                line-height: 1.6;
                margin: 30px 0;
            }
            
            & > .hyd_failure_causes {
                display: flex;
                flex-direction: column;
                gap: 20px;
                margin: 40px 0;
                
                & > .hyd_cause_item {
                    display: flex;
                    gap: 15px;
                    align-items: flex-start;
                    
                    & > span {
                        font-size: 1.2em;
                    }
                    
                    & > div > h4 {
                        font-size: 1.1em;
                        color: var(--secondary);
                        margin-bottom: 5px;
                        font-weight: 700;
                    }
                    
                    & > div > p {
                        color: var(--text-muted);
                        font-size: 0.9em;
                    }
                }
            }
            
            & > .hyd_failure_cta {
                & > .hyd_btn_outline {
                    display: inline-block;
                    padding: 15px 35px;
                    border: 2px solid var(--primary);
                    color: var(--primary);
                    text-decoration: none;
                    border-radius: 50px;
                    font-weight: 600;
                    transition: all 0.3s ease;
                    
                    &:hover {
                        background: var(--primary);
                        color: white;
                    }
                }
            }
        }
        
        & > .hyd_failure_visual {
            position: relative;
            height: 500px;
            
            & > .hyd_failure_badge {
                position: absolute;
                bottom: 30px;
                left: 30px;
                background: white;
                padding: 20px;
                border-radius: var(--border-radius-md);
                box-shadow: var(--shadow-lg);
                
                & > span {
                    display: block;
                    font-weight: 700;
                    color: var(--secondary);
                    margin-bottom: 5px;
                }
                
                & > small {
                    color: var(--text-muted);
                }
            }
        }
    }
}

/* Quality Section */
.hyd_quality {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--secondary) 0%, #002b4a 100%);
    
    & > .hyd_quality_container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 20px;
        
        & > .hyd_quality_header {
            text-align: center;
            margin-bottom: 60px;
            
            & > .hyd_mini_header {
                justify-content: center;
                
                & > span {
                    color: var(--text-light);
                }
            }
            
            & > .hyd_section_title {
                color: var(--text-light);
            }
        }
        
        & > .hyd_quality_grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            
            & > .hyd_quality_item {
                text-align: center;
                padding: 40px 25px;
                background: rgba(255, 255, 255, 0.05);
                backdrop-filter: blur(10px);
                border-radius: var(--border-radius-lg);
                border: 1px solid rgba(255, 255, 255, 0.1);
                transition: all 0.3s ease;
                
                &:hover {
                    transform: translateY(-5px);
                    background: rgba(255, 255, 255, 0.1);
                }
                
                & > .hyd_quality_icon {
                    font-size: 2.5em;
                    margin-bottom: 20px;
                    color: var(--primary);
                }
                
                & > h4 {
                    color: white;
                    font-size: 1.1em;
                    margin-bottom: 10px;
                    font-weight: 700;
                }
                
                & > p {
                    color: rgba(255, 255, 255, 0.8);
                    font-size: 0.9em;
                    line-height: 1.5;
                }
            }
        }
    }
}

/* FAQ Section */
.hyd_faq {
    padding: 100px 0;
    background: white;
    
    & > .hyd_faq_container {
        max-width: 1000px;
        margin: 0 auto;
        padding: 0 20px;
        
        & > .hyd_faq_header {
            margin-bottom: 50px;
        }
        
        & > .hyd_faq_accordion {
            display: flex;
            flex-direction: column;
            gap: 15px;
            
            & > .hyd_faq_item {
                border: 1px solid #e2e8f0;
                border-radius: var(--border-radius-md);
                overflow: hidden;
                
                &.active {
                    & > .hyd_faq_answer {
                        max-height: 200px;
                        padding: 20px 30px;
                    }
                    
                    & > .hyd_faq_question > .hyd_faq_toggle {
                        transform: rotate(45deg);
                    }
                }
                
                & > .hyd_faq_question {
                    padding: 20px 30px;
                    background: #f8fafc;
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    cursor: pointer;
                    
                    & > h4 {
                        color: var(--secondary);
                        font-weight: 600;
                        font-size: 1.1em;
                    }
                    
                    & > .hyd_faq_toggle {
                        font-size: 1.5em;
                        color: var(--primary);
                        font-weight: 600;
                        transition: transform 0.3s ease;
                    }
                }
                
                & > .hyd_faq_answer {
                    max-height: 0;
                    padding: 0 30px;
                    overflow: hidden;
                    transition: all 0.3s ease;
                    
                    & > p {
                        color: var(--text-muted);
                        line-height: 1.6;
                        font-size: 0.95em;
                    }
                }
            }
        }
    }
}

/* Contact Section */
.hyd_contact {
    padding: 50px 0;
    background: #f8fafc;
    
    & > .hyd_contact_grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        max-width: 1400px;
        margin: 0 auto;
        gap: 60px;
        
        & > .hyd_contact_form {
            padding: 0 20px;
            
            & > .hyd_form {
                margin-top: 40px;
                
                & > .hyd_form_row {
                    display: grid;
                    grid-template-columns: 1fr 1fr;
                    gap: 20px;
                    margin-bottom: 20px;
                }

                & .hyd_form_row > input,
                & > select,
                & > textarea {
                    width: 100%;
                    padding: 12px 15px;
                    border: 2px solid #e2e8f0;
                    border-radius: var(--border-radius-md);
                    font-family: inherit;
                    margin-bottom: 20px;
                    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;
                }
                
                & > .hyd_form_hint {
                    padding: 12px 15px;
                    background: var(--primary-soft);
                    border-radius: var(--border-radius-sm);
                    color: var(--primary);
                    margin-bottom: 20px;
                    font-size: 0.9em;
                    
                    & > span {
                        margin-right: 10px;
                    }
                }
                
                & > .hyd_submit_btn {
                    padding: 15px;
                    background: var(--primary);
                    color: white;
                    border: none;
                    border-radius: var(--border-radius-md);
                    font-weight: 600;
                    font-size: 1.1em;
                    cursor: pointer;
                    transition: all 0.3s ease;
                    
                    &:hover {
                        background: var(--primary-hover);
                        transform: translateY(-2px);
                        box-shadow: var(--shadow-md);
                    }
                }
            }
        }
        
        & > .hyd_contact_info {
            padding: 0 20px;
            
            & > .hyd_contact_card {
                background: white;
                border-radius: var(--border-radius-lg);
                padding: 40px;
                box-shadow: var(--shadow-lg);
                position: sticky;
                top: 100px;
                
                & > h3 {
                    font-size: 1.5em;
                    color: var(--secondary);
                    margin-bottom: 30px;
                    font-weight: 700;
                }
                
                & > .hyd_contact_detail {
                    display: flex;
                    gap: 15px;
                    margin-bottom: 25px;
                    
                    & > span {
                        font-size: 1.5em;
                        min-width: 40px;
                    }
                    
                    & > div > strong {
                        display: block;
                        color: var(--primary);
                        margin-bottom: 5px;
                    }
                    
                    & > div > p {
                        color: var(--text-muted);
                        font-size: 0.95em;
                    }
                    
                    & > div > small {
                        color: var(--text-muted);
                        font-size: 0.85em;
                    }
                }
                
                & > .hyd_contact_hours {
                    margin: 30px 0;
                    padding: 20px 0;
                    border-top: 1px solid #e2e8f0;
                    border-bottom: 1px solid #e2e8f0;
                    
                    & > h4 {
                        color: var(--primary);
                        margin-bottom: 10px;
                        font-size: 1.1em;
                    }
                    
                    & > p {
                        color: var(--text-muted);
                        font-size: 0.95em;
                    }
                }
                
                & > .hyd_download_btn {
                    display: block;
                    padding: 15px;
                    background: var(--primary);
                    color: white;
                    text-decoration: none;
                    text-align: center;
                    border-radius: var(--border-radius-md);
                    font-weight: 600;
                    transition: all 0.3s ease;
                    
                    &:hover {
                        background: var(--primary-hover);
                    }
                }
            }
        }
    }
}

/* 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: var(--secondary);
        color: white;
        text-decoration: none;
        border-radius: 50px;
        box-shadow: 0 5px 20px rgba(8, 102, 173, 0.3);
        transition: all 0.3s ease;
        border: 1px solid rgba(255, 255, 255, 0.1);
        
        &:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(8, 102, 173, 0.5);
            background: var(--secondary-hover);
        }
        
        & > .icon {
            font-size: 1.6em;
        }
        
        & > .text {
            font-weight: 500;
            font-size: 1em;
        }
    }
}

/* Responsive Design */
@media screen and (max-width: 1700px) {
    .hyd_hero_new > .hyd_hero_layout {
        max-width: 90%;
    }
    
    .hyd_capabilities > .hyd_capabilities_flow,
    .hyd_equipment > .hyd_equipment_container,
    .hyd_repair_process > .hyd_process_container,
    .hyd_failure_analysis > .hyd_failure_grid,
    .hyd_quality > .hyd_quality_container,
    .hyd_contact > .hyd_contact_grid {
        max-width: 90%;
    }
}

@media screen and (max-width: 1440px) {
    .hyd_section_title {
        font-size: 2.2em;
    }
    
    .hyd_hero_new > .hyd_hero_layout > .hyd_hero_left > .hyd_hero_main_title {
        font-size: 3.5em;
    }
    
    .hyd_equipment > .hyd_equipment_container > .hyd_equipment_grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media screen and (max-width: 1200px) {
    .hyd_hero_new > .hyd_hero_layout {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        min-height: auto;
        padding: 0 40px;
        
        & > .hyd_hero_left {
            text-align: center;
            
            & > .hyd_hero_tagline {
                justify-content: center;
            }
            
            & > .hyd_hero_description > p {
                max-width: 100%;
                margin-left: auto;
                margin-right: auto;
            }
            
            & > .hyd_hero_buttons {
                justify-content: center;
            }
            
            & > .hyd_hero_trust_badge {
                justify-content: center;
            }
        }
        
        & > .hyd_hero_right {
            min-height: 500px;
        }
    }
    
    .hyd_services_banner > .hyd_services_container {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hyd_capabilities > .hyd_capabilities_flow > .hyd_flow_item,
    .hyd_capabilities > .hyd_capabilities_flow > .hyd_flow_item.reverse {
        grid-template-columns: 1fr;
        text-align: center;
        direction: ltr;
        gap: 30px;
        
        & > .hyd_flow_specs {
            justify-content: center;
        }
        & > .hyd_flow_number {
            top: -50px;
        }
    }

    
    .hyd_repair_process > .hyd_process_container > .hyd_process_steps {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hyd_failure_analysis > .hyd_failure_grid {
        grid-template-columns: 1fr;
        
        & > .hyd_failure_content {
            text-align: center;
            
            & > .hyd_failure_causes > .hyd_cause_item {
                text-align: left;
            }
        }
    }
    
    .hyd_quality > .hyd_quality_container > .hyd_quality_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hyd_contact > .hyd_contact_grid {
        grid-template-columns: 1fr;
        
        & > .hyd_contact_info > .hyd_contact_card {
            position: static;
        }
    }
}

@media screen and (max-width: 992px) {
    .hyd_services_banner > .hyd_services_container {
        grid-template-columns: 1fr;
    }
    
    .hyd_equipment > .hyd_equipment_container > .hyd_equipment_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hyd_repair_process > .hyd_process_container > .hyd_process_steps {
        grid-template-columns: 1fr;
    }
    
    .hyd_quality > .hyd_quality_container > .hyd_quality_grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .hyd_hero_new > .hyd_hero_layout > .hyd_hero_right > .hyd_image_gallery {
        max-width: 450px;
        height: 450px;
        
        & > .hyd_gallery_card.card_top {
            top: -15px;
            right: -20px;
        }
        
        & > .hyd_gallery_card.card_bottom {
            bottom: 30px;
            left: -30px;
        }
        
        & > .hyd_gallery_card.card_right {
            right: -30px;
        }
    }
    
    .hyd_image_placeholder.hero_main {
        height: 450px;
    }
}

@media screen and (max-width: 768px) {
    .landing_hyd {
        & > .land_container {
            width: 90%;
            padding: 20px 0;
        }
    }
    .hyd_section_title {
        font-size: 1.8em;
    }
    
    .hyd_hero_new > .hyd_hero_layout {
        padding: 60px 20px;
        
        & > .hyd_hero_left > .hyd_hero_main_title {
            font-size: 2.5em;
        }
        
        & > .hyd_hero_left > .hyd_hero_buttons {
            flex-direction: column;
            gap: 15px;
            
            & > .hyd_primary_btn,
            & > .hyd_secondary_btn {
                width: 100%;
                text-align: center;
            }
        }
        
        & > .hyd_hero_left > .hyd_hero_trust_badge {
            flex-direction: column;
            gap: 15px;
            
            & > .hyd_trust_divider {
                width: 100%;
                height: 1px;
            }
        }
        
        & > .hyd_hero_right {
            display: none;
        }
    }
    
    .hyd_image_placeholder.hero_main {
        height: 380px;
    }
    
    .hyd_image_placeholder.small_card {
        height: 45px;
        width: 45px;
        
        & > span {
            font-size: 0.6em;
        }
    }
    
    .hyd_equipment > .hyd_equipment_container > .hyd_equipment_grid {
        grid-template-columns: 1fr;
    }
    
    .hyd_quality > .hyd_quality_container > .hyd_quality_grid {
        grid-template-columns: 1fr;
    }
    
    .hyd_contact > .hyd_contact_grid > .hyd_contact_form > .hyd_form > .hyd_form_row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .floating-catalogue > .floating-btn {
        padding: 12px 20px;
        
        & > .text {
            display: none;
        }
        
        & > .icon {
            font-size: 1.5em;
        }
    }
}

@media screen and (max-width: 576px) {
    .hyd_hero_new > .hyd_hero_layout {
        & > .hyd_hero_left {
            & > .hyd_hero_tagline {
                display: none;
            }
        }
    }

    .hyd_section_title {
        font-size: 1.6em;
    }
    
    .hyd_hero_new > .hyd_hero_layout > .hyd_hero_left > .hyd_hero_main_title {
        font-size: 2em;
    }
    
    .hyd_hero_new > .hyd_hero_layout > .hyd_hero_left > .hyd_hero_description > p {
        font-size: 1em;
    }
    
    .hyd_hero_new > .hyd_hero_layout > .hyd_hero_right > .hyd_image_gallery {
        max-width: 300px;
        height: 300px;
    }
    
    .hyd_image_placeholder.hero_main {
        height: 300px;
    }
    
    .hyd_capabilities > .hyd_capabilities_flow > .hyd_flow_item > .hyd_flow_content > h3 {
        font-size: 1.3em;
    }
    
    .hyd_capabilities > .hyd_capabilities_flow > .hyd_flow_item > .hyd_flow_content > p {
        font-size: 0.95em;
    }
    
    .hyd_repair_process > .hyd_process_container > .hyd_process_steps > .hyd_process_step {
        padding: 25px 20px;
        
        & > .hyd_step_marker {
            width: 50px;
            height: 50px;
            font-size: 1.2em;
        }
    }
    
    .hyd_failure_analysis > .hyd_failure_grid > .hyd_failure_visual {
        height: 350px;
    }
    
    .hyd_contact > .hyd_contact_grid > .hyd_contact_info > .hyd_contact_card {
        padding: 30px 20px;
        
        & > h3 {
            font-size: 1.3em;
        }
    }
    
    .hyd_gallery_card {
        padding: 6px;
        
        & > .hyd_card_small_image {
            width: 35px;
            height: 35px;
        }
    }
    
    .hyd_image_placeholder.small_card {
        height: 35px;
        width: 35px;
        
        & > span {
            font-size: 0.5em;
        }
    }
    
    .hyd_capabilities > .hyd_capabilities_flow, 
    .hyd_equipment > .hyd_equipment_container, 
    .hyd_repair_process > .hyd_process_container, 
    .hyd_failure_analysis > .hyd_failure_grid, 
    .hyd_quality > .hyd_quality_container, 
    .hyd_contact > .hyd_contact_grid {
        max-width: 100%;
    }
}

@media screen and (max-width: 480px) {
    .hyd_hero_new > .hyd_hero_layout > .hyd_hero_left > .hyd_hero_main_title {
        font-size: 1.8em;
    }
    
    .hyd_hero_new > .hyd_hero_layout {
        padding: 0 20px;
    }
    
    .hyd_hero_new > .hyd_hero_layout > .hyd_hero_right > .hyd_image_gallery {
        max-width: 280px;
        height: 280px;
    }
    
    .hyd_hero_new > .hyd_scroll_indicator {
        bottom: 20px;
    }
    
    .hyd_failure_analysis > .hyd_failure_grid > .hyd_failure_visual {
        display: none;
    }
    
    .hyd_failure_analysis > .hyd_failure_grid > .hyd_failure_content > .hyd_failure_causes > .hyd_cause_item {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}

@media screen and (max-width: 400px) {
    .hyd_section_title {
        font-size: 1.4em;
    }
    
    .hyd_hero_new > .hyd_hero_layout > .hyd_hero_left > .hyd_hero_main_title {
        font-size: 1.6em;
    }
    
    .hyd_hero_new > .hyd_hero_layout > .hyd_hero_right > .hyd_image_gallery {
        max-width: 260px;
        height: 260px;
    }
    
    .hyd_image_placeholder.hero_main {
        height: 260px;
    }
    
    .hyd_capabilities > .hyd_capabilities_flow > .hyd_flow_item > .hyd_flow_specs > span {
        font-size: 0.75em;
        padding: 6px 12px;
    }
    
    .hyd_hero_new > .hyd_hero_layout > .hyd_hero_right > .hyd_image_gallery > .hyd_gallery_card {
        padding: 4px;
        
        & > .hyd_card_small_image {
            width: 30px;
            height: 30px;
        }
        
        & > .hyd_card_small_info h4 {
            font-size: 0.75em;
        }
        
        & > .hyd_card_small_info p {
            font-size: 0.65em;
        }
    }
}

@media screen and (max-width: 320px) {
    .hyd_section_title {
        font-size: 1.3em;
    }
    
    .hyd_hero_new > .hyd_hero_layout > .hyd_hero_left > .hyd_hero_main_title {
        font-size: 1.4em;
    }
    
    .hyd_hero_new > .hyd_hero_layout > .hyd_hero_right > .hyd_image_gallery {
        max-width: 240px;
        height: 240px;
    }
    
    .hyd_image_placeholder.hero_main {
        height: 240px;
    }
    
    .hyd_services_banner > .hyd_services_container > .hyd_service_item {
        padding: 30px 20px;
        
        & > h3 {
            font-size: 1.2em;
        }
        
        & > p {
            font-size: 0.85em;
        }
    }
    
    .hyd_hero_new > .hyd_hero_layout > .hyd_hero_right > .hyd_image_gallery > .hyd_gallery_card {
        display: none;
    }
}