/* ============================================================================
   SOYPLAS - Premium Industrial Corporate Website
   Professional Design System with Accent Colors #FBD360 & #D688A2
   ============================================================================ */

:root {
    --primary-color: #f39c12;
    --primary-dark: #d68910;
    --primary-light: #f5b041;
    --accent-gold: #FBD360;
    --accent-pink: #D688A2;
    --dark-bg: #0f1419;
    --dark-secondary: #1a2332;
    --dark-tertiary: #2c3e50;
    --light-bg: #f8f9fa;
    --light-secondary: #f0f2f5;
    --white: #ffffff;
    --gray-100: #f4f6f8;
    --gray-200: #e8ecf1;
    --gray-300: #d4dce6;
    --gray-400: #b8c5d6;
    --gray-500: #8b98a8;
    --gray-600: #5a6b7d;
    --gray-700: #3d4a5c;
    --text-dark: #1a1f2e;
    --text-light: #6b7280;
    --spacing-xs: 8px;
    --spacing-sm: 16px;
    --spacing-md: 24px;
    --spacing-lg: 32px;
    --spacing-xl: 48px;
    --spacing-2xl: 64px;
    --spacing-3xl: 96px;
    --font-primary: 'Segoe UI', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-secondary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.2);
    --shadow-2xl: 0 24px 64px rgba(0, 0, 0, 0.24);
    --shadow-premium: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 1px rgba(0, 0, 0, 0.1);
    --shadow-inset: inset 0 1px 3px rgba(0, 0, 0, 0.05);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-2xl: 24px;
    --container-width: 1320px;
    --container-padding: 40px;
}

/* ============================================================================
   RESET & BASE STYLES
   ============================================================================ */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-secondary);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background: var(--white);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition-base);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

ul, ol {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.section-padding {
    padding: var(--spacing-3xl) 0;
}

.section-title {
    text-align: center;
    margin-bottom: var(--spacing-2xl);
}

.section-title h2 {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: var(--spacing-sm);
    letter-spacing: -1px;
    line-height: 1.2;
}

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

/* ============================================================================
   HEADER & NAVIGATION
   ============================================================================ */

/* Top Bar */
.topbar {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(251, 211, 96, 0.2);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
}

.topbar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    font-size: 13px;
}

.topbar-left {
    display: flex;
    gap: var(--spacing-xl);
    align-items: center;
    color: rgba(255, 255, 255, 0.8);
}

.topbar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.8);
    transition: var(--transition-base);
}

.topbar-item:hover { color: var(--accent-gold); }

.topbar-item i {
    color: var(--accent-gold);
    width: 16px;
    text-align: center;
}

.topbar-item a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: var(--transition-base);
}

.topbar-item a:hover { color: var(--accent-gold); }

.topbar-right {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icons a {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(251, 211, 96, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-gold);
    transition: all var(--transition-base);
    border: 1px solid rgba(251, 211, 96, 0.3);
    font-size: 12px;
}

.social-icons a:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    color: var(--white);
    border-color: transparent;
    transform: translateY(-2px);
}

/* Main Header */
header {
    position: sticky;
    top: 50px;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    transition: all var(--transition-base);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

header.scrolled {
    background: var(--white);
    box-shadow: 0 14px 16px rgba(0, 0, 0, 0.12);
    border-bottom: 1px solid var(--gray-200);
}

.header-inner {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100px;
    padding: 0 var(--container-padding);
    max-width: var(--container-width);
    margin: 10px auto;
}

.header-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-2xl);
    flex: 1;
	margin-top: 20px;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-sm);
    z-index: 10;
    flex-shrink: 0;
}

.logo img {
    width: 356px;
    height: 88px;
    transition: var(--transition-base);
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.08));
    object-fit: contain;
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 6px 16px rgba(251, 211, 96, 0.15));
}

.nav-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.nav-list {
    display: flex;
    gap: var(--spacing-lg);
    align-items: center;
    justify-content: center;
    height: 100%;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}

.nav-link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: var(--text-dark);
    padding: 0 8px;
    position: relative;
    transition: all var(--transition-base);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    height: 100%;
    white-space: nowrap;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    transition: width var(--transition-base);
}

.nav-link:hover::after { width: 100%; }

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    min-width: 240px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-base);
    margin-top: var(--spacing-sm);
    overflow: hidden;
    border-top: 3px solid var(--accent-gold);
}

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

.dropdown-item { border-bottom: 1px solid var(--gray-200); }
.dropdown-item:last-child { border-bottom: none; }

.dropdown-item a {
    display: block;
    padding: var(--spacing-sm) var(--spacing-md);
    color: var(--text-dark);
    font-size: 13px;
    font-weight: 600;
    transition: var(--transition-base);
    position: relative;
    padding-left: var(--spacing-lg);
}

.dropdown-item a::before {
    content: '';
    position: absolute;
    left: var(--spacing-md);
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition-base);
}

.dropdown-item a:hover {
    background: linear-gradient(90deg, rgba(251, 211, 96, 0.1) 0%, rgba(214, 136, 162, 0.1) 100%);
    color: var(--primary-color);
}

.dropdown-item a:hover::before { opacity: 1; }

/* Language Switcher - Top Bar */
.lang-switcher-topbar {
    display: flex;
    gap: var(--spacing-sm);
    align-items: center;
    justify-content: center;
    padding-right: var(--spacing-lg);
    border-right: 1px solid rgba(255, 255, 255, 0.2);
    margin-right: var(--spacing-lg);
}

.lang-flag {
    width: 32px;
    height: 24px;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.lang-flag:hover {
    transform: scale(1.2) translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.lang-flag.active {
    border-color: var(--accent-gold);
    box-shadow: 0 0 0 3px rgba(251, 211, 96, 0.2);
}

/* Mobile Menu Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    z-index: 1100;
    padding: 8px;
}

.mobile-toggle span {
    width: 28px;
    height: 2.5px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition-base);
}

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

/* Mobile Contact Bar (hidden on desktop) */
.mobile-contact-bar {
    display: none;
}

/* Mobile Language Select (hidden on desktop) */
.mobile-lang-select {
    display: none;
}

/* ============================================================================
   HERO SECTION
   ============================================================================ */

.hero-slider {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
}

.slide.active { opacity: 1; }

.slide::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(135deg, rgba(15, 20, 25, 0.65) 0%, rgba(15, 20, 25, 0.35) 50%, rgba(251, 211, 96, 0.15) 100%);
    z-index: 1;
}

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: var(--white);
    width: 90%;
    max-width: 900px;
    z-index: 2;
}

.slide-title {
    font-size: clamp(32px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    text-shadow: 2px 4px 12px rgba(0, 0, 0, 0.4);
    letter-spacing: -1px;
}

.slide-desc {
    font-size: clamp(16px, 3vw, 24px);
    margin-bottom: var(--spacing-xl);
    text-shadow: 1px 2px 8px rgba(0, 0, 0, 0.3);
    font-weight: 300;
    line-height: 1.6;
}

.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all var(--transition-base);
}

.slider-dot.active {
    background: var(--accent-gold);
    transform: scale(1.3);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 48px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    color: #222222;
    border-radius: var(--radius-lg);
    font-weight: 700;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-base);
    border: 2px solid transparent;
    cursor: pointer;
    box-shadow: 0 8px 24px rgba(243, 156, 18, 0.3);
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.6s;
}

.btn:hover::before { left: 100%; }

.btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(243, 156, 18, 0.4);
}

.btn-accent {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    box-shadow: 0 8px 24px rgba(251, 211, 96, 0.3);
}

.btn-accent:hover {
    box-shadow: 0 12px 32px rgba(251, 211, 96, 0.4);
}

.btn-secondary {
    background: var(--white);
    color: var(--text-dark);
    border: 2px solid var(--white);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn-secondary:hover {
    background: transparent;
    color: var(--white);
}

/* ============================================================================
   PRODUCT CATEGORIES SECTION
   ============================================================================ */

.categories {
    padding: var(--spacing-3xl) 0;
    background: var(--light-bg);
}

.category-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.category-grid {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    cursor: grab;
}

.category-grid::-webkit-scrollbar { display: none; }
.category-grid:active { cursor: grabbing; }
.category-grid > * { scroll-snap-align: start; }

.category-card {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-2xl);
    height: 380px;
    display: flex;
    align-items: flex-end;
    cursor: pointer;
    flex: 0 0 calc(25% - 18px);
    min-width: calc(25% - 18px);
    text-decoration: none;
}

.category-card img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    filter: grayscale(50%);
}

.category-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(to top, rgba(15, 20, 25, 0.8) 0%, rgba(15, 20, 25, 0.4) 50%, transparent 100%);
    z-index: 2;
    transition: var(--transition-base);
}

.category-overlay {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: var(--spacing-xl);
    color: var(--white);
    transition: var(--transition-base);
}

.category-overlay h3 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.5px;
}

.category-overlay p {
    font-size: 14px;
    opacity: 0;
    transform: translateY(10px);
    transition: all var(--transition-base);
}

.category-card:hover img {
    transform: scale(1.1);
    filter: grayscale(0%);
}

.category-card:hover .category-overlay p {
    opacity: 1;
    transform: translateY(0);
}

.category-card:hover::before {
    background: linear-gradient(to top, rgba(15, 20, 25, 0.9) 0%, rgba(15, 20, 25, 0.5) 50%, transparent 100%);
}

.category-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition-base);
    z-index: 4;
}

.category-card:hover::after { transform: scaleX(1); }

/* ============================================================================
   INFO SECTION
   ============================================================================ */

.info-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
	overflow: hidden; /* Bu satır içerideki translateX hareketlerinin dışarı taşmasını engeller */
    width: 100%;
    position: relative;
}

.info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--spacing-3xl);
    align-items: center;
    margin-bottom: var(--spacing-3xl);
}

.info-row:last-child { margin-bottom: 0; }

.info-row.reverse .info-image { order: 2; }
.info-row.reverse .info-text { order: 1; }

.info-image {
    position: relative;
    height: 500px;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

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

.info-image:hover img {
    transform: scale(1.05);
    filter: grayscale(30%);
}

.info-text h2 {
    font-size: clamp(28px, 4vw, 42px);
    font-weight: 800;
    margin-bottom: var(--spacing-lg);
    color: var(--text-dark);
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.info-text p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: var(--spacing-md);
}

/* ============================================================================
   WHY CHOOSE US SECTION
   ============================================================================ */

.why-choose-us {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    padding: var(--spacing-3xl) 0;
    color: var(--white);
}

.why-choose-us .section-title h2,
.why-choose-us .section-title p {
    color: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: var(--spacing-xl);
}

.feature-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    border: 1px solid rgba(251, 211, 96, 0.2);
    text-align: center;
    transition: all var(--transition-base);
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent 0%, rgba(251, 211, 96, 0.15) 50%, transparent 100%);
    transition: left var(--transition-slow);
}

.feature-item:hover {
    background: rgba(251, 211, 96, 0.1);
    border-color: var(--accent-gold);
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(251, 211, 96, 0.25);
}

.feature-item:hover::before {
    left: 100%;
}

.feature-icon {
    font-size: 48px;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: var(--spacing-md);
    transition: var(--transition-base);
}

.feature-item:hover .feature-icon {
    transform: scale(1.2) rotate(10deg);
}

.feature-item h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
}

.feature-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* ============================================================================
   HOME GALLERY SECTION
   ============================================================================ */

.home-gallery {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.gallery-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-sm);
}

.gallery-grid-home .gallery-item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 220px;
    cursor: pointer;
    transition: all var(--transition-base);
}

.gallery-grid-home .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease, filter 0.4s ease;
    filter: grayscale(60%);
}

.gallery-grid-home .gallery-item:hover img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.gallery-grid-home .gallery-item::after {
    content: '\f065';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0);
    font-size: 24px;
    color: var(--white);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    z-index: 3;
}

.gallery-grid-home .gallery-item:hover::after {
    transform: translate(-50%, -50%) scale(1);
}

.gallery-grid-home .gallery-item::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.3);
    opacity: 0;
    transition: opacity var(--transition-base);
    z-index: 2;
}

.gallery-grid-home .gallery-item:hover::before { opacity: 1; }

/* ============================================================================
   NEWS SECTION
   ============================================================================ */

.latest-news {
    padding: var(--spacing-3xl) 0;
    background: var(--light-bg);
}

.news-slider-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: var(--spacing-lg);
}

.news-slider {
    display: flex;
    gap: var(--spacing-lg);
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    flex: 1;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-snap-type: x mandatory;
    cursor: grab;
}

.news-slider::-webkit-scrollbar { display: none; }
.news-slider:active { cursor: grabbing; }
.news-slider > * { scroll-snap-align: start; }

.news-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all var(--transition-base);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    border: 1px solid var(--gray-200);
    flex: 0 0 calc(25% - 18px);
    min-width: calc(25% - 18px);
}

.news-card:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--accent-gold);
}

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

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1), filter 0.6s ease;
    filter: grayscale(10%);
}

.news-card:hover .news-image img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.news-date {
    position: absolute;
    top: var(--spacing-md);
    right: var(--spacing-md);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    color: var(--white);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-md);
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    z-index: 2;
}

.news-content {
    padding: var(--spacing-lg);
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.news-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-sm);
    color: var(--text-dark);
    line-height: 1.4;
}

.news-content p {
    font-size: 14px;
    color: var(--text-light);
    margin-bottom: var(--spacing-lg);
    line-height: 1.6;
    flex-grow: 1;
}

.news-card .btn {
    align-self: flex-start;
    padding: 10px 24px;
    font-size: 12px;
}

/* ============================================================================
   GOOGLE MAP SECTION (Footer Üstü)
   ============================================================================ */

.google-map-section {
    width: 100%;
    height: 450px;
    position: relative;
}

.google-map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    filter: grayscale(50%);
    transition: filter var(--transition-base);
}

.google-map-section:hover iframe {
    filter: grayscale(0%);
}

/* ============================================================================
   FOOTER
   ============================================================================ */

footer {
    background: var(--dark-bg);
    color: var(--white);
    padding: var(--spacing-2xl) 0 var(--spacing-xl);
    margin-top: 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    margin-bottom: var(--spacing-2xl);
    padding-bottom: var(--spacing-2xl);
    border-bottom: 1px solid rgba(251, 211, 96, 0.2);
}

.footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: var(--spacing-lg);
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

.footer-links { list-style: none; }

.footer-links li { margin-bottom: var(--spacing-md); }

.footer-links a {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-base);
    position: relative;
    padding-left: var(--spacing-sm);
}

.footer-links a::before {
    content: '→';
    position: absolute;
    left: 0;
    opacity: 0;
    transition: var(--transition-base);
    color: var(--accent-gold);
}

.footer-links a:hover { color: var(--accent-gold); }
.footer-links a:hover::before { opacity: 1; }

.footer-contact { list-style: none; }

.footer-contact li {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: var(--spacing-md);
    display: flex;
    gap: var(--spacing-md);
    align-items: flex-start;
}

.footer-contact i {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-top: 2px;
    flex-shrink: 0;
}

.social-links {
    display: flex;
    gap: var(--spacing-md);
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(251, 211, 96, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
    color: var(--accent-gold);
    border: 1px solid rgba(251, 211, 96, 0.3);
}

.social-links a:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    transform: translateY(-4px);
    color: var(--white);
    border-color: transparent;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
}

/* Mobile info bar - hidden on desktop */
.mobile-info-bar {
    display: none;
}

/* ============================================================================
   LIGHTBOX
   ============================================================================ */

.lightbox-overlay {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 0 60px rgba(0,0,0,0.5);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10001;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 24px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.lightbox-close:hover {
    background: var(--accent-gold);
    color: var(--dark-bg);
}

.lightbox-nav {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10001;
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    border: none;
    border-radius: 50%;
    color: var(--white);
    font-size: 20px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition-base);
}

.lightbox-nav:hover {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    color: var(--dark-bg);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-counter {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10001;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

/* ============================================================================
   SCROLL REVEAL ANIMATIONS
   ============================================================================ */

.reveal-up {
    opacity: 0;
    transform: translateY(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(60px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* ============================================================================
   SLIDER CONTROLS
   ============================================================================ */

.slider-arrow {
    position: relative;
    width: 48px;
    height: 48px;
    border: none;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
    color: var(--white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    transition: all var(--transition-base);
    box-shadow: var(--shadow-md);
    flex-shrink: 0;
}

.slider-arrow:hover {
    transform: scale(1.1);
    box-shadow: var(--shadow-xl);
}

.slider-arrow:active { transform: scale(0.95); }

/* ============================================================================
   PAGE BANNER (Inner Pages)
   ============================================================================ */

.page-banner {
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--dark-secondary) 100%);
    color: var(--white);
    padding: 120px 0 80px;
    text-align: center;
    margin-top: 90px;
}

.page-banner h1 {
    font-size: clamp(36px, 6vw, 56px);
    font-weight: 800;
    margin-bottom: var(--spacing-md);
    letter-spacing: -1px;
}

.page-banner p {
    font-size: 18px;
    color: rgba(255,255,255,0.8);
    max-width: 600px;
    margin: 0 auto;
}

/* ============================================================================
   ANIMATIONS
   ============================================================================ */

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

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

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

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

/* Lightbox image transition */
.lightbox-content img {
    transition: opacity 0.3s ease;
}

/* ============================================================================
   FLOATING BUTTONS (WhatsApp + Scroll to Top)
   ============================================================================ */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 9000;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: var(--white);
    cursor: pointer;
    border: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--transition-base);
    opacity: 0;
    transform: scale(0.5) translateY(20px);
    pointer-events: none;
}

.float-btn.visible {
    opacity: 1;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.float-btn:hover {
    transform: scale(1.1) translateY(-2px);
    box-shadow: var(--shadow-xl);
}

.float-btn-whatsapp {
    background: #25D366;
}

.float-btn-whatsapp:hover {
    background: #1ebe5d;
}

.float-btn-top {
    background: linear-gradient(135deg, var(--accent-gold) 0%, var(--accent-pink) 100%);
}

.float-btn-top:hover {
    background: linear-gradient(135deg, var(--accent-pink) 0%, var(--accent-gold) 100%);
}

/* Ripple effect */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
}

@keyframes rippleAnim {
    to { transform: scale(4); opacity: 0; }
}

/* ============================================================================
   RESPONSIVE DESIGN
   ============================================================================ */

@media (max-width: 1200px) {
    .category-card {
        flex: 0 0 calc(33.333% - 16px);
        min-width: calc(33.333% - 16px);
    }
    .news-card {
        flex: 0 0 calc(33.333% - 16px);
        min-width: calc(33.333% - 16px);
    }
    .gallery-grid-home {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    :root { --container-padding: 32px; }

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

    .info-row {
        grid-template-columns: 1fr;
        gap: var(--spacing-2xl);
    }

    .info-row.reverse .info-image { order: 0; }
    .info-row.reverse .info-text { order: 0; }

    .info-image { height: 400px; }

    .category-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }

    .news-card {
        flex: 0 0 calc(50% - 12px);
        min-width: calc(50% - 12px);
    }

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

@media (max-width: 768px) {
    :root {
        --container-padding: 20px;
        --spacing-3xl: 60px;
    }

    /* Top bar hidden on mobile */
    .topbar { display: none; }

    /* Header adjustments */
    header {
        top: 0;
        position: sticky;
    }

    .header-inner {
        height: 70px;
        padding: 0 var(--container-padding);
        justify-content: space-between;
    }

    .header-content {
        gap: var(--spacing-lg);
        justify-content: flex-start;
    }

    .logo {
        min-width: auto;
        width: auto;
    }

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

    /* Mobile info bar wrapper */
    .mobile-info-bar {
        display: block;
        position: sticky;
        top: 70px;
        z-index: 9999;
        background: var(--white);
        border-bottom: 2px solid var(--gray-200);
    }

    /* Mobile contact bar */
    .mobile-contact-bar {
        display: flex;
        flex-wrap: wrap;
        gap: var(--spacing-sm);
        padding: var(--spacing-sm) var(--container-padding);
        background: var(--light-bg);
        border-bottom: 1px solid var(--gray-200);
        font-size: 12px;
        justify-content: center;
    }

    .mobile-contact-bar a,
    .mobile-contact-bar span {
        display: flex;
        align-items: center;
        gap: 6px;
        color: var(--text-light);
        font-size: 12px;
    }

    .mobile-contact-bar i {
        color: var(--accent-gold);
        font-size: 12px;
    }

    /* Mobile language select */
    .mobile-lang-select {
        display: flex;
        justify-content: center;
        padding: var(--spacing-xs) var(--container-padding);
        background: var(--light-bg);
        border-bottom: 1px solid var(--gray-200);
    }

    .mobile-lang-select select {
        padding: 8px 32px 8px 16px;
        border: 2px solid var(--accent-gold);
        border-radius: var(--radius-md);
        background: var(--white);
        font-size: 14px;
        font-weight: 600;
        color: var(--text-dark);
        cursor: pointer;
        appearance: none;
        -webkit-appearance: none;
        background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23FBD360' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
        background-repeat: no-repeat;
        background-position: right 12px center;
        min-width: 200px;
        text-align: center;
    }

    /* Desktop nav hidden */
    .nav-list { display: none; }

    /* Mobile menu */
    .nav-menu {
        position: fixed;
        top: 150px;
        left: 0;
        right: 0;
        bottom: 0;
        background: var(--white);
        flex-direction: column;
        padding: var(--spacing-lg);
        max-height: 0;
        overflow: hidden;
        overflow-y: auto;
        transition: max-height 0.4s ease;
        box-shadow: var(--shadow-lg);
        justify-content: flex-start;
        z-index: 1050;
		width: 100% !important;
        max-width: 100vw; /* Ekrandan geniş olamaz */
		box-sizing: border-box; /* Padding'i genişliğe dahil et */
        overflow-x: hidden; /* Yatay kaymayı menü içinde engelle */
    }

    .nav-menu.active {
        max-height: calc(100vh - 70px);
    }

    .nav-menu.active .nav-list {
        display: flex;
        flex-direction: column;
        gap: 0;
        height: auto;
        width: 100%;
    }

    .nav-menu.active .nav-item {
        width: 100%;
        height: auto;
        flex-direction: column;
        border-bottom: 1px solid var(--gray-200);
    }

    .nav-menu.active .nav-link {
        padding: var(--spacing-sm) 0;
        height: auto;
        justify-content: space-between;
        font-size: 15px;
    }

    .dropdown-menu {
        position: static;
        opacity: 0;
        visibility: hidden;
        transform: none;
        max-height: 0;
        overflow: hidden;
        background: var(--light-bg);
        margin-top: 0;
        box-shadow: none;
        border-radius: 0;
        border-top: none;
        transition: max-height 0.3s ease, opacity 0.3s ease;
    }

    .nav-item.active .dropdown-menu {
        opacity: 1;
        visibility: visible;
        max-height: 500px;
    }

    .mobile-toggle { display: flex; }

    /* Hero */
    .hero-slider {
        margin-top: 0;
        height: 70vh;
        min-height: 450px;
    }

    .slide-title { font-size: clamp(24px, 6vw, 42px); }
    .slide-desc { font-size: clamp(14px, 2.5vw, 18px); }

    /* Grids */
    .category-card {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
        height: 280px;
    }

    .news-card {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }

    .features-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .section-padding { padding: var(--spacing-2xl) 0; }

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

    .gallery-grid-home .gallery-item { height: 160px; }

    /* Lightbox mobile */
    .lightbox-prev { left: 10px; }
    .lightbox-next { right: 10px; }
    .lightbox-nav { width: 40px; height: 40px; font-size: 16px; }

    /* Slider arrows smaller on mobile */
    .slider-arrow { width: 36px; height: 36px; font-size: 14px; }

    /* Google map */
    .google-map-section { height: 250px; }

    /* Floating buttons */
    .floating-buttons { bottom: 20px; right: 16px; }
    .float-btn { width: 48px; height: 48px; font-size: 20px; }

    /* Lightbox mobile */
    .lightbox-content img { max-width: 95vw; max-height: 80vh; border-radius: var(--radius-md); }
    .lightbox-close { top: 10px; right: 10px; width: 36px; height: 36px; font-size: 20px; }
}

@media (max-width: 480px) {
    :root { --container-padding: 16px; }

    .slide-title { font-size: 24px; }
    .slide-desc { font-size: 14px; }
    .btn { padding: 12px 32px; font-size: 12px; }
    .section-title h2 { font-size: 28px; }
    .info-text h2 { font-size: 24px; }

    .category-card {
        flex: 0 0 100%;
        min-width: 100%;
        height: 240px;
    }

    .news-card {
        flex: 0 0 100%;
        min-width: 100%;
    }

    .gallery-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--spacing-xs);
    }

    .gallery-grid-home .gallery-item { height: 130px; }
}

.play-btn {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #192230 0%, #3c0f1e 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #fff;
    font-size: 30px;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 0 30px rgba(214, 136, 162, 0.4);
    position: relative;
    z-index: 2;
}

.play-btn:hover {
    transform: scale(1.1);
    color: #fff;
    box-shadow: 0 0 50px rgba(214, 136, 162, 0.6);
}

/* Video Modal Stilleri */
.video-modal {
    display: none;
    position: fixed;
    z-index: 99999; /* En üstte kalsın */
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    /* Merkeze hizalama */
    align-items: center; 
    justify-content: center;
    -webkit-align-items: center;
}

/* Modal İçerik Kabı */
.modal-content {
    position: relative;
    width: 90%; /* Mobilde kenarlarda boşluk bırakır */
    max-width: 1000px;
    margin: auto; /* Dikeyde garanti ortalama */
}

/* Video Oranı (16:9) */
.video-container {
    position: relative;
    padding-bottom: 56.25%; 
    height: 0;
    overflow: hidden;
    background: #000;
}

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

/* Kapatma Butonu Mobil Uyumu */
.close-video {
    position: absolute;
    top: -50px; /* Videonun biraz üstünde */
    right: 0;
    color: #fff;
    font-size: 35px;
    line-height: 1;
    cursor: pointer;
    padding: 10px;
    z-index: 100000;
}

@media (max-width: 768px) {
    .modal-content {
        width: 95%; /* Mobilde daha geniş alan */
    }
    .close-video {
        top: -45px;
        right: -5px;
    }
}
/* Tanıtım Bloğu Ana Kapsayıcı */
.other-site-promotion {
    position: relative;
    padding: 120px 0;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
    background-attachment: scroll;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Koyu Şeffaf Katman (Overlay) */
.promotion-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgb(219 147 151 / 86%); /* Okunurluk için hafif koyu tutuldu */
    z-index: 1;
}

/* İçerik Kutusu */
.promotion-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

/* Logo Stili */
.other-factory-logo {
    max-width: 441px;
    height: auto;
    margin-bottom: 30px;
	display: block;
    margin-left: auto;
    margin-right: auto;
    filter: drop-shadow(0 5px 15px rgba(0,0,0,0.3));
}

/* Başlık */
.prom-title {
    color: #19212f;
    font-size: 38px;
    font-weight: 800;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Açıklama Metni */
.prom-desc {
    color:#19212f;
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Dış Bağlantı Butonu (Özel Gradyan) */
.prom-external-link {
    display: inline-block;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 700;
    color: #fff;
    text-decoration: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #fbd360 0%, #D688A2 100%);
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

.prom-external-link:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(214, 136, 162, 0.4);
    color: #fff;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .other-site-promotion {
        padding: 80px 20px;
    }
    .prom-title {
        font-size: 28px;
    }
    .prom-desc {
        font-size: 16px;
    }
    .other-factory-logo {
        max-width: 300px;
    }
}
@media (max-width: 768px) {
    .reveal-left, .reveal-right {
        /* Mobilde 60px yerine 20px kaydırarak başlasın, böylece taşma riskini azaltırız */
        transform: translateY(30px) !important; /* Sağa/Sola yerine sadece Yukarı hareket verelim */
        transition: all 0.6s ease-out;
    }
    
    .info-row {
        gap: var(--spacing-lg); /* Mobilde satırlar arası boşluğu daralt */
    }

    .info-image {
        height: 300px; /* Mobilde görsel yüksekliğini optimize et */
        width: 100%;
    }
}
.news-item-row {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: var(--spacing-2xl); 
    align-items: center; 
    padding: var(--spacing-xl); 
    background: var(--white); 
    border-radius: var(--radius-xl); 
    box-shadow: var(--shadow-md); 
    transition: all var(--transition-base); 
    border-left: 4px solid var(--accent-gold);
    margin-bottom: var(--spacing-lg);
}

.news-item-image {
    position: relative; 
    overflow: hidden; 
    border-radius: var(--radius-lg); 
    height: 350px; /* Masaüstü yüksekliği */
}
.news-item-content h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2; /* Başlığı tam olarak 2 satırda keser */
    -webkit-box-orient: vertical;  
    overflow: hidden;
    text-overflow: ellipsis; /* Taşan kısma üç nokta (...) ekler */
    
    /* Yükseklik sabitleme (Kritik nokta) */
    height: 3.4em; /* (line-height * satır sayısı) kadar bir değer verin */
    line-height: 1.7; /* Satır aralığı */
    margin-bottom: 15px;
}
/* MOBİL DÜZENLEMELERİ */
@media (max-width: 768px) {
    .news-item-row {
        grid-template-columns: 1fr; /* Mobilde alt alta al */
        gap: var(--spacing-lg);
        padding: var(--spacing-md);
    }

    .news-item-image {
        height: 250px; /* Mobilde daha makul bir yükseklik */
        width: 100%;
        order: 1; /* Resim en üstte */
    }

    .news-item-content {
        order: 2; /* Metin altta */
        text-align: center; /* Mobilde yazıları ortalamak istersen */
    }

    .news-item-content h3 {
        font-size: 22px !important; /* Mobilde başlığı küçült */
    }
}
