* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.nav-menu, .nav-item, footer ul, footer li, #wpadminbar ul, #wpadminbar li
{
	list-style: none !important;
}

ul, li
{
	list-style: initial !important;
	list-style-position: inside !important;
	margin-left: 15px;
}

.bg-accent-500{
    background-color: #c51a1f!important;
}

body {
    font-family: 'Montserrat', sans-serif;
    background: #ffffff;
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

.navbar {
    background: #ffffff;
    border-bottom: 1px solid #e5e5e5;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    height: 115px;
    padding-top: 15px;
}

/* Video Modal */
#videoModal {
    z-index: 9999 !important;
}

#videoModal .relative {
    z-index: 9999 !important;
}

/* Video Slide Content */
.video-slide .text-white h2 {
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    line-height: 1.2;
}

.video-slide .text-white p {
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.7);
    line-height: 1.4;
}

.video-slide .text-white {
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.2));
    padding: 2rem;
    border-radius: 0;
    backdrop-filter: blur(2px);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

/* Video slide responsive */
@media (max-width: 768px) {
    .video-slide .text-white h2 {
        font-size: 1.5rem;
    }
    
    .video-slide .text-white p {
        font-size: 1rem;
    }
    
    .video-slide .text-white {
        padding: 1rem;
    }
}

/* Homepage Custom Sections */
.custom-section-item {
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 20px;
    background: #ffffff;
}

.custom-section-item h3 {
    margin-top: 0;
    margin-bottom: 20px;
    color: #374151;
    font-size: 18px;
    font-weight: 600;
}

/* Admin Panel Styles */
.xtreme-tabs {
    margin-top: 20px;
}

.xtreme-tabs-nav {
    list-style: none;
    margin: 0;
    padding: 0;
    border-bottom: 1px solid #e5e7eb;
}

.xtreme-tabs-nav li {
    display: inline-block;
    margin: 0;
}

.xtreme-tabs-nav a {
    display: block;
    padding: 12px 20px;
    text-decoration: none;
    color: #6b7280;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.xtreme-tabs-nav a:hover,
.xtreme-tabs-nav a.nav-tab-active {
    color: #e31e24;
    border-bottom-color: #e31e24;
}

.xtreme-tab-content {
    display: none;
    padding: 20px 0;
}

.xtreme-tab-content:first-child {
    display: block;
}

.xtreme-media-upload {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.xtreme-media-preview {
    max-width: 300px;
    height: auto;
    border-radius: 4px;
    border: 1px solid #e5e7eb;
}

.xtreme-media-upload-button,
.xtreme-media-remove-button {
    width: fit-content;
}

/* Custom Sections Full Width */
.custom-section-fullwidth {
    width: 100%;
    background: #ffffff;
}

.custom-section-container {
    max-width: 100%;
    margin: 0;
    padding: 0;
}

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

.custom-section-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    max-width: 50%;
}

.custom-section-image-container {
    flex: 1;
    max-width: 50%;
    overflow: hidden;
}

.custom-section-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

.custom-section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.custom-section-description {
    font-size: 14px;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.6;
}

@media (min-width: 1600px)
{
	.custom-section-description {
		font-size: 17px;
	}
}

.custom-section-description p {
    margin-bottom: 1rem;
}

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

.custom-section-description ul,
.custom-section-description ol {
    margin-bottom: 1rem;
    list-style: none;
    padding-left: 0;
}

.custom-section-description li {
    margin-bottom: 0.5rem;
    position: relative;
    padding-left: 1.5rem;
}

/* Ortası delikli yuvarlak madde işaretleri */
.custom-section-description ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border: 2px solid;
    border-radius: 50%;
    background: transparent;
}

/* Madde işaretleri için varsayılan renk (JavaScript ile override edilecek) */
.custom-section-description ul li::before {
    border-color: #e31e24;
}

.custom-section-description strong {
    font-weight: 600;
    color: #374151;
}

.custom-section-description em {
    font-style: italic;
}

.custom-section-description a {
    color: #e31e24;
    text-decoration: underline;
}

.custom-section-description a:hover {
    color: #c41e3a;
}

/* Smart whitespace handling */
.custom-section-description {
    word-wrap: break-word;
}

/* Normal spacing for HTML elements */
.custom-section-description p {
    margin-bottom: 1rem;
    white-space: normal;
}

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

.custom-section-description div {
    white-space: normal;
}

.custom-section-description ul,
.custom-section-description ol {
    margin-bottom: 1rem;
    white-space: normal;
    list-style: none;
    padding-left: 0;
}

/* ::marker'ı tamamen devre dışı bırak */
.custom-section-description ul li::marker,
.custom-section-description ol li::marker {
    display: none;
    content: '';
}

.custom-section-description li {
    margin-bottom: 0.5rem;
    white-space: normal;
    position: relative;
    padding-left: 1.5rem;
	margin-left: 0px !important;
}

/* Ortası delikli yuvarlak madde işaretleri (ol için de) */
.custom-section-description ol {
    counter-reset: list-item;
}

.custom-section-description ol li {
    counter-increment: list-item;
}

.custom-section-description ol li::before {
    content: counter(list-item, decimal) '.';
    position: absolute;
    left: 0;
    top: 0;
    color: #e31e24;
    font-weight: 600;
}

/* ul için ortası delikli yuvarlak */
.custom-section-description ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 8px;
    height: 8px;
    border: 2px solid;
    border-radius: 50%;
    background: transparent;
    border-color: #e31e24;
}

.custom-section-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (min-width: 640px) {
    .custom-section-buttons {
        flex-direction: row;
        gap: 16px;
    }
}

.custom-section-button-primary {
    background: #e31e24;
    color: #ffffff;
    padding: 12px 24px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
    border: 2px solid #e31e24;
}

.custom-section-button-primary:hover {
    background: #c41e3a;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

.custom-section-button-secondary {
    background: transparent;
    color: #e31e24;
    border: 2px solid #e31e24;
    padding: 12px 24px;
    border-radius: 0;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 140px;
}

.custom-section-button-secondary:hover {
    background: #e31e24;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

/* News Section Cards */
.news-card {
    background: #ffffff;
    border-radius: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.news-image-container {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
    background: #f3f4f6;
}

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

.news-card:hover .news-image {
    transform: scale(1.05);
}

.news-no-image {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    background: #f9fafb;
}

.news-no-image i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.news-no-image span {
    font-size: 0.875rem;
    font-weight: 500;
}

.news-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-title {
    margin: 0 0 1rem 0;
    font-size: 1.25rem;
    font-weight: 600;
    line-height: 1.4;
}

.news-title-link {
    color: #111827;
    text-decoration: none;
    transition: color 0.3s ease;
}

.news-title-link:hover {
    color: #e31e24;
}

.news-excerpt {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin: 0 0 1.5rem 0;
    flex: 1;
}

.news-button-container {
    margin-top: auto;
    padding-top: 1rem;
}

.news-button {
    color: #e31e24;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: color 0.3s ease;
    display: inline-block;
}

.news-button:hover {
    color: #c41e3a;
}

/* Responsive */
@media (max-width: 768px) {
    .custom-section-content {
        flex-direction: column;
        min-height: auto;
    }
    
    .custom-section-text {
        max-width: 100%;
        padding: 40px 30px;
    }
    
    .custom-section-image-container {
        max-width: 100%;
        height: 300px;
    }
    
    .custom-section-title {
        font-size: 2rem;
    }
    
    .custom-section-description {
        font-size: 1rem;
    }
}

/*
.navbar:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    background: #DC2626;
    background: linear-gradient(90deg, rgba(220, 38, 38, 1) 0%, rgba(186, 22, 22, 1) 50%, rgba(140, 13, 13, 1) 100%);
    height: 15px;
    z-index: -1;
}*/

.navbar:after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), transparent);
    height: 15px;
    z-index: -1;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 30px;
    height: 80px;
    position: relative;
}

.nav-left {
    position: absolute;
    left: 30px;
    display: flex;
    align-items: center;
    gap: 50px;
}

.nav-right {
    position: absolute;
    right: 30px;
    display: flex;
    align-items: center;
    gap: 30px;
}
.search-icon {
    color: #4a5568;
    font-size: 18px;
    cursor: pointer;
    transition: color 0.2s ease;
    padding: 8px;
    border-radius: 8px;
    background: none;
    border: none;
}

.search-icon:hover {
    color: #2d3748;
    background: #f7fafc;
}

.search-form-container {
    position: absolute;
    top: 100%;
    right: 0;
    background: #ffffff;
    padding: 0;
    border: 1px solid #e2e8f0;
    border-radius: 0;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
    z-index: 1000;
    min-width: 300px;
}

.search-form-container.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) translateX(0px);
}

.custom-search-form {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: none;
    overflow: hidden;
}

.search-field {
    flex: 1;
    padding: 12px 16px;
    border: none;
    outline: none;
    font-size: 14px;
    background: transparent;
    color: #333;
}

.search-field:focus {
    outline: none;
}

.search-field::placeholder {
    color: #999;
}

.search-submit {
    background: #e31e24;
    color: #ffffff;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: background-color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 50px;
}

.search-submit:hover {
    background: #c41e3a;
}

.search-submit i {
    font-size: 16px;
}

.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;
    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;
}

.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: 768px) {
    .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;
    }
}

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

.custom-logo-link img {
    height: 90px;
    width: auto;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 50px;
    justify-content: start;
    align-items: start;
}

.nav-item {
    position: relative;
}

.nav-container ul, .nav-container li
{
	margin-left: 0px !important;
}

.nav-link {
    color: #4a5568;
    text-decoration: none;
    font-weight: 400;
    font-size: 17px;
    padding: 30px 0;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link:hover {
    color: #2d3748;
}

.nav-link i {
    font-size: 12px;
    transition: transform 0.3s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    background: #ffffff;
    min-width: 320px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-item:hover .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-item:last-child .dropdown {
    left: auto;
    right: 0;
}

.dropdown-content {
    padding: 20px 0;
}

.dropdown-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 25px;
    color: #4a5568;
    text-decoration: none;
    font-size: 14px;
    transition: all 0.2s ease;
    position: relative;
}

.dropdown-item:hover {
    background: #f7fafc;
    color: #2d3748;
}

.dropdown-item i {
    font-size: 10px;
    color: #a0aec0;
    transition: transform 0.3s ease;
}

.dropdown-item:hover i {
    transform: rotate(90deg);
}

/* Sub Dropdown */
.sub-dropdown {
    position: absolute;
    left: 100%;
    top: 0;
    background: #ffffff;
    min-width: 300px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    opacity: 0;
    visibility: hidden;
    transform: translateX(-15px);
    transition: all 0.3s ease;
    z-index: 1001;
}

.dropdown-item.has-submenu {
    position: relative;
}

.dropdown-item.has-submenu:hover .sub-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.nav-item:nth-last-child(-n+2) .dropdown-item.has-submenu .sub-dropdown {
    left: auto;
    right: 100%;
    transform: translateX(15px);
}

.nav-item:nth-last-child(-n+2) .dropdown-item.has-submenu:hover .sub-dropdown {
    transform: translateX(0);
}

.sub-dropdown-content {
    padding: 20px 0;
}

.sub-dropdown-item {
    display: block;
    padding: 14px 25px;
    color: #4a5568;
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.sub-dropdown-item:hover {
    background: #f7fafc;
    color: #2d3748;
}

/* Mobile Menu */
@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
    }

    .nav-left {
        gap: 20px;
    }

    .nav-right {
        gap: 15px;
    }

    .search-icon {
        font-size: 16px;
        padding: 6px;
    }

    .language-selector {
        padding: 6px 10px;
        font-size: 13px;
    }

    .logo {
        height: 50px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        overflow-y: auto;
        z-index: 999;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-link {
        padding: 20px 25px;
        justify-content: space-between;
        font-size: 16px;
    }

    .nav-link i {
        font-size: 14px;
    }

    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f7fafc;
        min-width: 100%;
        display: none;
    }

    .dropdown.active {
        display: block;
    }

    .dropdown-content {
        padding: 0;
    }

    .dropdown-item {
        padding: 16px 40px;
        border-bottom: 1px solid #e2e8f0;
        font-size: 14px;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    .sub-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #edf2f7;
        min-width: 100%;
        display: none;
    }

    .sub-dropdown.active {
        display: block;
    }

    .sub-dropdown-content {
        padding: 0;
    }

    .sub-dropdown-item {
        padding: 14px 60px;
        font-size: 13px;
        border-bottom: 1px solid #e2e8f0;
    }

    .sub-dropdown-item:last-child {
        border-bottom: none;
    }
}

/* Mega Dropdown iÃ§in Ã¶zel stiller */
.mega-dropdown {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    width: 100vw;
    min-width: 100vw;
    max-width: 100vw;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0;
    padding: 20px 0;
    background: #ffffff;
    border: none;
    border-radius: 0;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    z-index: 9999;
}

.mega-column {
    padding: 0;
    border-right: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
}

.mega-column:last-child {
    border-right: none;
}

.mega-category {
    padding: 12px 20px 8px;
    font-size: 10px;
    font-weight: 700;
    color: #718096;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    background: #f7fafc;
    margin: 0;
    border-bottom: 1px solid #e2e8f0;
    flex-shrink: 0;
}

.mega-series {
    padding: 8px 20px 6px;
    font-size: 11px;
    font-weight: 600;
    color: #4a5568;
    background: #ffffff;
    margin: 0;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.mega-line {
    padding: 4px 30px 3px;
    font-size: 10px;
    font-weight: 600;
    color: #718096;
    background: #fafbfc;
    margin: 0;
    border-bottom: 1px solid #f1f5f9;
    flex-shrink: 0;
}

.mega-model {
    padding: 2px 40px;
    font-size: 10px;
    color: #4a5568;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
    border-bottom: 1px solid #f8fafc;
    flex-shrink: 0;
}

.mega-model:hover {
    background: #f7fafc;
    color: #2d3748;
    padding-left: 45px;
}

.mega-model:last-child {
    border-bottom: none;
}

.mobile-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
    transition: background 0.2s ease;
}

.mobile-toggle:hover {
    background: #f7fafc;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: #4a5568;
    margin: 5px 0;
    transition: 0.3s;
    border-radius: 1px;
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
}

.hero {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    text-align: center;
    padding: 120px 20px;
}

.hero h1 {
    font-size: 4rem;
    font-weight: 300;
    margin-bottom: 30px;
    color: white;
}

.hero p {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 60px;
    line-height: 1.8;
}

.btn {
    display: inline-block;
    background: white;
    color: #667eea;
    padding: 18px 40px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.btn:hover {
    background: #f8fafc;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.2);
}

/* Responsive TasarÄ±m */
@media (max-width: 1200px) {
    .mega-dropdown {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
        height: 70px;
        justify-content: space-between;
    }

    .nav-left {
        position: static;
        gap: 20px;
    }

    .nav-right {
        position: static;
        gap: 15px;
    }

    .search-icon {
        font-size: 16px;
        padding: 6px;
    }

    .language-selector {
        padding: 6px 10px;
        font-size: 13px;
    }

    .logo {
        height: 50px;
    }

    .nav-menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: calc(100vh - 70px);
        background: #fff;
        flex-direction: column;
        gap: 0;
        padding: 0;
        overflow-y: auto;
        z-index: 999;
        box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    }

    .nav-menu.active {
        display: flex;
    }

    .mobile-toggle {
        display: block;
    }

    .nav-item {
        width: 100%;
        border-bottom: 1px solid #e2e8f0;
    }

    .nav-link {
        padding: 20px 25px;
        justify-content: space-between;
        font-size: 16px;
    }

    .nav-link i {
        font-size: 14px;
    }

    /* Mobile Dropdown */
    .dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #f7fafc;
        min-width: 100%;
        display: none;
    }

    .dropdown.active {
        display: block;
    }

    .dropdown-content {
        padding: 0;
    }

    .dropdown-item {
        padding: 16px 40px;
        border-bottom: 1px solid #e2e8f0;
        font-size: 14px;
    }

    .dropdown-item:last-child {
        border-bottom: none;
    }

    /* Mobile Sub Dropdown */
    .sub-dropdown {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        background: #edf2f7;
        min-width: 100%;
        display: none;
    }

    .sub-dropdown.active {
        display: block;
    }

    .sub-dropdown-content {
        padding: 0;
    }

    .sub-dropdown-item {
        padding: 14px 60px;
        font-size: 13px;
        border-bottom: 1px solid #e2e8f0;
    }

    .sub-dropdown-item:last-child {
        border-bottom: none;
    }

    .mega-dropdown {
        position: static;
        width: 100%;
        height: auto;
        min-width: auto;
        max-width: none;
        grid-template-columns: 1fr;
        box-shadow: none;
        border: none;
        border-radius: 0;
        background: #f7fafc;
        z-index: auto;
    }

    .mega-column {
        padding: 0;
        border-right: none;
        border-bottom: 1px solid #e2e8f0;
    }

    .mega-column:last-child {
        border-bottom: none;
    }

    .mega-category {
        padding: 20px 40px 15px;
        font-size: 12px;
        margin: 0;
    }

    .mega-series {
        padding: 15px 40px 10px;
        font-size: 14px;
        margin: 0;
    }

    .mega-line {
        padding: 12px 50px 10px;
        font-size: 13px;
        margin: 0;
    }

    .mega-model {
        padding: 10px 60px;
        font-size: 13px;
    }

    .hero {
        padding: 100px 20px;
    }

    .hero h1 {
        font-size: 3.5rem;
    }

    .hero p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .nav-container {
        padding: 0 15px;
    }

    .nav-link {
        padding: 18px 20px;
        font-size: 15px;
    }

    .dropdown-item {
        padding: 14px 30px;
    }

    .sub-dropdown-item {
        padding: 12px 50px;
    }

    .mega-category {
        padding: 18px 30px 12px;
    }

    .mega-series {
        padding: 12px 30px 8px;
    }

    .mega-line {
        padding: 10px 40px 8px;
    }

    .mega-model {
        padding: 8px 50px;
    }

    .hero h1 {
        font-size: 3rem;
    }

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

/* Swiper Custom Styles */
.references-swiper {
    padding: 20px 0;
}

.references-swiper .swiper-slide {
    height: auto;
}

.references-swiper-button-next,
.references-swiper-button-prev {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.1) !important;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    position: static !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
}

.references-swiper-button-next:hover,
.references-swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.2) !important;
    transform: scale(1.05);
}

.references-swiper-button-next::after,
.references-swiper-button-prev::after {
    font-size: 18px !important;
    font-weight: bold;
}

/* Responsive navigation buttons */
@media (max-width: 1024px) {

    .references-swiper-button-next,
    .references-swiper-button-prev {
        width: 44px !important;
        height: 44px !important;
    }

    .references-swiper-button-next::after,
    .references-swiper-button-prev::after {
        font-size: 16px !important;
    }
}

@media (max-width: 768px) {

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

    .references-swiper-button-next::after,
    .references-swiper-button-prev::after {
        font-size: 14px !important;
    }
}

.references-swiper-pagination {
    position: relative;
    margin-top: 20px;
}

.references-swiper-pagination .swiper-pagination-bullet {
    background: #cbd5e0;
    opacity: 0.5;
    transition: all 0.3s ease;
}

.references-swiper-pagination .swiper-pagination-bullet-active {
    background: #0ea5e9;
    opacity: 1;
    transform: scale(1.2);
}

/* Line clamp utility */
.line-clamp-3 {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* News cards layout fix */
.news-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.news-card .p-6 {
    display: flex;
    flex-direction: column;
    flex: 1;
}

.news-card .line-clamp-3 {
    flex: 1;
    margin-bottom: 1rem;
}

.news-card a {
    margin-top: auto;
}

/* Hero Swiper Custom Styles */
.hero-swiper {
    position: relative;
    overflow: hidden;
}

.hero-swiper-button-next,
.hero-swiper-button-prev {
    width: 60px !important;
    height: 60px !important;
    background: rgba(0, 0, 0, 0.5) !important;
    backdrop-filter: blur(10px) !important;
    border: 2px solid rgba(255, 255, 255, 0.2) !important;
    border-radius: 50% !important;
    color: white !important;
    transition: all 0.3s ease !important;
}

.hero-swiper-button-next:hover,
.hero-swiper-button-prev:hover {
    background: rgba(0, 0, 0, 0.3) !important;
    border-color: rgba(255, 255, 255, 0.4) !important;
    transform: scale(1.1) !important;
    box-shadow: 0 10px 25px rgba(255, 255, 255, 0.2) !important;
}

.hero-swiper-button-next::after,
.hero-swiper-button-prev::after {
    font-size: 20px !important;
    font-weight: bold !important;
}

.hero-swiper-pagination {
    position: absolute !important;
    bottom: 60px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    z-index: 30 !important;
}

.hero-swiper-pagination .swiper-pagination-bullet {
    width: 16px !important;
    height: 16px !important;
    background: rgba(255, 255, 255, 0.3) !important;
    opacity: 0.7 !important;
    transition: all 0.3s ease !important;
    margin: 0 8px !important;
}

.hero-swiper-pagination .swiper-pagination-bullet-active {
    background: white !important;
    opacity: 1 !important;
    transform: scale(1.3) !important;
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.5) !important;
}



/* Hero Visual Animation Classes */
.hero-visual {
    opacity: 0;
    transition: all 0.8s ease;
}

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

/* Hero Product Container Animation */
.hero-product-container {
    opacity: 0;
    transform: translateY(100px);
    transition: all 1s ease 0.3s;
}

.swiper-slide-active .hero-product-container {
    opacity: 1;
    transform: translateY(0);
}

/* Hero Features Left Animation */
.hero-features-left {
    opacity: 0;
    transform: translateX(-100px);
    transition: all 1s ease 0.9s;
    position: absolute;
    left: -350px;
    top: 47%;
    transform: translateY(-50%);
}

.swiper-slide-active .hero-features-left {
    opacity: 1;
    transform: translateY(-50%) translateX(-100%);
}

/* Hero Features Right Animation */
.hero-features-right {
    opacity: 0;
    transform: translateX(100px);
    transition: all 1s ease 0.9s;
    position: absolute;
    right: -350px;
    top: 50%;
    transform: translateY(-50%);
}

.swiper-slide-active .hero-features-right {
    opacity: 1;
    transform: translateY(-50%) translateX(100%);
}

/* Hero Feature Box Animation */
.hero-feature-box {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.6s ease;
    height: 100px;
}

.swiper-slide-active .hero-feature-box {
    opacity: 1;
    transform: scale(1);
}

/* Stagger animation for feature boxes */
.swiper-slide-active .hero-features-left .hero-feature-box:nth-child(1) {
    transition-delay: 1.2s;
}

.swiper-slide-active .hero-features-left .hero-feature-box:nth-child(2) {
    transition-delay: 1.4s;
}

.swiper-slide-active .hero-features-left .hero-feature-box:nth-child(3) {
    transition-delay: 1.6s;
}

.swiper-slide-active .hero-features-right .hero-feature-box:nth-child(1) {
    transition-delay: 1.2s;
}

.swiper-slide-active .hero-features-right .hero-feature-box:nth-child(2) {
    transition-delay: 1.4s;
}

.swiper-slide-active .hero-features-right .hero-feature-box:nth-child(3) {
    transition-delay: 1.6s;
}

/* Slide Transition Effects */
.hero-swiper .swiper-slide {
    transition: opacity 0.8s ease;
}

.hero-swiper .swiper-slide-prev,
.hero-swiper .swiper-slide-next {
    opacity: 0.3;
}

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

/* Responsive adjustments */
@media (max-width: 1024px) {
    .hero-features-left {
        left: -280px !important;
    }

    .hero-features-right {
        right: -280px !important;
    }
}

@media (max-width: 768px) {
    .hero-visual {
        flex-direction: column;
        gap: 30px;
        padding: 20px;
    }

    .hero-product-container {
        order: 1;
        margin-bottom: 0;
        width: 100%;
        max-width: 400px;
    }

    /* Force feature boxes to be visible and properly sized */
    .hero-feature-box {
        width: 125px !important;
        height: 125px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 0px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Override Tailwind flex classes for mobile - only change content layout */
    .hero-feature-box .flex {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 8px !important;
    }

    /* Force left and right feature containers to be visible */
    .hero-features-left,
    .hero-features-right {
        order: 2;
        position: relative !important;
        left: auto !important;
        right: auto !important;
        top: auto !important;
        transform: none !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100% !important;
        max-width: 500px !important;
        margin: 0 auto !important;
        display: grid !important;
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 10px !important;
        z-index: 10 !important;
    }

    .ozellik-text {
        margin-left: 0 !important;
    }

    .hero-features-left {
        margin-bottom: 20px;
    }

    .hero-features-right {
        margin-top: 20px;
    }

    .hero-swiper-pagination {
        bottom: 60px;
    }
}

@media (max-width: 640px) {

    .hero-features-left,
    .hero-features-right {
        grid-template-columns: 1fr 1fr 1fr !important;
        gap: 8px !important;
        max-width: 400px !important;
    }

    .hero-product-container {
        max-width: 300px;
    }

    /* Force feature boxes to be visible and properly sized */
    .hero-feature-box {
        width: 100px !important;
        height: 100px !important;
        min-height: 70px !important;
        padding: 8px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 0px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Override Tailwind flex classes for mobile - only change content layout */
    .hero-feature-box .flex {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 6px !important;
    }

    .hero-feature-box .w-10 {
        width: 24px;
        height: 24px;
    }

    .hero-feature-box .text-sm {
        font-size: 10px;
        line-height: 1.2;
    }

    .hero-feature-box .text-xs {
        font-size: 8px;
        line-height: 1.2;
    }
}

@media (max-width: 480px) {
    .hero-visual {
        gap: 20px;
        padding: 15px;
    }

    .hero-features-left,
    .hero-features-right {
        gap: 6px;
        max-width: 350px;
    }

    /* Force feature boxes to be visible and properly sized */
    .hero-feature-box {
        width: 80px !important;
        height: 80px !important;
        padding: 6px !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 0px !important;
        visibility: visible !important;
        opacity: 1 !important;
    }

    /* Override Tailwind flex classes for mobile - only change content layout */
    .hero-feature-box .flex {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        text-align: center !important;
        gap: 4px !important;
    }

    .hero-feature-box .w-10 {
        width: 20px;
        height: 20px;
    }

    .hero-feature-box .text-sm {
        font-size: 9px;
        line-height: 1.1;
    }

    .hero-feature-box .text-xs {
        font-size: 7px;
        line-height: 1.1;
    }

    .hero-swiper-pagination {
        bottom: 50px;
    }
}

/* Modern Product Card Styles - Sharp Edges */
.product-card {
    position: relative;
    background: #ffffff;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    height: 450px;
}

.product-card:hover {
    border-color: #e31e24;
    box-shadow: 0 10px 30px rgba(227, 30, 36, 0.15);
    transform: translateY(-5px);
}

/* Image Container */
.product-card .product-image-container {
    height: 320px;
    background: linear-gradient(to bottom, #f9fafb, #ffffff);
    border-bottom: 2px solid #e5e7eb;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    overflow: hidden;
    position: relative;
}

.product-card:hover .product-image-container {
    border-bottom-color: #e31e24;
}

.product-card .product-image-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
    max-width: 100%;
    max-height: 100%;
}

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

/* Volume Badge */
.product-volume-badge {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(255, 255, 255, 0.9);
    color: #000000;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid #e5e7eb;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    z-index: 10;
    letter-spacing: 0.5px;
    backdrop-filter: blur(4px);
}

.product-card:hover .product-volume-badge {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}

/* Content Area */
.product-content {
    padding: 1.5rem;
    background: #ffffff;
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Registered Symbol Styling - Base */
.reg-symbol {
    font-size: 1em !important;
    vertical-align: super !important;
    line-height: 1 !important;
    position: relative !important;
    top: 0.1em !important;
    font-weight: normal !important;
    color: inherit !important;
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* H1 başlıklarında ® karakteri */
h1 .reg-symbol {
    font-size: 0.8em !important;
    top: 0em !important;
}

/* H2 başlıklarında ® karakteri */
h2 .reg-symbol {
    font-size: 0.85em !important;
    top: 0.05em !important;
}

/* H3 başlıklarında ® karakteri */
h3 .reg-symbol {
    font-size: 0.9em !important;
    top: 0.1em !important;
}

/* H4, H5, H6 başlıklarında ® karakteri */
h4 .reg-symbol,
h5 .reg-symbol,
h6 .reg-symbol {
    font-size: 0.95em !important;
    top: 0.15em !important;
}

/* Product title'larda ® karakteri */
.product-title .reg-symbol,
.hero-title .reg-symbol {
    font-size: 0.8em !important;
    top: 0em !important;
}

/* Custom section title'larda ® karakteri */
.custom-section-title .reg-symbol {
    font-size: 0.5em !important;
    top: -0.5em !important;
}

/* P tag'lerinde ® karakteri */
p .reg-symbol {
    font-size: 0.9em !important;
    top: 0.1em !important;
}

/* Menüde ® karakteri */
.nav-menu .reg-symbol,
.nav-item .reg-symbol,
.menu-item .reg-symbol {
    font-size: 0.95em !important;
    top: 0.15em !important;
}

/* Span ve diğer inline elementlerde ® karakteri */
span .reg-symbol,
a .reg-symbol {
    font-size: 0.9em !important;
    top: 0.1em !important;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .product-card .product-image-container {
        height: 280px;
        padding: 0.75rem;
    }
    
    .product-card .product-image-container img {
        max-width: 85%;
        max-height: 85%;
    }
    
    .product-volume-badge {
        bottom: 12px;
        padding: 0.375rem 0.75rem;
        font-size: 0.8rem;
    }
}

.product-card .product-content h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.product-description {
    color: #6b7280;
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 0.75rem;
    transition: all 0.3s ease;
}

/* View Product Button */
.product-card .view-product-btn {
    display: inline-block;
    border: 2px solid;
    padding: 0.75rem 1.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.product-card:hover .view-product-btn {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/* Brochure Download Button */
.brochure-download-btn {
    box-shadow: 0 4px 12px rgba(227, 30, 36, 0.2);
}

.brochure-download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(227, 30, 36, 0.3);
}

.brochure-download-btn svg {
    transition: transform 0.3s ease;
}

.brochure-download-btn:hover svg {
    transform: translateY(2px);
}

/* Mobile responsive */
@media (max-width: 768px) {
    .brochure-download-btn {
        font-size: 0.875rem;
        padding: 0.75rem 1.25rem;
    }
    
    .brochure-download-btn svg {
        width: 1.25rem;
        height: 1.25rem;
    }
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.gradient-bg {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.resource-image {
    background: linear-gradient(45deg, #f3f4f6, #e5e7eb);
    border: 2px solid #e5e7eb;
}

/* Career Page Styles */
.tab-button {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
}

.tab-button.active {
    color: #e31e24;
    border-bottom-color: #e31e24;
}

.c-tab .tab-button.active {
    color: #007ba0;
    border-bottom-color: #007ba0;
}


.tab-pane {
    animation: fadeIn 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Tab content transitions */
.tab-pane {
    transition: all 0.3s ease-in-out;
}

.tab-pane.hidden {
    display: none !important;
}

/* Ensure tab buttons are properly styled */
.tab-button {
    transition: all 0.3s ease;
    cursor: pointer;
    position: relative;
    border-bottom: 2px solid transparent;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Professional Section Animations */
.section-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.section-fade-in.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Staggered Animation for Grid Items */
.stagger-item {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.stagger-item.animate {
    opacity: 1;
    transform: translateY(0);
}

/* Delay classes for staggered animation */
.stagger-delay-1 {
    transition-delay: 0.1s;
}

.stagger-delay-2 {
    transition-delay: 0.2s;
}

.stagger-delay-3 {
    transition-delay: 0.3s;
}

.stagger-delay-4 {
    transition-delay: 0.4s;
}

.stagger-delay-5 {
    transition-delay: 0.5s;
}

.stagger-delay-6 {
    transition-delay: 0.6s;
}

/* Smooth slide-in from left */
.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-left.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Smooth slide-in from right */
.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-in-right.animate {
    opacity: 1;
    transform: translateX(0);
}

/* Scale animation for cards */
.scale-in {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.scale-in.animate {
    opacity: 1;
    transform: scale(1);
}

/* Fade-in with slight zoom */
.fade-zoom-in {
    opacity: 0;
    transform: scale(0.95) translateY(20px);
    transition: all 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-zoom-in.animate {
    opacity: 1;
    transform: scale(1) translateY(0);
}

/* Responsive tab navigation */
@media (max-width: 768px) {
    .tab-button {
        font-size: 14px;
        padding: 12px 8px;
    }

    .tab-content {
        min-height: 400px;
    }
}

/* Hero layout containment & sizing */
.hero-visual {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.hero-product-container {
    width: clamp(320px, 38vw, 560px);
    margin: 0 auto;
    height: 70vh;
    object-fit: contain;
}

.hero-product-image {
    width: 100%;
    height: 55vh !important;
    object-fit: contain;
}

@media (max-width: 768px)
{
	
.hero-product-image {
    width: 100%;
    height: 40vh !important;
    object-fit: contain;
}
}

.hero-feature-box {
    max-width: 260px;
}

.ozellik-text {
    max-width: 220px;
    word-break: break-word;
}

/* Mid-width screens: pull feature columns closer to center */
@media (min-width: 1024px) and (max-width: 1536px) {

    .hero-feature-box {
        transform-origin: center;
    }
}

/* Specs table emphasis */
.specs-table {
    width: 100%;
}

.specs-table thead th {
    background: #fff1f2;
    color: #e31e24;
    font-weight: 700;
    position: sticky;
    top: 0;
    z-index: 1;
    border-bottom: 1px solid #fecdd3;
}

.specs-table tbody tr:hover td {
    background: #fff7f8;
}

.specs-table td,
.specs-table th {
    border-right: 1px solid #f1f5f9;
}

.specs-table td:last-child,
.specs-table th:last-child {
    border-right: none;
}

/* Visual Models Grid (cards) - updated for image+title layout */
.models-grid {
    gap: 16px;
}

.models-grid a {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
    overflow: hidden;
}

/* Bottom meta row (title + arrow) */
.models-grid a>div:last-child {
    padding: 12px 14px;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: #ffffff;
}

.models-grid a>div:last-child span {
    font-weight: 700;
    font-size: 1rem;
}

.models-grid a>div:last-child i {
    color: #e31e24;
}

.models-grid a:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, .08);
    border-color: #e2e8f0;
}

/* Sol div - kırmızı arkaplan sağdan başlayıp yarıya kadar geliyor */
.left-section {
    position: relative;
}

.left-section::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 30%;
    height: 100%;
    background-color: #DC2626;
    z-index: 1;
}

/* Sağ div - kırmızı arkaplan soldan başlayıp yarıya kadar geliyor */
.right-section {
    position: relative;
}

.right-section::before {
    content: '';
    position: absolute;
    right: 0;
    top: 0;
    width: 75%;
    height: 100%;
    background-color: #DC2626;
    z-index: 1;
}

/* İçeriklerin z-index'ini artırarak kırmızı arkaplanın üstünde görünmesini sağlıyoruz */
.content-wrapper {
    position: relative;
    z-index: 2;
}

.static-slide {
    opacity: 0 !important;
    visibility: hidden;
    transition: opacity 0.5s ease, visibility 0s linear 0.5s;
}
.static-slide.swiper-slide-active {
    opacity: 1 !important;
    visibility: visible;
    transition-delay: 0s;
}

.hero-swiper-pagination .swiper-pagination-bullet
{
	background-color: #1818184d !important;
}

.hero-swiper-pagination .swiper-pagination-bullet-active
{
	background-color: #e31b1b !important;
}

/* Persistent hero height controlled by CSS variable */
:root {
    --header-height: 115px;
}

.hero-swiper,
.hero-swiper .swiper-wrapper,
.hero-swiper .swiper-slide {
    height: calc(100vh - 25vh) !important;
    min-height: calc(100vh - 25vh) !important;
}

/* Ensure background video in video-slide respects height */
.video-slide > .absolute > video {
    height: calc(100vh - 25vh) !important;
    min-height: calc(100vh - 25vh) !important;
}


/* Feeder Storage Lightbox Styles */
.feeder-lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    pointer-events: none;
}

.feeder-lightbox-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.feeder-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.feeder-lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: scale(0.8);
    transition: transform 0.3s ease;
}

.feeder-lightbox-modal.active .feeder-lightbox-content {
    transform: scale(1);
}

.feeder-lightbox-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.feeder-lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    font-size: 28px;
    line-height: 1;
    color: #000;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10001;
}

.feeder-lightbox-close:hover {
    background-color: #fff;
    transform: rotate(90deg);
}

@media (max-width: 768px) {
    .feeder-lightbox-close {
        top: -30px;
        right: 10px;
        width: 35px;
        height: 35px;
        font-size: 24px;
    }
    
    .feeder-lightbox-content {
        max-width: 95%;
        max-height: 85%;
    }
}

.wpcf7-form-control-wrap
{
	padding-top: 0px !important;
}