﻿/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}
a{color:#1a1a11;text-decoration: none;cursor:pointer;}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: transform 0.3s ease;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
}

/* Reserve space and absolute-pin language selector to the far right */
.header .container { position: relative; }

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 50px;
    width: auto;
}

.logo span {
    font-size: 24px;
    font-weight: bold;
    color: #dd0d15;
}

/* Navigation Styles */
.main-nav { flex: 1 1 auto; margin: 0 20px; min-width: 0; display:flex; align-items:center; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 24px;
    justify-content: flex-end;
    align-items: center;
    flex-wrap: nowrap;
    flex: 1 1 auto;
    margin-bottom:0px;
}

.nav-menu li {
    position: relative;
}

.nav-menu a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s ease;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: #dd0d15;
}

/* Mega Menu Styles */
.dropdown {
    position: relative;
}

.mega-menu {
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    background: #fff;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    width: 100vw;
    z-index: 100;
    border-top: 3px solid #dd0d15;
}

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

.mega-menu-content {
    display: flex;
    padding: 40px;
    max-width: 1200px;
    margin: 0 auto;
    gap: 40px;
}

.mega-menu-image {
    position: relative;
    width: 300px;
    height: 200px;
    margin-right: 0;
}

.mega-menu-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
}

.mega-menu-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 20px 15px 15px;
    border-radius: 0 0 8px 8px;
}

.mega-menu-overlay h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.btn-more {
    color: #fff;
    text-decoration: none;
    font-size: 12px;
    opacity: 0.9;
}

.mega-menu-links {
    display: flex;
    gap: 60px;
    flex: 1;
    justify-content: space-around;
}

.menu-column ul {
    list-style: none;
    
}

.menu-column li {
    width:250px;
    float:left;
   margin:10px 15px 8px 15px;
    
}

.menu-column a {
    color: #666;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.menu-column a:hover {
    color: #dd0d15;
}

/* Language Selector */
.mobile-language-selector{display: none;}
.language-selector select {
    border: 1px solid #ddd;
    padding: 8px 12px;
    border-radius: 4px;
    background: #fff;
    color: #333;
    cursor: pointer;
}

/* Prevent wrap for language selector */
.language-selector { white-space:nowrap; flex:0 0 auto; margin-left:auto; }

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
    order: 3;
    margin-left: auto;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: #333;
    transition: all 0.3s ease;
}

/* Hero Slider Styles */
.hero-slider {
    margin-top: 80px;
    position: relative;
    height: 500px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.slide.active {
    opacity: 1;
}

.slide-content {
    display: flex;
    height: 100%;
    align-items: center;
}

.slide-text {
    flex: 1;
    padding: 60px;
    background: linear-gradient(135deg, #dd0d15, #b30a11);

    display: flex;
    align-items: center;
}

    .slide-text h2 {
        font-size: 28px;
        line-height: 1.4;
        font-weight: 300;
        color: white !important;
    }

.slide-image {
    flex: 1;
    height: 100%;
    background: linear-gradient(45deg, #e3f2fd, #bbdefb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    font-size: 18px;
}

.slide-image img {
    width: auto;
    height: 100%;
    object-fit: cover;
}

/* Slider Controls */
.slider-controls {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 20px;
    pointer-events: none;
}

.slider-controls button {
    background: rgba(255, 255, 255, 0.8);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #333;
    transition: all 0.3s ease;
    pointer-events: all;
}

.slider-controls button:hover {
    background: rgba(255, 255, 255, 1);
    transform: scale(1.1);
}

/* Slider Dots */
.slider-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.dot.active {
    background: #fff;
}

/* Main Content Styles */
.main-content {
    padding: 60px 0;
}

.production-section {
    margin-bottom: 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 40px;
}

.section-header h3 {
    font-size: 24px;
    color: #000000;
    position: relative;
    display: inline-block;
    padding-bottom: 10px;
}

.section-header h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: #dd0d15;
}

/* Section Content Styles */
.section-content {
    margin-bottom: 50px;
    padding: 40px;
    background: #f8f9fa;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.section-content h2 {
    font-size: 28px;
    color: #dd0d15;
    margin-bottom: 20px;
    text-align: center;
}

.section-content p {
    font-size: 16px;
    line-height: 1.8;
    text-align: justify;
    margin-bottom: 15px;
}

.highlight {
    font-weight: bold;
    color: #dd0d15;
    text-align: center !important;
    font-size: 18px;
}

/* Media Section Styles */
.media-section {
    margin-top: 80px;
}

.news-tabs {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

.tab-navigation {
    display: flex;
    background: #f8f9fa;
    border-bottom: 1px solid #eee;
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    border: none;
    background: transparent;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
}

.tab-btn.active {
    background: #dd0d15;
    color: white;
}

.tab-btn:hover {
    background: #dd0d15;
    color: white;
}

.tab-content {
    position: relative;
    min-height: 300px;
}

.tab-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 30px;
}

.tab-item.active {
    opacity: 1;
    visibility: visible;
}

.news-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    transition: all 0.3s ease;
}

.news-item img {
    width: 200px;
    height: 150px;
    object-fit: cover;
    border-radius: 8px;
    background: linear-gradient(135deg, #f5f5f5, #e0e0e0);
}

.news-content h3 {
    font-size: 18px;
    color: #dd0d15;
    margin-bottom: 15px;
    line-height: 1.4;
}

.news-content p {
    color: #666;
    line-height: 1.6;
}

/* Footer Styles */
.footer {
    background:#1a1a11;
    color: white;
    padding: 50px 0 20px;
    margin-top: 80px;
}
 
.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 2fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: #fff;
}

.footer-about p {
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

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

.footer-section li {
    margin-bottom: 8px;
}

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

.footer-section a:hover {
    color: #fff;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.9);
}

.contact-info i {
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 20px;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.8);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
}

.footer-links a:hover {
    color: #fff;
}
.footer-links img{ background:transparent}
/* Demo Banner Styles */
.demo-banner {
    background: linear-gradient(135deg, #fff3cd, #ffeaa7);
    border: 1px solid #ffeaa7;
    color: #856404;
    padding: 15px;
    text-align: center;
    margin-bottom: 0;
    position: relative;
    z-index: 999;
}

.demo-banner strong {
    color: #d63031;
}

.demo-banner code {
    background: rgba(0, 0, 0, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-family: 'Courier New', monospace;
}

/* Utility Classes */
.btn {
    display: inline-block;
    padding: 12px 25px;
    background: #dd0d15;
    color: white;
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 14px;
}

.btn:hover {
    background: #b30a11;
    color:#fafafa;
    transform: translateY(-2px);
}

.text-center {
    text-align: center;
}

/* Animation Classes */
.fade-in {
    animation: fadeIn 0.6s ease-in;
}

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

/* Hover Effects */
.card-hover {
    transition: all 0.3s ease;
}

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

/* Color Scheme */
:root {
    --primary-color: #dd0d15;
    --primary-dark: #b30a11;
    --secondary-color: #f8f9fa;
    --text-color: #333;
    --text-light: #666;
    --border-color: #eee;
    --shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* RTL support */
body.rtl {
    direction: rtl;
}
body.rtl .header-content { flex-direction: row-reverse; }
body.rtl .nav-menu { justify-content: flex-start; }
body.rtl .nav-menu a { display: flex; flex-direction: row-reverse; }
body.rtl .mega-menu { left: 0; right: 0; }
body.rtl .mega-menu-content { flex-direction: row-reverse; }
body.rtl .menu-column a { text-align: right; }
body.rtl .language-selector { order: 3; }
body.rtl .mobile-menu-toggle { order: 2; }
body.rtl .slider-controls { flex-direction: row-reverse; }
body.rtl .section-header h3::after { left: auto; right: 50%; transform: translateX(50%); }
body.rtl .product-features li { padding-left: 0; padding-right: 20px; }
body.rtl .product-features li::before { left: auto; right: 0; }
body.rtl .products-grid, body.rtl .facility-content-grid { direction: rtl; }
body.rtl .footer-bottom-content { flex-direction: row-reverse; }
body.rtl .footer-section ul { padding-right: 0; }
body.rtl .contact-info p { justify-content: flex-end; }
body.rtl .button.arrow-link::after { content: '←'; }
body.rtl .dropdown > a i { transform: scaleX(-1); }
body.rtl .breadcrumbs { direction: rtl; text-align: right; }

/* Breadcrumb separators */
.breadcrumbs a { color: inherit; }
.breadcrumbs span.sep { opacity: 0.8; margin: 0 6px; }
body.rtl .breadcrumbs span.sep::after { content: '‹'; }

/* Mega menu column slide animations (LTR/RTL) */
.mega-menu .menu-column { animation: slideInLeftMenu 0.3s ease both; }
body.rtl .mega-menu .menu-column { animation: slideInRightMenu 0.3s ease both; }

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

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

/* Focus Styles for Accessibility */
a:focus,
button:focus,
select:focus {
    outline: 2px solid #dd0d15;
    outline-offset: 2px;
}

/* Loading Animation */
.loading {
    display: inline-block;
    width: 20px;
    height: 20px;
    border: 3px solid #f3f3f3;
    border-top: 3px solid #dd0d15;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Bento Box Facility Section */
.facility-bento-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
}

.facility-hero-panel {
    background: linear-gradient(135deg, #1a1a11 0%, #2c2c2c 100%);
    border-radius: 25px;
    padding: 50px;
    margin-bottom: 30px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.facility-hero-panel::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    transform: translate(50%, -50%);
}

.hero-content {
    color: white;
}

.facility-icon-large {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.facility-main-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 10px;
    color: white;
}

.facility-tagline {
    font-size: 16px;
    opacity: 0.8;
    font-weight: 300;
}

.hero-visual {
    position: relative;
    height: 200px;
    border-radius: 15px;
    overflow: hidden;
    background: linear-gradient(45deg, #495057, #6c757d);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: bold;
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facility-content-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.content-panel {
    background: white;
    border-radius: 20px;
    padding: 30px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    position: relative;
}

.content-panel:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(26, 26, 17, 0.1);
    border-color: #1a1a11;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.panel-icon {
    width: 40px;
    height: 40px;
    background: #1a1a11;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
}

.content-panel h3 {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a11;
    margin: 0;
}

.content-panel p {
    color: #495057;
    line-height: 1.6;
    font-size: 14px;
}

/* Baxter Style Philosophy Section */
.philosophy-baxter-layout {
    padding: 80px 0;
    /*background: #f8f9fa;*/
}

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

.two-col-image-section {
    position: relative;
}

.baxter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 600px;
    align-items: stretch;
    position: relative;
}

.right-content {
    background: white;
    display: flex;
    align-items: center;
    padding: 60px 80px 60px 40px;
    position: relative;
    z-index: 2;
}

.right-content__inner {
    width: 100%;
    position: relative;
    padding-right: 60px;
}

.right-content h2 {
    font-size: 32px;
    font-weight: 700;
    color: #dd0d15;
    margin-bottom: 20px;
    line-height: 1.2;
}

.right-content p {
    color: #495057;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
}

.baxter-image-right {
    
    width: 100%;
 
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(26, 26, 17, 0.15);
    z-index: 10;
}

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

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

.left-content {
    background: #f4f4f4f4;
    display: flex;
    align-items: center;
    padding: 60px 40px;
    position: relative;
    color: #666;
    border-radius: 20px;
}

.left-content__inner {
    width: 100%;
    position: relative;
}

.baxter-image-left {
  
    transform: translateY(-50%);
    width: 100%;
 
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    z-index: 3;
}

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

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

.left-content p {
    color: #444;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.button.arrow-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: transparent;
    border: 2px solid #444;
    color: #444;
    padding: 12px 24px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    margin: 20px 0;
}

.button.arrow-link:hover {
    background: white;
    color: #1a1a11;
    transform: translateX(5px);
}

.button.arrow-link::after {
    content: '→';
    font-size: 16px;
    transition: transform 0.3s ease;
}

.button.arrow-link:hover::after {
    transform: translateX(3px);
}

.global-statement-baxter {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.global-statement-baxter h3 {
    color: white;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
    text-align: center;
}

/* Reveal Animation */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* Products Section Styles */
.products-section {
    margin: 80px 0;
    padding: 60px 0;
    background: linear-gradient(135deg, #f8f9fa, #ffffff);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(221, 13, 21, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(221, 13, 21, 0.2);
    border-color: #dd0d15;
}

.product-image {
    height: 200px;
    background: linear-gradient(45deg, #f0f0f0, #f0f0f0);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
    position: relative;
    overflow: hidden;
}
.product-image img{ max-height: 200px;}
/*
.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(221, 13, 21, 0.8), rgba(179, 10, 17, 0.8));
}*/

.product-image span {
    position: relative;
    z-index: 2;
}

.product-info {
    padding: 25px;
}

.product-category {
    font-size: 12px;
    color: #dd0d15;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.product-title {
    font-size: 20px;
    font-weight: bold;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.3;
    height: 78px;
    overflow: hidden;
}

.product-description {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.product-features {
    list-style: none;
    margin-bottom: 25px;
}

.product-features li {
    padding: 5px 0;
    color: #666;
    font-size: 13px;
    position: relative;
    padding-left: 20px;
}

.product-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #dd0d15;
    font-weight: bold;
}

.product-btn {
    width: 100%;
    padding:8px 12px;
    background: linear-gradient(135deg, #dd0d15, #b30a11);
    color: white;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: block;
    text-align: center;
    /*text-transform: uppercase;*/
    text-decoration: none;
    letter-spacing: 0.5px;
}

.product-btn:hover {
    background: linear-gradient(135deg, #b30a11, #990a0f);
    transform: translateY(-2px);
    color:#fafafa;
    box-shadow: 0 5px 15px rgba(221, 13, 21, 0.3);
}

/* Product Categories Filter */
.product-filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 20px;
    background: #fff;
    border: 2px solid #dd0d15;
    color: #dd0d15;
    border-radius: 25px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
}

.filter-btn.active,
.filter-btn:hover {
    background: #dd0d15;
    color: white;
    transform: translateY(-2px);
}

/* Placeholder Image Styles */
img[src*="placeholder"], img[src=""], img:not([src]) {
    background: #f0f0f0;
    border: 2px dashed #ccc;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #999;
    font-size: 12px;
    text-align: center;
    position: relative;
}

img[src*="placeholder"]::before,
img[src=""]::before,
img:not([src])::before {
    content: "Görsel\AYüklenecek";
    white-space: pre;
    font-weight: bold;
}
@media (max-width: 768px) {
    .mobile-language-selector{display: block;}
}




.page-hero {
    margin-top: 80px;
    background: linear-gradient(135deg,#dd0d15,#b30a11);
    color: #fff;
    padding: 50px 0
}

.breadcrumbs {
    font-size: 13px;
    opacity: .9;
    margin-bottom: 10px
}

.product-detail {
    padding: 40px 0
}

.detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px
}

.detail-gallery {
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(221,13,21,.1);
    padding: 20px;
    border: 1px solid #f0f0f0
}

    .detail-gallery .main-img {
        width: 100%;
        height: 420px;
        object-fit: contain;
        background: #f7f7f7;
        border-radius: 12px
    }

.thumbs {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 10px;
    margin-top: 12px
}

    .thumbs img {
        width: 100%;
        height: 80px;
        object-fit: contain;
        background: #fafafa;
        border: 1px solid #eee;
        border-radius: 8px;
        cursor: pointer
    }

.detail-info {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    padding: 30px
}

    .detail-info h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 10px
    }

.badges {
    display: flex;
    gap: 10px;
    margin: 10px 0 20px
}

.badge {
    padding: 6px 10px;
    border-radius: 20px;
    font-size: 12px;
    border: 1px solid #eee
}

    .badge.primary {
        border-color: #dd0d15;
        color: #dd0d15
    }

.specs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin: 20px 0
}

.spec {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 12px
}

.cta-row {
    display: flex;
    gap: 12px;
    margin-top: 20px
}

    .cta-row .btn {
        flex: 0 0 auto
    }

.tabs {
    margin-top: 40px
}

.tab-headers {
    display: flex;
    gap: 10px;
    border-bottom: 1px solid #eee
}

    .tab-headers button {
        background: #fff;
        border: 1px solid #eee;
        border-bottom: none;
        padding: 10px 16px;
        border-radius: 8px 8px 0 0;
        cursor: pointer
    }

        .tab-headers button.active {
            background: #dd0d15;
            color: #fff;
            border-color: #dd0d15
        }

.tab-pane {
    display: none;
    padding: 20px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 0 8px 8px 8px
}

    .tab-pane.active {
        display: block
    }

@media(max-width:992px) {
    .detail-grid {
        grid-template-columns: 1fr
    }

    .detail-gallery .main-img {
        height: 320px
    }
}

.corporate-wrap {
    padding: 50px 0
}

.corporate-grid {
    display: grid;
    grid-template-columns: 1fr;
 
}

.corporate-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    padding: 30px
}

    .corporate-card h2 {
        font-size: 22px;
        margin-bottom: 12px;
        color: #dd0d15
    }

.side-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px
}

.kvkk {
    padding: 14px 16px;
    border: 1px dashed #ddd;
    border-radius: 10px;
    margin-top: 12px
}

.list {
    list-style: none;
    margin-left: 0
}

    .list li {
        padding: 6px 0
    }

@media(max-width:992px) {
    .corporate-grid {
        grid-template-columns: 1fr
    }
}


.contact-wrap {
    padding: 50px 0
}

.contact-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px
}

.contact-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,.06);
    padding: 30px
}

    .contact-card h2 {
        font-size: 22px;
        margin-bottom: 12px;
        color: #dd0d15
    }

.map {
    height: 320px;
    border-radius: 12px;
    overflow: hidden;
    background: #f0f0f0
}

.info p {
    display: flex;
    gap: 10px;
    align-items: center;
    margin: 8px 0;
    color: #555
}

.info-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px
}

.info-item {
    background: #f8f9fa;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 16px
}

.contact-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px
}

.btn.secondary {
    background: #333
}

@media(max-width:992px) {
    .contact-grid {
        grid-template-columns: 1fr
    }

    .info-list {
        grid-template-columns: 1fr
    }
}

.categories {
    padding: 50px 0
}

.cat-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit,minmax(260px,1fr));
    gap: 20px
}

.cat-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    box-shadow: 0 5px 20px rgba(221,13,21,.08);
    overflow: hidden;
    transition: .3s
}

    .cat-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 32px rgba(221,13,21,.18)
    }

.cat-media {
    height: 160px;
    background: #f3f3f3;
    display: flex;
    align-items: center;
    justify-content: center
}

    .cat-media img {
        max-height: 150px
    }

.cat-body {
    padding: 20px
}

.cat-title {
    font-size: 18px;
    margin-bottom: 8px
}

.cat-desc {
    color: #666;
    font-size: 14px
}

.cat-actions {
    display: flex;
    gap: 10px;
    margin-top: 14px
}

.btn.secondary {
    background: #333
}

.breadcrumbs h1 {
    color: white;
}


.listing {
    padding: 50px 0
}

.filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 20px
}

    .filters .chip {
        border: 1px solid rgba(255,255,255,.6);
        color: #fff;
        padding: 6px 12px;
        border-radius: 20px;
        background: transparent
    }

.meta {
    color: #fff;
    opacity: .9
}




/* News Section Styles */
.news-section {
    background: #f8f9fa;
    padding: 80px 0;
}

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

        .news-section .section-header h3 {
            font-size: 32px;
            color: #dd0d15;
            font-weight: 700;
            margin-bottom: 15px;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .news-section .section-header p {
            font-size: 16px;
            color: #666;
            max-width: 600px;
            margin: 0 auto;
        }

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.news-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

    .news-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 15px 40px rgba(221, 13, 21, 0.15);
    }

.news-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

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

.news-date {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(221, 13, 21, 0.9);
    color: white;
    padding: 8px 12px;
    border-radius: 8px;
    text-align: center;
    min-width: 50px;
}

    .news-date .day {
        display: block;
        font-size: 18px;
        font-weight: 700;
        line-height: 1;
    }

    .news-date .month {
        display: block;
        font-size: 12px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        margin-top: 2px;
    }

.news-content {
    padding: 25px;
}

.news-category {
    display: inline-block;
    background: #f0f0f0;
    color: #dd0d15;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
  
}

.news-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin-bottom: 12px;
    line-height: 1.4;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-top:15px;
}

.news-content p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
    height: 65px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.news-link {
    color: #dd0d15;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

    .news-link:hover {
        color: #b30a11;
        gap: 12px;
    }

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

    .news-link:hover i {
        transform: translateX(4px);
    }

.news-actions {
    text-align: center;
}

.btn-outline {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 2px solid #dd0d15;
    color: #dd0d15;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

    .btn-outline:hover {
        background: #dd0d15;
        color: white;
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(221, 13, 21, 0.3);
    }

/* News Section Responsive */
@media (max-width: 768px) {
    .news-section {
        padding: 60px 0;
    }

        .news-section .section-header h3 {
            font-size: 28px;
        }

    .news-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .news-card {
        margin: 0 10px;
    }

    .news-content {
        padding: 20px;
    }

        .news-content h4 {
            font-size: 16px;
            height: auto;
            -webkit-line-clamp: 3;
        }

        .news-content p {
            height: auto;
            -webkit-line-clamp: 4;
        }
}

/* News Detail Page Styles */
.news-detail {
    padding: 50px 0;
    background: #fff;
}

.news-detail-content {
    max-width: 800px;
    margin: 0 auto;
}

.news-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}

.news-category {
    display: inline-block;
    background: #dd0d15;
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-date-full,
.news-author,
.news-views {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
    font-size: 14px;
}

    .news-date-full i,
    .news-author i,
    .news-views i {
        color: #dd0d15;
        width: 16px;
    }

.news-detail-image {
    margin-bottom: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

    .news-detail-image img {
        width: 100%;
        height: 400px;
        object-fit: cover;
    }

.news-detail-text {
    line-height: 1.8;
    color: #333;
}

    .news-detail-text .lead {
        font-size: 20px;
        font-weight: 500;
        color: #dd0d15;
        margin-bottom: 30px;
        padding: 20px;
        background: #f8f9fa;
        border-left: 4px solid #dd0d15;
        border-radius: 0 8px 8px 0;
    }

    .news-detail-text p {
        margin-bottom: 20px;
        font-size: 16px;
    }

    .news-detail-text h3 {
        font-size: 24px;
        color: #dd0d15;
        margin: 40px 0 20px 0;
        font-weight: 600;
    }

    .news-detail-text ul {
        margin: 20px 0;
        padding-left: 20px;
    }

    .news-detail-text li {
        margin-bottom: 10px;
        position: relative;
    }

        .news-detail-text li::before {
            content: '•';
            color: #dd0d15;
            font-weight: bold;
            position: absolute;
            left: -15px;
        }

    .news-detail-text blockquote {
        background: #f8f9fa;
        border-left: 4px solid #dd0d15;
        padding: 25px;
        margin: 30px 0;
        border-radius: 0 8px 8px 0;
        font-style: italic;
        position: relative;
    }

        .news-detail-text blockquote p {
            font-size: 18px;
            margin-bottom: 15px;
            color: #555;
        }

        .news-detail-text blockquote cite {
            display: block;
            text-align: right;
            font-size: 14px;
            color: #dd0d15;
            font-weight: 600;
            font-style: normal;
        }

            .news-detail-text blockquote cite::before {
                content: '— ';
            }

/* Social Share */
.news-share {
    margin: 50px 0;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 15px;
    text-align: center;
}

    .news-share h4 {
        margin-bottom: 20px;
        color: #333;
        font-size: 18px;
    }

.share-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
}

    .share-btn.facebook {
        background: #3b5998;
        color: white;
    }

    .share-btn.twitter {
        background: #1da1f2;
        color: white;
    }

    .share-btn.linkedin {
        background: #0077b5;
        color: white;
    }

    .share-btn.whatsapp {
        background: #25d366;
        color: white;
    }

    .share-btn:hover {
        transform: translateY(-2px);
        box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    }










/* Related News */
.related-news {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

    .related-news h3 {
        font-size: 28px;
        color: #dd0d15;
        margin-bottom: 30px;
        text-align: center;
        font-weight: 600;
    }

.related-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.related-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
}

    .related-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 30px rgba(221, 13, 21, 0.15);
    }

.related-image {
    height: 150px;
    overflow: hidden;
}

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

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

.related-content {
    padding: 20px;
}

.related-category {
    display: inline-block;
    background: #f0f0f0;
    color: #dd0d15;
    padding: 3px 10px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 10px;
}

.related-content h4 {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 10px;
    line-height: 1.4;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-content p {
    color: #666;
    font-size: 13px;
    line-height: 1.5;
    margin-bottom: 15px;
    height: 39px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.related-link {
    color: #dd0d15;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s ease;
}

    .related-link:hover {
        color: #b30a11;
        gap: 8px;
    }

    .related-link::after {
        content: '→';
        font-size: 12px;
        transition: transform 0.3s ease;
    }

    .related-link:hover::after {
        transform: translateX(3px);
    }

/* News Detail Responsive */
@media (max-width: 768px) {
    .news-detail {
        padding: 30px 0;
    }

    .news-detail-content {
        padding: 0 15px;
    }

    .news-meta {
        flex-direction: column;
        gap: 10px;
    }

    .news-detail-image img {
        height: 250px;
    }

    .news-detail-text .lead {
        font-size: 18px;
        padding: 15px;
    }

    .news-detail-text h3 {
        font-size: 20px;
    }

    .news-detail-text p {
        font-size: 15px;
    }

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

    .share-btn {
        width: 200px;
        justify-content: center;
    }

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

    .related-news h3 {
        font-size: 24px;
    }
}   