/*
Theme Name: EMT Electronics
Description: Custom theme for EMT Electronics website
Version: 1.1.0
Author: Obiziz Dijital İletişim
Text Domain: emt-electronics
*/

/* Önce Montserrat'ı çağırman lazım, yoksa browser kafasına göre bir şey açar */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

/* Tüm elementlere Montserrat uygula */
body, body *:not(.fa):not(.fas):not(.far):not(.fal):not(.fad):not(.fab):not(.elementor-icon):not(.ab-icon) {
  font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, sans-serif !important;
}

:root {
  --color-primary-600: #EC1C24; /* Örnek olarak mavi tonu, sitenin ana rengine göre değiştirilmeli */
  --color-primary-700: #EC1C24;
  --color-neutral-50: #fafafa;
  --color-neutral-100: #f5f5f5;
  --color-neutral-200: #e5e5e5;
  --color-neutral-300: #d4d4d4;
  --color-neutral-500: #737373;
  --color-neutral-600: #525252;
  --color-neutral-700: #404040;
  --color-neutral-900: #171717;
}

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* İkonları eski halleriyle bırak */
i, .fa, .fa-brands, .fa-duotone, .fa-light, .fa-regular, .fa-solid, .fa-thin, .fab, .fad, .fal, .far, .fas, .fat, svg, .elementor-icon, .ab-icon {
    font-family: inherit; /* veya unset */
}

img:not(.logo) {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

/* Custom Sections Styles */
.custom-section {
    padding: 80px 0;
    background: #fff;
}

.custom-section:nth-child(even) {
    background: #f8f9fa;
}

.custom-section-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-section-content {
    display: flex;
    align-items: center;
    gap: 60px;
    min-height: 500px;
}

/* Force correct positioning with !important */
.custom-section-content.left {
    flex-direction: row;
}

/* Remove order properties - flex-direction is enough */

.custom-section-image {
    flex: 1;
    height: 500px;
    overflow: hidden;
    border-radius: 20px;
}

.custom-section-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 20px;
}

.custom-section-text {
    flex: 1;
    padding: 40px 0;
}

.custom-section-text h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 30px;
    line-height: 1.2;
}

.custom-section-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: #4a4a4a;
    margin-bottom: 40px;
}

.custom-section-description p {
    margin-bottom: 20px;
}

.custom-section-description p:last-child {
    margin-bottom: 0;
}

.custom-section-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.custom-section-btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.custom-section-btn.btn-primary {
    background: #EC1C24;
    color: white;
    border-color: #EC1C24;
}

.custom-section-btn.btn-primary:hover {
    background: #d4141a;
    border-color: #d4141a;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 28, 36, 0.3);
}

.custom-section-btn.btn-secondary {
    background: transparent;
    color: #EC1C24;
    border-color: #EC1C24;
}

.custom-section-btn.btn-secondary:hover {
    background: #EC1C24;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 28, 36, 0.3);
}

/* Responsive Design */
@media (max-width: 850px) {
    .custom-section {
        padding: 60px 0;
    }
    
    .custom-section-content {
        flex-direction: column !important;
        gap: 40px;
        text-align: center;
    }
    
    .custom-section-image {
        height: 300px;
        flex: none;
    }
    
    .custom-section-text h2 {
        font-size: 2rem;
        margin-bottom: 20px;
    }
    
    .custom-section-description {
        font-size: 1rem;
        margin-bottom: 30px;
    }
    
    .custom-section-buttons {
        justify-content: center;
    }
    
    .custom-section-btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .custom-section-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .custom-section-btn {
        width: 100%;
        max-width: 280px;
    }
}

/* Product Page Common Styles */
.product-section {
    padding: 60px 20px;
    margin-top: 120px;
    background: #f5f5f5;
}

.product-container {
    display: flex;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.product-image img {
    max-width: 400px;
    height: auto;
    object-fit: contain;
}

.product-content {
    flex: 1;
}

.subtitle {
    font-size: 14px;
    color: #555;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 20px;
    color: #222;
    line-height: 1.3;
}

.product-box {
    background: #000;
    color: #fff;
    padding: 20px;
}

.product-box h2 {
    font-size: 24px;
    margin-bottom: 10px;
}

.product-box p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-group {
    display: flex;
    gap: 10px;
}

.product-box .btn {
    background: #fff;
    color: #000;
    padding: 10px 20px;
    text-decoration: none;
    font-weight: bold;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.evidence-drying-section .btn:hover {
    background: #000;
    color: #fff;
}

/* BWT-250 Specific Styles */
.bwt-250-section header {
    position: relative;
}

.bwt-250-tabs .hide {
    display: none;
}

.bwt-250-tabs .tab-content {
    padding: 25px;
}

.bwt-250-tabs #material-tabs {
    position: relative;
    display: block;
    padding: 0;
    border-bottom: 1px solid #e0e0e0;
}

.bwt-250-tabs #material-tabs>a {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding: 22px;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 600;
    color: #424f5a;
    text-align: center;
    outline: none;
}

.bwt-250-tabs #material-tabs>a.active {
    font-weight: 700;
    outline: none;
}

.bwt-250-tabs #material-tabs>a:not(.active):hover {
    background-color: inherit;
    color: #7c848a;
}

.bwt-250-tabs .yellow-bar {
    position: absolute;
    z-index: 10;
    bottom: 0;
    height: 3px;
    background: #458CFF;
    display: block;
    left: 0;
    transition: left .2s ease;
    -webkit-transition: left .2s ease;
}

.bwt-250-tabs #tab1-tab.active ~ span.yellow-bar {
    left: 0;
    width: 160px;
}

.bwt-250-tabs #tab2-tab.active ~ span.yellow-bar {
    left: 165px;
    width: 82px;
}

.bwt-250-tabs #tab3-tab.active ~ span.yellow-bar {
    left: 253px;
    width: 135px;
}

.bwt-250-tabs #tab4-tab.active ~ span.yellow-bar {
    left: 392px;
    width: 163px;
}

@media only screen and (max-width: 520px) {
    .bwt-250-tabs .nav-tabs#material-tabs>li>a {
        font-size: 11px;
    }
}

/* Evidence Drying Cabinets Specific Styles */
.evidence-features {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}

.evidence-features .section-container {
    text-align: center;
}

.evidence-features .section-title {
    font-size: 32px;
    font-weight: bold;
    color: #222;
    margin-bottom: 15px;
}

.evidence-features .title-underline {
    width: 80px;
    height: 4px;
    background: #EC1C24;
    margin: 0 auto 50px auto;
}

.evidence-features .features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 40px;
}

.evidence-features .feature-item {
    background: #fff;
    padding: 30px 35px;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    gap: 25px;
    min-width: 100%;
}

.evidence-features .feature-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    border-color: #EC1C24;
}

.evidence-features .feature-icon {
    font-size: 50px;
    color: #EC1C24;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 70px;
    height: 70px;
    flex-shrink: 0;
}

.evidence-features .feature-content {
    flex: 1;
    text-align: center;
}

.evidence-features .feature-title {
    font-size: 18px;
    font-weight: bold;
    color: #222;
    margin-bottom: 10px;
    line-height: 1.3;
}

.evidence-features .feature-subtitle {
    font-size: 15px;
    color: #666;
    line-height: 1.5;
    margin: 0;
}

.evidence-drying-section .product-cards-header {
    text-align: center;
    margin-bottom: 50px;
}

.evidence-drying-section .product-cards-title {
    font-size: 28px;
    font-weight: 700;
    color: #EC1C24;
    margin: 0;
    line-height: 1.3;
}

.evidence-drying-section .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.evidence-drying-section .product-card {
    background: #fff;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    height: 400px;
    display: flex;
    flex-direction: column;
}

.evidence-drying-section .product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.evidence-drying-section .product-card a {
    display: block;
    text-decoration: none;
    color: inherit;
    height: 100%;
    position: relative;
}

.evidence-drying-section .product-card img {
    width: 70%;
    height: 70%;
    object-fit: contain;
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
}

.evidence-drying-section .product-card .card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.4), transparent);
    z-index: 2;
    padding: 30px 20px 20px 20px;
    text-align: center;
}

.evidence-drying-section .product-card h3 {
    font-size: 20px;
    font-weight: bold;
    color: #fff;
    margin: 0 0 15px 0;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.evidence-drying-section .product-card .view-product-btn {
    display: inline-block;
    background: transparent;
    color: #fff;
    padding: 10px 20px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid #fff;
}

.evidence-drying-section .product-card .view-product-btn:hover {
    background: #fff;
    color: #EC1C24;
    border-color: #fff;
    transform: translateY(-2px);
}

/* Evidence Drying Responsive Design */
@media (max-width: 1024px) {
    .evidence-features .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 850px) {
    .evidence-features .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .evidence-features .feature-item {
        padding: 25px 20px;
        flex-direction: row;
        text-align: left;
        gap: 20px;
    }
    
    .evidence-features .feature-icon {
        font-size: 45px;
        min-width: 60px;
        height: 60px;
    }
    
    .evidence-features .feature-title {
        font-size: 20px;
    }
    
    .evidence-features .feature-subtitle {
        font-size: 14px;
    }
    
    .evidence-features .section-title {
        font-size: 28px;
    }
    
    .evidence-drying-section .product-cards-title {
        font-size: 24px;
    }
}

@media (max-width: 480px) {
    .evidence-features .features-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .evidence-features .feature-item {
        padding: 20px 15px;
        gap: 15px;
    }
    
    .evidence-features .feature-icon {
        font-size: 40px;
        min-width: 50px;
        height: 50px;
    }
    
    .evidence-features .feature-title {
        font-size: 18px;
    }
    
    .evidence-features .feature-subtitle {
        font-size: 13px;
    }
}

:root {
    --primary-color: #EC1C24;
    --primary-dark: #C41820;
    --primary-light: #FF4D5A;
    --secondary-color: #2C3E50;
    --text-dark: #2C3E50;
    --text-light: #7F8C8D;
    --text-white: #FFFFFF;
    --bg-light: #F8F9FA;
    --bg-white: #FFFFFF;
    --border-light: #E9ECEF;
    --shadow-light: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-medium: 0 4px 20px rgba(0, 0, 0, 0.15);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    margin-top: 44px;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}


/* Topbar Styles */
.topbar {
    border-bottom: 1px solid #e9ecef;
    padding: 8px 0;
    font-size: 13px;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 1000;
    background-color: #e7e7e7;
    width: 100%;
    transition: transform 0.3s ease;
}

.topbar.hidden {
    transform: translateY(-100%);
}

.topbar-container {
    margin: 0 auto;
    padding: 0 20px;
}

.topbar-content {
    display: flex;
    justify-content: end;
    align-items: center;
}

.topbar-info {
    display: flex;
    gap: 25px;
}

.topbar-item {
    color: #6c757d;
    display: flex;
    align-items: center;
    gap: 6px;
}

.topbar-item i {
    font-size: 12px;
}

.topbar-social {
    display: flex;
    gap: 8px;
}

.social-link {
    width: 28px;
    height: 28px;
    background-color: #ffffff;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 12px;
}

.social-link:hover {
    background-color: #007bff;
    color: white;
    border-color: #007bff;
    transform: translateY(-1px);
}

/* Mobile Responsive */
@media (max-width: 850px) {
    .topbar {
        display: none;
    }
}

@media (max-width: 576px) {
    .topbar-content {
        flex-direction: column;
        gap: 10px;
    }
    
    .topbar-info {
        gap: 15px;
        font-size: 12px;
    }
    
    .topbar {
        display: block;
        padding: 12px 0;
    }
}

/* Header ve Navigation */
.header {
    background: var(--bg-white);
    box-shadow: var(--shadow-light);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 999;
    transition: all 0.3s ease;
}

.header.hidden {
    transform: translateY(-100%);
}

.header.topbar-hidden {
    top: 0;
}

.navbar {
    padding: 1rem 0;
	background: #fff;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 0 20px;
    max-width: 1200px;
}

.nav-logo .logo {
    height: 90px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
	font-size: 18px;
    padding: 0.5rem 1rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dropdown-menu .nav-link
{
	font-size: 18px !important;
}

.nav-link:hover {
    background-color: transparent;
    color: var(--primary-color);
    transition: color 0.2s ease;
}

.dropdown-menu .nav-item:hover
{
	background-color: transparent !important;
}

.dropdown-menu .nav-item:hover > a {
    color: #fff !important;
    transition: padding-left 0.2s ease, color 0.2s ease;
}

.mega-menu .nav-item:hover > a {
    color: #000 !important;
    transition: padding-left 0.2s ease, color 0.2s ease;
}

.mega-menu .depth-2:hover > a,
.mega-menu .depth-3:hover > a {
    color: #fff !important;
}

/* Alt öğesindeyken üst öğe siyah kalacak, animasyon yok */
.dropdown-menu .nav-item:has(> ul > .nav-item:hover) > a,
.dropdown-menu .nav-item:has(> ul > .dropdown-submenu:hover) > a,
.dropdown-menu .nav-item:has(> ul:hover) > a {
    color: var(--text-dark) !important;
}

.dropdown-menu .nav-item:hover > a i,
.dropdown-submenu:hover > a i {
    color: #fff !important;
}

/* Alt öğesindeyken üst öğe ikonları siyah */
.dropdown-menu .nav-item:has(> ul > .nav-item:hover) > a i,
.dropdown-menu .nav-item:has(> ul > .dropdown-submenu:hover) > a i {
    color: var(--text-dark) !important;
}

.nav-link i {
    color: var(--primary-color);
    font-size: 18px;
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--bg-white);
    box-shadow: var(--shadow-medium);
    padding: 1rem 0;
    min-width: 360px !important; /* wider to accommodate long labels */
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-10px);
    transition: var(--transition);
    list-style: none;
    z-index: 1000;
}

.dropdown:hover .dropdown-menu,
.nav-item.active .dropdown-menu,
.nav-item.show .dropdown-menu {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-menu li a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 1.5rem;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    white-space: normal; /* allow wrapping of long labels */
    line-height: 1.3;   /* nicer multi-line spacing */
    min-height: auto;
    height: auto;
}

.dropdown-menu li a:hover {
    background-color: transparent;
    color: #fff;
}

/* Mega Menu Styles */
.nav-item.has-mega-menu {
    position: static !important;
}

.nav-item.has-mega-menu .dropdown-menu.mega-menu {
    position: absolute !important;
    left: 50% !important;
    transform: translateX(-50%) translateY(-10px) !important;
    width: 100% !important;
    max-width: 1200px !important;
    padding: 2rem !important;
    display: grid !important;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)) !important;
    gap: 2rem !important;
    margin-top: 0 !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
    transition: all 0.3s ease !important;
    z-index: 1000 !important;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15) !important;
    max-height: calc(100vh - 150px) !important;
    overflow-y: auto !important;
    overflow-x: hidden !important;
    /* Mega menü ile ana item arasındaki boşluğu kapat */
    margin-top: -5px !important;
    padding-top: calc(2rem + 5px) !important;
}

.nav-item.has-mega-menu.active .dropdown-menu.mega-menu {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    transform: translateX(-50%) translateY(0) !important;
}

/* Mega Menu Column Styling */
.mega-menu > .nav-item {
    display: block !important;
    margin-bottom: 1.5rem !important;
    break-inside: avoid !important;
    background: #f8f9fa !important;
    padding: 1rem !important;
    border-radius: 8px !important;
    transition: background 0.3s ease, box-shadow 0.3s ease !important;
    border-bottom: 2px solid #d1d5db !important;
    padding-bottom: 1.5rem !important;
    margin-bottom: 1.5rem !important;
}

.mega-menu > .nav-item:last-of-type,
.mega-menu > .nav-item:last-child {
    border-bottom: none !important;
    border-bottom-width: 0 !important;
    border-bottom-style: none !important;
    margin-bottom: 0 !important;
}

.mega-menu > .nav-item:hover {
    background: #f1f3f5 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08) !important;
    transform: none !important;
}

.mega-menu > .nav-item > .nav-link {
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    color: var(--text-dark) !important;
    padding: 0 0 0.75rem 0 !important;
    border-bottom: 2px solid var(--primary-color) !important;
    margin-bottom: 1rem !important;
    display: flex !important;
    align-items: flex-start !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    cursor: pointer !important;
    line-height: 1.4 !important;
    min-height: 4rem !important;
    height: auto !important;
}

.mega-menu > .nav-item > .nav-link:hover {
    background-color: transparent !important;
    color: var(--text-dark) !important;
    transform: none !important;
    transition: none !important;
}

/* Alt öğesindeyken üst öğe animasyonu yok */
.mega-menu > .nav-item:has(.dropdown-submenu:hover) > .nav-link,
.mega-menu > .nav-item:has(.nav-item:hover) > .nav-link,
.mega-menu > .nav-item:has(> ul:hover) > .nav-link {
    background-color: transparent !important;
    color: var(--text-dark) !important;
    padding-left: 0 !important;
    transform: none !important;
    transition: none !important;
}

/* Mega Menu - Tüm alt öğeler düz liste olarak gösterilir, dropdown yok */
.mega-menu .nav-item {
    position: static !important;
    display: block !important;
    margin-bottom: 0 !important;
}

/* Mega menüde tüm transform ve transition'ları kapat - EN YÜKSEK ÖNCELİK */
.mega-menu,
.mega-menu *,
.mega-menu *::before,
.mega-menu *::after {
    transform: none !important;
    translate: none !important;
    scale: none !important;
    rotate: none !important;
    transition: background-color 0.2s ease, color 0.2s ease, padding 0.2s ease, border-color 0.2s ease !important;
}

.mega-menu .nav-item,
.mega-menu .nav-link,
.mega-menu .dropdown-submenu,
.mega-menu .dropdown-submenu > .nav-link,
.mega-menu .dropdown-submenu > ul .nav-link,
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .nav-link {
    transform: none !important;
    translate: none !important;
    scale: none !important;
}

/* Mega Menu Level 2 - Ana başlık altındaki öğeler */
.mega-menu > .nav-item {
    margin-bottom: 1.5rem !important;
    break-inside: avoid !important;
}


.mega-menu > .nav-item > .nav-link:hover {
    background-color: transparent !important;
    color: var(--text-dark) !important;
}

/* Alt öğesindeyken üst öğe animasyonu yok */
.mega-menu > .nav-item:has(.dropdown-submenu:hover) > .nav-link,
.mega-menu > .nav-item:has(.nav-item:hover) > .nav-link,
.mega-menu > .nav-item:has(> ul:hover) > .nav-link {
    color: var(--text-dark) !important;
    padding-left: 0 !important;
    transform: none !important;
    transition: none !important;
}

/* Mega Menu içinde dropdown-submenu yok, sadece düz liste */
.mega-menu .dropdown-submenu {
    position: static !important;
    display: block !important;
    margin-bottom: 0rem !important;
}

.mega-menu .dropdown-submenu {
    margin-bottom: 0.75rem !important;
}

.mega-menu .dropdown-submenu > .nav-link {
    font-weight: 600 !important;
    font-size: 1rem !important;
    padding: 0.6rem 0.75rem !important;
    color: #1f2937 !important;
    display: flex !important;
    align-items: center !important;
    border-bottom: none !important;
    margin-bottom: 0.5rem !important;
    cursor: pointer !important;
    line-height: 1.3 !important;
    min-height: auto !important;
    height: auto !important;
    background: rgba(255,255,255,0.5) !important;
    border-radius: 6px !important;
    border-left: 3px solid transparent !important;
    transition: all 0.2s ease !important;
}

.mega-menu .dropdown-submenu > .nav-link::before {
    content: '\f0da' !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    margin-right: 0.5rem !important;
    color: var(--primary-color) !important;
    font-size: 0.85rem !important;
}

.mega-menu .dropdown-submenu > .nav-link:hover {
    background: rgba(255,255,255,0.9) !important;
    color: var(--primary-color) !important;
    border-left-color: var(--primary-color) !important;
}

.mega-menu .dropdown-submenu {
    border-bottom: 1px solid #d1d5db !important;
    padding-bottom: 0.75rem !important;
    margin-bottom: 0.75rem !important;
}

.mega-menu .dropdown-submenu:last-of-type,
.mega-menu .dropdown-submenu:last-child,
.mega-menu ul > .dropdown-submenu:last-child {
    border-bottom: none !important;
    border-bottom-width: 0 !important;
    border-bottom-style: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

/* Mega Menu içindeki tüm alt menüler her zaman görünür */
.mega-menu .dropdown-submenu > ul,
.mega-menu .dropdown-submenu > ul.dropdown-submenu,
.mega-menu ul.dropdown-submenu {
    position: static !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
    margin-top: 0rem !important;
    min-width: auto !important;
    list-style: none !important;
    left: auto !important;
    top: auto !important;
}

.mega-menu .dropdown-submenu > ul .nav-item {
    margin-bottom: 0.5rem !important;
    position: static !important;
}

.mega-menu .dropdown-submenu > ul .nav-link {
    font-weight: 400 !important;
    font-size: 0.9rem !important;
    padding: 0.5rem 0.75rem !important;
    color: #374151 !important;
    opacity: 0.95 !important;
    display: flex !important;
    align-items: center !important;
    cursor: pointer !important;
    line-height: 1.3 !important;
    min-height: auto !important;
    height: auto !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
    margin-bottom: 0.25rem !important;
}

.mega-menu .dropdown-submenu > ul .nav-link::before {
    content: '\f105' !important;
    font-family: "Font Awesome 5 Free" !important;
    font-weight: 900 !important;
    margin-right: 0.5rem !important;
    color: #9ca3af !important;
    font-size: 0.7rem !important;
    transition: all 0.2s ease !important;
}

.mega-menu .dropdown-submenu > ul .nav-link {
    border-bottom: 1px solid #d1d5db !important;
    padding-bottom: 0.5rem !important;
    margin-bottom: 0.5rem !important;
}

.mega-menu .dropdown-submenu > ul .nav-link:last-of-type,
.mega-menu .dropdown-submenu > ul .nav-link:last-child,
.mega-menu .dropdown-submenu > ul > .nav-item:last-child > .nav-link {
    border-bottom: none !important;
    border-bottom-width: 0 !important;
    border-bottom-style: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.mega-menu .dropdown-submenu > ul .nav-link:hover {
    background: rgba(236, 28, 36, 0.08) !important;
    color: var(--primary-color) !important;
    opacity: 1 !important;
}

.mega-menu .dropdown-submenu > ul .nav-link:hover::before {
    color: var(--primary-color) !important;
}

/* Mega Menu Level 4+ Submenus */
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul,
.mega-menu .dropdown-submenu ul ul {
    position: static !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
    padding: 0.25rem 0 0.25rem 1.5rem !important;
    margin-top: 0.25rem !important;
    min-width: auto !important;
    left: auto !important;
    top: auto !important;
}

/* En alt seviye dropdownlar (3. seviye ve altı) */
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul {
    background: rgba(255,255,255,0.3) !important;
    padding: 0.5rem !important;
    border-radius: 6px !important;
    margin-top: 0.5rem !important;
    border-left: 2px solid #e5e7eb !important;
}

.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .nav-link,
.mega-menu .dropdown-submenu ul ul .nav-link,
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .dropdown-submenu > ul .nav-link {
    font-weight: 400 !important;
    font-size: 0.85rem !important;
    padding: 0.4rem 0.75rem 0.4rem 1.5rem !important;
    color: #4b5563 !important;
    opacity: 0.9 !important;
    cursor: pointer !important;
    line-height: 1.4 !important;
    min-height: auto !important;
    height: auto !important;
    margin-top: 0 !important;
    margin-bottom: 0.2rem !important;
    position: relative !important;
    border: none !important;
    border-radius: 4px !important;
    transition: all 0.2s ease !important;
}

.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .nav-link::before,
.mega-menu .dropdown-submenu ul ul .nav-link::before,
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .dropdown-submenu > ul .nav-link::before {
    content: '\f105' !important;
    font-family: 'Font Awesome 5 Free' !important;
    font-weight: 900 !important;
    position: absolute !important;
    left: 0.5rem !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    font-size: 0.65rem !important;
    color: #9ca3af !important;
    opacity: 1 !important;
    transition: all 0.2s ease !important;
}

.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .nav-link,
.mega-menu .dropdown-submenu ul ul .nav-link,
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .dropdown-submenu > ul .nav-link {
    border-bottom: 1px solid #d1d5db !important;
    padding-bottom: 0.4rem !important;
    margin-bottom: 0.4rem !important;
}

.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .nav-link:last-of-type,
.mega-menu .dropdown-submenu ul ul .nav-link:last-of-type,
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .dropdown-submenu > ul .nav-link:last-of-type,
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul > .nav-item:last-child > .nav-link {
    border-bottom: none !important;
    border-bottom-width: 0 !important;
    border-bottom-style: none !important;
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
}

.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .nav-link:hover,
.mega-menu .dropdown-submenu ul ul .nav-link:hover,
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .dropdown-submenu > ul .nav-link:hover {
    background: rgba(236, 28, 36, 0.1) !important;
    color: var(--primary-color) !important;
    opacity: 1 !important;
}

.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .nav-link:hover::before,
.mega-menu .dropdown-submenu ul ul .nav-link:hover::before,
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .dropdown-submenu > ul .nav-link:hover::before {
    opacity: 1 !important;
    color: var(--primary-color) !important;
}

/* Mega Menu içinde ok ikonları gizle (sadece ilk 2 seviye için) */
.mega-menu > .nav-item > .nav-link .submenu-arrow,
.mega-menu > .nav-item > .nav-link .dropdown-arrow,
.mega-menu .dropdown-submenu > .nav-link .submenu-arrow,
.mega-menu .dropdown-submenu > .nav-link .dropdown-arrow {
    display: none !important;
}

/* En alt seviye için ok göster (CSS ::before ile) */
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .nav-link i,
.mega-menu .dropdown-submenu ul ul .nav-link i {
    display: none !important;
}

/* Mega menü - alt öğesi yok: logo ve açıklama (butonun üstünde) */
.mega-menu-no-children-content {
    display: block !important;
    width: 100% !important;
    padding-left: 0 !important;
    padding-bottom: 0.75rem !important;
    border-bottom: 1px solid rgba(0,0,0,0.08) !important;
    margin-bottom: 0.5rem !important;
    list-style: none !important;
}
.mega-menu-no-children-logo {
    margin-bottom: 0.87rem !important;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
}
.mega-menu-no-children-logo img {
    max-width: 120px;
    height: auto;
    display: block;
    border-top-left-radius: 0px !important;
    border-top-right-radius: 0px !important;
}
.mega-menu-no-children-desc {
    font-size: 0.9rem;
    line-height: 1.4;
    color: #333;
}

/* Visit Cabinets Button */
.mega-menu-visit-btn-wrapper {
    display: block !important;
    width: 100% !important;
    padding-left: 0 !important;
    border-top: none !important;
    clear: both !important;
    grid-column: 1 / -1 !important; /* Grid içinde full width */
    break-inside: avoid !important;
}

.mega-menu .dropdown-submenu
{
    border: none !important;
}

.mega-menu .menu-item:hover
{
    color: #000 !important;
}

.mega-menu > .nav-item:has(.mega-menu-visit-btn-wrapper) {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
}

/* Mega menu item'ın ul içinde buton varsa, ul'u flex yap */
.mega-menu > .nav-item > ul:has(.mega-menu-visit-btn-wrapper) {
    display: flex !important;
    flex-direction: column !important;
    width: 100% !important;
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.mega-menu-visit-btn {
    display: block !important;
    width: 100% !important;
    margin-left: 0 !important;
    padding: 0.75rem 1rem !important;
    background: var(--primary-color) !important;
    color: #fff !important;
    text-align: center !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    font-weight: 600 !important;
    font-size: 0.95rem !important;
}

.mega-menu-visit-btn:hover {
    background: var(--primary-color-dark, #c41e3a) !important;
    color: #fff !important;
    transform: none !important;
    padding-left: 1rem !important;
    margin-left: 0 !important;
}

/* Mega Menu içinde hover ile dropdown açılmasını engelle */
.mega-menu .dropdown-submenu:hover > ul {
    position: static !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: transparent !important;
}

/* Mega Menu içinde href="#" olan linkler - tıklanabilir değil, hover/focus efektleri yok */
.mega-menu > .nav-item > .nav-link[href="#"],
.mega-menu .dropdown-submenu > .nav-link[href="#"],
.mega-menu .dropdown-submenu > ul .nav-link[href="#"],
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .nav-link[href="#"],
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .dropdown-submenu > ul .nav-link[href="#"],
.mega-menu .nav-item[href="#"] > .nav-link,
.mega-menu .nav-item .nav-link[href="#"],
.mega-menu a.nav-link[href="#"] {
    cursor: default !important;
    pointer-events: none !important;
    text-decoration: none !important;
}

/* Depth-2 ve depth-3 için özel override */
.mega-menu .depth-2[href="#"] > .nav-link,
.mega-menu .depth-2 > .nav-link[href="#"],
.mega-menu .depth-3[href="#"] > .nav-link,
.mega-menu .depth-3 > .nav-link[href="#"] {
    cursor: default !important;
    pointer-events: none !important;
    text-decoration: none !important;
}

.mega-menu > .nav-item > .nav-link[href="#"]:hover,
.mega-menu .dropdown-submenu > .nav-link[href="#"]:hover,
.mega-menu .dropdown-submenu > ul .nav-link[href="#"]:hover,
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .nav-link[href="#"]:hover,
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .dropdown-submenu > ul .nav-link[href="#"]:hover,
.mega-menu .nav-item[href="#"] > .nav-link:hover,
.mega-menu .nav-item .nav-link[href="#"]:hover,
.mega-menu a.nav-link[href="#"]:hover {
    background-color: transparent !important;
    background: transparent !important;
    color: inherit !important;
    opacity: inherit !important;
    transition: none !important;
}

/* Depth-2 ve depth-3 hover override - özel stilleri eziyor */
.mega-menu .depth-2[href="#"]:hover > .nav-link,
.mega-menu .depth-2:hover > .nav-link[href="#"],
.mega-menu .depth-3[href="#"]:hover > .nav-link,
.mega-menu .depth-3:hover > .nav-link[href="#"],
.mega-menu .nav-item.depth-2:hover > .nav-link[href="#"],
.mega-menu .nav-item.depth-3:hover > .nav-link[href="#"],
.mega-menu .depth-2:hover > a[href="#"],
.mega-menu .depth-3:hover > a[href="#"],
.mega-menu .nav-item:hover > a[href="#"],
.mega-menu .nav-item.depth-2:hover > a.nav-link[href="#"],
.mega-menu .nav-item.depth-3:hover > a.nav-link[href="#"] {
    background-color: transparent !important;
    background: transparent !important;
    color: inherit !important;
    opacity: inherit !important;
    transition: none !important;
}

/* Dropdown-submenu hover stillerini override et */
.mega-menu .dropdown-submenu > .nav-link[href="#"]:hover {
    background: transparent !important;
    color: inherit !important;
    border-left-color: transparent !important;
}

.mega-menu .dropdown-submenu > ul .nav-link[href="#"]:hover {
    background: transparent !important;
    color: inherit !important;
    opacity: inherit !important;
}

.mega-menu .dropdown-submenu > ul .nav-link[href="#"]:hover::before {
    color: inherit !important;
}

.mega-menu > .nav-item > .nav-link[href="#"]:focus,
.mega-menu .dropdown-submenu > .nav-link[href="#"]:focus,
.mega-menu .dropdown-submenu > ul .nav-link[href="#"]:focus,
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .nav-link[href="#"]:focus,
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .dropdown-submenu > ul .nav-link[href="#"]:focus,
.mega-menu .nav-item[href="#"] > .nav-link:focus,
.mega-menu .nav-item .nav-link[href="#"]:focus,
.mega-menu .depth-2[href="#"]:focus > .nav-link,
.mega-menu .depth-2:focus > .nav-link[href="#"],
.mega-menu .depth-3[href="#"]:focus > .nav-link,
.mega-menu .depth-3:focus > .nav-link[href="#"] {
    outline: none !important;
    box-shadow: none !important;
}

.mega-menu > .nav-item > .nav-link[href="#"]:hover::before,
.mega-menu .dropdown-submenu > .nav-link[href="#"]:hover::before,
.mega-menu .dropdown-submenu > ul .nav-link[href="#"]:hover::before,
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .nav-link[href="#"]:hover::before,
.mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .dropdown-submenu > ul .nav-link[href="#"]:hover::before,
.mega-menu .depth-2:hover > .nav-link[href="#"]::before,
.mega-menu .depth-3:hover > .nav-link[href="#"]::before {
    color: inherit !important;
}

/* Responsive: Hide mega menu on mobile */
@media (max-width: 850px) {
    .nav-item.has-mega-menu .dropdown-menu.mega-menu {
        position: static !important;
        transform: none !important;
        display: block !important;
        width: 100% !important;
        max-width: 100% !important;
        padding: 1rem !important;
        grid-template-columns: 1fr !important;
        max-height: calc(100vh - 100px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
}

/* Küçük ekranlar için mega menü scroll */
@media (max-width: 1024px) {
    .nav-item.has-mega-menu .dropdown-menu.mega-menu {
        max-height: calc(100vh - 120px) !important;
        overflow-y: auto !important;
        overflow-x: hidden !important;
    }
}

/* Submenu styles */
.dropdown-submenu {
    position: relative;
    min-width: 250px !important;
}

.dropdown-submenu>ul {
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-medium);
    padding: 1rem 0;
    min-width: 360px; /* match first level width */
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transition);
    list-style: none;
    z-index: 1001;
}

/* Third-level submenu (and deeper) */
.dropdown-submenu > ul .dropdown-submenu > ul {
    position: absolute;
    top: 0;
    left: 100%;
    background: var(--bg-white);
    box-shadow: var(--shadow-medium);
    padding: 1rem 0;
    min-width: 360px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transition);
    list-style: none;
    z-index: 1002; /* ensure above previous levels */
}

.dropdown-submenu > ul .dropdown-submenu:hover > ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu > ul .dropdown-submenu:hover > a {
    color: #fff !important;
    padding-left: 1rem;
    transition: padding-left 0.2s ease, color 0.2s ease;
}

/* Alt öğesindeyken üst öğe siyah kalacak, animasyon yok */
.dropdown-submenu > ul .dropdown-submenu:has(> ul > .nav-item:hover) > a,
.dropdown-submenu > ul .dropdown-submenu:has(> ul:hover) > a {
    color: var(--text-dark) !important;
    padding-left: 0 !important;
    transition: none !important;
    transform: none !important;
}

.dropdown-submenu > ul .dropdown-submenu:hover > a {
    color: #fff !important;
    padding-left: 1rem;
    transition: padding-left 0.2s ease, color 0.2s ease;
}

.dropdown-submenu:hover>ul {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.dropdown-submenu>a {
    transition: padding-left 0.2s ease, color 0.2s ease;
}

.dropdown-submenu:hover>a {
    color: #fff !important;
    padding-left: 1rem;
}

/* Alt öğesindeyken üst öğe siyah kalacak, animasyon yok */
.dropdown-submenu:has(> ul > .nav-item:hover) > a,
.dropdown-submenu:has(> ul > .dropdown-submenu:hover) > a,
.dropdown-submenu:has(> ul:hover) > a {
    color: var(--text-dark) !important;
    padding-left: 0 !important;
    transition: none !important;
    transform: none !important;
}

.dropdown-submenu>a i {
    font-size: 0.8rem;
    transition: var(--transition);
    color: var(--primary-color);
}

.dropdown-submenu:hover>a i {
    color: #fff;
}

.dropdown-submenu:has(> ul > .nav-item:hover) > a i,
.dropdown-submenu:has(> ul > .dropdown-submenu:hover) > a i {
    color: var(--text-dark) !important;
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    position: relative;
}

.search-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--bg-white);
    border: 1px solid var(--border-light);
    cursor: pointer;
    transition: all 0.3s ease;
	border-radius: 8px;
}

.search-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.search-icon i {
    color: var(--text-dark);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.search-icon:hover i {
    color: white;
}

.nav-lang {
    display: flex;
    gap: 0.5rem;
}

.lang-btn {
    padding: 0.5rem 1rem;
    border: 1px solid var(--border-light);
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: var(--transition);
}

.lang-btn.active,
.lang-btn:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    border-color: var(--primary-color);
}

/* Clean Mobile Nav */
.mobile-nav-toggle.hamburger {
    display: flex;
    flex-direction: column;
    cursor: pointer;
    padding: 8px;
    background: transparent;
    border: none;
    z-index: 1001;
    position: relative;
    width: 40px;
    height: 40px;
    justify-content: center;
    align-items: center;
    transition: all 0.3s ease;
}

.mobile-nav-toggle .bar {
    width: 24px;
    height: 3px;
    background-color: var(--text-dark);
    margin: 3px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.mobile-nav-toggle.active .bar:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
    background-color: var(--primary-color);
}
.mobile-nav-toggle.active .bar:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.mobile-nav-toggle.active .bar:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
    background-color: var(--primary-color);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}
.mobile-nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 320px;
    max-width: 85vw;
    height: 100vh;
    background: #ffffff;
    box-shadow: -10px 0 25px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: right 0.3s ease;
    overflow-y: auto;
    padding: 20px 0;
}
.mobile-nav.open {
    right: 0;
}

.mobile-nav-menu,
.mobile-nav-menu ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Tüm li'lere varsayılan border */
.mobile-nav-menu li,
.mobile-nav ul li {
    border-bottom: 1px solid #e5e7eb;
}

/* Ana seviye daha koyu olsun */
.mobile-nav-menu > li {
    border-bottom: 1px solid #d1d5db !important;
}

/* Alt seviyeler (depth 1) */
.mobile-nav-menu > li > ul > li,
.mobile-nav-menu li > ul > li {
    border-bottom: 1px solid #e5e7eb !important;
}

/* Daha derin seviyeler (depth 2+) */
.mobile-nav-menu li ul li ul li,
.mobile-nav-menu li ul li ul li ul li {
    border-bottom: 1px solid #e5e7eb !important;
}

.mobile-nav-menu a,
.mobile-nav-menu .nav-link {
    display: block;
    padding: 14px 20px;
    color: var(--text-dark);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    position: relative;
    width: 100%;
    word-wrap: break-word;
    overflow-wrap: break-word;
    white-space: normal;
    line-height: 1.4;
}

.mobile-nav-menu a:hover,
.mobile-nav-menu .nav-link:hover {
    background: rgba(236,28,36,0.05);
    color: var(--primary-color);
}

/* Mobil menüde HTML'deki okları gizle - tüm çeşitleri */
.mobile-nav .dropdown-arrow,
.mobile-nav .submenu-arrow,
.mobile-nav i.fas.fa-chevron-down,
.mobile-nav i.fas.fa-chevron-right,
.mobile-nav i.fa-chevron-down,
.mobile-nav i.fa-chevron-right,
.mobile-nav-menu .dropdown-arrow,
.mobile-nav-menu .submenu-arrow,
.mobile-nav-menu i.fas.fa-chevron-down,
.mobile-nav-menu i.fas.fa-chevron-right,
.mobile-nav-menu i.fa-chevron-down,
.mobile-nav-menu i.fa-chevron-right,
.mobile-nav-menu a i,
.mobile-nav-menu .nav-link i {
    display: none !important;
}

/* Sadece CSS ile eklenen sağdaki ok görünsün */
.mobile-nav-menu li.mobile-has-children > a::after,
.mobile-nav-menu li.mobile-has-children > .nav-link::after {
    content: '\f105';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 20px;
    top: 14px;
    font-size: 0.875rem;
    color: #6b7280;
    transition: transform 0.3s ease, color 0.3s ease;
    pointer-events: none;
}

.mobile-nav-menu li.mobile-has-children.open > a::after,
.mobile-nav-menu li.mobile-has-children.open > .nav-link::after {
    transform: rotate(90deg);
    color: var(--primary-color);
}

.mobile-nav-menu li.mobile-has-children.open > a,
.mobile-nav-menu li.mobile-has-children.open > .nav-link {
    color: var(--primary-color);
    background: rgba(236,28,36,0.05);
}

/* Mobil menüde tüm ul'leri gizli başlat - EN YÜKSEK ÖNCELİK */
.mobile-nav ul,
.mobile-nav ul.mega-menu,
.mobile-nav ul.dropdown-menu,
.mobile-nav ul.dropdown-submenu,
.mobile-nav ul.mobile-submenu,
.mobile-nav-menu ul,
.mobile-nav-menu ul.mega-menu,
.mobile-nav-menu ul.dropdown-menu,
.mobile-nav-menu ul.dropdown-submenu,
.mobile-nav-menu ul.mobile-submenu {
    max-height: 0 !important;
    overflow: hidden !important;
    transition: max-height 0.3s ease-out !important;
    background: #f9fafb !important;
    padding-left: 0 !important;
    position: static !important;
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    min-height: 0 !important;
    width: 100% !important;
    margin: 0 !important;
}

/* Ana menü hariç tut */
.mobile-nav > ul.mobile-nav-menu,
.mobile-nav-menu.mobile-nav-menu {
    max-height: none !important;
    overflow: visible !important;
}

/* Açık olan accordion item'ların alt menülerini göster */
.mobile-nav li.open > ul,
.mobile-nav li.open > ul.dropdown-menu,
.mobile-nav li.open > ul.dropdown-submenu,
.mobile-nav li.open > ul.mega-menu,
.mobile-nav li.open > ul.mobile-submenu,
.mobile-nav-menu li.open > ul,
.mobile-nav-menu li.open > ul.dropdown-menu,
.mobile-nav-menu li.open > ul.dropdown-submenu,
.mobile-nav-menu li.open > ul.mega-menu,
.mobile-nav-menu li.open > ul.mobile-submenu {
    max-height: 2000px !important;
    transition: max-height 0.4s ease-in !important;
}

/* Ensure nested dropdowns are visible when parent is open */
.mobile-nav li.open ul li.open > ul,
.mobile-nav-menu li.open ul li.open > ul {
    max-height: 2000px !important;
}

/* Mobil menü içinde mega menü stillerini tamamen devre dışı bırak */
.mobile-nav-menu .mega-menu,
.mobile-nav-menu .dropdown-menu.mega-menu,
.mobile-nav-menu .dropdown-menu,
.mobile-nav-menu .dropdown-submenu,
.mobile-nav-menu .mobile-submenu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    max-width: 100% !important;
    min-width: auto !important;
}

/* Mobil menüde mega menü class'ları olan elementleri normalize et */
.mobile-nav .has-mega-menu,
.mobile-nav .mega-menu,
.mobile-nav .dropdown-menu.mega-menu {
    position: static !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: transparent !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

/* Mobil menü içindeki tüm nav-item ve nav-link stillerini sıfırla */
.mobile-nav-menu .nav-item,
.mobile-nav-menu .nav-item.has-mega-menu,
.mobile-nav-menu li.nav-item {
    position: static !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    width: 100% !important;
    min-height: 0 !important;
    max-height: none !important;
    break-inside: auto !important;
}

.mobile-nav-menu .nav-item .nav-link,
.mobile-nav-menu .nav-item.has-mega-menu .nav-link,
.mobile-nav-menu li.nav-item .nav-link {
    font-weight: 500 !important;
    font-size: 15px !important;
    padding: 14px 20px !important;
    color: var(--text-dark) !important;
    background: transparent !important;
    border: none !important;
    text-align: left !important;
    display: block !important;
    width: 100% !important;
    position: relative !important;
    min-height: 0 !important;
    max-height: none !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    line-height: 1.4 !important;
}

.mobile-nav-menu .nav-item .nav-link:hover,
.mobile-nav-menu .nav-item.has-mega-menu .nav-link:hover {
    background: rgba(236,28,36,0.05) !important;
    color: var(--primary-color) !important;
}

/* Alt seviye linkler */
.mobile-nav-menu li ul li a,
.mobile-nav-menu li ul li .nav-link {
    padding-left: 32px !important;
    padding-right: 40px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    line-height: 1.4 !important;
}

.mobile-nav-menu li ul li ul li a,
.mobile-nav-menu li ul li ul li .nav-link {
    padding-left: 48px !important;
    padding-right: 40px !important;
    font-size: 13px !important;
    font-weight: 400 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    line-height: 1.4 !important;
}

.mobile-nav-menu li ul li ul li ul li a,
.mobile-nav-menu li ul li ul li ul li .nav-link {
    padding-left: 64px !important;
    padding-right: 40px !important;
    font-size: 12px !important;
    font-weight: 400 !important;
    word-wrap: break-word !important;
    overflow-wrap: break-word !important;
    white-space: normal !important;
    line-height: 1.4 !important;
}

/* Mega menü içindeki özel stilleri kaldır */
.mobile-nav-menu .mega-menu > .nav-item,
.mobile-nav-menu .mega-menu .nav-item {
    margin-bottom: 0 !important;
    break-inside: auto !important;
}

.mobile-nav-menu .mega-menu > .nav-item > .nav-link,
.mobile-nav-menu .mega-menu .nav-item > .nav-link {
    font-weight: 500 !important;
    font-size: 15px !important;
    padding: 14px 20px !important;
    color: var(--text-dark) !important;
    background: transparent !important;
}

.mobile-nav-menu .mega-menu .dropdown-submenu > .nav-link {
    font-weight: 500 !important;
    font-size: 15px !important;
    padding: 14px 20px !important;
    color: var(--text-dark) !important;
    background: transparent !important;
}

.mobile-nav-menu .mega-menu .dropdown-submenu > ul .nav-link {
    font-weight: 400 !important;
    font-size: 14px !important;
    padding: 12px 20px 12px 32px !important;
    color: var(--text-dark) !important;
    background: transparent !important;
}

.mobile-nav-menu .mega-menu .dropdown-submenu > ul .dropdown-submenu > ul .nav-link {
    font-weight: 400 !important;
    font-size: 13px !important;
    padding: 10px 20px 10px 48px !important;
    color: var(--text-dark) !important;
    background: transparent !important;
}

/* Mega menü ok işaretlerini kaldır */
.mobile-nav-menu .mega-menu .nav-link::before,
.mobile-nav-menu .mega-menu .dropdown-submenu > ul .nav-link::before,
.mobile-nav-menu .nav-link::before,
.mobile-nav-menu .nav-link i,
.mobile-nav-menu a i.fa-chevron-down,
.mobile-nav-menu a i.fa-chevron-right {
    display: none !important;
}

/* Mobil menüde Visit Cabinets butonunu gizle - direkt üst link'e tıklanacak */
.mobile-nav .mega-menu-visit-btn-wrapper,
.mobile-nav .mega-menu-visit-btn,
.mobile-nav-menu .mega-menu-visit-btn-wrapper,
.mobile-nav-menu .mega-menu-visit-btn {
    display: none !important;
}

body.mobile-nav-open {
    overflow: hidden;
}

/* --- Breadcrumb Shortcode Styles --- */
.emt-breadcrumb {
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    position: relative;
    z-index: 100;
}

.breadcrumb-list {
    display: flex !important;
    flex-wrap: nowrap !important;
    flex-direction: row !important;
    align-items: center !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: visible !important;
    gap: 0.5rem !important;
    justify-content: center !important;
}

.breadcrumb-item {
    display: inline-flex;
    align-items: center;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    white-space: nowrap;
    flex-shrink: 0;
    max-width: 100%;
}

.breadcrumb-item a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    max-width: 150px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    cursor: pointer;
    pointer-events: auto !important;
    position: relative;
    z-index: 100;
}

.breadcrumb-item a:hover {
    color: #ffffff;
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    max-width: 300px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    display: block;
}

.breadcrumb-separator {
    display: inline-flex;
    align-items: center;
    margin: 0;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.7rem;
    flex-shrink: 0;
}

.breadcrumb-separator i {
    font-size: 0.7rem;
}

/* Mobilde daha kısa karakter limiti */
@media (max-width: 850px) {
    .breadcrumb-list {
        gap: 0.35rem;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }
    
    .breadcrumb-list::-webkit-scrollbar {
        display: none;
    }
    
    .breadcrumb-item {
        font-size: 0.8rem;
    }
    
    .breadcrumb-item a {
        max-width: 100px;
    }
    
    .breadcrumb-item.active {
        max-width: 200px;
    }
    
    .breadcrumb-separator {
        margin: 0;
    }
}

@media (max-width: 480px) {
    .breadcrumb-item a {
        max-width: 80px;
    }
    
    .breadcrumb-item.active {
        max-width: 150px;
    }
}

/* --- Hero Section Shortcode Styles --- */
.emt-hero-section {
    position: relative;
    width: 100%;
    max-height: 500px;
    background: #E62E35;
    margin-top: 0;
    margin-bottom: 200px;
}

@media (max-width: 850px) {
    .emt-hero-section {
        margin-bottom: 0;
    }
}

.emt-hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 2px, transparent 2px),
        radial-gradient(circle at 80% 70%, rgba(255, 255, 255, 0.15) 2px, transparent 2px);
    background-size: 50px 50px, 60px 60px;
    background-position: 0 0, 30px 30px;
    opacity: 0.3;
    z-index: 1;
}

.emt-hero-container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 2rem;
    min-height: 500px;
    display: flex;
    align-items: center;
    height: 500px;
}

.emt-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
    height: 500px;
}

.emt-hero-image
{
    margin-top: 50px !important;
}

.emt-hero-text {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    justify-content: center;
    height: 100%;
}

.emt-hero-title {
    font-size: 3.5rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin: 0;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.2);
}

.emt-hero-divider {
    width: 80px;
    height: 4px;
    background: #ffffff;
    margin: 0.5rem 0;
}

.emt-hero-breadcrumb {
    margin-top: 0.5rem;
}

.emt-hero-breadcrumb {
    text-align: left !important;
}

.emt-hero-breadcrumb .emt-breadcrumb {
    margin-bottom: 0;
    padding: 0;
    display: block !important;
    justify-content: flex-start !important;
}

.emt-hero-breadcrumb .breadcrumb-list {
    justify-content: flex-start !important;
    text-align: left !important;
}

.emt-hero-image-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    align-self: flex-end;
}

.emt-hero-image {
    max-width: 100%;
    /* Görsel ölçeği: [hero_section img_scale="1.2"] ile sayfa bazında ayarlanır (varsayılan 1) */
    max-height: calc(600px * var(--emt-hero-img-scale, 1));
    height: auto;
    object-fit: contain;
    /* G1: Ürün görsellerinin arkasına siyah gölge EKLENMEZ; görselin kendi gölgesi yeterli */
    filter: none;
    position: relative;
    /* Görselin kırmızı şeritten alta taşması: [hero_section img_block="0"] ile ayarlanır (varsayılan -50px) */
    bottom: var(--emt-hero-img-block, -50px);
    z-index: 3;
}

/* G5: Başlık altı ürün-tipi metni (ör. "Cyanoacrylate Fuming Cabinet") */
.emt-hero-subtitle {
    font-size: 1.6rem;
    font-weight: 400;
    color: #ffffff;
    line-height: 1.25;
    margin: -0.5rem 0 0;
    opacity: 0.95;
}

/* Responsive */
@media (max-width: 1024px) {
    .emt-hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .emt-hero-title {
        font-size: 2.5rem;
    }

    .emt-hero-subtitle {
        font-size: 1.25rem;
    }

    .emt-hero-divider {
        margin: 0.5rem auto;
    }
    
    .emt-hero-image-wrapper {
        order: -1;
        padding: 1rem 0;
    }
    
    .emt-hero-image {
        max-height: 100%;
    }
    
    /* Breadcrumb tablet ve mobilde ortala */
    .emt-hero-breadcrumb {
        text-align: center !important;
    }
    
    .emt-hero-breadcrumb .emt-breadcrumb {
        justify-content: center !important;
    }
    
    .emt-hero-breadcrumb .breadcrumb-list {
        justify-content: center !important;
        text-align: center !important;
    }
}

@media (max-width: 850px) {
    .emt-hero-section {
        margin-bottom: 0;
        max-height: none;
    }
    
    .emt-hero-container {
        padding: 40px 1.5rem;
        min-height: auto;
        height: auto;
    }
    
    .emt-hero-content {
        height: auto;
        min-height: auto;
        gap: 2rem;
    }
    
    .emt-hero-title {
        font-size: 2rem;
    }
    
    .emt-hero-image {
        max-height: 100%;
        bottom: 0;
        margin-top: 0 !important;
    }
    
    .emt-hero-background::after {
        height: 80px;
    }
    
    .emt-hero-text {
        height: auto;
    }
    
    /* Breadcrumb mobilde ortala */
    .emt-hero-breadcrumb {
        text-align: center !important;
    }
    
    .emt-hero-breadcrumb .emt-breadcrumb {
        justify-content: center !important;
    }
    
    .emt-hero-breadcrumb .breadcrumb-list {
        justify-content: center !important;
        text-align: center !important;
    }
}

@media (max-width: 480px) {
    .emt-hero-section {
        margin-bottom: 0;
    }
    
    .emt-hero-container {
        padding: 30px 1rem;
        min-height: auto;
        height: auto;
    }
    
    .emt-hero-content {
        height: auto;
        gap: 1.5rem;
    }
    
    .emt-hero-title {
        font-size: 1.75rem;
    }
    
    .emt-hero-image {
        max-height: 100%;
        bottom: 0;
        margin-top: 0 !important;
    }
    
    .emt-hero-background::after {
        height: 60px;
    }
    
    .emt-hero-text {
        height: auto;
    }
}

/* Hero Video Button */
.emt-hero-video-button-wrapper {
    margin-top: 1.5rem;
}

.emt-hero-video-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 14px 28px;
    background: #ffffff;
    color: #E62E35;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-decoration: none;
}

.emt-hero-video-button:hover {
    background: #f8f8f8;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.emt-hero-video-button:active {
    transform: translateY(0);
}

.emt-hero-video-button i {
    font-size: 1.1rem;
}

/* Hero Video Popup */
.emt-hero-video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.emt-hero-video-popup.active {
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: auto !important;
    display: flex !important;
}

.emt-hero-video-popup-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(5px);
}

.emt-hero-video-popup-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    max-height: 90vh;
    background: #000000;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    z-index: 1;
    animation: videoPopupSlideIn 0.3s ease;
}

@keyframes videoPopupSlideIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.emt-hero-video-popup-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 45px;
    height: 45px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    color: #333;
    font-size: 1.25rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.emt-hero-video-popup-close:hover {
    background: #ffffff;
    transform: rotate(90deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.emt-hero-video-popup-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    height: 0;
    overflow: hidden;
}

.emt-hero-video-iframe,
.emt-hero-video-player {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.emt-hero-video-player {
    background: #000;
}

/* Responsive Video Popup */
@media (max-width: 768px) {
    .emt-hero-video-popup-content {
        width: 95%;
        border-radius: 15px;
    }
    
    .emt-hero-video-popup-close {
        width: 40px;
        height: 40px;
        top: 10px;
        right: 10px;
        font-size: 1.1rem;
    }
    
    .emt-hero-video-button {
        padding: 12px 24px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .emt-hero-video-popup-content {
        width: 100%;
        max-height: 100vh;
        border-radius: 0;
    }
    
    .emt-hero-video-popup-iframe-wrapper {
        padding-bottom: 56.25%;
    }
    
    .emt-hero-video-button {
        padding: 10px 20px;
        font-size: 0.85rem;
        gap: 0.5rem;
    }
    
    .emt-hero-video-button i {
        font-size: 1rem;
    }
}

@media (max-width: 1024px) {
    .header .nav-actions {
        display: none;
    }
    .nav-menu {
        display: none !important;
    }
    .mobile-nav-toggle.hamburger {
        display: flex !important;
        margin-left: auto;
    }
    
    /* Mobil ekranda tüm ul'leri kapalı başlat */
    .mobile-nav ul:not(.mobile-nav-menu),
    .mobile-nav ul.mega-menu,
    .mobile-nav ul.dropdown-menu,
    .mobile-nav ul.dropdown-submenu {
        max-height: 0 !important;
        overflow: hidden !important;
    }
    
    /* Sadece açık olanları göster */
    .mobile-nav li.open > ul {
        max-height: 2000px !important;
    }
    
    /* Mega menü stillerini tamamen kapat */
    .mobile-nav .mega-menu,
    .mobile-nav .dropdown-menu.mega-menu,
    .mobile-nav .has-mega-menu {
        position: static !important;
        transform: none !important;
        box-shadow: none !important;
        min-height: 0 !important;
    }
}

@media (min-width: 1025px) {
    .mobile-nav-toggle.hamburger,
    .mobile-nav,
    .mobile-nav-overlay {
        display: none;
    }
}

/* --- Hero Slider (Clean & Simple) --- */
.hero {
    width: 100%;
    padding: 40px 20px;
    background: #fff;
}

.hero .hero-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.hero .hero-slider {
    width: 100%;
    height: auto;
}

.hero .swiper-wrapper {
    height: auto;
}

.hero .swiper-slide {
    height: auto;
    min-height: 400px;
}

/* Video slide */
.hero .slide-video {
    min-height: 400px;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.hero .slide-video .hero-video {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

/* Split slide layout (image left, text right) */
.hero .slide-image .hero-split {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
    padding: 3rem 2rem;
    min-height: 400px;
}

.hero .slide-image .split-media {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .slide-image .split-media picture,
.hero .slide-image .split-media img {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
}

.hero .slide-image .split-text {
    text-align: left;
    padding: 2rem 0;
}

.hero .slide-image .hero-title {
    margin-bottom: 1rem;
    font-size: 2.5rem;
}

.hero .slide-image .hero-subtitle {
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
}

/* Full width image slide (no text, no buttons) */
.hero .slide-fullwidth .hero-fullwidth {
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 75px;
}

.hero .slide-fullwidth .hero-fullwidth picture {
    width: 100%;
    max-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero .slide-fullwidth .hero-fullwidth-image {
    width: 100%;
    height: auto;
    max-height: 500px;
    object-fit: contain;
    display: block;
    border-radius: 20px;
}

@media (max-width: 1024px) {
    .hero {
        padding: 20px 15px;
    }
    
    .hero .slide-image .hero-split {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1.5rem;
    }
    
    .hero .slide-image .split-media picture,
    .hero .slide-image .split-media img {
        max-height: 350px;
    }
    
    .hero .slide-image .split-text {
        text-align: center;
    }
    
    .hero .slide-image .hero-title {
        font-size: 2rem;
    }
}

.hero-container {
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}


.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 80%;
}

.hero-image img {
    max-width: 100%;
    height: 500px;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.hero-image img:hover {
    transform: scale(1.02);
}

.hero-content {
    display: flex;
    align-items: center;
    height: 100%;
    padding: 2rem 0;
}

.hero-text {
    text-align: left;
    max-width: 500px;
}

.hero-title {
    font-size: 2.7rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
    font-weight: 400;
}

.solution-category {
    font-size: 1rem;
    color: var(--primary-color);
    background: rgba(236, 28, 36, 0.1);
    padding: 0.75rem 1.5rem;
    display: inline-block;
    margin-bottom: 2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border: 2px solid var(--primary-color);
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
}

.hero-buttons .btn-primary {
    background: var(--primary-color);
    color: white;
    border: 2px solid var(--primary-color);
}

.hero-buttons .btn-primary:hover {
    background: var(--primary-dark);
    border-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(236, 28, 36, 0.3);
}

/* Swiper Navigation - Inside 1200px container */
.hero .swiper-button-next,
.hero .swiper-button-prev {
    position: absolute;
    top: 53% !important;
    transform: translateY(-50%);
    color: #ffffff;
    background: transparent;
    width: 50px;
    height: 50px;
    transition: all 0.3s ease;
    z-index: 10;
    margin: 0;
}

.hero .swiper-button-next {
    right: 30px;
}

.hero .swiper-button-prev {
    left: 30px;
}

.hero .swiper-button-next::after,
.hero .swiper-button-prev::after {
    font-size: 28px;
    font-weight: bold;
    color: #ffffff;
}

.hero .swiper-button-next:hover::after,
.hero .swiper-button-prev:hover::after {
    color: var(--primary-color);
}

/* Swiper Pagination */
.hero .swiper-pagination {
    position: relative;
    bottom: 0;
    text-align: center;
}

.hero .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: rgba(200, 200, 200, 0.8);
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.hero .swiper-pagination-bullet-active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 6px;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }

    .hero-text {
        text-align: center;
        max-width: 100%;
    }

    .hero-image img {
        max-height: 60%;
    }
}

@media (max-width: 850px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-container {
        padding: 0 1rem;
    }

    .hero-buttons {
        justify-content: center;
    }
}


/* Swiper Pagination */
.swiper-pagination {
    position: absolute;
    bottom: 30px;
    right: 140px;
    left: auto;
    width: auto;
    z-index: 10;
}


/* Swiper Pagination */
.swiper-pagination {
    position: absolute;
    bottom: 30px;
    right: 140px;
    left: auto;
    width: auto;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
    transition: all 0.3s ease;
    border-radius: 4px;
    margin: 0 4px;
}

.swiper-pagination-bullet-active {
    background: var(--primary-color);
    transform: scale(1.2);
    width: 20px;
}

/* Solutions Showcase Section */
.solutions-showcase {
    padding: 100px 0;
    background: var(--bg-light);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
    margin-top: 4rem;
}

.solution-card {
    background: var(--bg-white);
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: all 0.4s ease;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.solution-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

.solution-card:hover .solution-image img {
    transform: scale(1.1);
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 28, 36, 0.9) 0%, rgba(236, 28, 36, 0.7) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.solution-overlay .btn {
    background: var(--bg-white);
    color: var(--primary-color);
    border: 2px solid var(--bg-white);
    font-weight: 600;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.solution-overlay .btn:hover {
    background: transparent;
    color: var(--bg-white);
}

.solution-content {
    padding: 2rem;
}

.solution-icon {
    width: 32px;
    height: 32px;
    background: transparent;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    margin-right: 1rem;
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.solution-icon i {
    color: var(--primary-color);
    font-size: 1rem;
    transition: color 0.3s ease;
}

.solution-card:hover .solution-icon i {
    color: var(--bg-white);
}

.solution-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.solution-content p {
    font-size: 0.95rem;
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.solution-features {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.feature-item {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;
}

.feature-item i {
    color: var(--primary-color);
    font-size: 2rem;
    margin-right: 0.75rem;
    width: 20px;
    text-align: center;
}

.feature-item span {
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
}

/* X-Treme Header */
.x-treme-header {
    margin-bottom: 1rem;
}

.x-treme-header h4 {
    color: var(--primary-color);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    letter-spacing: 0.05em;
}

.x-treme-header .logo-subtitle {
    color: var(--text-light);
    font-size: 0.7rem;
    opacity: 0.7;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}


.hero-buttons .btn-secondary:hover {
    background: #ffffff;
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    font-weight: 600;
    transition: var(--transition);
    border: 2px solid transparent;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--text-white);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.btn-secondary {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-secondary:hover {
    background-color: var(--primary-color);
    color: var(--text-white);
    transform: translateY(-2px);
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-video-placeholder {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: var(--text-white);
    font-size: 1.5rem;
    box-shadow: var(--shadow-medium);
}

.hero-video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.8;
}


/* Sections */
.solutions-overview,
.industry-standards,
.why-dry-storage,
.more-than-storage {
    padding: 100px 0;
}

.solutions-overview {
    background-color: var(--bg-white);
}

.industry-standards {
    background-color: var(--bg-light);
}

.why-dry-storage {
    background-color: var(--bg-white);
}

.more-than-storage {
    background-color: var(--bg-light);
}

/* Overview Content */
.overview-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 600px;
}

.overview-text {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background: var(--bg-white);
}

.overview-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.overview-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.overview-image img:hover {
    transform: scale(1.05);
}

/* Standards Content */
.standards-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 600px;
}

.standards-text {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background: var(--bg-white);
}

.standards-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.standards-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.standards-image img:hover {
    transform: scale(1.05);
}

/* Why Content */
.why-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    align-items: stretch;
    min-height: 600px;
}

.why-image {
    position: relative;
    height: 100%;
    overflow: hidden;
}

.why-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.why-image img:hover {
    transform: scale(1.05);
}

.why-text {
    padding: 4rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 100%;
    background: var(--bg-white);
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: left;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-align: left;
    font-weight: 600;
}

.section-text {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    text-align: left;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Main Solutions */
.main-solutions {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.solution-card {
    background: var(--bg-white);
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    border: 1px solid var(--border-light);
    overflow: hidden;
    position: relative;
}

.solution-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.solution-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
    position: relative;
}

.solution-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.solution-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(236, 28, 36, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.solution-card-content {
    padding: 2.5rem;
}

.solution-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.solution-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.solution-icon i {
    font-size: 2rem;
    color: var(--text-white);
}

.solution-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.solution-card p {
    color: var(--text-light);
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.solution-features {
    list-style: none;
    margin-bottom: 2rem;
}

.solution-features li {
    padding: 0.5rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
}

.solution-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
}

.solution-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: var(--transition);
}

.solution-link:hover {
    gap: 1rem;
}

/* Industry Standards */
.standards-content {
    /*  */
    margin: 0 auto;
    text-align: center;
}

.standards-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.standards-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.standards-benefits {
    background: var(--bg-white);
    padding: 2rem;
    margin: 2rem 0;
    text-align: left;
    box-shadow: var(--shadow-light);
}

.standards-benefits h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.standards-benefits ul {
    list-style: none;
}

.standards-benefits li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
}

.standards-benefits li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

/* Why Dry Storage */
.why-content {

    margin: 0 auto;
}

.why-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    text-align: center;
}

.why-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
    text-align: center;
}

.key-points {
    background: var(--bg-light);
    padding: 2rem;
    margin: 2rem 0;
    box-shadow: var(--shadow-light);
}

.key-points h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
    font-size: 1.2rem;
}

.key-points ul {
    list-style: none;
}

.key-points li {
    padding: 0.75rem 0;
    color: var(--text-dark);
    position: relative;
    padding-left: 1.5rem;
    font-weight: 500;
}

.key-points li::before {
    content: "⚠";
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1rem;
}

/* More Than Storage */
.more-content {

    margin: 0 auto;
    text-align: center;
}

.more-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.more-content p {
    font-size: 1.1rem;
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.software-features {
    margin: 3rem 0;
}

.software-features h3 {
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.feature-item {
    background: var(--bg-white);
    padding: 2rem;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.feature-item h4 {
    color: var(--text-dark);
    font-weight: 600;
}

/* Image Gallery */
.image-gallery {
    padding: 80px 0;
    background-color: var(--bg-light);
}

.image-gallery h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-light);
    transition: var(--transition);
    height: 250px;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: var(--text-white);
    padding: 2rem 1.5rem 1.5rem;
    transform: translateY(100%);
    transition: var(--transition);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.gallery-overlay p {
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Contact Team */
.contact-team {
    padding: 80px 0;
    background-color: var(--bg-white);
}

.contact-team h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    text-align: center;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.team-member {
    background: var(--bg-light);
    padding: 2rem;
    text-align: center;
    transition: var(--transition);
}

.team-member:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-medium);
}

.member-avatar {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    overflow: hidden;
    border: 3px solid var(--primary-color);
}

.member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-member h3 {
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.member-title {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.member-region {
    color: var(--text-light);
    margin-bottom: 0.5rem;
}

.member-contact,
.member-email {
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.25rem;
}

/* Footer */
.footer {
    background-color: #000000;
    color: var(--text-white);
    padding: 3rem 0 1rem;
}

.footer .logo {
    height: 75px;
    width: auto;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    margin-bottom: 30px;
    align-items: start;
}

.footer-section-brand {
    min-width: 0;
}

.footer-section-title {
    font-size: 1.125rem;
    font-weight: 600;
    letter-spacing: 0.03em;
}

.footer-quick-links-nav {
    margin-top: 0.25rem;
}

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

.footer-menu li {
    margin-bottom: 0.5rem;
}

.footer-menu li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: var(--transition);
    font-size: 0.95rem;
}

.footer-menu li a:hover {
    color: var(--primary-color);
}

.footer-section-contact .region-header {
    margin-top: 0;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--text-white);
}

.footer-section p {
    color: #BDC3C7;
    line-height: 1.6;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #BDC3C7;
    text-decoration: none;
    transition: var(--transition);
}

.footer-section ul li a:hover {
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 15px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-white);
    text-decoration: none;
    transition: var(--transition);
}

.social-links a:hover {
    background-color: var(--primary-dark);
    transform: translateY(-2px);
}

.footer-trademark {
    margin-top: 1rem;
    margin-bottom: 0;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    font-weight: normal;
}

.footer-bottom {
    border-top: 1px solid #34495E;
    padding-top: 1rem;
    text-align: center;
    color: #BDC3C7;
}

@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 2.5rem;
    }
}

@media (max-width: 640px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .solution-content {
        padding: 1.5rem;
    }

    .solution-content h3 {
        font-size: 1.3rem;
    }
}

@media (max-width: 850px) {
    .hamburger {
        display: flex;
    }

    .nav-menu {
        display: none;
    }

    .hero {
        min-height: 500px;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .solution-content {
        padding: 1rem;
    }

    .solution-content h3 {
        font-size: 1.2rem;
    }

    .solution-content p {
        font-size: 0.9rem;
    }

    .feature-item {
        padding: 0.4rem 0;
    }

    .feature-item i {
        font-size: 0.9rem;
        margin-right: 0.5rem;
    }

    .feature-item span {
        font-size: 0.85rem;
    }

    .x-treme-header h4 {
        font-size: 0.9rem;
    }

    .x-treme-header .logo-subtitle {
        font-size: 0.65rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .swiper-button-next,
    .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .swiper-button-next::after,
    .swiper-button-prev::after {
        font-size: 1rem;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-light);
        margin: 0.5rem 0;
        border-radius: 0;
        padding: 0.5rem 0;
        min-width: auto;
    }

    .dropdown-submenu>ul {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: var(--bg-white);
        margin: 0.5rem 0;
        border-radius: 0;
        padding: 0.5rem 0;
        min-width: auto;
    }

    .dropdown-menu li a,
    .dropdown-submenu>a {
        padding: 0.5rem 1rem;
        text-align: left;
        border-bottom: 1px solid var(--border-light);
    }

    .dropdown-submenu>a i {
        transform: rotate(0deg);
    }

    .dropdown-submenu.active>a i {
        transform: rotate(90deg);
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .solutions-grid {
        grid-template-columns: 1fr;
    }

    .overview-content,
    .standards-content,
    .why-content {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
        min-height: auto;
    }

    .overview-text,
    .standards-text,
    .why-text {
        padding: 2rem;
        order: 2;
        min-height: 400px;
    }

    .overview-image,
    .standards-image,
    .why-image {
        order: 1;
        min-height: 300px;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .team-grid {
        grid-template-columns: 1fr;
    }

    .section-title {
        font-size: 2rem;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }

    .nav-actions {
        gap: 0.5rem;
    }

    .search-icon {
        width: 35px;
        height: 35px;
    }

    .search-icon i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    /* ===== HERO - Extra small mobile ===== */
    .hero {
        padding: 0;
        margin-bottom: 20px;
    }
    
    /* Split layout - daha compact */
    .hero .slide-image .hero-split {
        padding: 1.5rem 1rem;
        gap: 1rem;
    }
    
    .hero .slide-image .hero-title {
        font-size: 1.3rem;
    }
    
    .hero .slide-image .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .hero .slide-image .hero-buttons .btn {
        font-size: 0.85rem;
        padding: 0.6rem 1.2rem;
    }
    
    /* Navigation - daha küçük */
    .hero .swiper-button-next,
    .hero .swiper-button-prev {
        width: 35px;
        height: 35px;
    }
    
    .hero .swiper-button-next::after,
    .hero .swiper-button-prev::after {
        font-size: 20px;
    }
    
    .hero .swiper-button-next {
        right: 10px;
    }
    
    .hero .swiper-button-prev {
        left: 10px;
    }
    
    /* Pagination - daha küçük */
    .hero .swiper-pagination {
        padding: 15px 0;
    }
    
    .hero .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        margin: 0 4px;
    }
    
    .hero .swiper-pagination-bullet-active {
        width: 20px;
    }

    .container {
        padding: 0 15px;
    }

    .hero-title {
        font-size: 2rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
}

/* Contact Regions Container */

.contact-regions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* Region Header */
.region-header {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    color: #ffffff;
}

.region-header i {
    margin-right: 0.5rem;
    color: #ef4444;
}

/* Contact Items Container */
.contact-items-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Individual Contact Item */
.contact-item {
    display: flex;
    align-items: flex-start;
}

.contact-item.phone-item,
.contact-item.email-item {
    align-items: center;
}

/* Icon Container */
.contact-icon-container {
    width: 2.5rem;
    height: 2.5rem;
    background-color: #404040;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.75rem;
    flex-shrink: 0;
    transition: background-color 0.3s ease;
}

.contact-icon {
    color: #ef4444;
    font-size: 0.875rem;
}

/* Contact Content */
.contact-content {
    flex: 1;
}

.contact-address {
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.6;
    margin: 0;
}

.contact-link {
    color: #d1d5db;
    text-decoration: none;
    font-size: 0.875rem;
    transition: color 0.2s ease;
}

.contact-link:hover {
    color: #ffffff;
}
/* Mobile Responsive */
@media (max-width: 850px) {
    .contact-regions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .region-header {
        font-size: 0.875rem;
    }

    .contact-item {
        flex-direction: column;
        gap: 0.5rem;
    }

    .contact-item.phone-item,
    .contact-item.email-item {
        flex-direction: row;
        gap: 0;
    }

    .contact-icon-container {
        margin-right: 0.5rem;
        width: 2rem;
        height: 2rem;
    }

    .contact-address {
        margin-left: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contact-region-card {
        padding: 1rem;
    }

    .contact-regions-grid {
        gap: 1rem;
    }
}

/* Genel ayarlar */
.crime-lite-section, .vsc-range-section {
    padding: 80px 5%;
    background-color: #f9f9f9;
}

.crime-lite-container, .vsc-range-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;
}


/* Crime-Lite */
.crime-lite-image img {
    width: 500px;
    max-width: 100%;
}

.crime-lite-content, .crime-lite-image, .vsc-range-image, .vsc-range-content
{
    width: 50%;
}

.crime-lite-content h2 {
    font-size: 20px;
    color: #555;
    letter-spacing: 1px;
    margin-bottom: 10px;
}


.crime-lite-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.crime-lite-buttons .btn-primary, 
.crime-lite-buttons .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.crime-lite-buttons .btn-primary {
    background: black;
    color: white;
}

.crime-lite-buttons .btn-primary:hover {
    background: #333;
}

.crime-lite-buttons .btn-secondary {
    background: white;
    color: black;
    border: 2px solid black;
}

.crime-lite-buttons .btn-secondary:hover {
    background: black;
    color: white;
}

@media (max-width: 850px)
{
    .crime-lite-content, .crime-lite-image, .vsc-range-image, .vsc-range-content
    {
        width: 100%;
    }
}

/* VSC Range */
.vsc-range-image img {
    width: 500px;
    max-width: 100%;
}

.vsc-range-image, .crime-lite-image
{
    display: flex;
    justify-content: center;
}

.vsc-range-content h2 {
    font-size: 20px;
    color: #555;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.vsc-range-content h1, .crime-lite-content h1 {
    font-size: 50px;
    font-weight: bold;
    margin-bottom: 20px;
}

@media (max-width: 850px)
{
    .vsc-range-content h1, .crime-lite-content h1 {
        font-size: 24px;
    }
}

.vsc-range-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    color: #333;
}

.vsc-range-buttons .btn-primary, 
.vsc-range-buttons .btn-secondary {
    display: inline-block;
    padding: 14px 28px;
    font-size: 16px;
    font-weight: 500;
    text-decoration: none;
    margin-right: 10px;
    transition: all 0.3s ease;
}

.vsc-range-buttons .btn-primary {
    background: black;
    color: white;
}

.vsc-range-buttons .btn-primary:hover {
    background: #333;
}

.vsc-range-buttons .btn-secondary {
    background: white;
    color: black;
    border: 2px solid black;
}

.vsc-range-buttons .btn-secondary:hover {
    background: black;
    color: white;
}

/* Responsive */
@media(max-width: 992px) {
    .crime-lite-container, .vsc-range-container {
        flex-direction: column;
        text-align: center;
    }

    .crime-lite-image img, .vsc-range-image img {
        width: 80%;
    }
}



/* Home References - fresh marquee */
/* Engineering Tagline Section */
.engineering-tagline-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.engineering-tagline-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(236, 28, 36, 0.03) 0%, transparent 100%);
    pointer-events: none;
}

.engineering-tagline {
    text-align: center;
    position: relative;
    z-index: 1;
}

.tagline-main {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    background: linear-gradient(135deg, #1a1a1a 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.tagline-sub {
    font-size: 1.5rem;
    font-weight: 400;
    color: #6b7280;
    margin: 0;
    letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
    .engineering-tagline-section {
        padding: 60px 0;
    }
    
    .tagline-main {
        font-size: 2.2rem;
    }
    
    .tagline-sub {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .engineering-tagline-section {
        padding: 50px 0;
    }
    
    .tagline-main {
        font-size: 1.8rem;
    }
    
    .tagline-sub {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .engineering-tagline-section {
        padding: 40px 0;
    }
    
    .tagline-main {
        font-size: 1.5rem;
    }
    
    .tagline-sub {
        font-size: 0.95rem;
    }
}

/* Featured Highlights Section */
.featured-highlights-section {
    padding: 100px 0;
    background: #ffffff;
    overflow: hidden;
}

.featured-highlights-section .container {
    overflow: hidden;
    padding-top: 20px;
    padding-bottom: 20px;
}

.featured-highlights-header {
    text-align: center;
    margin-bottom: 3rem;
}

.featured-highlights-header .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.featured-highlights-slider {
    position: relative;
    padding: 0 50px;
    overflow: hidden;
}

.featured-highlights-slider .swiper {
    overflow: hidden;
    padding: 20px 0;
}

.featured-highlights-slider .swiper-wrapper {
    align-items: stretch;
    padding-top: 20px;
    padding-bottom: 20px;
}

.featured-highlights-slider .swiper-slide {
    height: auto;
    display: flex;
    overflow: visible;
    padding: 0 10px;
}

.featured-highlight-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06), 0 4px 24px rgba(0, 0, 0, 0.04);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid rgba(0, 0, 0, 0.04);
    position: relative;
}

.featured-highlight-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12), 0 16px 48px rgba(0, 0, 0, 0.08);
    transform: translateY(-8px);
    border: 2px solid #EC1C24;
}

.featured-highlight-card a {
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    color: inherit;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.featured-highlight-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.featured-highlight-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.02) 100%);
    pointer-events: none;
}

.featured-highlight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Product pages (featured items) should use contain to show full product */
.featured-product .featured-highlight-image img {
    object-fit: contain;
    background: #ffffff;
    padding: 15px;
}

.featured-highlight-card:hover .featured-highlight-image img {
    transform: scale(1.08);
}

/* Product hover - slightly less scale for contain images */
.featured-product:hover .featured-highlight-image img {
    transform: scale(1.05);
}

.featured-highlight-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.featured-highlight-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0 0 1rem 0;
    line-height: 1.5;
    letter-spacing: -0.02em;
    flex-shrink: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: calc(1.5em * 2);
}

.featured-highlight-description {
    font-size: 0.95rem;
    color: #6b7280;
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-shrink: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.featured-highlight-btn {
    display: inline-block;
    color: #EC1C24;
    text-decoration: none !important;
    text-decoration-line: none !important;
    text-decoration-style: none !important;
    text-decoration-color: transparent !important;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid #EC1C24;
    text-align: center;
    margin-top: auto;
    border-radius: 12px;
    width: 100%;
    box-sizing: border-box;
    flex-shrink: 0;
    pointer-events: none;
}

.featured-highlight-card:hover .featured-highlight-btn {
    background-color: #EC1C24;
    color: #fff;
}

.featured-highlight-btn i {
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.featured-highlight-btn:hover i {
    transform: translateX(3px);
}

.featured-highlights-slider .swiper-pagination {
    position: relative;
    margin-top: 2rem;
}

.featured-highlights-slider .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #d1d5db;
    opacity: 1;
}

.featured-highlights-slider .swiper-pagination-bullet-active {
    background: var(--primary-color);
}

.featured-highlights-slider .swiper-button-next,
.featured-highlights-slider .swiper-button-prev {
    color: var(--primary-color);
    background: #ffffff;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
    z-index: 10;
}

.featured-highlights-slider .swiper-button-next:hover,
.featured-highlights-slider .swiper-button-prev:hover {
    background: var(--primary-color);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(236, 28, 36, 0.3);
}

.featured-highlights-slider .swiper-button-next::after,
.featured-highlights-slider .swiper-button-prev::after {
    font-size: 18px;
    font-weight: 900;
}

@media (max-width: 850px) {
    .featured-highlights-section {
        padding: 80px 0;
    }
    
    .featured-highlights-section .container {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .featured-highlights-header .section-title {
        font-size: 2rem;
    }
    
    .featured-highlights-slider {
        padding: 0 40px;
    }
    
    .featured-highlights-slider .swiper {
        padding: 15px 0;
    }
    
    .featured-highlights-slider .swiper-wrapper {
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .featured-highlights-slider .swiper-slide {
        padding: 0 5px;
    }
    
    .featured-highlight-card {
        border-radius: 12px;
    }
    
    .featured-highlight-image {
        height: 220px;
    }
    
    .featured-highlight-content {
        padding: 1.5rem;
    }
    
    .featured-highlight-title {
        font-size: 1.15rem;
        margin-bottom: 1rem;
    }
    
    .featured-highlight-btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Product images on mobile - adjust padding */
    .featured-product .featured-highlight-image img {
        padding: 10px;
    }
}

/* Counter Section */
.counter-section {
    padding: 80px 0;
    background: #E62E35;
    position: relative;
    overflow: hidden;
}

.counter-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.counter-item {
    text-align: center;
    color: #ffffff;
}

.counter-value {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
}

.counter-prefix {
    font-size: 3.5rem;
    font-weight: 700;
}

.counter-number {
    font-size: 3.5rem;
    font-weight: 700;
}

.counter-label {
    font-size: 1.25rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 1024px) {
    .counter-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3rem;
    }
    
    .counter-value,
    .counter-prefix,
    .counter-number {
        font-size: 3rem;
    }
    
    .counter-label {
        font-size: 1.1rem;
    }
}

@media (max-width: 850px) {
    .counter-section {
        padding: 60px 0;
    }
    
    .counter-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .counter-value,
    .counter-prefix,
    .counter-number {
        font-size: 2.5rem;
    }
    
    .counter-label {
        font-size: 1rem;
    }
}

.home-references {
    padding: 80px 0;
    background: #f8f9fa;
}

.home-references-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-references-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.home-references-text h2 {
    font-size: 2.25rem;
    font-weight: 900;
    color: #000;
    margin-bottom: 1rem;
}

.home-references-text p {
    font-size: 1.1rem;
    color: #000;
}

.home-references-strip {
    overflow: hidden;
    position: relative;
}

.home-references-strip-inner {
    display: flex;
    flex-wrap: nowrap;
    animation: home-references-marquee 40s linear infinite;
}

.home-references-strip.paused .home-references-strip-inner {
    animation-play-state: paused;
}

.home-reference-item {
    flex: 0 0 20%;
    max-width: 15%;
    padding: 0 10px;
    box-sizing: border-box;
}

.home-reference-card {
    background: #fff;
    aspect-ratio: 1/1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 6rem;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.08);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.home-reference-card:hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.15);
    transform: translateY(-2px);
}

.home-reference-card img {
    max-width: 100%;
    max-height: 6rem;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: grayscale(100%);
    transition: filter 0.3s ease, transform 0.3s ease;
    border-radius: 0 !important;
}

.home-reference-card:hover img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

@keyframes home-references-marquee {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}

@media (max-width: 640px) {
    .home-reference-item {
        flex: 0 0 50%;
        max-width: 33%;
    }
    .home-references {
        padding: 60px 0;
    }
    .home-references-text h2 {
        font-size: 1.8rem;
    }
    .home-references-text p {
        font-size: 1rem;
    }
}
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4141a 100%);
    padding: 80px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    margin-top: 100px;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('images/gorsel/banner.png') center/cover;
    opacity: 0.1;
    z-index: 1;
}

.elementor-page-71 .page-header::before
{
	background: url('../../uploads/2025/09/header1.jpg') center/cover;
	opacity: 0.35; /* make image more visible on contact page */
	mix-blend-mode: multiply; /* keep the red gradient influence without washing out */
	filter: brightness(0.85) contrast(1.15) saturate(1.1);
}

.page-header-content {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
}

.page-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: white;
}

.breadcrumb i {
    font-size: 0.8rem;
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
    position: relative;
}

.about-text h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-color);
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.about-image {
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-large);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

/* Vision Mission Section */
.vision-mission {
    padding: 100px 0;
    background: var(--bg-light);
}

.vm-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.vm-card {
    background: var(--bg-white);
    padding: 3rem;
    box-shadow: var(--shadow-medium);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-large);
}

.vm-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #d4141a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0rem;
    color: white;
    font-size: 2rem;
}

.vm-card h3 {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.vm-card p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-gray);
}

/* Capabilities Section */
.capabilities {
    padding: 100px 0;
    background: var(--bg-white);
}

.capabilities-header {
    text-align: center;
    margin-bottom: 4rem;
}

.capabilities-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.capabilities-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.capability-card {
    background: var(--bg-light);
    padding: 2.5rem;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.capability-card:hover {
    background: var(--bg-white);
    border-color: var(--primary-color);
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
}

.capability-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.5rem;
}

.capability-card h4 {
    font-size: 1.3rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.capability-card p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--text-gray);
}

/* Stats Section */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary-color) 0%, #d4141a 100%);
    color: white;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.stat-item {
    position: relative;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.9;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Quality Policy */
.quality-policy {
    padding: 100px 0;
    background: #fff;
}

.quality-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.quality-content h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.quality-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-gray);
}

/* Responsive Design */
@media (max-width: 850px) {
    .page-title {
        font-size: 2.5rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .vm-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .capabilities-grid {
        grid-template-columns: 1fr;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .vm-card,
    .capability-card {
        padding: 2rem;
    }
}

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

    .page-header {
        padding: 100px 0 60px;
    }
}


.career-form
{
    max-width: 100%;
    display: flex;
    justify-content: center;
    padding: 40px 0;
}

.form-container {
    background-color: #fff;
    padding: 40px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    width: 100%;
}
.form-row {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
    gap: 20px;
}
.form-group {
    flex: 1;
    min-width: 250px;
}
label {
    display: block;
    font-weight: bold;
    margin-bottom: 5px;
    color: #333;
}
input[type="text"],
input[type="email"],
textarea,
select {
    width: 100%;
    padding: 12px;
    border: 1px solid #ccc;
    box-sizing: border-box;
    font-size: 16px;
}
select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="%23666"><path d="M7 10l5 5 5-5z"/></svg>');
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 16px;
}
textarea {
    resize: vertical;
    min-height: 150px;
}
.upload-section {
    border: 1px solid #ccc;
    padding: 10px;
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.upload-button {
    background-color: #e0e0e0;
    border: none;
    padding: 8px 15px;
    font-size: 14px;
    cursor: pointer;
}
.file-name {
    margin-left: 10px;
    color: #888;
    font-style: italic;
}

.gdpr-section {
    display: flex;
    align-items: center;
    margin-top: 20px;
}
.gdpr-section input[type="checkbox"] {
    width: auto;
    margin-right: 10px;
}
.submit-button {
    width: 100%;
    padding: 15px;
    background-color: #e62129;
    color: #fff;
    border: none;
    font-size: 18px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}
.submit-button:hover {
    background-color: #d11a21;
}
.required::after {
    content: "*";
    color: #e62129;
    margin-left: 5px;
}

@media (max-width: 600px) {
    .form-row {
        flex-direction: column;
    }
    .form-container {
        padding: 20px;
    }
}

/* Haberler Bölümü */
.news-section {
    background-color: #f8f9fa; /* Açık gri tonu, beyazdan biraz farklı */
    padding: 60px 0;
}

.section-title {
    text-align: center;
    color: #343a40; /* Koyu metin rengi */
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 50px;
}

.news-cards-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* Haber Kartı */
.news-card {
    background-color: #fff;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
	border-radius: 20px;
}

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

.news-image {
   	width: 100%;
    height: 300px;
    object-fit: contain;
    object-position: top center;
}

.card-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-date {
    display: block;
    font-size: 14px;
    color: #6c757d;
    margin-bottom: 10px;
}

.news-title {
    font-size: 20px;
    font-weight: 600;
    color: #212529;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.news-excerpt {
    font-size: 15px;
    color: #495057;
    margin-bottom: 20px;
    line-height: 1.5;
    flex-grow: 1;
}

.read-more {
    display: inline-block;
    color: #EC1C24;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 10px 20px;
    border: 2px solid #EC1C24;
    text-align: center;
    margin-top: auto;
	border-radius: 12px;
}

.read-more:hover {
    background-color: #EC1C24;
    color: #fff;
}

/* Homepage News Section */
.homepage-news-section {
    padding: 80px 0;
}

.news-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.news-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.news-text h2 {
    font-size: 36px;
    font-weight: 700;
    color: #212529;
    margin-bottom: 10px;
}

.news-text p {
    font-size: 18px;
    color: #6c757d;
    margin: 0;
}

.news-nav {
    display: flex;
    align-items: center;
}

.all-news-btn {
    display: inline-block;
    background-color: #EC1C24;
    color: #fff;
    text-decoration: none;
    padding: 12px 30px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid #EC1C24;
	border-radius: 12px;
}

.all-news-btn:hover {
    background-color: transparent;
    color: #EC1C24;
}

/* Mobil Uyum */
@media (max-width: 850px) {
    .news-section {
        padding: 40px 0;
    }
    .section-title {
        font-size: 30px;
        margin-bottom: 40px;
    }
    
    /* Homepage News Responsive */
    .homepage-news-section {
        padding: 60px 0;
    }
    
    .news-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        margin-bottom: 40px;
    }
    
    .news-text h2 {
        font-size: 28px;
    }
    
    .news-text p {
        font-size: 16px;
    }
    
    .news-nav {
        align-self: stretch;
    }
    
    .all-news-btn {
        width: 100%;
        text-align: center;
    }
}

/* İletişim Bölümü */
.contact-section {
  padding-top: 4rem; /* py-16 */
  padding-bottom: 4rem; /* py-16 */
  background-color: #fff;
}

.contact-container {
  max-width: 100%; /* max-w-7xl */
  padding-left: 1rem; /* px-4 */
  padding-right: 1rem; /* px-4 */
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (min-width: 640px) {
  .contact-container {
    padding-left: 1.5rem; /* sm:px-6 */
    padding-right: 1.5rem; /* sm:px-6 */
  }
}

@media (min-width: 1024px) {
  .contact-container {
    padding-left: 2rem; /* lg:px-8 */
    padding-right: 2rem; /* lg:px-8 */
  }
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* lg:grid-cols-2 */
  }
}

.contact-grid {
  display: flex;
  gap: 50px;
  
}

/* İletişim Formu */
.contact-form-card {
  border: 1px solid var(--color-neutral-200); /* border border-neutral-200 */
  background-color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
  padding: 2rem; /* p-8 */
	border-radius: 20px;
}

.form-title {
  font-size: 1.5rem; /* text-2xl */
  font-weight: 700; /* font-bold */
  color: var(--color-neutral-900);
  margin-bottom: 1.5rem; /* mb-6 */
}

.form-body {
  display: flex;
  flex-direction: column;
  gap: 1.5rem; /* space-y-6 */
}

.input-group {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem; /* gap-6 */
}

@media (min-width: 768px) {
  .input-group {
    grid-template-columns: repeat(2, minmax(0, 1fr)); /* md:grid-cols-2 */
  }
}

.form-label {
  display: block;
  font-size: 0.875rem; /* text-sm */
  font-weight: 500; /* font-medium */
  color: var(--color-neutral-700);
  margin-bottom: 0.5rem; /* mb-2 */
}

.form-input,
.form-textarea {
  width: 100%;
  padding: 0.75rem 1rem; /* px-4 py-3 */
  border: 1px solid var(--color-neutral-300);
  transition-duration: 300ms;
}

.form-input:focus,
.form-textarea:focus {
  outline: 2px solid transparent;
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--color-primary-600); /* focus:ring-2 focus:ring-primary-600 */
  border-color: transparent; /* focus:border-transparent */
}

.form-textarea {
  resize: none; /* resize-none */
}

.char-count {
  text-align: right;
  font-size: 0.875rem; /* text-sm */
  color: var(--color-neutral-500);
  margin-top: 0.25rem; /* mt-1 */
}

.kvkk-check {
  display: flex;
  align-items: flex-start; /* items-start */
}

.kvkk-checkbox {
  height: 1rem; /* h-4 */
  width: 1rem; /* w-4 */
  color: var(--color-primary-600);
  border-color: var(--color-neutral-300);
  margin-top: 0.25rem; /* mt-1 */
}

.kvkk-checkbox:focus {
  box-shadow: 0 0 0 1px var(--color-primary-500);
}

.kvkk-label {
  margin-left: 0.5rem; /* ml-2 */
  font-size: 0.875rem; /* text-sm */
  color: var(--color-neutral-700);
}

.submit-button {
  width: 100%;
  background-color: var(--color-primary-600);
  color: #fff;
  font-weight: 600; /* font-semibold */
  padding: 0.75rem 1.5rem; /* py-3 px-6 */
  transition-property: background-color, box-shadow; /* transition-colors duration-300 */
  transition-duration: 300ms;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05); /* shadow-lg */
}

.submit-button:hover {
  background-color: var(--color-primary-700);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04); /* hover:shadow-xl */
}

/* İletişim Bilgileri */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 2rem; /* space-y-8 */
}

.info-card {
  background-color: var(--color-neutral-50);
  border: 1px solid var(--color-neutral-200);
  padding: 1.5rem; /* p-6 */
}

.info-header {
  display: flex;
  align-items: flex-start; /* items-start */
}

.info-icon-wrapper {
  width: 3rem; /* w-12 */
  height: 3rem; /* h-12 */
  background-color: var(--color-primary-600);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 1rem; /* mr-4 */
  flex-shrink: 0;
	border-radius: 50%;
}

.info-icon {
  color: #fff;
  font-size: 1.25rem; /* text-xl */
}

.info-content {
  display: flex;
  flex-direction: column;
}

.info-title {
  font-size: 1.25rem; /* text-xl */
  font-weight: 700; /* font-bold */
  color: var(--color-neutral-900);
  margin-bottom: 0.75rem; /* mb-3 */
}

.info-details {
  display: flex;
  flex-direction: column;
  gap: 0.5rem; /* space-y-2 */
  color: var(--color-neutral-700);
}

.info-detail-item {
  font-weight: 600; /* font-semibold */
}


.map-contact-container {
  max-width: 80rem; /* max-w-7xl */
  margin-left: auto; /* mx-auto */
  margin-right: auto; /* mx-auto */
  padding-left: 1rem; /* px-4 */
  padding-right: 1rem; /* px-4 */
}

/* Harita Bölümü */
.map-section {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: var(--color-neutral-100);
}

.map-header {
  text-align: center;
  margin-bottom: 3rem; /* mb-12 */
}

.map-title {
  font-size: 1.875rem; /* text-3xl */
  font-weight: 700;
  color: var(--color-neutral-900);
  margin-bottom: 1rem;
}

.map-description {
  font-size: 1.125rem; /* text-lg */
  color: var(--color-neutral-600);
}

.map-container {
  background-color: #fff;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

.map-responsive {
  position: relative;
  width: 100%;
  padding-top: 56.25%; /* 16:9 aspect ratio */
}

.map-responsive iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.new-container
{
    width: 100%;
    display: flex;
    justify-content: center;
}

.new-section
{
    margin: 100px 0;
    max-width: 1200px;
}

.new-section .new-content-all
{
    display: flex;
    justify-content: center;
    gap: 50px;
}

.new-content-all img, .new-content
{
    width: 50%;
}

.new-content-all img
{
    width: 350px;
}

.language-selector {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    border: 1px solid #e2e8f0;
    background: #ffffff;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 14px;
    color: #4a5568;
	border-radius: 8px;
    position: relative;
}

.language-selector:hover {
    border-color: #cbd5e0;
    background: #f7fafc;
}

.language-selector i {
    font-size: 12px;
    color: #a0aec0;
}

.current-language {
    font-weight: 500;
    color: #4a5568;
}

/* Language Dropdown */
.language-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    min-width: 180px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    margin-top: 5px;
}

.language-selector.active .language-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.language-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f1f5f9;
    text-decoration: none;
    color: inherit;
}

.language-option:last-child {
    border-bottom: none;
}

.language-option:hover {
    background: #f8fafc;
}

.language-option.active {
    background: #e0f2fe;
    color: #0369a1;
}

.flag {
    font-size: 18px;
    width: 24px;
    text-align: center;
}

.lang-name {
    font-size: 14px;
    font-weight: 500;
}

/* Mobile Responsive for Language Selector */
@media (max-width: 850px) {
    .language-selector {
        padding: 6px 10px;
        font-size: 12px;
    }

    .language-dropdown {
        right: -10px;
        min-width: 160px;
    }

    .language-option {
        padding: 10px 14px;
    }

    .flag {
        font-size: 16px;
        width: 20px;
    }

    .lang-name {
        font-size: 13px;
    }
}

/**
 * Tabs
 */
.tabs {
	display: flex;
	flex-wrap: wrap; 
}
.tabs label {
	order: 1; 
	display: block;
	padding: 0.7rem;
	font-size: 12px;
	margin-right: 0.2rem;
	cursor: pointer;
  background: #EC1C24;
  color: #fff;
  font-weight: bold;
  transition: all ease 0.2s;
	border-radius: 10px;
	border: 2px solid transparent;
}
.tabs .tab {
  order: 99; 
  flex-grow: 1;
	width: 100%;
	display: none;
  padding: 1rem 0;
  background: #fff;
}
.tabs input[type="radio"] {
	display: none;
}
.tabs input[type="radio"]:checked + label {
	background: #fff;
    color: #EC1C24;
	border: 2px solid #EC1C24;
}
.tabs input[type="radio"]:checked + label + .tab {
	display: block;
}

@media (max-width: 850px) {
  .tabs .tab,
  .tabs label {
    order: initial;
  }
  .tabs label {
    width: 100%;
    margin-right: 0;
    margin-top: 0.2rem;
	padding: 0.75rem 1rem;
	font-size: 0.9rem;
  }
  .tabs input[type="radio"]:checked + label {
	border: 2px solid #EC1C24;
  }
}

.rwd-table {
  margin: auto;
  width: 100%;
	border-radius: 20px;
}

.rwd-table tr:first-child {
  border-top: none;
  background: #EC1C24;
  color: #fff;
}

.rwd-table tr:first-child td {
  color: #fff !important;
}

.rwd-table tr {
  border-top: 1px solid #ddd;
  border-bottom: 1px solid #ddd;
  background-color: #f5f9fc;
}

.rwd-table tr:nth-child(odd):not(:first-child) {
  background-color: #ebf3f9;
}

.rwd-table th {
  display: none;
}

.rwd-table td {
  display: block;
}

.rwd-table td:first-child {
  margin-top: .5em;
}

.rwd-table td:last-child {
  margin-bottom: .5em;
}

.rwd-table th,
.rwd-table td {
  text-align: left;
}

.rwd-table {
  color: #333;
  overflow: hidden;
}

.rwd-table tr:first-child td,
.rwd-table tr:first-child th {
  color: #fff !important;
}

.bwt-250-tabs .rwd-table tr:first-child td {
  color: #fff !important;
}

.rwd-table tr {
  border-color: #bfbfbf;
}

.rwd-table th,
.rwd-table td {
  padding: .5em 1em;
}

@media screen and (max-width: 601px) {
  .rwd-table tr:nth-child(2) {
    border-top: none;
  }
  
  .rwd-table tr:first-child td {
    color: #fff !important;
    font-weight: 600;
  }
  
  .rwd-table td:before {
    color: #333;
  }
  
  .rwd-table {
    font-size: 0.9rem;
  }
  
  .rwd-table td {
    padding: 0.75em 1em;
  }
}
@media screen and (min-width: 600px) {
  .rwd-table tr:hover:not(:first-child) {
    background-color: #d8e7f3;
  }
  .rwd-table td:before {
    display: none;
  }
  .rwd-table th,
  .rwd-table td {
    display: table-cell;
    padding: .25em .5em;
  }
  .rwd-table th:first-child,
  .rwd-table td:first-child {
    padding-left: 0;
  }
  .rwd-table th:last-child,
  .rwd-table td:last-child {
    padding-right: 0;
  }
  .rwd-table th,
  .rwd-table td {
    padding: 1em !important;
  }
  
  /* Ensure first row text is white on desktop too */
  .rwd-table tr:first-child td {
    color: #fff !important;
  }
}

/* --- Ana Taşıyıcı Kutu --- */
.main-container {
    background-color: #e62e35; /* Görseldeki ana kırmızı renk */
    color: #ffffff;
    padding: 50px 60px;
    max-width: 50%;
    width: 100%;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1); /* Hafif bir gölge efekti */
}

/* --- Başlık Bölümü --- */
.header-content h1 {
    font-size: 3rem; /* 56px */
    font-weight: 900; /* En kalın font ağırlığı */
    margin-bottom: 0.2rem;
}

.header-content h2 {
    font-size: 2rem; /* 32px */
    font-weight: 400; /* Daha ince font ağırlığı */
    margin-bottom: 1.5rem;
    opacity: 0.9;
}

.header-content p {
    font-size: 1rem; /* 16px */
    line-height: 1.6;
    max-width: 65ch; /* Okunabilirliği artırmak için satır uzunluğu limiti */
}


/* --- Avantajlar Bölümü --- */
.advantages-section {
    margin-top: 40px;
}

.advantages-section h3 {
    font-size: 1.75rem; /* 28px */
    font-weight: 700;
    margin-bottom: 25px;
}

/* --- Avantaj Kartları --- */
.advantage-card {
    background-color: #ffffff;
    padding: 25px 30px;
    margin-bottom: 20px;
    color: #333; /* Kart içindeki yazı rengi */
    border-radius: 15px;
}

/* Son kartın altındaki boşluğu kaldırmak için */
.advantage-card:last-child {
    margin-bottom: 0;
}

.advantage-card h4 {
    color: #e62e35; /* Başlık rengini ana kırmızı renk yapalım */
    font-size: 1.25rem; /* 20px */
    font-weight: 700;
    margin-bottom: 8px;
}

.advantage-card p {
    font-size: 1rem; /* 16px */
    color: #555; /* Alt metin için biraz daha açık bir ton */
}

/* --- Mobil Cihazlar İçin Ayarlamalar (Responsive Tasarım) --- */
@media (max-width: 850px) {
    .main-container {
        padding: 30px 25px;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-content h2 {
        font-size: 1.5rem;
    }

    .advantages-section h3 {
        font-size: 1.4rem;
    }

    .advantage-card {
        padding: 20px;
    }

    .advantage-card h4 {
        font-size: 1.1rem;
    }

    .advantage-card p {
        font-size: 0.9rem;
    }
}

.features-section {
    padding: 80px 20px;
    text-align: center;
}

.section-container {
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #e62e35; /* Ana kırmızı renk */
    margin-bottom: 15px;
}

.title-underline {
    width: 100px;
    height: 3px;
    background-color: #e62e35;
    margin: 0 auto 60px auto; /* Üst-alt-sağ-sol: Otomatik ortalar ve alt boşluk bırakır */
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 eşit genişlikte sütun oluşturur */
    gap: 30px; /* Sütunlar ve satırlar arasındaki boşluk */
    justify-items: center; /* Öğeleri kendi grid hücreleri içinde yatayda ortalar */
}

.feature-item {
    display: flex;
    flex-direction: column; /* İçerikleri dikeyde hizalar */
    align-items: center;   /* İçerikleri yatayda ortalar */
    flex-basis: 200px; /* Her bir öğenin temel genişliği */
    max-width: 200px;
}

.feature-icon {
    font-size: 5rem; /* İkon boyutu */
    color: #e62e35;
    margin-bottom: 20px;
}

.feature-title {
    font-size: 1.1rem; /* 18px */
    font-weight: 700;
    color: #222222;
    margin-bottom: 8px;
    height: 40px; /* Başlıkların aynı hizada durması için sabit yükseklik */
    display: flex;
    align-items: center;
}

.feature-subtitle {
    font-size: 0.9rem; /* 14.4px */
    color: #666666;
    line-height: 1.5;
}


/* --- Özellikler Bölümü Mobil Uyumluluk --- */
@media (max-width: 850px) {
    .features-section {
        padding: 60px 15px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .title-underline {
        margin-bottom: 40px;
    }

    .features-grid {
        gap: 40px 15px;
    }

    .feature-item {
        flex-basis: 150px;
    }
}

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


.product-card a
{
    text-decoration: none;
}


/* Modern Search Overlay Styles */
.search-overlay {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    padding: 0;
    min-width: 400px;
    max-width: 500px;
    z-index: 1000;
    display: none;
    animation: slideDown 0.3s ease-out;
    border: 1px solid #e5e7eb;
    overflow: hidden;
    margin-top: 0;
}

.search-overlay.show {
    display: block;
}

.search-container {
    padding: 0;
    max-height: 70vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.search-form-overlay {
    padding: 20px;
    border-bottom: 1px solid #f3f4f6;
    background: #f8f9fa;
}

.search-close-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    background: transparent;
    border: none;
    color: #9ca3af;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease;
    z-index: 2;
}

.search-close-btn:hover {
    background: #f3f4f6;
    color: #374151;
}

@media (min-width: 769px) {
    .search-close-btn {
        display: none;
    }
}

.search-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    background: white;
    border-radius: 8px;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    overflow: hidden;
}

.search-input-wrapper:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(236, 28, 36, 0.1);
}

.search-input-wrapper input[type="search"] {
    flex: 1;
    padding: 12px 16px;
    border: none;
    font-size: 16px;
    outline: none;
    background: transparent;
    color: #374151;
}

.search-input-wrapper input[type="search"]::placeholder {
    color: #9ca3af;
}

.search-submit-btn {
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-submit-btn:hover {
    background: var(--primary-dark);
}

.search-submit-btn i {
    font-size: 16px;
}

/* Search Suggestions */
.search-suggestions {
    padding: 20px;
    background: white;
}

.search-suggestion-header {
    margin-bottom: 15px;
}

.search-suggestion-header h4 {
    font-size: 14px;
    font-weight: 600;
    color: #6b7280;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-suggestion-items {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.suggestion-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    color: #374151;
    text-decoration: none;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 14px;
}

.suggestion-item:hover {
    background: #f3f4f6;
    color: var(--primary-color);
    transform: translateX(4px);
}

.suggestion-item i {
    color: var(--primary-color);
    font-size: 16px;
    width: 20px;
    text-align: center;
}

/* Search Results */
.search-results {
    padding: 0px !important;
    background: white;
}

.search-results::-webkit-scrollbar {
    width: 6px;
}

.search-results::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.search-results::-webkit-scrollbar-thumb {
    background: #c1c1c1;
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: #a8a8a8;
}

.search-result-item {
    padding: 15px 20px;
    border-bottom: 1px solid #f3f4f6;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-result-item:hover {
    background: #f8f9fa;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-title {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 5px;
    font-size: 14px;
}

.search-result-title a {
    color: inherit;
    text-decoration: none;
}

.search-result-title a:hover {
    color: var(--primary-color);
}

.search-result-excerpt {
    font-size: 12px;
    color: #6b7280;
    line-height: 1.4;
}

.search-result-type {
    font-size: 11px;
    color: var(--primary-color);
    text-transform: uppercase;
    font-weight: 600;
    margin-top: 5px;
}

/* Mobile Search Styles */
@media (max-width: 850px) {
    .search-overlay {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100vw;
        height: 100vh;
        max-width: 100vw;
        min-width: 100vw;
        border-radius: 0;
        background: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(2px);
        z-index: 10000;
        display: none; /* hidden by default */
        align-items: center; /* center vertically */
        justify-content: center; /* center horizontally */
        padding: 0; /* remove top padding to avoid offset */
        overflow: hidden;
    }
    
    .search-overlay.show {
        display: flex; /* show as flex only when active */
    }
    
    .search-container {
        background: white;
        border-radius: 12px;
        width: 92%;
        max-width: 520px;
        max-height: 85vh;
        overflow-y: auto;
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
        transform: translateZ(0); /* prevent subpixel shifts */
        display: flex;
        flex-direction: column;
    }
    
    .search-results {
        max-height: calc(85vh - 120px);
    }
    
    .search-form-overlay {
        padding: 20px;
        background: white;
        border-bottom: 1px solid #f3f4f6;
        padding-top: 60px; /* reserve space for mobile close button */
    }
    
    .search-input-wrapper {
        flex-direction: row; /* keep button aligned with input on mobile */
        border-radius: 8px;
    }
    
    .search-input-wrapper input[type="search"] {
        padding: 14px 12px;
        font-size: 16px;
        border-bottom: none; /* remove extra divider */
    }
    
    .search-submit-btn {
        width: auto;
        height: 44px;
        padding: 0 16px;
        font-size: 16px;
        font-weight: 600;
        border-top-left-radius: 0;
        border-bottom-left-radius: 0;
    }
    
    .search-suggestions {
        padding: 20px;
    }
    
    .search-suggestion-items {
        gap: 10px;
    }
    
    .suggestion-item {
        padding: 12px 15px;
        font-size: 15px;
    }
    
    .search-result-item {
        padding: 15px 20px;
    }
    
    .search-result-title {
        font-size: 15px;
    }
    
    .search-result-excerpt {
        font-size: 13px;
    }
}

/* Search Animation */
@keyframes slideDown {
    from {
        transform: translateY(-10px);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Search Icon Hover Effect */
.search-icon:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-medium);
}

.search-icon:hover i {
    color: white;
}

/* Animations */
@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Preloader */
#emt-preloader {
    position: fixed;
    inset: 0;
    background: #ffffff;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.4s ease, visibility 0.4s ease;
}

#emt-preloader.hide {
    opacity: 0;
    visibility: hidden;
}

.emt-preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.emt-spinner {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid #f1f5f9;
    border-top-color: var(--primary-color);
    animation: emt-spin 0.9s linear infinite;
}

@keyframes emt-spin { to { transform: rotate(360deg); } }

.emt-preloader-text {
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #9ca3af;
    font-size: 12px;
}

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

@keyframes modalSlideIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Mobile Responsive for Cookie and Search */
@media (max-width: 850px) {
    .cookie-consent {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .cookie-buttons {
        flex-direction: column;
    }
    
    .cookie-buttons .btn {
        width: 100%;
    }
    
    .preferences-content {
        margin: 10px;
        max-height: 90vh;
    }
}
.page-content-text .elementor-heading-title, .page-content-text h2
{
	border-bottom: none;
}

.career-form .wpcf7-form-control:not(.wpcf7-checkbox) {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 15px;
    box-sizing: border-box;
}

.career-form .wpcf7-submit {
    background-color: #EC1C24;
    color: #fff;
    padding: 12px 25px;
    border: none;
    cursor: pointer;
    font-size: 16px;
    border-radius: 5px;
    transition: background-color 0.3s;
}

.career-form .wpcf7-submit:hover {
    background-color: #C41820;
}

.references-btn-container
{
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	margin-top: 30px;
}

.references-btn
{
	border: 1px solid #E62E35;
	border-radius: 8px;
	padding: 8px 12px;
	max-width: 350px;
    text-align: center;
	transition: 0.4s ease;
}

.references-btn a
{
	color: #E62E35;
	text-decoration: none;
	transition: 0.4s ease;
}

.references-btn:hover
{
	background-color: #e62e35;
}

.references-btn:hover a
{
	color: white;
}

.btn
{
	border-radius: 12px;
}

@media (max-width: 850px) {
    /* Hero section - minimal padding on mobile */
    .hero {
        padding: 0;
        background: #fff;
    }
    
    .hero .hero-slider {
        max-width: 100%;
        border-radius: 0;
        box-shadow: none;
    }
    
    .hero .swiper-slide {
        min-height: auto;
    }
    
    /* ===== SPLIT LAYOUT (Image + Text) - Mobile ===== */
    .hero .slide-image .hero-split {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 2rem 1.5rem;
        min-height: auto;
    }
    
    .hero .slide-image .split-media picture,
    .hero .slide-image .split-media img {
        max-height: none;
        height: auto;
        width: 100%;
    }
    
    .hero .slide-image .hero-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .hero .slide-image .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .hero .slide-image .hero-buttons .btn {
        font-size: 0.9rem;
        padding: 0.7rem 1.5rem;
    }
    
    /* ===== FULL WIDTH IMAGE - Mobile (tam genişlik, dikey görsel) ===== */
    .hero .slide-fullwidth {
        min-height: auto;
        padding: 0;
    }
    
    .hero .slide-fullwidth .hero-fullwidth {
        padding: 0;
        min-height: auto;
        width: 100%;
		margin-top: 0px;
    }
    
    .hero .slide-fullwidth .hero-fullwidth picture {
        max-height: none;
        width: 100%;
    }
    
    .hero .slide-fullwidth .hero-fullwidth-image {
        max-height: none;
        height: auto;
        width: 100%;
        object-fit: contain;
        border-radius: 0;
    }
    
    /* ===== VIDEO SLIDE - Mobile ===== */
    .hero .slide-video {
        padding: 0;
        min-height: auto;
    }
    
    .hero .slide-video .hero-video {
        max-height: none;
        height: auto;
        width: 100%;
    }
    
    /* ===== NAVIGATION BUTTONS - Mobile (beyaz, ortalı) ===== */
    .hero .swiper-button-next,
    .hero .swiper-button-prev {
        top: 50% !important;
        transform: translateY(-50%);
        width: 40px;
        height: 40px;
        background: transparent;
        border-radius: 0;
    }
    
    .hero .swiper-button-next::after,
    .hero .swiper-button-prev::after {
        color: #ffffff;
        font-size: 24px;
        text-shadow: 0 2px 4px rgba(0,0,0,0.3);
    }
    
    .hero .swiper-button-next {
        right: 15px;
    }
    
    .hero .swiper-button-prev {
        left: 15px;
    }
    
    .hero .swiper-button-next:hover,
    .hero .swiper-button-prev:hover {
        transform: translateY(-50%) scale(1.1);
    }
    
    .hero .swiper-button-next:hover::after,
    .hero .swiper-button-prev:hover::after {
        color: #fff;
    }
    
    /* ===== PAGINATION - Mobile (altta, temiz) ===== */
    .hero .swiper-pagination {
        position: relative;
        padding: 20px 0;
        background: #fff;
    }
    
    .hero .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 5px;
        background: rgba(150, 150, 150, 0.6);
    }
    
    .hero .swiper-pagination-bullet-active {
        width: 24px;
        background: var(--primary-color);
    }
    
    /* Hero section ile alttaki section arası boşluk */
    .hero {
        margin-bottom: 30px;
    }
}


@media (max-width: 850px) {
    .nav-logo .logo { height: 60px; }
}

/* Enforce Montserrat across Elementor as well (keep icon fonts intact) */
.elementor, .elementor *:not(.fa):not(.fas):not(.far):not(.fal):not(.fab):not(i):not(.elementor-icon):not(.ab-icon) {
    font-family: 'Montserrat', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif !important;
}

/* Homepage news card full-link and bottom-pinned button */
.news-card { height: 100%; }
.news-card-link { display: flex; flex-direction: column; height: 100%; text-decoration: none; color: inherit; }
.news-card .news-content { display: flex; flex-direction: column; gap: 10px; flex: 1 1 auto; justify-content: space-between; }
.news-card .read-more { margin-top: auto; display: inline-block; color: #EC1C24; font-weight: 600; }

/* Unified News Card Styles */
.news-cards-container { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.news-card { background:#fff; border-radius:20px; overflow:hidden; box-shadow:0 4px 15px rgba(0,0,0,.1); transition:transform .3s ease, box-shadow .3s ease; height:100%; display:flex; flex-direction:column; }
.news-card:hover { transform: translateY(-5px); box-shadow:0 8px 20px rgba(0,0,0,.15); }
.news-card-link { display:flex; flex-direction:column; height:100%; color:inherit; text-decoration:none; }
.news-image { width:100%; height:300px; object-fit:contain; object-position: top center; }
.news-content, .card-content { display:flex; flex-direction:column; gap:10px; flex:1 1 auto; justify-content:space-between; }
.news-title { font-size:20px; font-weight:600; color:#212529; margin:0 0 15px 0; line-height:1.3; }
.news-excerpt { font-size:15px; color:#495057; line-height:1.5; }
.read-more, .news-card .read-more { display:inline-block; margin-top:auto; color:#EC1C24; text-decoration:none; font-weight:600; transition:all .3s ease; padding:10px 20px; border:2px solid #EC1C24; text-align:center; border-radius:12px; }
.read-more:hover { background:#EC1C24; color:#fff; }

/* Product Cards Grid Styles */
.product-cards-grid-container {
    width: 100%;
    padding: 2rem 0;
    margin: 2rem 0;
}

.product-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    justify-items: center;
}

/* 1 kart için: ortalanmış tek kart */
.product-cards-grid-container[data-total-cards="1"] .product-cards-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
}

/* 2 kart için: ortalanmış 2 kart */
.product-cards-grid-container[data-total-cards="2"] .product-cards-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 800px;
}

/* 3 kart için: ortalanmış 3 kart */
.product-cards-grid-container[data-total-cards="3"] .product-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
}

/* 4+ kart için: 3 sütunlu grid, alt satıra geçer */
.product-cards-grid-container[data-total-cards="4"] .product-cards-grid,
.product-cards-grid-container[data-total-cards="5"] .product-cards-grid,
.product-cards-grid-container[data-total-cards="6"] .product-cards-grid,
.product-cards-grid-container[data-total-cards="7"] .product-cards-grid,
.product-cards-grid-container[data-total-cards="8"] .product-cards-grid,
.product-cards-grid-container[data-total-cards="9"] .product-cards-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
}

.product-card-item {
    width: 100%;
    display: flex;
}

.product-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-card-image {
    width: 100%;
    height: 400px;
    overflow: hidden;
    background: #f8f9fa;
    position: relative;
    /* G4: ürünler ortak alt çizgiye (baseline / alt kesik çizgi) oturur */
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.product-card-image img {
    width: auto;
    max-width: 100%;
    /* G4: gerçek ölçek — ürün bazında _emt_card_scale meta'sı ile ayarlanır (varsayılan 1) */
    height: calc(400px * var(--emt-card-scale, 1)) !important;
    object-fit: contain;
    object-position: center bottom;
    transition: transform 0.4s ease;
}

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

.product-card-image a {
    /* G4: img'yi asıl saran öğe; alt-orta hizalama burada olmalı */
    display: flex;
    align-items: flex-end;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-card-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
    justify-content: space-between;
}

.product-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark, #212529);
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
}

.product-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

.product-card-title a:hover {
    color: var(--primary-color, #EC1C24);
}

.product-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color, #EC1C24);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-top: auto;
    padding: 0.75rem 1.5rem;
    border: 2px solid var(--primary-color, #EC1C24);
    border-radius: 8px;
    text-align: center;
    justify-content: center;
}

.product-card-link:hover {
    background: var(--primary-color, #EC1C24);
    color: #fff;
    transform: translateX(5px);
}

.product-card-link i {
    transition: transform 0.3s ease;
}

.product-card-link:hover i {
    transform: translateX(3px);
}

/* Responsive Styles */
@media (max-width: 1024px) {
    .product-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        max-width: 800px;
    }
    
    .product-cards-grid-container[data-total-cards="1"] .product-cards-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
    }
    
    .product-cards-grid-container[data-total-cards="2"] .product-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .product-cards-grid-container[data-total-cards="3"] .product-cards-grid,
    .product-cards-grid-container[data-total-cards="4"] .product-cards-grid,
    .product-cards-grid-container[data-total-cards="5"] .product-cards-grid,
    .product-cards-grid-container[data-total-cards="6"] .product-cards-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 800px;
    }
    
    .product-card-image {
        height: 350px;
    }
    
    .product-card-content {
        padding: 1.25rem;
    }
    
    .product-card-title {
        font-size: 1.35rem;
    }
}
@media (max-width: 1024px) {
    .product-card-image {
        height: 350px;
    }
    
    .product-card-content {
        padding: 1.25rem;
    }
    
    .product-card-title {
        font-size: 1.35rem;
    }
}

@media (max-width: 768px) {
    .product-cards-grid-container {
        padding: 1.5rem 0;
        margin: 1.5rem 0;
    }
    
    .product-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        max-width: 100%;
    }
    
    .product-cards-grid-container[data-total-cards="1"] .product-cards-grid,
    .product-cards-grid-container[data-total-cards="2"] .product-cards-grid,
    .product-cards-grid-container[data-total-cards="3"] .product-cards-grid,
    .product-cards-grid-container[data-total-cards="4"] .product-cards-grid,
    .product-cards-grid-container[data-total-cards="5"] .product-cards-grid,
    .product-cards-grid-container[data-total-cards="6"] .product-cards-grid {
        grid-template-columns: 1fr;
        max-width: 100%;
    }
    
    .product-card-image {
        height: 300px;
    }
    
    .product-card-content {
        padding: 1rem;
    }
    
    .product-card-title {
        font-size: 1.25rem;
    }
}

@media (max-width: 480px) {
    .product-card-image {
        height: 250px;
    }
    
    .product-card-title {
        font-size: 1.1rem;
    }
    
    .product-card-link {
        font-size: 0.9rem;
        padding: 0.6rem 1.2rem;
    }
}

.media-frame.mode-grid .media-toolbar
{
    height: unset !important;
}

.swiper-horizontal>.swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction
{
	top: 0px !important;
}

/* Footer Top Banner */
.footer-top-banner {
    width: 100%;
    margin: 0;
    padding: 0;
    line-height: 0;
}

.footer-top-banner img {
    width: 100%;
    max-height: 25px;
    display: block;
    margin: 0;
    padding: 0;
}
