/* modern-2026.css */

:root {
    --primary-red: #D32F2F; /* Deep, professional red */
    --hover-red: #B71C1C;
    --text-dark: #1F2937;
    --text-light: #6B7280;
    --bg-light: #F9FAFB;
    --white: #FFFFFF;
    --glass-bg: rgba(255, 255, 255, 0.95);
}

body {
    font-family: 'Outfit', sans-serif !important;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
}

/* ==========================================================================
   MODERN 2026 HEADER (NEW)
   ========================================================================== */
#modern-header {
    position: sticky;
    top: 0;
    z-index: 9999;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
}

#modern-header.is-sticky {
    box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.1);
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: padding 0.3s ease;
}

#modern-header.is-sticky .header-container {
    padding: 8px 20px;
}

.brand-logo img {
    height: 55px;
    width: auto;
    transition: height 0.3s ease;
}

#modern-header.is-sticky .brand-logo img {
    height: 45px;
}

.primary-nav {
    display: block;
}

.nav-list {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 30px;
}

.nav-list > li {
    position: relative;
}

.nav-list > li > a {
    color: var(--text-dark);
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 15px;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
    padding: 10px 0;
    display: flex;
    align-items: center;
    transition: color 0.2s ease;
}

.nav-list > li > a:hover {
    color: var(--primary-red);
}

/* Dropdown Caret Icon */
.nav-list > li.has-dropdown > a::after {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-left: 8px;
    margin-bottom: 2px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg);
    transition: transform 0.3s ease;
}

.nav-list > li.has-dropdown:hover > a::after {
    transform: rotate(-135deg);
}

/* Premium Dropdown Menu */
.nav-list > li.has-dropdown > ul.dropdown {
    background: #ffffff;
    box-shadow: 0 12px 30px -10px rgba(0, 0, 0, 0.15), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: 12px;
    padding: 8px;
    position: absolute;
    top: calc(100% + 15px);
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Dropdown Arrow Indicator */
.nav-list > li.has-dropdown > ul.dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 12px;
    height: 12px;
    background: #fff;
    border-left: 1px solid rgba(0, 0, 0, 0.04);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.nav-list > li.has-dropdown:hover > ul.dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    top: 100%;
}

.nav-list > li.has-dropdown > ul.dropdown > li {
    list-style: none;
}

.nav-list > li.has-dropdown > ul.dropdown > li > a {
    color: #4B5563;
    padding: 10px 16px;
    font-size: 15px;
    font-weight: 500;
    font-family: 'Outfit', sans-serif;
    display: block;
    border-radius: 8px;
    text-transform: none;
    text-decoration: none;
    transition: all 0.2s ease;
}

.nav-list > li.has-dropdown > ul.dropdown > li > a:hover {
    color: var(--primary-red);
    background-color: #FEF2F2;
}

/* Mobile Menu Toggle (Hamburger) */
.mobile-menu-toggle {
    display: none;
    background: transparent;
    border: none;
    cursor: pointer;
    width: 30px;
    height: 24px;
    position: relative;
    padding: 0;
    z-index: 10000;
}

.mobile-menu-toggle span {
    display: block;
    position: absolute;
    height: 2px;
    width: 100%;
    background: var(--text-dark);
    border-radius: 2px;
    opacity: 1;
    left: 0;
    transition: .25s ease-in-out;
}

.mobile-menu-toggle span:nth-child(1) { top: 0px; }
.mobile-menu-toggle span:nth-child(2) { top: 11px; }
.mobile-menu-toggle span:nth-child(3) { top: 22px; }

.mobile-menu-toggle.is-active span:nth-child(1) {
    top: 11px;
    transform: rotate(135deg);
}
.mobile-menu-toggle.is-active span:nth-child(2) {
    opacity: 0;
    left: -20px;
}
.mobile-menu-toggle.is-active span:nth-child(3) {
    top: 11px;
    transform: rotate(-135deg);
}

/* Mobile Responsiveness */
@media (max-width: 991px) {
    .mobile-menu-toggle {
        display: block;
    }

    .primary-nav {
        position: fixed;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100vh;
        background: #ffffff;
        padding: 100px 30px 40px;
        transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        z-index: 9998;
    }

    .primary-nav.is-open {
        left: 0;
    }

    .nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 0;
    }

    .nav-list > li {
        width: 100%;
        border-bottom: 1px solid #f3f4f6;
    }

    .nav-list > li > a {
        padding: 18px 0;
        font-size: 18px;
        justify-content: space-between;
    }

    /* Mobile Dropdown */
    .nav-list > li.has-dropdown > ul.dropdown {
        position: static;
        box-shadow: none;
        border: none;
        padding: 0 0 15px 15px;
        min-width: 100%;
        visibility: visible;
        opacity: 1;
        transform: none;
        display: none; /* Hidden by default on mobile */
    }

    .nav-list > li.has-dropdown > ul.dropdown::before {
        display: none;
    }

    .nav-list > li.has-dropdown.is-active-dropdown > ul.dropdown {
        display: flex;
    }

    .nav-list > li.has-dropdown:hover > ul.dropdown {
        display: none;
    }
    
    .nav-list > li.has-dropdown.is-active-dropdown:hover > ul.dropdown {
        display: flex;
    }

    body.menu-open-no-scroll {
        overflow: hidden;
    }
}
/* ========================================================================== */

/* Buttons */
.btn {
    font-family: 'Outfit', sans-serif !important;
    background-color: var(--primary-red) !important;
    color: var(--white) !important;
    border-radius: 6px !important;
    padding: 12px 24px !important;
    font-weight: 600 !important;
    letter-spacing: 0.5px;
    border: none !important;
    box-shadow: 0 4px 6px -1px rgba(211, 47, 47, 0.3) !important;
    transition: all 0.3s ease !important;
}

.btn:hover {
    background-color: var(--hover-red) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 12px -2px rgba(211, 47, 47, 0.4) !important;
}

/* Footer Modernization */
#footWrapper {
    background-color: #111827 !important;
    color: #D1D5DB !important;
    border-top: 4px solid var(--primary-red);
}

.footer-top {
    padding: 60px 0 !important;
}

.block-head {
    font-family: 'Outfit', sans-serif !important;
    font-weight: 600 !important;
    color: var(--text-dark);
    margin-bottom: 20px;
}

#footWrapper .block-head {
    color: var(--white) !important;
}

.footer-contact span, .footer-menu li a {
    font-family: 'Outfit', sans-serif !important;
    color: #9CA3AF !important;
    transition: color 0.3s ease !important;
}

.footer-menu li a:hover {
    color: var(--white) !important;
}

/* Other general elements */
.page-title {
    background: linear-gradient(135deg, var(--primary-red) 0%, #7F1D1D 100%) !important;
    color: white !important;
    padding: 60px 0 !important;
    text-align: center;
}

.page-title h1 {
    color: white !important;
    font-family: 'Outfit', sans-serif !important;
    font-size: 42px !important;
    font-weight: 700 !important;
    margin-bottom: 15px !important;
}

.breadcrumbs {
    background: transparent !important;
    margin-top: 10px;
    display: inline-block !important;
    float: none !important;
    padding: 0 !important;
}

.breadcrumbs.main-bg {
    background: transparent !important;
}

.breadcrumbs a, .breadcrumbs span { color: rgba(255, 255, 255, 0.8) !important; text-decoration: none !important; margin: 0 5px; }

/* ==========================================================================
   MODERN HOMEPAGE SECTIONS (NEW 2026)
   ========================================================================== */

/* Hero Slider Enhancements */
.modern-hero-slider .slider-content {
    background: transparent !important;
    text-shadow: 0 4px 15px rgba(0,0,0,0.5);
}
.modern-hero-slider .slider-content h1 {
    font-size: 56px !important;
    font-weight: 800 !important;
    margin-bottom: 20px !important;
    letter-spacing: -1px;
}
.modern-hero-slider .slider-content p {
    font-size: 20px !important;
    font-weight: 400 !important;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto 30px !important;
}

/* Feature Cards (Neden Biz) */
.features-section {
    padding: 80px 0;
    background: #ffffff;
    margin-top: -60px; /* Overlap slider slightly */
    position: relative;
    z-index: 10;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 0 20px;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.05);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.03);
    display: flex;
    flex-direction: column;
    align-items: center;
}
.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 45px rgba(211,47,47,0.1);
    border-color: rgba(211,47,47,0.1);
}
.feature-icon {
    width: 60px;
    height: 60px;
    background: #FEF2F2;
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    transition: all 0.3s ease;
}
.feature-card:hover .feature-icon {
    background: var(--primary-red);
    color: #ffffff;
}
.feature-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
    margin-bottom: 10px;
}
.feature-desc {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
}

/* Split About Section */
.split-about {
    padding: 100px 0;
    background: var(--bg-light);
}
.split-about-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.split-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.split-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transform: scale(1.05);
    transition: transform 0.8s ease;
}
.split-image-wrapper:hover img {
    transform: scale(1);
}
.split-content h4 {
    color: var(--primary-red);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
    font-size: 14px;
}
.split-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 25px;
    line-height: 1.2;
}
.split-content p {
    color: var(--text-light);
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 30px;
}
.split-content .btn {
    padding: 14px 30px !important;
    font-size: 16px !important;
}

/* Industries Section */
.industries-section {
    padding: 100px 0;
    background: #ffffff;
}
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
}
.section-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}
.section-header p {
    color: var(--text-light);
    font-size: 16px;
}
.industries-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.industry-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 400px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
.industry-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.industry-card:hover .industry-bg {
    transform: scale(1.1);
}
.industry-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.2) 50%, rgba(0,0,0,0) 100%);
}
.industry-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 40px 30px;
    z-index: 2;
    transform: translateY(20px);
    transition: transform 0.4s ease;
}
.industry-card:hover .industry-content {
    transform: translateY(0);
}
.industry-content h3 {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
}
.industry-content p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    opacity: 0;
    transition: opacity 0.4s ease;
    transition-delay: 0.1s;
    margin: 0;
}
.industry-card:hover .industry-content p {
    opacity: 1;
}

/* CTA Banner */
.cta-banner {
    background: linear-gradient(135deg, #111827 0%, #1F2937 100%);
    padding: 80px 20px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: url('data:image/svg+xml;utf8,<svg opacity="0.03" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" stroke="%23ffffff" stroke-width="2" fill="none"/></svg>') repeat;
    background-size: 200px;
    z-index: 1;
}
.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}
.cta-content h2 {
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    font-size: 40px;
    font-weight: 800;
    margin-bottom: 20px;
}
.cta-content p {
    color: rgba(255,255,255,0.7);
    font-size: 18px;
    margin-bottom: 40px;
}
.cta-content .btn-white {
    background: #ffffff !important;
    color: var(--text-dark) !important;
    box-shadow: 0 10px 20px rgba(255,255,255,0.1) !important;
}
.cta-content .btn-white:hover {
    background: var(--bg-light) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 25px rgba(255,255,255,0.2) !important;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .split-about-container { grid-template-columns: 1fr; gap: 40px; }
    .industries-grid { grid-template-columns: repeat(2, 1fr); }
    .modern-hero-slider .slider-content h1 { font-size: 40px !important; }
}
@media (max-width: 768px) {
    .features-grid { grid-template-columns: 1fr; }
    .industries-grid { grid-template-columns: 1fr; }
    .features-section { margin-top: 0; padding: 50px 0; }
}


/* ==========================================================================
   ABOUT PAGE SECTIONS (NEW 2026)
   ========================================================================== */
.about-page-wrapper {
    background-color: var(--bg-light);
    padding: 60px 0;
}

.about-intro-section {
    max-width: 900px;
    margin: 0 auto 60px;
    text-align: center;
    padding: 0 20px;
}

.about-intro-section p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Vision & Mission Cards */
.vision-mission-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.vm-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 50px 40px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.vm-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px rgba(211,47,47,0.08);
}

.vm-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 6px;
    background: linear-gradient(90deg, var(--primary-red), #7F1D1D);
}

.vm-icon {
    font-size: 40px;
    color: var(--primary-red);
    margin-bottom: 25px;
}

.vm-card h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 28px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.vm-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 15px;
}

/* Core Values (Misyon alt başlıkları) */
.core-values-section {
    max-width: 1200px;
    margin: 0 auto 80px;
    padding: 0 20px;
}

.core-values-header {
    text-align: center;
    margin-bottom: 50px;
}

.core-values-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
}

.core-values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-item {
    display: flex;
    align-items: flex-start;
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
}

.value-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    background: #FEF2F2;
    color: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    margin-right: 20px;
}

.value-content h4 {
    font-family: 'Outfit', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.value-content p {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Services / Products Grid */
.services-wrapper {
    background: #111827;
    padding: 80px 0;
    color: #ffffff;
}

.services-header {
    text-align: center;
    margin-bottom: 50px;
}

.services-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: #ffffff;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-box {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    transition: all 0.3s ease;
}

.service-box:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: rgba(211, 47, 47, 0.5);
}

.service-box h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
}

.service-box h3 i {
    color: var(--primary-red);
    font-size: 24px;
}

.service-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-list li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    color: #D1D5DB;
    font-size: 15px;
}

.service-list li::before {
    content: '\f00c';
    font-family: 'FontAwesome';
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-red);
    font-size: 14px;
}

/* Responsive */
@media (max-width: 991px) {
    .vision-mission-grid { grid-template-columns: 1fr; }
    .core-values-grid { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .services-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   CERTIFICATES PAGE (NEW 2026)
   ========================================================================== */
.certificates-page-wrapper {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.certificates-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.certificates-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.certificates-header p {
    color: var(--text-light);
    font-size: 16px;
}

.cert-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.cert-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.cert-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 45px rgba(211,47,47,0.1);
    border-color: rgba(211,47,47,0.1);
}

.cert-image-wrapper {
    width: 100%;
    aspect-ratio: 1 / 1.4;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
    background: #f8f9fa;
    position: relative;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cert-image-wrapper img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.5s ease;
}

.cert-card:hover .cert-image-wrapper img {
    transform: scale(1.03);
}

.cert-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(255,255,255,0.9);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
    gap: 10px;
}

.cert-card:hover .cert-overlay {
    opacity: 1;
}

.cert-btn {
    background: var(--primary-red);
    color: #fff !important;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transform: translateY(20px);
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 5px 15px rgba(211,47,47,0.3);
}

.cert-card:hover .cert-btn {
    transform: translateY(0);
}

.cert-btn:hover {
    background: var(--hover-red);
    transform: translateY(-2px) scale(1.05) !important;
}

.cert-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 16px;
    color: var(--text-dark);
    line-height: 1.4;
    margin: 0;
}

/* ==========================================================================
   PARTNERS PAGE (NEW 2026)
   ========================================================================== */
.partners-page-wrapper {
    background-color: var(--white);
    padding: 80px 0;
}

.partners-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.partners-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 36px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.partners-header p {
    color: var(--text-light);
    font-size: 16px;
}

.partners-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.partner-card {
    background: #ffffff;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
}

.partner-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(211,47,47,0.08);
    border-color: rgba(211,47,47,0.1);
}

.partner-image-wrapper {
    width: 100%;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.partner-image-wrapper img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    transition: transform 0.4s ease;
    filter: grayscale(100%) opacity(0.7);
}

.partner-card:hover .partner-image-wrapper img {
    transform: scale(1.1);
    filter: grayscale(0%) opacity(1);
}

.partner-title {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    color: var(--text-dark);
    margin: 0;
    transition: color 0.3s ease;
}

.partner-card:hover .partner-title {
    color: var(--primary-red);
}

/* ==========================================================================
   VIDEO GALLERY & MODAL (NEW 2026)
   ========================================================================== */
.video-gallery-wrapper {
    background-color: var(--bg-light);
    padding: 80px 0;
}

.video-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.video-header h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 32px;
    font-weight: 800;
    color: var(--text-dark);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.video-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.06);
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0,0,0,0.02);
}

.video-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(211,47,47,0.15);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #000;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
    transition: transform 0.5s ease, opacity 0.3s ease;
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
    opacity: 0.6;
}

.play-btn-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(211, 47, 47, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 24px;
    padding-left: 5px; /* Optically center the play icon */
    box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.5);
    transition: all 0.3s ease;
}

.video-card:hover .play-btn-overlay {
    box-shadow: 0 0 0 15px rgba(211, 47, 47, 0.2);
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 20px;
}

.video-info h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Modern Video Modal */
.modern-video-modal {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.modern-video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modern-video-content {
    width: 90%;
    max-width: 1000px;
    aspect-ratio: 16 / 9;
    position: relative;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modern-video-modal.active .modern-video-content {
    transform: scale(1);
}

.modern-video-content iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.close-video-modal {
    position: absolute;
    top: -40px;
    right: 0;
    color: #fff;
    font-size: 30px;
    cursor: pointer;
    transition: color 0.3s ease;
}

.close-video-modal:hover {
    color: var(--primary-red);
}

@media (max-width: 768px) {
    .close-video-modal {
        top: -35px;
        right: 10px;
    }
}

/* ==========================================================================
   CONTACT PAGE (NEW 2026)
   ========================================================================== */
.contact-page-wrapper {
    padding: 80px 0;
    background-color: var(--white);
}

.contact-layout {
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin-bottom: 60px;
}

.contact-form-col {
    flex: 1 1 500px;
}

.locations-col {
    flex: 1 1 400px;
}

/* Modern Form */
.modern-contact-form {
    background: #ffffff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.03);
}

.modern-contact-form h3 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 28px;
    margin-bottom: 30px;
    color: var(--text-dark);
}

.form-group {
    margin-bottom: 25px;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: var(--text-light);
    font-size: 14px;
}

.form-group input, 
.form-group textarea {
    width: 100%;
    padding: 15px 20px;
    border: 1px solid #e0e0e0;
    border-radius: 10px;
    background: #fafafa;
    font-family: inherit;
    font-size: 15px;
    color: var(--text-dark);
    transition: all 0.3s ease;
}

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

.form-group input:focus, 
.form-group textarea:focus {
    outline: none;
    background: #ffffff;
    border-color: rgba(211, 47, 47, 0.4);
    box-shadow: 0 0 0 4px rgba(211, 47, 47, 0.05);
}

.modern-btn {
    background: var(--primary-red);
    color: #fff;
    border: none;
    padding: 15px 35px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.modern-btn:hover {
    background: #b71c1c;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(211,47,47,0.2);
}

/* Location Cards */
.location-cards-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.location-card {
    background: #ffffff;
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.05);
    display: flex;
    gap: 20px;
    transition: all 0.3s ease;
}

.location-card:hover {
    transform: translateX(5px);
    border-color: rgba(211,47,47,0.2);
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.loc-icon {
    width: 50px;
    height: 50px;
    background: rgba(211,47,47,0.05);
    color: var(--primary-red);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.loc-details h4 {
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
    font-size: 18px;
    margin: 0 0 10px 0;
    color: var(--text-dark);
}

.loc-details p {
    margin: 0 0 8px 0;
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.loc-details p i {
    color: var(--primary-red);
    margin-top: 4px;
}

/* Modern Map */
.modern-map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.modern-map-wrapper {
    width: 100%;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    position: relative;
    height: 450px;
}

.modern-map-wrapper iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: none;
}

/* ==========================================================================
   DARK PREMIUM FOOTER (NEW 2026)
   ========================================================================== */
.modern-footer {
    background-color: #080a11;
    color: #e0e5ec;
    padding-top: 80px;
    font-family: 'Outfit', sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-top-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.footer-brand {
    flex: 1 1 250px;
}

.footer-brand img {
    max-width: 180px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: #8c98a4;
    font-size: 14px;
    line-height: 1.8;
}

.footer-widget {
    flex: 1 1 220px;
}

.footer-widget h4 {
    color: #ffffff;
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-widget h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-red);
}

.footer-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-widget ul li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    color: #8c98a4;
    font-size: 14px;
    line-height: 1.6;
}

.footer-widget ul li i {
    color: var(--primary-red);
    margin-top: 4px;
    font-size: 16px;
}

.footer-widget ul li a {
    color: #8c98a4;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-widget ul li a:hover {
    color: #ffffff;
}

.footer-bottom-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 25px 20px;
}

.footer-copyright {
    color: #6c757d;
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 15px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.05);
    color: #ffffff;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-social a:hover {
    background: var(--primary-red);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(211, 47, 47, 0.3);
}

@media (max-width: 768px) {
    .footer-bottom-row {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}
/* Dynamic Search Bar */
.search-container { position: relative; display: flex; align-items: center; }
.search-icon { font-size: 18px; color: var(--text-dark); cursor: pointer; transition: 0.3s; z-index: 2; padding: 10px; }
.search-icon:hover { color: var(--primary-red); }
.search-input { width: 0; opacity: 0; border: none; border-bottom: 2px solid var(--primary-red); background: transparent; padding: 5px 30px 5px 5px; font-family: 'Outfit', sans-serif; font-size: 14px; color: var(--text-dark); transition: all 0.4s ease; position: relative; pointer-events: none; margin-right: -30px; z-index: 1; }
.search-input:focus { outline: none; }
.search-container.active .search-input { width: 220px; opacity: 1; pointer-events: auto; padding-right: 30px; }
.search-results { position: absolute; top: 100%; right: 0; width: 280px; background: var(--white); box-shadow: 0 10px 30px rgba(0,0,0,0.15); border-radius: 8px; margin-top: 15px; opacity: 0; visibility: hidden; transition: 0.3s; z-index: 1000; max-height: 400px; overflow-y: auto; border: 1px solid #eee; }
.search-results.active { opacity: 1; visibility: visible; }
.search-result-item { padding: 12px 15px; border-bottom: 1px solid #eee; display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--text-dark); transition: 0.2s; }
.search-result-item:last-child { border-bottom: none; }
.search-result-item:hover { background: #f9f9f9; color: var(--primary-red); }
.search-result-item img { width: 40px; height: 40px; object-fit: cover; border-radius: 4px; border: 1px solid #ddd; }
.search-result-title { font-size: 14px; font-weight: 500; line-height: 1.2; margin-bottom: 3px; }
.search-result-type { font-size: 11px; color: #8c98a4; text-transform: uppercase; letter-spacing: 0.5px; }

@media (max-width: 991px) {
    .search-container { position: absolute; right: 60px; top: 15px; }
    .search-container.active .search-input { width: 180px; background: #fff; }
}

/* ==========================================================================
   NEW HERO SECTION WITH HALF GLASS (NEW 2026)
   ========================================================================== */

/* The Hero Section Container */
.modern-hero-glass {
    position: relative;
    width: 100%;
    min-height: 90vh;
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #050505;
    display: flex;
    align-items: center;
}

/* The Full Glass Pane */
.modern-hero-glass .glass-pane {
    width: 100%;
    min-height: 90vh;
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.7) 0%, rgba(15, 23, 42, 0.4) 100%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    color: #f1f5f9;
}

.modern-hero-glass .glass-pane h2,
.modern-hero-glass .glass-pane p,
.modern-hero-glass .glass-pane h4 {
    color: #f1f5f9 !important;
}

.modern-hero-glass .glass-pane .logo-img {
    max-width: 250px;
    margin-bottom: 30px;
}

.modern-hero-glass .glass-pane h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 46px;
    font-weight: 800;
    margin-bottom: 25px;
    line-height: 1.2;
    max-width: 800px;
}

.modern-hero-glass .glass-pane p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: rgba(241, 245, 249, 0.9) !important;
    max-width: 700px;
}

.modern-hero-glass .glass-pane .btn {
    margin-top: 15px;
}
/* Mobile Adjustments */
@media (max-width: 991px) {
    .modern-hero-glass .glass-pane {
        width: 100%;
        backdrop-filter: blur(10px);
        border-right: none;
        padding: 40px 30px;
    }
}


/* ==========================================================================
   HOMEPAGE FULL BACKGROUND & GLASS WRAPPER (NEW 2026)
   ========================================================================== */
body.site-full-bg {
    background-image: url('../images/hero-bg.png');
    background-size: cover;
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-color: #050505;
}

body.site-full-bg .pageWrapper {
    background: transparent !important;
}

body.site-full-bg #contentWrapper, body.site-full-bg .main-content {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.85) 0%, rgba(15, 23, 42, 0.45) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding-bottom: 50px;
}

/* Make inner sections transparent so the wrapper's glass is visible */
body.site-full-bg .industries-section,
body.site-full-bg .features-section,
body.site-full-bg .modern-hero-glass,
body.site-full-bg .modern-hero-glass .glass-pane {
    background: transparent !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
    border: none !important;
}

/* Fix text colors globally inside the homepage full background */
body.site-full-bg #contentWrapper h2, body.site-full-bg .main-content h2,
body.site-full-bg #contentWrapper h3, body.site-full-bg .main-content h3,
body.site-full-bg #contentWrapper p, body.site-full-bg .main-content p,
body.site-full-bg .section-header h2,
body.site-full-bg .section-header p {
    color: #f1f5f9 !important;
}

/* Feature cards */
body.site-full-bg .feature-card {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
}
body.site-full-bg .feature-card:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(211,47,47,0.4) !important;
}
body.site-full-bg .feature-icon {
    background: rgba(211,47,47,0.1) !important;
    color: #ff4444 !important;
}
body.site-full-bg .cta-banner {
    background: rgba(0,0,0,0.4) !important;
    border: 1px solid rgba(255,255,255,0.1);
}

/* ==========================================================================
   GLOBAL GLASSMORPHISM CARDS (NEW 2026)
   ========================================================================== */
/* Page Title Banner - Dark Frosted Glass */
body.site-full-bg .page-title,
body.site-full-bg .page-header {
    background: rgba(15, 23, 42, 0.6) !important;
    background-image: none !important;
    backdrop-filter: blur(12px) !important;
    -webkit-backdrop-filter: blur(12px) !important;
    border-bottom: none !important;
    box-shadow: none !important;
    padding: 60px 0 30px 0 !important;
}

body.site-full-bg .page-header-overlay {
    display: none !important;
}

/* Background resets for outer containers in subpages */
body.site-full-bg .about-page-wrapper,
body.site-full-bg .services-wrapper,
body.site-full-bg .certificates-page-wrapper,
body.site-full-bg .contact-wrapper,
body.site-full-bg .main-content {
    background: transparent !important;
}

/* White cards -> Glass Cards */
body.site-full-bg .katalog-card,
body.site-full-bg .vm-card,
body.site-full-bg .value-item,
body.site-full-bg .cert-card,
body.site-full-bg .contact-card,
body.site-full-bg .product-card,
body.site-full-bg .service-box {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    backdrop-filter: blur(5px);
}

body.site-full-bg .katalog-card:hover,
body.site-full-bg .vm-card:hover,
body.site-full-bg .cert-card:hover,
body.site-full-bg .contact-card:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(211,47,47,0.4) !important;
}

/* Fix texts inside cards */
body.site-full-bg .katalog-title,
body.site-full-bg .vm-card h3,
body.site-full-bg .value-content h4,
body.site-full-bg .contact-card h3 {
    color: #f1f5f9 !important;
}

body.site-full-bg .katalog-desc,
body.site-full-bg .vm-card p,
body.site-full-bg .value-content p,
body.site-full-bg .contact-card p,
body.site-full-bg .about-intro-section p {
    color: rgba(241, 245, 249, 0.9) !important;
}

/* Make sure breadcrumbs are visible */
body.site-full-bg .breadcrumb,
body.site-full-bg .breadcrumb a {
    color: rgba(255,255,255,0.7) !important;
}
body.site-full-bg .breadcrumb a:hover {
    color: #fff !important;
}

/* ==========================================================================
   FORCE TRANSPARENT BACKGROUNDS EVERYWHERE (NEW 2026)
   ========================================================================== */
body.site-full-bg .split-about,
body.site-full-bg .about-page-wrapper,
body.site-full-bg .services-wrapper,
body.site-full-bg .certificates-page-wrapper,
body.site-full-bg .contact-wrapper,
body.site-full-bg .container,
body.site-full-bg .row,
body.site-full-bg section,
body.site-full-bg div[style*="background-color: var(--white)"],
body.site-full-bg div[style*="background-color: var(--bg-light)"],
body.site-full-bg .bg-white {
    background: transparent !important;
    background-color: transparent !important;
}

/* Ensure #contentWrapper spans full height to cover small pages */
body.site-full-bg #contentWrapper, body.site-full-bg .main-content {
    min-height: 100vh;
}




/* ==========================================================================
   GLOBAL DARK MODE COLOR OPTIMIZATIONS (NEW 2026)
   ========================================================================== */

/* 1. Header & Navigation (Dark Glass) */
body.site-full-bg #modern-header {
    background: rgba(15, 23, 42, 0.75) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

body.site-full-bg .nav-list > li > a {
    color: #f1f5f9 !important;
}

body.site-full-bg .nav-list > li > a:hover {
    color: var(--primary-red) !important;
}

body.site-full-bg .mobile-menu-toggle span {
    background: #f1f5f9 !important;
}

/* 2. Dropdown Menus */
body.site-full-bg .dropdown {
    background: rgba(15, 23, 42, 0.9) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border: 1px solid rgba(255,255,255,0.1) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5) !important;
}

body.site-full-bg .dropdown li a {
    color: #f1f5f9 !important;
    border-bottom: 1px solid rgba(255,255,255,0.05) !important;
}

body.site-full-bg .dropdown li a:hover {
    background: rgba(255,255,255,0.05) !important;
    color: var(--primary-red) !important;
    padding-left: 20px !important;
}

/* 3. Footer Integration */
body.site-full-bg .modern-footer {
    background: rgba(15, 23, 42, 0.6) !important;
    backdrop-filter: blur(15px) !important;
    -webkit-backdrop-filter: blur(15px) !important;
    border-top: 1px solid rgba(255,255,255,0.05) !important;
}

body.site-full-bg .footer-bottom-row {
    border-top: 1px solid rgba(255,255,255,0.1) !important;
}

body.site-full-bg .footer-widget h4,
body.site-full-bg .footer-widget ul li span,
body.site-full-bg .footer-brand p,
body.site-full-bg .footer-copyright {
    color: rgba(241, 245, 249, 0.8) !important;
}

body.site-full-bg .footer-widget ul li i {
    color: var(--primary-red) !important;
}

/* 4. Forms, Search & Inputs */
body.site-full-bg input,
body.site-full-bg textarea,
body.site-full-bg select,
body.site-full-bg .form-control,
body.site-full-bg .search-input {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    color: #f1f5f9 !important;
    backdrop-filter: blur(5px) !important;
}

body.site-full-bg input::placeholder,
body.site-full-bg textarea::placeholder,
body.site-full-bg .search-input::placeholder {
    color: rgba(255, 255, 255, 0.5) !important;
}

body.site-full-bg input:focus,
body.site-full-bg textarea:focus,
body.site-full-bg .search-input:focus {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: var(--primary-red) !important;
    outline: none !important;
    box-shadow: 0 0 10px rgba(211,47,47,0.3) !important;
}

/* Fix active search input container */
body.site-full-bg .search-container.active .search-input {
    background: rgba(255, 255, 255, 0.1) !important;
}

/* ==========================================================================
   MISSING CARDS DARK GLASS FIX (NEW 2026)
   ========================================================================== */

/* Add glass effect to missed card types */
body.site-full-bg .video-card,
body.site-full-bg .partner-card,
body.site-full-bg .location-card,
body.site-full-bg .modern-contact-form,
body.site-full-bg .prod-detail-container,
body.site-full-bg .prod-info,
body.site-full-bg .modern-map-wrapper {
    background: rgba(255, 255, 255, 0.05) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2) !important;
    backdrop-filter: blur(5px);
}

body.site-full-bg .video-card:hover,
body.site-full-bg .partner-card:hover,
body.site-full-bg .location-card:hover {
    background: rgba(255, 255, 255, 0.1) !important;
    border-color: rgba(211,47,47,0.4) !important;
}

/* Fix text colors for missed cards */
body.site-full-bg .video-info h3,
body.site-full-bg .video-title,
body.site-full-bg .partner-title,
body.site-full-bg .location-card h4,
body.site-full-bg .modern-contact-form h3,
body.site-full-bg .modern-contact-form label,
body.site-full-bg .prod-title {
    color: #f1f5f9 !important;
}

body.site-full-bg .video-info p,
body.site-full-bg .video-desc,
body.site-full-bg .location-card p,
body.site-full-bg .prod-desc {
    color: rgba(241, 245, 249, 0.9) !important;
}

/* ==========================================================================
   BRUTAL TRANSPARENCY FIX FOR ALL WRAPPERS (NEW 2026)
   ========================================================================== */
body.site-full-bg .contact-page-wrapper,
body.site-full-bg .video-gallery-wrapper,
body.site-full-bg .partners-page-wrapper,
body.site-full-bg .prod-detail-container,
body.site-full-bg .about-page-wrapper,
body.site-full-bg .services-wrapper,
body.site-full-bg .certificates-page-wrapper,
body.site-full-bg .contact-wrapper,
body.site-full-bg .modern-contact-form,
body.site-full-bg .location-card,
body.site-full-bg .partner-card,
body.site-full-bg .video-card,
body.site-full-bg .katalog-card,
body.site-full-bg .main-content {
    /* Only remove solid white/light backgrounds from wrappers that should be transparent */
}

/* Force pure transparency on ALL major structural wrappers */
body.site-full-bg .contact-page-wrapper,
body.site-full-bg .video-gallery-wrapper,
body.site-full-bg .partners-page-wrapper,
body.site-full-bg .about-page-wrapper,
body.site-full-bg .services-wrapper,
body.site-full-bg .certificates-page-wrapper,
body.site-full-bg .split-about {
    background: transparent !important;
    background-color: transparent !important;
}

/* And ensure the cards have a dark translucent background to stand out from the transparent wrappers */
body.site-full-bg .modern-contact-form,
body.site-full-bg .location-card {
    background: rgba(15, 23, 42, 0.5) !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px) !important;
}

/* ========================================================================== 
   HOMEPAGE CONTENT REFRESH - JULY 2026
   ========================================================================== */
.modern-hero-glass,
.modern-hero-glass .glass-pane {
    min-height: 78vh;
}

.modern-hero-glass .glass-pane {
    padding: 70px 20px;
}

.modern-hero-glass .hero-inner {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.35fr);
    gap: clamp(45px, 7vw, 100px);
    align-items: center;
    text-align: left;
}

.modern-hero-glass .hero-logo-column {
    display: flex;
    justify-content: center;
    padding-right: clamp(20px, 4vw, 60px);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.modern-hero-glass .glass-pane .hero-logo-column .logo-img {
    width: 100%;
    max-width: 330px;
    margin: 0;
    filter: drop-shadow(0 18px 35px rgba(0, 0, 0, 0.28));
}

.modern-hero-glass .hero-copy-column h2,
.modern-hero-glass .hero-copy-column p {
    max-width: 720px;
}

.modern-hero-glass .hero-copy-column h2 {
    font-size: clamp(36px, 4.2vw, 60px);
}

.modern-hero-glass .hero-copy-column p {
    font-size: 16px;
    line-height: 1.75;
}

.product-categories-section {
    padding: 110px 20px;
    position: relative;
}

.product-categories-layout {
    width: min(1180px, 100%);
    margin: 0 auto;
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(0, 1.35fr);
    gap: clamp(50px, 8vw, 110px);
    align-items: start;
}

.product-categories-intro {
    position: sticky;
    top: 130px;
    padding-top: 12px;
}

.section-kicker {
    display: inline-block;
    color: #ef5350;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2.5px;
    margin-bottom: 18px;
}

.product-categories-intro h2 {
    font: 800 clamp(38px, 4vw, 58px)/1.08 'Outfit', sans-serif;
    letter-spacing: -1.5px;
    margin: 0 0 24px;
}

.product-categories-intro p {
    font-size: 17px;
    line-height: 1.8;
    margin: 0 0 34px;
}

.product-category-list {
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.product-category-row {
    display: grid;
    grid-template-columns: 38px 112px minmax(0, 1fr) 28px;
    gap: 22px;
    align-items: center;
    padding: 18px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: #f8fafc;
    text-decoration: none;
    transition: background-color .25s ease, padding .25s ease;
}

.product-category-row:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.07);
    padding-left: 18px;
    padding-right: 18px;
}

.category-number {
    color: #ef5350;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
}

.product-category-row img {
    width: 112px;
    height: 76px;
    border-radius: 8px;
    object-fit: cover;
    background: #fff;
}

.category-copy {
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.category-copy strong {
    color: #fff;
    font-size: 19px;
    font-weight: 700;
    line-height: 1.25;
}

.category-copy small {
    color: rgba(241, 245, 249, 0.68);
    font-size: 13px;
    line-height: 1.45;
    margin-top: 6px;
}

.product-category-row > i {
    color: rgba(255, 255, 255, 0.5);
    transition: transform .25s ease, color .25s ease;
}

.product-category-row:hover > i {
    color: #ef5350;
    transform: translateX(5px);
}

.compact-sectors-section .industries-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.compact-sectors-section .industry-card {
    height: 260px;
    text-decoration: none;
}

.compact-sectors-section .industry-content {
    padding: 25px 22px;
    transform: none;
}

.compact-sectors-section .industry-content h3 {
    font-size: 20px;
    line-height: 1.2;
}

.compact-sectors-section .industry-content p {
    display: none;
}

.nav-list > li.has-dropdown > ul.dropdown {
    max-height: calc(100vh - 110px);
    overflow-y: auto;
}

@media (max-width: 991px) {
    .modern-hero-glass .hero-inner,
    .product-categories-layout {
        grid-template-columns: 1fr;
    }

    .modern-hero-glass .hero-inner {
        gap: 40px;
        text-align: center;
    }

    .modern-hero-glass .hero-logo-column {
        border-right: 0;
        padding: 0;
    }

    .modern-hero-glass .glass-pane .hero-logo-column .logo-img {
        max-width: 240px;
    }

    .modern-hero-glass .hero-copy-column h2,
    .modern-hero-glass .hero-copy-column p {
        margin-left: auto;
        margin-right: auto;
    }

    .product-categories-intro {
        position: static;
    }

    .compact-sectors-section .industries-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .product-categories-section {
        padding: 70px 16px;
    }

    .product-category-row {
        grid-template-columns: 28px 78px minmax(0, 1fr);
        gap: 12px;
        padding: 14px 0;
    }

    .product-category-row img {
        width: 78px;
        height: 62px;
    }

    .category-copy strong {
        font-size: 16px;
    }

    .category-copy small,
    .product-category-row > i {
        display: none;
    }

    .compact-sectors-section .industries-grid {
        grid-template-columns: 1fr;
    }

    .compact-sectors-section .industry-card {
        height: 220px;
    }
}

/* ==========================================================================
   LIGHT CORPORATE THEME - JULY 2026
   ========================================================================== */
html {
    scroll-behavior: smooth;
}

body.site-full-bg {
    color: #263342;
    background-color: #d7dde3;
    background-image:
        linear-gradient(rgba(214, 221, 227, 0.7), rgba(207, 216, 224, 0.74)),
        url('../images/hero-bg.png');
}

body.site-full-bg #contentWrapper,
body.site-full-bg .main-content {
    background: rgba(214, 222, 229, 0.48) !important;
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

body.site-full-bg #modern-header {
    background: rgba(255, 255, 255, 0.94) !important;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 8px 30px rgba(15, 23, 42, 0.07) !important;
}

body.site-full-bg .nav-list > li > a {
    color: #263342 !important;
}

body.site-full-bg .mobile-menu-toggle span {
    background: #263342 !important;
}

body.site-full-bg .dropdown,
body.site-full-bg .nav-list > li.has-dropdown > ul.dropdown {
    background: rgba(255, 255, 255, 0.98) !important;
    border-color: rgba(15, 23, 42, 0.08) !important;
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.13) !important;
}

body.site-full-bg .dropdown li a {
    color: #354252 !important;
    border-bottom-color: rgba(15, 23, 42, 0.06) !important;
}

body.site-full-bg .dropdown li a:hover {
    color: var(--primary-red) !important;
    background: #fff5f5 !important;
}

body.site-full-bg .modern-hero-glass .glass-pane {
    background: rgba(215, 223, 230, 0.4) !important;
    backdrop-filter: blur(4px) !important;
    -webkit-backdrop-filter: blur(4px) !important;
}

body.site-full-bg .modern-hero-glass .hero-logo-column {
    border-right-color: rgba(38, 51, 66, 0.16);
}

body.site-full-bg .modern-hero-glass .glass-pane h2,
body.site-full-bg .modern-hero-glass .glass-pane p {
    color: #1f2b38 !important;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.45);
}

body.site-full-bg #contentWrapper h2,
body.site-full-bg .main-content h2,
body.site-full-bg #contentWrapper h3,
body.site-full-bg .main-content h3,
body.site-full-bg #contentWrapper p,
body.site-full-bg .main-content p,
body.site-full-bg .section-header h2,
body.site-full-bg .section-header p {
    color: #263342 !important;
}

body.site-full-bg .product-categories-section,
body.site-full-bg .industries-section,
body.site-full-bg .features-section,
body.site-full-bg .about-page-wrapper,
body.site-full-bg .partners-page-wrapper,
body.site-full-bg .video-gallery-wrapper,
body.site-full-bg .contact-page-wrapper,
body.site-full-bg .certificates-page-wrapper {
    background: rgba(225, 231, 236, 0.52) !important;
}

body.site-full-bg .product-category-list {
    border-top-color: rgba(38, 51, 66, 0.14);
}

body.site-full-bg .product-category-row {
    color: #263342;
    border-bottom-color: rgba(38, 51, 66, 0.14);
}

body.site-full-bg .product-category-row:hover {
    color: #263342;
    background: rgba(211, 47, 47, 0.055);
}

body.site-full-bg .category-copy strong {
    color: #263342;
}

body.site-full-bg .category-copy small {
    color: #687584;
}

body.site-full-bg .product-category-row > i {
    color: #8993a0;
}

body.site-full-bg .feature-card,
body.site-full-bg .katalog-card,
body.site-full-bg .vm-card,
body.site-full-bg .value-item,
body.site-full-bg .cert-card,
body.site-full-bg .contact-card,
body.site-full-bg .product-card,
body.site-full-bg .service-box,
body.site-full-bg .video-card,
body.site-full-bg .partner-card,
body.site-full-bg .location-card,
body.site-full-bg .modern-contact-form,
body.site-full-bg .prod-detail-container,
body.site-full-bg .prod-info,
body.site-full-bg .modern-map-wrapper {
    background: rgba(242, 245, 248, 0.8) !important;
    border-color: rgba(38, 51, 66, 0.12) !important;
    box-shadow: 0 14px 35px rgba(38, 51, 66, 0.13) !important;
}

body.site-full-bg .feature-card:hover,
body.site-full-bg .katalog-card:hover,
body.site-full-bg .partner-card:hover,
body.site-full-bg .video-card:hover,
body.site-full-bg .location-card:hover {
    background: #fff !important;
    border-color: rgba(211, 47, 47, 0.22) !important;
}

body.site-full-bg .katalog-title,
body.site-full-bg .vm-card h3,
body.site-full-bg .value-content h4,
body.site-full-bg .contact-card h3,
body.site-full-bg .video-info h3,
body.site-full-bg .video-title,
body.site-full-bg .partner-title,
body.site-full-bg .location-card h4,
body.site-full-bg .modern-contact-form h3,
body.site-full-bg .modern-contact-form label,
body.site-full-bg .prod-title {
    color: #263342 !important;
}

body.site-full-bg .katalog-desc,
body.site-full-bg .vm-card p,
body.site-full-bg .value-content p,
body.site-full-bg .contact-card p,
body.site-full-bg .about-intro-section p,
body.site-full-bg .video-info p,
body.site-full-bg .video-desc,
body.site-full-bg .location-card p,
body.site-full-bg .prod-desc {
    color: #687584 !important;
}

body.site-full-bg input,
body.site-full-bg textarea,
body.site-full-bg select,
body.site-full-bg .form-control,
body.site-full-bg .search-input {
    background: rgba(255, 255, 255, 0.92) !important;
    border-color: rgba(38, 51, 66, 0.16) !important;
    color: #263342 !important;
}

body.site-full-bg input::placeholder,
body.site-full-bg textarea::placeholder,
body.site-full-bg .search-input::placeholder {
    color: #8993a0 !important;
}

body.site-full-bg .page-title,
body.site-full-bg .page-header {
    background: linear-gradient(135deg, rgba(226, 232, 238, 0.88), rgba(222, 207, 208, 0.86)) !important;
    border-bottom: 1px solid rgba(38, 51, 66, 0.08) !important;
}

body.site-full-bg .page-title h1,
body.site-full-bg .page-header h1 {
    color: #263342 !important;
}

body.site-full-bg .breadcrumbs,
body.site-full-bg .breadcrumbs a,
body.site-full-bg .breadcrumb,
body.site-full-bg .breadcrumb a {
    color: #687584 !important;
}

body.site-full-bg .compact-sectors-section .industry-content h3,
body.site-full-bg .industry-card .industry-content h3,
body.site-full-bg .cta-banner h2,
body.site-full-bg .cta-banner p {
    color: #fff !important;
}

body.site-full-bg .cta-banner {
    background: linear-gradient(135deg, #39495b, #263342) !important;
}

.split-about[id] {
    scroll-margin-top: 92px;
}

.split-about-container[style*="row-reverse"] .split-image-wrapper {
    order: 2;
}

.split-about-container[style*="row-reverse"] .split-content {
    order: 1;
}

.partner-overlay h4 {
    color: #263342;
    font: 700 20px/1.3 'Outfit', sans-serif;
    margin: 0 0 8px;
}

.partner-overlay p {
    color: #687584;
    font-size: 14px;
    line-height: 1.55;
    margin: 0;
}

.partner-overlay a {
    display: inline-block;
    color: var(--primary-red);
    font-size: 13px;
    font-weight: 600;
    margin-top: 12px;
}

.partner-name-placeholder {
    color: var(--primary-red);
    font: 800 25px/1.2 'Outfit', sans-serif;
    padding: 15px;
}

@media (max-width: 991px) {
    body.site-full-bg .primary-nav {
        background: #fff !important;
    }

    body.site-full-bg .modern-hero-glass .hero-logo-column {
        border-right: 0;
    }
}
