/* ==========================================================================
   1. GLOBAL STYLES & RESET (Enforces Times New Roman Universally)
   ========================================================================== */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

*, body, 
header, nav, footer, div, 
h1, h2, h3, h4, h5, h6, 
p, span, li, a, figcaption, strong,
input, select, textarea, button, label {
    font-family: "Times New Roman", Times, serif !important; 
}

body {
    background-color: #f8fafc;
    color: #333333;
}

img {
    vertical-align: middle;
}

/* ==========================================================================
   2. HEADER & NAVIGATION STYLES (Direct Match to Styling.css Framework)
   ========================================================================== */
header {
    width: 100%;
    box-sizing: border-box;
}

.PhEmHeader {
    background-color: #000435;
    padding: 0.5px;
    width: 100%;
}

.PhEmnav {
    display: flex;
    justify-content: space-between; 
    align-items: center;            
    flex-wrap: wrap;                
    gap: 15px;                      
    list-style: none;               
    margin: 0;
    padding: 10px 20px;             
}

.PhEmnav li {
    text-decoration: none;
    display: inline-flex;
}

.PhEmnav a {
    color: white;
    text-decoration: none;
    font-size: 16px;
    display: flex;
    gap: 3px;
}

.PhEmnav a:hover {
    color: #bf9b30;
}

.menuNav {
    display: flex;
    background: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    margin: 0 auto;
    width: 95%;
    justify-content: space-between;
    align-items: center;
    position: fixed;
    left: 0;
    right: 0;
    z-index: 9999;
}

.compLogo {
    width: 12rem;
}

.menuHeader {
    display: flex;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.menuItem {
    margin: 0 15px;
}

.menuItem a {
    text-decoration: none;
    color: #04094d;
    font-weight: bold;
}

.menuItem a:hover {
    color: #bf9b30;
}

/* ==========================================================================
   3. PRODUCT DET RANGE GRID (Strict 3 Columns Layout Parameter Updates)
   ========================================================================== */
.abtDet {
    padding: 160px 20px 40px 20px; 
    background-color: #ffffff;
}

.prodDet {
    display: flex;
    flex-wrap: wrap;           
    justify-content: center;   
    gap: 24px;                 
    width: 100%;
}

.prodDet h3 {
    flex: 1 0 100%;
    text-align: center;
    font-size: 24px;
    color: #04094d;
    margin-bottom: 20px;
}

.prodimage {
    display: flex;
    flex-direction: column; 
    flex: 0 1 calc(33.333% - 16px); 
    margin: 0;   
    background: #fcfcfc;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
}

.catImage {
    width: 100%;
    height: 220px;             
    object-fit: contain;    
    background-color: #ffffff; 
    padding: 15px;          
    display: block;
}

.prodimage figcaption {
    margin-top: auto;       
    padding: 14px;
    text-align: center;
    font-size: 15px;           
    font-weight: bold;
    color: #333333;
    border-top: 1px solid #edf2f7;
    background-color: #fafafa;
    text-decoration: none; 
    border-bottom: 4px solid #bf9b30; 
}

/* ==========================================================================
   4. CONTACT SECTION LAYOUT (Stretches Full Width Like Styling.css)
   ========================================================================== */
.contact-section-wrapper {
    display: flex !important;
    flex-direction: row !important;      
    align-items: flex-start !important;  
    gap: 35px !important;                
    width: 100% !important;
    box-sizing: border-box !important;
    padding: 160px 20px 60px 20px !important;
}

.contact-container {
    display: flex !important;
    flex-direction: row !important;
    width: 100% !important;
    gap: 35px !important;
}

/* ==========================================================================
   5. LEFT COLUMN: CONTACT INFO SIDE (Stretches to 48% Matrix Box)
   ========================================================================== */
.contact-info-block {
    flex: 0 0 48% !important;            
    max-width: 48% !important;
    box-sizing: border-box !important;
    background-color: #000435; 
    color: #ffffff;
    padding: 40px;
    border-radius: 12px;
}

.contact-info-block h2 {
    font-size: 24px !important;          
    color: #ffffff;
    margin-top: 0 !important;            
    margin-bottom: 12px !important;
    border-bottom: 3px solid #bf9b30; 
    display: inline-block;
    padding-bottom: 5px;
}

.contact-subtitle {
    color: #cbd5e1;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 35px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    align-items: flex-start;
}

.info-icon {
    font-size: 20px;
    background-color: rgba(255, 255, 255, 0.1);
    padding: 10px;
    border-radius: 8px;
    line-height: 1;
}

.info-text strong {
    display: block;
    font-size: 16px;
    color: #ffffff;
    margin-bottom: 4px;
}

.info-text p {
    margin: 0;
    color: #e2e8f0;
    font-size: 14px;
    line-height: 1.5;
}

.info-text a {
    color: #bf9b30; 
    text-decoration: none;
    font-weight: 500;
}

.info-text a:hover {
    text-decoration: underline;
}

/* ==========================================================================
   6. RIGHT COLUMN: INQUIRY FORM SIDE (Stretches to 48% Box)
   ========================================================================== */
.contact-form-block {
    flex: 0 0 48% !important;            
    max-width: 48% !important;
    box-sizing: border-box !important;
    padding: 40px;
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e2e8f0;
}

.contact-form-block h2 {
    font-size: 24px !important;          
    color: #04094d;
    margin-top: 0 !important;            
    margin-bottom: 25px;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-row-split {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.form-row-split .form-group {
    flex: 1 1 220px;
}

.form-group label {
    font-size: 13px;
    font-weight: 700;
    color: #475569;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.form-group input, 
.form-group select, 
.form-group textarea {
    padding: 12px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 14px;
    color: #1e293b;
    background-color: #f8fafc;
    transition: all 0.3s ease;
}

.form-group input:focus, 
.form-group select:focus, 
.form-group textarea:focus {
    outline: none;
    border-color: #04094d;
    background-color: #ffffff;
    box-shadow: 0 0 0 3px rgba(4, 9, 77, 0.1);
}

.submit-btn {
    background-color: #04094d;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    align-self: flex-start;
    border-bottom: 3px solid #02052c;
}

.submit-btn:hover {
    background-color: #bf9b30; 
    border-bottom: 3px solid #94751f;
    transform: translateY(-1px);
}

/* ==========================================================================
   7. TÜV HORIZONTAL CERTIFICATION BADGE STYLES
   ========================================================================== */
.cert-horizontal-card {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    max-width: 320px; 
    margin: 20px auto;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.certHorizontalImage {
    width: 100%;
    height: auto;
    object-fit: contain; 
    padding: 15px;
}

/* ==========================================================================
   8. FOOTER STYLING & ACCENT LINES (Stretches Full Width)
   ========================================================================== */
footer {
    background-color: #000435;      
    color: #ffffff;                 
    padding: 40px 20px 20px 20px;
    margin-top: 60px;
    width: 100%;
}

.footerContainer {
    width: 100%;
}

.footerCol h3 {
    color: #bf9b30;
    font-size: 18px;
    margin-bottom: 15px;
}

.addressDetails p {
    color: #cbd5e1;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 8px;
}

/* Custom class handling your target inline golden line inside footer layout */
.goldenLine {
    display: block;
    width: 100%;
    height: 3px;
    background-color: #bf9b30 !important;
    border: none;
    margin: 15px 0;
    opacity: 1;
}

/* Footer Bottom wrapper updated to perfectly match the 3px solid gold look */
.footerBottom {
    width: 100%;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 3px solid #bf9b30; 
    text-align: center;
}

.footerBottom p {
    color: #94a3b8;
    font-size: 13px;
}

/* ==========================================================================
   9. MOBILE RESPONSIVENESS OVERRIDES (Header Clearances Activated)
   ========================================================================== */
@media screen and (max-width: 768px) {
    
    /* Forces the very top contact info strip to stay visible on mobile layout stacks */
    .PhEmHeader {
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        z-index: 99998 !important; /* Layers directly beneath floating menu bar */
        height: auto !important;
    }

    .PhEmnav {
        padding: 8px 15px !important;
        gap: 10px !important;
        justify-content: center !important; /* Centers small top text labels on tiny viewports */
    }

    .PhEmnav a {
        font-size: 13px !important; /* Slightly sizes down email/phone items for mobile screens */
    }
    
    /* 9.1 HORIZONTAL FLOATING PILL NAVIGATION (Shifted Down for Clearances) */
    .menuNav {
        position: fixed !important; 
        top: 55px !important;              /* Pushed down so topmost .PhEmHeader links are completely clear */
        left: 4% !important;               
        right: 4% !important;
        width: 92% !important;
        display: flex !important;
        flex-direction: row !important;    
        justify-content: space-between !important;
        align-items: center !important;
        border-radius: 50px !important;    
        padding: 10px 18px !important;      
        z-index: 99999 !important;         
        background: #ffffff !important;    
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.18) !important; 
    }

    /* Scales logo down safely so it leaves maximum room for links */
    .compLogo {
        width: 6.5rem !important;
        height: auto !important;
        flex-shrink: 0 !important;         
    }
    
    /* 9.2 HORIZONTAL TOUCH-SWIPE LINK ROW */
    .menuHeader {
        display: flex !important;
        flex-direction: row !important; 
        align-items: center !important;
        gap: 16px !important;              
        list-style-type: none !important;
        margin: 0 0 0 15px !important;
        padding: 5px 0 !important;
        overflow-x: auto !important;       
        white-space: nowrap !important;    
        max-width: 70% !important;         
        scrollbar-width: none !important;  
    }

    .menuHeader::-webkit-scrollbar {
        display: none !important;
    }

    .menuItem {
        margin: 0 !important;
        flex-shrink: 0 !important;         
    }

    .menuItem a {
        font-size: 14px !important;        
        font-weight: 700 !important;
        color: #04094d !important;         
        text-transform: uppercase;         
        letter-spacing: 0.5px;
        white-space: nowrap !important;     
    }

    /* 9.3 YOUR CONTENT & ABOUT SECTION RESPONSIVE UPDATES (Pushed down further) */
    .abtDet, .aboutDet {
        flex-direction: column !important;
        gap: 30px !important;
        padding-top: 155px !important;     /* Boosted height prevents body content overlap */
    }

    .introDet, .usDet, .prodAbt, .prodDet {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }

    .introDet p, .usDet p {
        text-align: left !important;       
    }

    /* 9.4 CONTACT & GRID EXTRAS */
    .prodimage {
        flex: 0 1 100% !important;         
    }

    .contact-section-wrapper {
        padding-top: 155px !important;     /* Matches top clearances for consistency */
    }

    .contact-section-wrapper,
    .contact-container {
        flex-direction: column !important;
    }

    .contact-info-block, 
    .contact-form-block {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        padding: 20px !important;
    }
}



