﻿/* ====================================================================
   1. GLOBAL RESETS & VARIABLES
   ==================================================================== */
:root {
    --primary-color: #1e3a8a;
    --secondary-color: #2563eb;
    --accent-color: #3b82f6;
    --red-primary: #1e3a8a;
    --red-secondary: #ef4444;
    --red-accent: #f87171;
    --dark-color: #1e3a8a;
    --light-color: #dbeafe;
    --text-dark: #1e293b;
    --text-light: #64748b;
    --white: #ffffff;
    --gray-light: #f8fafc;
    --gray-medium: #e2e8f0;
    --transition: all 0.3s ease-in-out;
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --border-radius: 8px;
    --border-radius-lg: 12px;
    --primary: #0F3A7D;
    --secondary: #1E88E5;
    --accent: #ff0901;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

#services,
#about,
#products,
#projects,
#contact {
    scroll-margin-top: 92px;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    font-size: 16px;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
body.visible { opacity: 1; transform: translateY(0); }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
img { max-width: 100%; height: auto; display: block; }

/* ====================================================================
   2. HEADER (Unified)
   ==================================================================== */
.front-header { width: 100%; background: rgba(255, 255, 255, 0.98); box-shadow: 0 2px 18px rgba(15, 58, 125, 0.08); position: sticky; top: 0; z-index: 2000; border-bottom: 1px solid var(--gray-medium); }
.front-container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.front-nav { align-items: center; display: flex; gap: 24px; justify-content: space-between; min-height: 74px; }
.front-logo { align-items: center; color: var(--primary); display: inline-flex; font-size: 26px; font-weight: 800; gap: 10px; text-decoration: none; }
.front-logo img { max-height: 70px; width: 140px; }
.front-nav-menu { align-items: center; display: flex; gap: 12px; list-style: none; margin: 0; padding: 0; }
.front-nav-menu li a { color: var(--text-dark); font-size: 15px; font-weight: 600; text-decoration: none; padding: 8px 14px; border-radius: 16px; transition: var(--transition); display: flex; align-items: center; gap: 6px; }
.front-nav-menu li a:hover { background: rgba(167, 21, 6, 0.1); color: var(--red-primary); }
.front-menu-toggle { background: transparent; border: 0; color: var(--primary); cursor: pointer; display: none; font-size: 24px; }

/* ====================================================================
   3. HERO SECTION & SLIDER (FULL WIDTH & FULL HEIGHT FIX)
   ==================================================================== */
.hero { 
    width: 100%; 
    background: linear-gradient(135deg, #071B34 0%, #163A7D 100%); 
    color: #fff; 
    position: relative; 
    overflow: hidden; 
}

.hero::before, .hero::after { content: ''; position: absolute; border-radius: 50%; opacity: 0.3; pointer-events: none; z-index: 1; }
.hero::before { width: 520px; height: 520px; right: -140px; top: -120px; background: rgba(255,255,255,0.12); }
.hero::after { width: 420px; height: 420px; left: -120px; bottom: -140px; background: rgba(220,66,66,0.12); }

.hero-content { 
    position: relative; 
    z-index: 2; 
    width: 100%; 
    text-align: center; 
}

/* BREAK OUT OF THE 1200px CONTAINER TO GO FULL WIDTH */
.hero-slider { 
    position: relative; 
    width: 100vw; /* Full viewport width */
    max-width: 100vw;
    /* Center it perfectly, breaking out of the parent container */
    margin-left: calc(-50vw + 50%); 
    height: 100vh; /* FULL SCREEN HEIGHT */
    min-height: 600px; 
    overflow: hidden;
}

.hero-slide { 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    display: flex; 
    flex-direction: column; 
    align-items: center; 
    justify-content: center; 
    padding: 0 20px; 
    opacity: 0; 
    transition: opacity 0.8s ease-in-out; 
    
    background-size: cover; 
    background-position: center; 
    background-repeat: no-repeat; 
    background-color: rgba(7, 27, 52, 0.15); 
    background-blend-mode: overlay; 
}

.hero-slide.active { 
    opacity: 1; 
}

.hero-slide h2 { font-size: clamp(2.4rem, 4vw, 3.8rem); margin-bottom: 18px; text-shadow: 2px 2px 8px rgba(0,0,0,0.6); }
.hero-slide p { max-width: 720px; margin: 0 auto; color: rgba(255,255,255,0.9); font-size: 1.2rem; text-shadow: 1px 1px 4px rgba(0,0,0,0.6); }

.hero-dots { display: flex; justify-content: center; gap: 10px; position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 3; }
.hero-dot { width: 14px; height: 14px; border-radius: 50%; background: rgba(255,255,255,0.4); border: none; cursor: pointer; transition: var(--transition); }
.hero-dot.active { background: var(--accent); transform: scale(1.2); }
/* ====================================================================
   4. SECTION HEADERS & PAGE HEADERS (COLOR CHANGED)
   ==================================================================== */
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.8rem; color: var(--primary-color); margin-bottom: 1rem; position: relative; display: inline-block; }
.section-header h2::after { content: ''; position: absolute; bottom: -10px; left: 50%; transform: translateX(-50%); width: 80px; height: 4px; background: linear-gradient(90deg, var(--primary-color), var(--red-primary)); border-radius: 2px; }
.section-header p { color: var(--text-light); font-size: 1.2rem; max-width: 600px; margin: 0 auto; }

/* COLOR CHANGED TO MATCH SLIDER */
.page-header { background: linear-gradient(135deg, #071B34 0%, #163A7D 100%); color: #fff; padding: 80px 0 60px; text-align: center; position: relative; overflow: hidden; }
.page-header::before { content: ''; position: absolute; width: 400px; height: 400px; background: rgba(255,255,255,0.05); border-radius: 50%; top: -150px; right: -100px; }
.page-header h1 { font-size: 3rem; font-weight: 800; margin-bottom: 0.5rem; position: relative; z-index: 1; }
.page-header p { font-size: 1.2rem; opacity: 0.9; position: relative; z-index: 1; }

/* ====================================================================
   5. SERVICES SECTION
   ==================================================================== */
.services { padding: 80px 0; background: var(--gray-light); position: relative; }
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 2rem; }
.service-card { background: var(--white); padding: 2.5rem 2rem; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-md); text-align: center; transition: var(--transition); border: 1px solid var(--gray-medium); }
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: var(--red-accent); }
.service-icon { font-size: 3rem; color: var(--red-primary); margin-bottom: 1.5rem; width: 70px; height: 70px; display: flex; align-items: center; justify-content: center; background: rgba(167, 21, 6, 0.1); border-radius: 50%; margin-left: auto; margin-right: auto; }
.service-card h3 { font-size: 1.3rem; color: var(--primary-color); margin-bottom: 1rem; }
.service-card p { color: var(--text-light); line-height: 1.6; }

/* ====================================================================
   6. SHARED CARDS (PRODUCTS & PROJECTS)
   ==================================================================== */
.products, .projects { padding: 80px 0; background: var(--white); }
.projects { background: var(--gray-light); }

.products-grid, .projects-grid, .products-container, .projects-container { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 28px; }

#productsGrid.products-container { grid-template-columns: repeat(3, minmax(0, 1fr)); }

@media (max-width: 1024px) {
    #productsGrid.products-container { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 768px) {
    #productsGrid.products-container { grid-template-columns: 1fr; }
}

.product-card, .project-card { background: var(--white); border: 1px solid #E6ECF3; border-radius: var(--border-radius-lg); overflow: hidden; display: flex; flex-direction: column; transition: var(--transition); box-shadow: 0 4px 16px rgba(15, 58, 125, 0.06); }
.product-card:hover, .project-card:hover { transform: translateY(-6px); box-shadow: 0 12px 28px rgba(15, 58, 125, 0.12); border-color: #1E88E5; }

.product-image, .project-image { width: 100%; height: 220px; overflow: hidden; background: #F5F7FA; position: relative; }
.product-image img, .project-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.product-card:hover .product-image img, .project-card:hover .project-image img { transform: scale(1.06); }

.product-info, .project-info { padding: 22px; display: flex; flex-direction: column; flex: 1; }
.product-brand, .project-category { color: var(--accent); font-size: 0.85rem; font-weight: 800; letter-spacing: 0.5px; margin-bottom: 6px; }
.product-name, .project-name { color: #0F3A7D; font-size: 1.2rem; font-weight: 700; margin: 0 0 10px; line-height: 1.3; }
.product-category { color: #6C757D; font-size: 0.85rem; margin-bottom: 12px; display: block; }
.product-desc, .project-desc { color: #6C757D; font-size: 0.95rem; line-height: 1.6; margin-bottom: 18px; flex-grow: 1; }

.project-meta { display: flex; justify-content: space-between; color: #6C757D; font-size: 0.85rem; margin-bottom: 16px; border-top: 1px solid #E6ECF3; padding-top: 12px; }
.project-meta i { color: #1E88E5; margin-right: 4px; }

.product-link, .project-link { align-items: center; background: #0F3A7D; border-radius: 8px; color: #fff; display: inline-flex; font-weight: 700; gap: 8px; justify-content: center; margin-top: auto; padding: 12px 16px; text-decoration: none; transition: var(--transition); }
.product-link:hover, .project-link:hover { background: #dc4242; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(220, 66, 66, 0.3); }

/* ====================================================================
   7. FILTERS & PAGINATION (LISTING PAGES)
   ==================================================================== */
main { padding: 0px 0; background: var(--gray-light); min-height: 60vh; }

.product-listing-hero {
    background:
        linear-gradient(135deg, rgba(7, 27, 52, 0.94) 0%, rgba(18, 61, 122, 0.9) 100%),
        var(--product-listing-hero-image, none) center/cover no-repeat;
    color: #fff;
    padding: 92px 0 78px;
    overflow: hidden;
    position: relative;
}

.project-listing-hero {
    background:
        linear-gradient(135deg, rgba(7, 27, 52, 0.94) 0%, rgba(18, 61, 122, 0.9) 100%),
        var(--project-listing-hero-image, none) center/cover no-repeat;
}

.product-listing-hero > .container {
    position: relative;
    z-index: 1;
}

.product-listing-hero span {
    color: #7dd3fc;
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    margin-bottom: 14px;
}

.product-listing-hero h1 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.08;
    margin: 0 0 18px;
    max-width: 780px;
}

.product-listing-hero p {
    color: rgba(255, 255, 255, 0.86);
    font-size: 1.08rem;
    max-width: 680px;
}

.product-listing-page {
    padding: 46px 0 72px;
}

.product-filter-panel {
    background: #fff;
    border: 1px solid #E6ECF3;
    border-radius: 12px;
    box-shadow: 0 18px 38px rgba(15, 58, 125, 0.1);
    margin: -82px 0 36px;
    padding: 24px;
    position: relative;
    z-index: 2;
}

.product-filter-head {
    align-items: center;
    display: flex;
    gap: 20px;
    justify-content: space-between;
    margin-bottom: 20px;
}

.product-filter-head h2 {
    color: #0F3A7D;
    font-size: 1.35rem;
    margin-bottom: 4px;
}

.product-filter-head p {
    color: var(--text-light);
}

.product-filter-head span {
    background: #EAF3FF;
    color: #0F3A7D;
    font-weight: 900;
    padding: 8px 12px;
    white-space: nowrap;
}

.filters-section { align-items: end; background: #fff; border: 1px solid #E6ECF3; border-radius: 12px; box-shadow: 0 8px 24px rgba(15, 58, 125, 0.08); display: grid; gap: 18px; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); margin-bottom: 40px; padding: 24px; }
.products-filter-grid { border: 0; box-shadow: none; margin-bottom: 0; padding: 0; }
.filter-group { display: flex; flex-direction: column; gap: 8px; }
.filter-group label { color: #0F3A7D; font-size: 0.9rem; font-weight: 700; letter-spacing: 0.5px; }
.filter-group select, .filter-group input { border: 1px solid #DCE5EF; border-radius: 8px; font-family: inherit; font-size: 0.95rem; min-height: 46px; padding: 10px 14px; width: 100%; transition: var(--transition); background: #F5F7FA; color: #1A1A1A; }
.filter-group select:focus, .filter-group input:focus { outline: none; border-color: #1E88E5; background: #fff; box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.15); }

.btn-reset { align-items: center; background: #dc4242; border: none; border-radius: 8px; color: #fff; cursor: pointer; display: inline-flex; font-weight: 700; gap: 8px; justify-content: center; min-height: 46px; padding: 10px 20px; transition: var(--transition); }
.btn-reset:hover { background: #c23636; transform: translateY(-2px); box-shadow: 0 4px 12px rgba(220, 66, 66, 0.3); }

.pagination { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin-top: 50px; padding-top: 30px; border-top: 1px solid #E6ECF3; }
.page-link { border: 1px solid #DCE5EF; border-radius: 8px; color: #0F3A7D; padding: 10px 16px; text-decoration: none; font-weight: 600; transition: var(--transition); }
.page-link:hover { background: #1E88E5; color: #fff; border-color: #1E88E5; }
.page-link.active { background: #0F3A7D; color: #fff; border-color: #0F3A7D; }
.page-link.disabled { color: #adb5bd; pointer-events: none; background: #f8f9fa; }

.empty-state { background: #fff; border-radius: 12px; padding: 80px 20px; text-align: center; color: #6C757D; box-shadow: 0 4px 16px rgba(0,0,0,0.05); }
.empty-state i { font-size: 4rem; color: #DCE5EF; margin-bottom: 16px; }
.empty-state h3 { font-size: 1.5rem; color: #0F3A7D; margin-bottom: 8px; }

.product-listing-head { margin: -82px 0 28px; position: relative; z-index: 2; color: #fff; }
.product-listing-head h2 { font-size: 1.6rem; margin-bottom: 6px; }
.product-listing-head p { color: rgba(255,255,255,0.85); }

.product-listing-layout { display: grid; grid-template-columns: 280px 1fr; gap: 32px; align-items: start; }

.product-filters-sidebar { background: #fff; border: 1px solid #E6ECF3; border-radius: 12px; box-shadow: 0 8px 24px rgba(15, 58, 125, 0.08); padding: 22px; position: sticky; top: 90px; }
.filters-sidebar-head { align-items: center; display: flex; justify-content: space-between; margin-bottom: 18px; }
.filters-sidebar-head h3 { color: #0F3A7D; font-size: 1.1rem; margin: 0; }
.filters-sidebar-head .btn-reset { min-height: auto; padding: 6px 12px; font-size: 0.8rem; }

.filter-facet { border-bottom: 1px solid #EEF2F7; margin-bottom: 18px; padding-bottom: 18px; }
.filter-facet:last-child { border-bottom: 0; margin-bottom: 0; padding-bottom: 0; }
.filter-facet > label { color: #0F3A7D; font-size: 0.85rem; font-weight: 700; letter-spacing: 0.3px; display: block; margin-bottom: 8px; }
.filter-facet h4 { color: #0F3A7D; font-size: 0.9rem; font-weight: 700; margin: 0 0 10px; }
.filter-search-input { border: 1px solid #DCE5EF; border-radius: 8px; font-family: inherit; font-size: 0.9rem; min-height: 42px; padding: 8px 12px; width: 100%; transition: var(--transition); background: #F5F7FA; color: #1A1A1A; }
.filter-search-input:focus { outline: none; border-color: #1E88E5; background: #fff; box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.15); }

.filter-facet-options { display: flex; flex-direction: column; gap: 8px; max-height: 220px; overflow-y: auto; padding-right: 4px; }
.filter-checkbox { align-items: center; color: #364152; cursor: pointer; display: flex; font-size: 0.88rem; gap: 8px; }
.filter-checkbox input { accent-color: #dc4242; height: 16px; width: 16px; flex-shrink: 0; }
.filter-facet-subtree { display: flex; flex-direction: column; gap: 8px; margin: 4px 0 4px 22px; }

.product-results-count { color: #0F3A7D; font-weight: 800; margin-bottom: 18px; }
.product-results { min-width: 0; transition: opacity 0.2s ease; }

@media (max-width: 900px) {
    .product-listing-layout { grid-template-columns: 1fr; }
    .product-filters-sidebar { position: static; }
}

@media (max-width: 768px) {
    .product-listing-hero {
        padding: 70px 0 96px;
    }

    .product-filter-panel {
        margin-top: -72px;
        padding: 18px;
    }

    .product-filter-head {
        align-items: flex-start;
        flex-direction: column;
    }
}

/* ====================================================================
   8. ABOUT SECTION
   ==================================================================== */
.about { padding: 100px 0; background: var(--white); }
.about-content { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text h2 { font-size: 2.8rem; color: var(--primary-color); margin-bottom: 1.5rem; position: relative; }
.about-text h2::after { content: ''; position: absolute; bottom: -10px; left: 0; width: 80px; height: 4px; background: linear-gradient(90deg, var(--primary-color), var(--red-primary)); border-radius: 2px; }
.about-text p { margin-bottom: 2rem; line-height: 1.8; font-size: 1.1rem; color: var(--text-light); }
.about-image { position: relative; }
.about-image img { width: 100%; height: 400px; object-fit: cover; border-radius: var(--border-radius-lg); box-shadow: var(--shadow-lg); }

.btn { display: inline-flex; align-items: center; gap: 8px; padding: 12px 28px; border-radius: 50px; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: var(--transition); font-size: 1rem; }
.btn-primary { background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: var(--white); box-shadow: 0 4px 15px rgba(15, 58, 125, 0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(15, 58, 125, 0.4); }

/* ====================================================================
   9. CONTACT SECTION (UPDATED LAYOUT)
   ==================================================================== */
.contact { padding: 80px 0; background: var(--gray-light); }

/* TOP ROW: INFO CARDS */
.contact-info-row { 
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); 
    gap: 1.5rem; 
    margin-bottom: 2.5rem; 
}

.contact-item { 
    background: var(--white); 
    padding: 1.5rem; 
    border-radius: var(--border-radius-lg); 
    display: flex; 
    align-items: center; 
    gap: 1.2rem; 
    box-shadow: var(--shadow-md); 
    transition: var(--transition); 
}
.contact-item:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.contact-item-icon { width: 50px; height: 50px; background: var(--light-color); border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-item-icon i { color: var(--primary-color); font-size: 1.2rem; }
.contact-item-text h3 { font-size: 1rem; color: var(--primary-color); margin-bottom: 0.2rem; }
.contact-item-text p { color: var(--text-light); margin: 0; font-size: 0.95rem; }

/* BOTTOM ROW: FORM & MAP */
.contact-content { 
    display: grid; 
    grid-template-columns: 1fr 1fr; /* Creates the 50/50 col-6 layout */
    gap: 2.5rem; 
    align-items: stretch; /* Forces both columns to match heights */
}

.contact-form { 
    background: var(--white); 
    padding: 2rem; 
    border-radius: var(--border-radius-lg); 
    box-shadow: var(--shadow-md); 
    display: flex;
    flex-direction: column;
}

.form-group { margin-bottom: 1rem; } 
.form-group label { display: block; margin-bottom: 0.35rem; font-weight: 600; color: var(--text-dark); font-size: 0.9rem; }
.form-group input, .form-group textarea { width: 100%; padding: 10px 14px; border: 1px solid var(--gray-medium); border-radius: var(--border-radius); font-family: inherit; font-size: 0.95rem; transition: var(--transition); background: var(--gray-light); }
.form-group input:focus, .form-group textarea:focus { outline: none; border-color: var(--primary-color); background: var(--white); box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1); }

.form-group textarea { min-height: 90px; resize: vertical; flex-grow: 1; } 

.btn-submit { width: 100%; padding: 12px; background: linear-gradient(135deg, var(--primary-color), var(--secondary-color)); color: var(--white); border: none; border-radius: var(--border-radius); font-size: 1rem; font-weight: 700; cursor: pointer; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: auto; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(15, 58, 125, 0.4); }

/* Map Styling */
.contact-map {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 2px solid var(--gray-medium);
    min-height: 400px; /* Ensures it has a good height even if form is short */
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%; /* Fills the entire height of the right column */
    min-height: 400px;
}

@media (max-width: 900px) {
    .contact-content {
        grid-template-columns: 1fr; /* Stacks form and map on mobile */
    }
    .contact-map iframe {
        min-height: 300px;
    }
}

.contact-page {
    background: #f4f7fb;
    min-height: 60vh;
}

.contact-hero {
    background:
        linear-gradient(135deg, rgba(7, 27, 52, 0.94) 0%, rgba(18, 61, 122, 0.9) 100%),
        var(--product-listing-hero-image, var(--project-listing-hero-image, none)) center/cover no-repeat;
    color: #fff;
    overflow: hidden;
    padding: 72px 0 56px;
    position: relative;
}

.contact-hero::before {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
    height: 360px;
    position: absolute;
    right: -110px;
    top: -140px;
    width: 360px;
}

.contact-hero-grid {
    align-items: end;
    display: grid;
    gap: 32px;
    grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
    position: relative;
    z-index: 1;
}

.contact-kicker {
    color: #ffb38e;
    display: block;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.contact-hero h1 {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.05;
    margin: 0;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.82);
    font-size: 1.12rem;
    line-height: 1.7;
    margin: 18px 0 0;
    max-width: 760px;
}

.product-listing-hero.contact-hero {
    padding: 92px 0 78px;
}

.contact-hero.product-listing-hero:not(.project-listing-hero) {
    padding: 56px 0 46px;
}

.contact-hero.product-listing-hero:not(.project-listing-hero) > .container {
    max-width: 900px;
}

.contact-hero.product-listing-hero:not(.project-listing-hero) h1 {
    font-size: clamp(1.75rem, 2.6vw, 2.5rem);
}

.contact-hero.product-listing-hero:not(.project-listing-hero) p {
    font-size: 1rem;
}

.contact-hero-panel {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 8px;
    padding: 22px;
}

.contact-hero-panel strong,
.contact-hero-panel span {
    display: block;
}

.contact-hero-panel strong {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.contact-hero-panel span {
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.6;
}

.contact-body {
    padding: 52px 0 80px;
}

.contact-layout {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
}

.contact-details-panel,
.contact-form-panel {
    background: #fff;
    border: 1px solid #e0e8f2;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(15, 58, 125, 0.08);
}

.contact-details-panel {
    padding: 26px;
    position: sticky;
    top: 96px;
}

.contact-details-panel h2,
.contact-form-heading h2 {
    color: #0f3a7d;
    font-size: 1.5rem;
    margin: 0 0 18px;
}

.contact-methods {
    display: grid;
    gap: 14px;
}

.contact-method {
    align-items: flex-start;
    background: #f6f9fc;
    border: 1px solid #e4ebf3;
    border-radius: 8px;
    display: flex;
    gap: 14px;
    padding: 16px;
}

.contact-method i {
    align-items: center;
    background: #0f3a7d;
    color: #fff;
    display: inline-flex;
    flex: 0 0 42px;
    height: 42px;
    justify-content: center;
    width: 42px;
}

.contact-method strong,
.contact-method span,
.contact-method a {
    display: block;
}

.contact-method strong {
    color: #0f3a7d;
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-method span,
.contact-method a {
    color: #475569;
    line-height: 1.55;
    overflow-wrap: anywhere;
    text-decoration: none;
}

.contact-method a:hover {
    color: #dc4242;
}

.contact-form-panel {
    padding: 30px;
}

.contact-form-heading {
    margin-bottom: 22px;
}

.contact-form-heading span {
    color: #dc4242;
    display: block;
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    margin-bottom: 8px;
}

.contact-form-heading p {
    color: #64748b;
    line-height: 1.7;
    margin: 0;
}

.contact-form {
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    padding: 0;
}

.contact-form-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-form .form-group {
    margin-bottom: 16px;
}

.contact-form .form-group label {
    color: #0f3a7d;
    font-size: 0.9rem;
    font-weight: 800;
    margin-bottom: 7px;
}

.contact-form .form-group input,
.contact-form .form-group textarea {
    background: #f6f9fc;
    border: 1px solid #dce6f0;
    border-radius: 8px;
    color: #1e293b;
    min-height: 48px;
    padding: 12px 14px;
}

.contact-form .form-group textarea {
    min-height: 150px;
}

.contact-form .form-group input:focus,
.contact-form .form-group textarea:focus {
    background: #fff;
    border-color: #1e88e5;
    box-shadow: 0 0 0 3px rgba(30, 136, 229, 0.14);
}

.contact-form .form-group small {
    color: #dc2626;
    display: block;
    margin-top: 5px;
}

.contact-submit {
    align-items: center;
    background: #0f3a7d;
    border: 0;
    border-radius: 8px;
    color: #fff;
    cursor: pointer;
    display: inline-flex;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    min-height: 50px;
    padding: 12px 22px;
    transition: var(--transition);
}

.contact-submit:hover {
    background: #dc4242;
    transform: translateY(-2px);
}

.contact-submit:disabled {
    cursor: wait;
    opacity: 0.72;
    transform: none;
}

.contact-alert {
    border-radius: 8px;
    font-weight: 700;
    margin-bottom: 18px;
    padding: 12px 14px;
}

.contact-alert-success {
    background: #ecfdf5;
    border: 1px solid #bbf7d0;
    color: #166534;
}

.contact-alert-error {
    background: #fef2f2;
    border: 1px solid #fecaca;
    color: #991b1b;
}

.front-toast-container {
    display: grid;
    gap: 12px;
    max-width: min(420px, calc(100vw - 32px));
    position: fixed;
    right: 18px;
    top: 88px;
    z-index: 5000;
}

.front-toast {
    align-items: flex-start;
    animation: frontToastIn 220ms ease both;
    background: #fff;
    border: 1px solid #dbe6ef;
    border-left: 5px solid #0f3a7d;
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(15, 58, 125, 0.18);
    color: #1e293b;
    display: flex;
    font-weight: 800;
    gap: 14px;
    justify-content: space-between;
    line-height: 1.45;
    padding: 14px 16px;
}

.front-toast-success {
    border-left-color: #16a34a;
}

.front-toast-error {
    border-left-color: #dc2626;
}

.front-toast button {
    background: transparent;
    border: 0;
    color: #64748b;
    cursor: pointer;
    font-size: 22px;
    line-height: 1;
    padding: 0;
}

.front-toast.is-hiding {
    animation: frontToastOut 220ms ease both;
}

@keyframes frontToastIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes frontToastOut {
    from { opacity: 1; transform: translateY(0); }
    to { opacity: 0; transform: translateY(-10px); }
}

@media (max-width: 900px) {
    .contact-hero-grid,
    .contact-layout {
        grid-template-columns: 1fr;
    }

    .contact-details-panel {
        position: static;
    }
}

@media (max-width: 640px) {
    .contact-hero {
        padding: 48px 0 36px;
    }

    .contact-body {
        padding: 30px 0 58px;
    }

    .contact-details-panel,
    .contact-form-panel {
        padding: 18px;
    }

    .contact-form-grid {
        grid-template-columns: 1fr;
    }

    .contact-submit {
        width: 100%;
    }
}
/* ====================================================================
   10. FOOTER (UNIFIED)
   ==================================================================== */
footer { background: linear-gradient(135deg, var(--dark-color) 0%, #010616 100%); color: var(--white); padding: 80px 0 30px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 3rem; margin-bottom: 3rem; }
.footer-section h3 { margin-bottom: 1.5rem; color: var(--light-color); font-size: 1.4rem; position: relative; display: inline-block; }
.footer-section h3::after { content: ''; position: absolute; bottom: -8px; left: 0; width: 40px; height: 3px; background: var(--light-color); border-radius: 2px; }
.footer-section p { color: rgba(255,255,255,0.7); margin-bottom: 1rem; }
.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.8rem; color: rgba(255,255,255,0.7); display: flex; align-items: center; gap: 8px; }
.footer-section ul li i { color: var(--light-color); }
.footer-section a { color: rgba(255,255,255,0.7); text-decoration: none; transition: var(--transition); }
.footer-section a:hover { color: var(--white); transform: translateX(5px); display: inline-block; }
.social-links { display: flex; gap: 1rem; margin-top: 1rem; }
.social-links a { width: 40px; height: 40px; background: rgba(255,255,255,0.1); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--white); text-decoration: none; transition: var(--transition); }
.social-links a.social-link-facebook:hover { background: #1877F2; }
.social-links a.social-link-twitter:hover { background: #000000; }
.social-links a.social-link-instagram:hover { background: radial-gradient(circle at 30% 110%, #FDF497 0%, #FDF497 5%, #FD5949 45%, #D6249F 60%, #285AEB 90%); }
.social-links a.social-link-linkedin:hover { background: #0A66C2; }
.footer-bottom { text-align: center; padding-top: 2rem; border-top: 1px solid rgba(255,255,255,0.1); color: rgba(255,255,255,0.5); font-size: 0.9rem; }
.footer-bottom p { margin: 0; }

/* ====================================================================
   PROJECT DETAIL PAGE
   ==================================================================== */

.project-detail-page {
    background-color: var(--gray-light, #f8fafc);
}

/* Breadcrumbs inside the Page Header */
.page-header p {
    font-size: 1rem;
    display: flex;
    gap: 8px;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}
.page-header p a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}
.page-header p a:hover {
    color: #fff;
    text-decoration: underline;
}
.page-header p span {
    color: var(--accent, #dc4242);
}

/* Main Detail Section */
.project-detail-section {
    padding: 60px 0;
}

.project-detail-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 40px;
    align-items: start;
    background: var(--white);
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    border: 1px solid var(--gray-medium, #e2e8f0);
}

/* Main Image */
.project-detail-media img {
    width: 100%;
    height: 100%;
    min-height: 350px;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

/* Content Area */
.project-detail-content {
    padding: 10px 0;
}

.project-detail-content .project-category {
    background: rgba(220, 66, 66, 0.1);
    color: var(--accent, #dc4242);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    margin-bottom: 15px;
}

.project-detail-content h2 {
    font-size: 2.2rem;
    color: var(--primary-color, #0F3A7D);
    margin-bottom: 20px;
    line-height: 1.3;
}

.project-detail-content > p {
    color: var(--text-light, #64748b);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

/* Metadata Blocks (Code, Location, Date, Status) */
.project-detail-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.project-detail-meta div {
    background: var(--gray-light, #f8fafc);
    padding: 15px;
    border-radius: 8px;
    border-left: 4px solid var(--secondary-color, #1E88E5);
}

.project-detail-meta strong {
    display: block;
    font-size: 0.85rem;
    color: var(--text-light, #64748b);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.project-detail-meta span {
    font-weight: 700;
    color: var(--text-dark, #1e293b);
    font-size: 1rem;
}

/* Image Gallery */
.project-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 40px;
}

.project-gallery img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.project-gallery img:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Related Projects Section */
.related-projects {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid var(--gray-medium, #e2e8f0);
}

.related-projects h2 {
    font-size: 2rem;
    color: var(--primary-color, #0F3A7D);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
    display: inline-block;
    width: 100%;
}

.related-projects h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: var(--accent, #dc4242);
    border-radius: 2px;
}

/* Responsive Adjustments */
@media (max-width: 900px) {
    .project-detail-grid {
        grid-template-columns: 1fr;
    }
    .project-detail-media img {
        max-height: 350px;
    }
}

@media (max-width: 600px) {
    .project-detail-meta {
        grid-template-columns: 1fr;
    }
    .project-detail-content h2 {
        font-size: 1.8rem;
    }
}

/* ====================================================================
   11. RESPONSIVE DESIGN
   ==================================================================== */
@media (max-width: 900px) {
    .front-menu-toggle { display: inline-flex; }
    .front-nav-menu { background: #fff; border-top: 1px solid #e7edf5; display: none; flex-direction: column; left: 0; padding: 18px 24px; position: absolute; right: 0; top: 74px; box-shadow: var(--shadow-lg); z-index: 999; }
    .front-nav-menu.is-open, .front-nav-menu.active { display: flex; }
    .front-nav-menu li { width: 100%; }
    .front-nav-menu li a { padding: 1rem; border: 1px solid var(--gray-medium); border-radius: var(--border-radius); margin-bottom: 0.2rem; justify-content: space-between; }
    
    .about-content { grid-template-columns: 1fr; gap: 3rem; }
    .contact-content { grid-template-columns: 1fr; }
    .hero { min-height: 70vh; padding: 60px 0; }
    .filters-section { grid-template-columns: 1fr; }
    .page-header h1 { font-size: 2.2rem; }
}

@media (max-width: 768px) {
    .hero-slider { min-height: 300px; }
    .hero-slide h2 { font-size: 2rem; }
    .hero-slide p { font-size: 1rem; }
    .section-header h2 { font-size: 2.2rem; }
    .services-grid, .products-grid, .projects-grid, .products-container, .projects-container { grid-template-columns: 1fr; }
}


/* ====================================================================
   PRODUCT DETAIL PAGE
   ==================================================================== */

.product-detail-page {
    background: #f4f7fb;
    min-height: 60vh;
    padding: 0;
}

.product-hero {
    background: linear-gradient(135deg, #071b34 0%, #123d7a 100%);
    color: #fff;
    overflow: hidden;
    padding: 64px 0 42px;
    position: relative;
}

.product-hero::before {
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    content: "";
    height: 360px;
    position: absolute;
    right: -110px;
    top: -140px;
    width: 360px;
}

.product-breadcrumb {
    align-items: center;
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.product-breadcrumb,
.product-breadcrumb a {
    color: rgba(255, 255, 255, 0.78);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
}

.product-breadcrumb a:hover {
    color: #fff;
}

.product-hero-grid {
    align-items: end;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) auto;
    position: relative;
    z-index: 1;
}

.product-eyebrow {
    color: #ffb38e;
    display: block;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin-bottom: 12px;
}

.product-hero h1 {
    font-size: clamp(2rem, 4vw, 4rem);
    line-height: 1.08;
    margin: 0;
    max-width: 920px;
}

.product-hero p {
    color: rgba(255, 255, 255, 0.84);
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 18px 0 0;
    max-width: 760px;
}

.product-hero-actions {
    display: flex;
    gap: 12px;
}

.product-action {
    align-items: center;
    border-radius: 8px;
    display: inline-flex;
    font-weight: 800;
    gap: 8px;
    justify-content: center;
    min-height: 48px;
    padding: 12px 18px;
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
}

.product-action-primary {
    background: #dc4242;
    color: #fff;
}

.product-action-secondary {
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.28);
    color: #fff;
}

.product-action:hover {
    transform: translateY(-2px);
}

.product-main-section {
    padding: 42px 0 80px;
}

.product-detail-layout {
    align-items: start;
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
}

.product-media-panel,
.product-summary-panel,
.product-content-card,
.product-related-card {
    background: #fff;
    border: 1px solid #e0e8f2;
    border-radius: 8px;
    box-shadow: 0 14px 34px rgba(15, 58, 125, 0.08);
}

.product-media-panel {
    align-self: start;
    padding: 16px;
    position: relative;
}

.product-main-image {
    align-items: center;
    aspect-ratio: 4 / 3;
    background: #eef3f8;
    border-radius: 8px;
    display: flex;
    justify-content: center;
    overflow: hidden;
    position: relative;
    width: 100%;
}

.product-main-image img {
    height: 100%;
    object-fit: contain;
    transition: transform 0.2s ease-out;
    transform-origin: center center;
    width: 100%;
}

@media (hover: hover) and (pointer: fine) {
    .product-main-image { cursor: zoom-in; }
    .product-main-image.is-zoomed img { transform: scale(2.2); }
}

.product-thumbnails {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    max-width: 100%;
}

.product-thumbnail {
    aspect-ratio: 1;
    background: #f5f7fa;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    flex: 0 0 110px;
    overflow: hidden;
    padding: 0;
    transition: var(--transition);
}

.product-thumbnail.active,
.product-thumbnail:hover {
    border-color: #dc4242;
}

.product-thumbnail img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.product-summary-panel {
    padding: 24px;
    position: sticky;
    top: 96px;
}

.product-summary-header {
    align-items: center;
    border-bottom: 1px solid #e5edf5;
    display: flex;
    justify-content: space-between;
    margin-bottom: 18px;
    padding-bottom: 16px;
}

.product-summary-header span {
    color: #0f3a7d;
    font-size: 1.1rem;
    font-weight: 800;
}

.product-summary-header strong {
    background: #fff3ea;
    border-radius: 999px;
    color: #c84f1c;
    font-size: 0.76rem;
    padding: 6px 10px;
}

.product-facts {
    display: grid;
    gap: 10px;
    margin: 0;
}

.product-facts div {
    align-items: start;
    background: #f6f9fc;
    border: 1px solid #e7eef6;
    border-radius: 8px;
    display: grid;
    gap: 10px;
    grid-template-columns: minmax(100px, 0.85fr) minmax(0, 1.15fr);
    padding: 12px 14px;
}

.product-facts dt {
    color: #64748b;
    font-size: 0.82rem;
    font-weight: 800;
}

.product-facts dd {
    color: #1e293b;
    font-weight: 700;
    margin: 0;
    overflow-wrap: anywhere;
}

.product-key-specs {
    border-top: 1px solid #e5edf5;
    margin-top: 20px;
    padding-top: 18px;
}

.product-key-specs h2,
.product-content-card h2,
.product-section-heading h2 {
    color: #0f3a7d;
    font-size: 1.45rem;
    line-height: 1.25;
    margin: 0 0 18px;
}

.product-key-spec {
    align-items: center;
    border-bottom: 1px solid #edf2f7;
    display: flex;
    gap: 16px;
    justify-content: space-between;
    padding: 11px 0;
}

.product-key-spec:last-child {
    border-bottom: 0;
}

.product-key-spec span {
    color: #64748b;
    font-weight: 700;
}

.product-key-spec strong {
    color: #1e293b;
    text-align: end;
}

.product-content-grid {
    display: grid;
    gap: 28px;
    grid-template-columns: minmax(0, 1fr) minmax(300px, 0.45fr);
    margin-top: 28px;
}

.product-content-card {
    padding: 26px;
}

.product-overview-card {
    min-width: 0;
}

.product-rich-text {
    color: #334155;
    font-size: 1rem;
    line-height: 1.8;
}

.product-rich-text p,
.product-rich-text ul,
.product-rich-text ol {
    margin-bottom: 14px;
}

.product-content-card h3 {
    color: #123d7a;
    font-size: 1.15rem;
    margin: 24px 0 10px;
}

.product-muted {
    color: #64748b;
}

.product-capacity-grid,
.product-documents-grid {
    display: grid;
    gap: 12px;
}

.product-capacity-card {
    background: #f6f9fc;
    border: 1px solid #e4ebf3;
    border-radius: 8px;
    padding: 14px;
}

.product-capacity-card span {
    color: #64748b;
    display: block;
    font-size: 0.86rem;
    font-weight: 800;
    margin-bottom: 5px;
}

.product-capacity-card strong {
    color: #0f3a7d;
    display: block;
    font-size: 1rem;
}

.product-table-card,
.product-documents-card,
.product-related-section {
    margin-top: 28px;
}

.product-table-wrap {
    overflow-x: auto;
}

.product-spec-table {
    border-collapse: collapse;
    min-width: 680px;
    width: 100%;
}

.product-spec-table th,
.product-spec-table td {
    border-bottom: 1px solid #e5edf5;
    color: #334155;
    padding: 14px 16px;
    text-align: start;
    vertical-align: top;
}

.product-spec-table thead th {
    background: #f6f9fc;
    color: #0f3a7d;
    font-size: 0.86rem;
}

.product-spec-table tbody th {
    color: #1e293b;
    font-weight: 800;
    width: 36%;
}

.product-document {
    align-items: center;
    background: #f6f9fc;
    border: 1px solid #e4ebf3;
    border-radius: 8px;
    color: inherit;
    display: grid;
    gap: 14px;
    grid-template-columns: auto minmax(0, 1fr) auto;
    padding: 14px;
    text-decoration: none;
    transition: var(--transition);
}

.product-document:hover {
    border-color: #1e88e5;
    transform: translateY(-2px);
}

.product-document i {
    color: #dc4242;
    font-size: 1.4rem;
}

.product-document strong,
.product-document small {
    display: block;
}

.product-document strong {
    color: #0f3a7d;
}

.product-document small,
.product-document em {
    color: #64748b;
    font-style: normal;
    font-weight: 700;
}

.product-related-section {
    padding-top: 14px;
}

.product-section-heading {
    margin-bottom: 18px;
}

.product-related-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 320px));
    justify-content: start;
}

.product-related-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
}

.product-related-card:hover {
    border-color: #1e88e5;
    transform: translateY(-4px);
}

.product-related-image {
    aspect-ratio: 4 / 3;
    background: #eef3f8;
    display: block;
    overflow: hidden;
}

.product-related-image img {
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    width: 100%;
}

.product-related-card:hover .product-related-image img {
    transform: scale(1.05);
}

.product-related-card > div {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 18px;
}

.product-related-card h3 {
    color: #0f3a7d;
    font-size: 1.08rem;
    line-height: 1.35;
    margin: 0 0 10px;
}

.product-related-card p {
    color: #64748b;
    flex: 1;
    font-size: 0.94rem;
    line-height: 1.6;
    margin: 0 0 14px;
}

.product-related-link {
    align-items: center;
    color: #dc4242;
    display: inline-flex;
    font-weight: 800;
    gap: 7px;
    text-decoration: none;
}

@media (max-width: 980px) {
    .product-hero-grid,
    .product-detail-layout,
    .product-content-grid {
        grid-template-columns: 1fr;
    }

    .product-summary-panel {
        position: static;
    }

    .product-hero-actions {
        flex-wrap: wrap;
    }
}

@media (max-width: 640px) {
    .product-hero {
        padding: 44px 0 32px;
    }

    .product-main-section {
        padding: 24px 0 56px;
    }

    .product-media-panel,
    .product-summary-panel,
    .product-content-card {
        padding: 16px;
    }

    .product-hero-actions,
    .product-action {
        width: 100%;
    }

    .product-facts div,
    .product-document {
        grid-template-columns: 1fr;
    }

    .product-key-spec {
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .product-key-spec strong {
        text-align: start;
    }
}

.db-hero {
    align-items: center;
    color: var(--white, #ffffff);
    display: flex;
    height: clamp(560px, 72vh, 760px);
    min-height: 560px;
    overflow: hidden;
    position: relative;
}

.db-hero-bg {
    background-position: center;
    background-size: cover;
    inset: 0;
    opacity: 1;
    position: absolute;
    transform: scale(1.02);
    transition: opacity var(--slider-speed, 650ms) var(--slider-easing, ease), transform var(--slider-speed, 650ms) var(--slider-easing, ease);
}

.db-hero-bg.is-next {
    opacity: 0;
    z-index: 1;
}

.db-hero-bg.is-current {
    z-index: 0;
}

.db-hero[data-transition="fade"] .db-hero-bg.is-next.is-animating {
    opacity: 1;
}

.db-hero[data-transition="slide"] .db-hero-bg.is-next {
    transform: translateX(8%) scale(1.02);
}

.db-hero[data-transition="slide"][data-direction="prev"] .db-hero-bg.is-next {
    transform: translateX(-8%) scale(1.02);
}

.db-hero[data-transition="slide"] .db-hero-bg.is-next.is-animating {
    opacity: 1;
    transform: translateX(0) scale(1.02);
}

.db-hero[data-transition="zoom"] .db-hero-bg.is-next {
    transform: scale(1.08);
}

.db-hero[data-transition="zoom"] .db-hero-bg.is-next.is-animating {
    opacity: 1;
    transform: scale(1.02);
}

.db-hero-overlay {
    inset: 0;
    position: absolute;
    z-index: 1;
}

.db-hero-inner {
    align-items: center;
    display: grid;
    gap: 60px;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.72fr);
    min-height: 100%;
    padding-bottom: 36px;
    padding-top: 48px;
    position: relative;
    z-index: 2;
}

.db-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 720px;
    min-height: 380px;
    transition: opacity var(--slider-speed, 650ms) var(--slider-easing, ease), transform var(--slider-speed, 650ms) var(--slider-easing, ease);
}

.db-hero-copy.is-entering {
    opacity: 1;
}

.db-hero-copy.from-next {
    animation: dbHeroCopyNext var(--slider-speed, 650ms) var(--slider-easing, ease);
}

.db-hero-copy.from-prev {
    animation: dbHeroCopyPrev var(--slider-speed, 650ms) var(--slider-easing, ease);
}

.db-hero h1 {
    color: #ffffff;
    display: -webkit-box;
    font-size: clamp(46px, 6vw, 82px);
    font-weight: 800;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.02;
    margin: 18px 0 22px;
    max-width: 780px;
    min-height: 3.06em;
    overflow: hidden;
}

.db-hero p {
    color: rgba(255, 255, 255, 0.82);
    display: -webkit-box;
    font-size: 19px;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    line-height: 1.75;
    margin: 0;
    max-width: 660px;
    min-height: 5.25em;
    overflow: hidden;
}

.db-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 34px;
    min-height: 52px;
}

.db-hero-actions .btn {
    align-items: center;
    border-radius: 4px;
    display: inline-flex;
    font-weight: 800;
    gap: 10px;
    justify-content: center;
    min-height: 52px;
    padding: 14px 22px;
}

.db-hero-cards {
    align-self: stretch;
    display: grid;
    gap: 14px;
    grid-auto-rows: 1fr;
    grid-template-rows: repeat(var(--hero-card-count, 3), minmax(0, 1fr));
    height: 330px;
    min-height: 330px;
}

.db-hero-card {
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 4px;
    color: #ffffff;
    display: grid;
    gap: 4px 7px;
    grid-template-columns: 56px 1fr;
    min-height: 0;
    overflow: hidden;
    padding: 20px;
    position: relative;
    text-decoration: none;
    transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease, background-color 220ms ease;
}

.db-hero-card:hover,
.db-hero-card:focus {
    color: #ffffff;
    text-decoration: none;
}

.db-hero-card[data-hover="lift"]:hover {
    transform: translateY(-5px);
}

.db-hero-card[data-hover="glow"]:hover {
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 20px 48px rgba(0, 0, 0, 0.28);
}

.db-hero-card-icon {
    align-items: center;
    align-self: start;
    background: var(--accent, #dc4242);
    border-radius: 4px;
    display: inline-flex;
    font-size: 22px;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.db-hero-card-copy {
    align-self: start;
    display: flex;
    flex-direction: column;
    gap: 0;
    min-width: 0;
    padding-top: 0;
}

.db-hero-card strong {
    color: #ffffff;
    display: block;
    font-size: 1em;
    font-weight: 800;
    line-height: 1.15;
    margin: 0;
}

.db-hero-card small {
    color: rgba(255, 255, 255, 0.74);
    display: block;
    font-size: 0.92em;
    line-height: 1.35;
    margin: 2px 0 0;
    padding-top: 0;
}

.db-slider-arrow {
    align-items: center;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 4px;
    color: #ffffff;
    cursor: pointer;
    display: inline-flex;
    height: 48px;
    justify-content: center;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    z-index: 3;
}

.db-hero[hidden],
.db-slider-arrow[hidden],
.db-slider-dots[hidden] {
    display: none !important;
}

.db-slider-arrow:hover {
    background: rgba(255, 255, 255, 0.24);
}

.db-slider-prev {
    left: 28px;
}

.db-slider-next {
    right: 28px;
}

.db-slider-dots {
    bottom: 38px;
    display: flex;
    gap: 10px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    z-index: 3;
}

.db-slider-dots button {
    background: rgba(255, 255, 255, 0.45);
    border: 0;
    border-radius: 50%;
    cursor: pointer;
    height: 11px;
    padding: 0;
    width: 11px;
}

.db-slider-dots button.is-active {
    background: #ffffff;
}

.db-hero .ert-kicker {
    background: rgba(255, 255, 255, 0.14);
    border: 0;
    color: #ffffff;
}

@keyframes dbHeroCopyNext {
    from {
        opacity: 0;
        transform: translateX(28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes dbHeroCopyPrev {
    from {
        opacity: 0;
        transform: translateX(-28px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@media (max-width: 991px) {
    .db-hero {
        height: auto;
        min-height: 780px;
    }

    .db-hero-inner {
        align-items: center;
        gap: 34px;
        grid-template-columns: 1fr;
        min-height: 780px;
        padding-bottom: 52px;
        padding-top: 54px;
    }

    .db-hero-copy {
        min-height: 360px;
    }

    .db-hero-cards {
        height: 300px;
        min-height: 300px;
    }

    .db-slider-arrow {
        top: auto;
        transform: none;
        bottom: 34px;
    }

    .db-slider-prev {
        left: 20px;
    }

    .db-slider-next {
        right: 20px;
    }
}

@media (max-width: 640px) {
    .db-hero {
        min-height: 820px;
    }

    .db-hero-inner {
        min-height: 820px;
    }

    .db-hero-copy {
        min-height: 390px;
    }

    .db-hero h1 {
        font-size: 42px;
        -webkit-line-clamp: 4;
        min-height: 4.08em;
    }

    .db-hero p {
        font-size: 16px;
        -webkit-line-clamp: 4;
        min-height: 7em;
    }

    .db-hero-cards {
        height: 340px;
        min-height: 340px;
    }

    .db-hero-card {
        grid-template-columns: 48px 1fr;
        padding: 16px;
    }

    .db-hero-card-copy {
        grid-column: 1 / -1;
    }
}

/* ====================================================================
   Industrial front redesign
   ==================================================================== */
.ert-kicker {
    background: rgba(220, 66, 66, 0.12);
    border: 1px solid rgba(220, 66, 66, 0.22);
    border-radius: 999px;
    color: #C44716;
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    margin-bottom: 12px;
    padding: 6px 10px;
}

.front-header {
    border-bottom: 1px solid rgba(15, 58, 125, 0.12);
    box-shadow: 0 6px 22px rgba(15, 58, 125, 0.08);
}

.front-nav {
    min-height: 86px;
}

.front-logo span {
    letter-spacing: 0.02em;
}

.front-nav-menu {
    gap: 2px;
}

.front-nav-menu li a {
    border-radius: 0;
    font-size: 0.86rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    min-height: 86px;
    padding: 0 14px;
}

.front-nav-menu li a:hover {
    background: var(--primary);
    color: var(--white);
}

.front-lang-link {
    background: var(--accent);
    color: var(--white) !important;
    min-height: auto !important;
    padding: 10px 14px !important;
}

.ert-hero {
    min-height: calc(100vh - 86px);
    overflow: hidden;
    position: relative;
}

.ert-hero-media,
.ert-hero-overlay {
    inset: 0;
    position: absolute;
}

.ert-hero-media {
    background-position: center;
    background-size: cover;
    transform: scale(1.02);
}

.ert-hero-overlay {
    background: linear-gradient(90deg, rgba(4, 14, 32, 0.92) 0%, rgba(15, 58, 125, 0.78) 45%, rgba(15, 58, 125, 0.16) 100%);
}

.ert-hero-inner {
    align-items: end;
    display: grid;
    gap: 42px;
    grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
    min-height: calc(100vh - 86px);
    padding-bottom: 58px;
    padding-top: 80px;
    position: relative;
    z-index: 2;
}

.ert-hero-copy {
    color: var(--white);
    max-width: 720px;
}

.ert-hero-copy h1 {
    font-size: clamp(3rem, 7vw, 6.4rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.92;
    margin-bottom: 24px;
}

.ert-hero-copy p {
    color: rgba(255, 255, 255, 0.84);
    font-size: clamp(1rem, 2vw, 1.3rem);
    max-width: 620px;
}

.ert-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.btn-outline-light {
    border: 2px solid rgba(255, 255, 255, 0.75);
    color: var(--white);
}

.btn-outline-light:hover {
    background: var(--white);
    color: var(--primary);
}

.ert-hero-features {
    display: grid;
    gap: 14px;
}

.ert-feature-tile {
    background: rgba(255, 255, 255, 0.94);
    color: var(--text-dark);
    display: grid;
    gap: 6px;
    grid-template-columns: 54px 1fr;
    padding: 20px;
    text-decoration: none;
    transition: var(--transition);
}

.ert-feature-tile span {
    align-items: center;
    background: var(--primary);
    color: var(--white);
    display: flex;
    grid-row: span 2;
    height: 54px;
    justify-content: center;
    width: 54px;
}

.ert-feature-tile strong {
    color: var(--primary);
    font-size: 1.1rem;
}

.ert-feature-tile small {
    color: var(--text-light);
    font-size: 0.92rem;
}

.ert-feature-tile:hover {
    background: var(--accent);
    color: var(--white);
    transform: translateX(-6px);
}

.ert-feature-tile:hover strong,
.ert-feature-tile:hover small {
    color: var(--white);
}

.ert-intro,
.ert-products,
.ert-news,
.ert-clients,
.ert-company {
    padding: 82px 0;
}

.ert-intro {
    background:
        linear-gradient(90deg, rgba(7, 27, 52, 0.04), rgba(255, 255, 255, 0)),
        var(--white);
    border-bottom: 1px solid rgba(15, 58, 125, 0.12);
}

.ert-intro-grid {
    align-items: stretch;
    display: grid;
    gap: 0;
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(15, 58, 125, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(7, 27, 52, 0.08);
}

.ert-intro-heading {
    background: linear-gradient(135deg, #031B3E 0%, #0F3A7D 100%);
    color: var(--white);
    padding: clamp(28px, 4vw, 46px);
    position: relative;
    overflow: hidden;
}

.ert-intro-heading.has-section-image {
    background-image: var(--section-image);
    background-position: center;
    background-size: cover;
}

.ert-section-overlay {
    position: absolute;
    inset: 0;
    background: var(--section-overlay, rgba(7, 27, 52, 0.74));
    z-index: 0;
}

.ert-intro-heading .ert-kicker {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: #FFFFFF;
    position: relative;
    z-index: 1;
}

.ert-intro-heading h3 {
    color: var(--white);
    margin-top: 12px;
    max-width: 740px;
    position: relative;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.28);
    z-index: 1;
}

.ert-intro-copy {
    display: flex;
    flex-direction: column;
    gap: 28px;
    justify-content: center;
    padding: clamp(28px, 4vw, 46px);
}

.ert-intro h3,
.ert-section-heading h3,
.ert-company-copy h3,
.ert-contact-strip h3 {
    color: var(--primary);
    font-size: var(--section-title-size, clamp(2rem, 4vw, 3.3rem));
    font-weight: 700;
    letter-spacing: 0;
    line-height: 1.05;
}

.ert-intro-heading h3,
.ert-contact-strip h3 {
    color: var(--white);
}

.ert-intro p {
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
    margin: 0;
}

.ert-intro-facts {
    display: grid;
    gap: 12px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.ert-intro-facts div {
    background: var(--gray-light);
    border: 1px solid rgba(15, 58, 125, 0.1);
    border-radius: 6px;
    padding: 14px;
    min-width: 0;
}

.ert-intro-facts strong,
.ert-intro-facts span {
    display: block;
}

.ert-intro-facts strong {
    color: var(--primary);
    font-size: 1.45rem;
    line-height: 1;
    margin-bottom: 6px;
    overflow-wrap: anywhere;
}

.ert-intro-facts span {
    color: var(--text-light);
    font-size: 0.78rem;
    font-weight: 800;
    line-height: 1.25;
    overflow-wrap: anywhere;
}

.ert-machine-band,
.ert-applications {
    background: var(--gray-light);
    padding: 82px 0;
}

.ert-section-heading {
    margin-bottom: 34px;
}

.ert-section-heading p {
    font-size: var(--section-description-size, 1rem);
}

.ert-section-heading.split {
    align-items: end;
    display: flex;
    gap: 24px;
    justify-content: space-between;
}

.ert-text-link {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

.ert-machine-grid,
.ert-product-grid,
.ert-news-grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(var(--cards-per-row, 3), minmax(0, 1fr));
}

.ert-machine-card,
.ert-product-card,
.ert-news-card {
    background: var(--white);
    border: 1px solid var(--gray-medium);
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
    text-decoration: none;
    transition: var(--transition);
}

.ert-machine-card:hover,
.ert-product-card:hover,
.ert-news-card:hover {
    border-color: var(--secondary);
    box-shadow: 0 18px 34px rgba(15, 58, 125, 0.14);
    transform: translateY(-6px);
}

.ert-machine-card img,
.ert-news-card img,
.ert-product-media img,
.ert-company-media img {
    height: 250px;
    object-fit: cover;
    width: 100%;
}

.ert-machine-card div,
.ert-product-body,
.ert-news-card div {
    padding: calc(24px * var(--card-padding-scale, 1));
}

.ert-product-body,
.ert-news-card div {
    display: flex;
    flex: 1;
    flex-direction: column;
}

.ert-service-card {
    min-height: 260px;
}

.ert-service-card div {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.ert-machine-card span,
.ert-application-tile i {
    align-items: center;
    background: var(--primary);
    color: var(--white);
    display: flex;
    font-size: calc(1rem * var(--card-icon-scale, 1));
    height: calc(48px * var(--card-icon-scale, 1));
    justify-content: center;
    margin-bottom: calc(18px * var(--card-padding-scale, 1));
    width: calc(48px * var(--card-icon-scale, 1));
}

.ert-machine-card h3,
.ert-product-body h3,
.ert-news-card h3 {
    color: var(--primary);
    font-size: calc(1.25rem * var(--card-heading-scale, 1));
    line-height: 1.22;
    margin-bottom: 12px;
    overflow-wrap: anywhere;
}

.ert-machine-card p,
.ert-product-body p,
.ert-news-card p {
    color: var(--text-light);
    font-size: calc(1rem * var(--card-body-scale, 1));
    line-height: 1.6;
    overflow-wrap: anywhere;
}

.ert-service-card p {
    margin-bottom: 0;
}

.ert-product-media {
    display: block;
    position: relative;
}

.ert-product-media span {
    background: var(--accent);
    bottom: 14px;
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 900;
    left: 14px;
    padding: 7px 10px;
    position: absolute;
}

.ert-product-body small,
.ert-news-card span {
    color: var(--accent);
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 900;
    margin-bottom: 8px;
}

.ert-product-body a,
.ert-news-card a {
    color: var(--primary);
    display: inline-block;
    font-weight: 900;
    margin-top: auto;
    text-decoration: none;
}

.ert-application-grid {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(6, minmax(0, 1fr));
}

.ert-application-tile {
    align-items: center;
    background: var(--white);
    border: 1px solid var(--gray-medium);
    color: var(--primary);
    display: flex;
    flex-direction: column;
    font-weight: 900;
    gap: 14px;
    justify-content: center;
    min-height: 152px;
    padding: 18px;
    text-align: center;
    text-decoration: none;
}

.ert-application-tile:hover {
    background: var(--primary);
    color: var(--white);
}

.ert-application-tile:hover i {
    background: var(--accent);
}

.ert-company {
    background: var(--white);
}

.ert-company-grid {
    align-items: center;
    display: grid;
    gap: 48px;
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.ert-company-media img {
    height: 480px;
}

.ert-company-copy p {
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-top: 22px;
}

.ert-stat-row {
    display: grid;
    gap: 16px;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 32px;
}

.ert-stat-row div {
    background: var(--gray-light);
    border-left: 4px solid var(--accent);
    padding: 18px;
}

.ert-stat-row strong {
    color: var(--primary);
    display: block;
    font-size: 2rem;
}

.ert-stat-row span {
    color: var(--text-light);
    font-size: 0.82rem;
    font-weight: 800;
}

.ert-clients {
    background: #F7FAFC;
}

.ert-client-logo-grid {
    align-items: center;
    display: grid;
    gap: 34px 48px;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
}

.ert-client-logo-tile {
    align-items: center;
    display: flex;
    justify-content: center;
    min-height: 150px;
    padding: 8px;
}

.ert-client-logo-tile:hover {
    transform: translateY(-3px);
}

.ert-client-logo-tile img {
    border-radius: 18px;
    display: block;
    max-height: 132px;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.2s ease;
}

.ert-client-logo-tile:hover img {
    transform: scale(1.03);
}

.ert-contact-strip {
    background: var(--primary);
    color: var(--white);
    padding: 58px 0;
    position: relative;
    overflow: hidden;
}

.ert-contact-strip.has-section-image {
    background-image: var(--section-image);
    background-position: center;
    background-size: cover;
}

.ert-contact-strip .container {
    align-items: center;
    display: flex;
    gap: 24px;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.ert-contact-strip h3 {
    color: var(--white);
    max-width: 820px;
}

.ert-contact-strip .ert-kicker {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: #FFFFFF;
}

.ert-footer {
    background: #071B34;
}

.ert-empty-state {
    align-items: center;
    background: rgba(255, 255, 255, 0.78);
    border: 1px dashed rgba(15, 58, 125, 0.24);
    border-radius: 8px;
    color: var(--text-light);
    display: flex;
    font-weight: 800;
    justify-content: center;
    min-height: 120px;
    padding: 24px;
    text-align: center;
    width: 100%;
}

.ert-company-media .ert-empty-state,
.ert-footer .ert-empty-state {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 980px) {
    .ert-hero-inner,
    .ert-intro-grid,
    .ert-company-grid {
        grid-template-columns: 1fr;
    }

    .ert-machine-grid,
    .ert-product-grid,
    .ert-news-grid {
        grid-template-columns: repeat(var(--cards-per-row-tablet, 2), minmax(0, 1fr));
        --card-body-scale: 1;
        --card-heading-scale: 1;
        --card-icon-scale: 1;
        --card-padding-scale: 1;
    }

    .ert-application-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .front-nav-menu li a {
        min-height: auto;
    }

    .ert-intro-facts {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .ert-hero {
        min-height: auto;
    }

    .ert-hero-inner {
        min-height: auto;
        padding-bottom: 36px;
        padding-top: 60px;
    }

    .ert-machine-grid,
    .ert-product-grid,
    .ert-news-grid,
    .ert-application-grid,
    .ert-stat-row {
        grid-template-columns: repeat(var(--cards-per-row-mobile, 1), minmax(0, 1fr));
        --card-body-scale: 1;
        --card-heading-scale: 1;
        --card-icon-scale: 1;
        --card-padding-scale: 1;
    }

    .ert-intro {
        padding: 54px 0;
    }

    .ert-intro-copy {
        gap: 22px;
        padding: 24px;
    }

    .ert-intro-facts {
        gap: 10px;
        grid-template-columns: 1fr;
    }

    .ert-intro-facts div {
        align-items: center;
        display: flex;
        gap: 14px;
        justify-content: space-between;
        padding: 14px 16px;
    }

    .ert-intro-facts strong {
        font-size: 1.2rem;
        margin-bottom: 0;
    }

    .ert-intro-facts span {
        font-size: 0.76rem;
        text-align: right;
    }

    .ert-section-heading.split,
    .ert-contact-strip .container {
        align-items: start;
        flex-direction: column;
    }
}

