/* PFDinTextPro Font Family */
@font-face {
    font-family: 'PFDinTextPro';
    src: local('PFDinTextPro-Regular'),
        local('PF DinText Pro Regular'),
        local('PFDinTextPro'),
        url('fonts/PFDinTextPro-Regular.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'PFDinTextPro';
    src: local('PFDinTextPro-Bold'),
        local('PF DinText Pro Bold'),
        local('PFDinTextPro Bold'),
        url('fonts/PFDinTextPro-Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* Poppins Font Family Fallback */
@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Poppins';
    src: url('fonts/Poppins-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/* CSS Variables */
:root {
    /* Colors */
    --primary-red: #B81D22;
    --primary-dark: #3A3A3A;
    --primary-green: #B81D22;
    --secondary-green: #8C1216;
    --dark-green: #3A3A3A;
    --light-green: #FFF2F2;
    --accent-yellow: #B81D22;
    --dark-gray: #3A3A3A;
    --medium-gray: #666666;
    --light-gray: #F5F5F5;
    --border-gray: #E0E0E0;
    --white: #FFFFFF;
    --black: #000000;

    /* Typography */
    --font-family-primary: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-family-secondary: 'Poppins', sans-serif;

    /* Font Sizes */
    --font-size-xs: 0.75rem;
    /* 12px */
    --font-size-sm: 0.875rem;
    /* 14px */
    --font-size-base: 1rem;
    /* 16px */
    --font-size-lg: 1.125rem;
    /* 18px */
    --font-size-xl: 1.25rem;
    /* 20px */
    --font-size-2xl: 1.5rem;
    /* 24px */
    --font-size-3xl: 1.875rem;
    /* 30px */

    /* Font Weights */
    --font-weight-thin: 100;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;
    --font-size-4xl: 2.25rem;
    /* 36px */

    /* Font Weights */
    --font-weight-thin: 100;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extrabold: 800;
    --font-weight-black: 900;

    /* Spacing */
    --spacing-xs: 0.25rem;
    /* 4px */
    --spacing-sm: 0.5rem;
    /* 8px */
    --spacing-md: 1rem;
    /* 16px */
    --spacing-lg: 1.5rem;
    /* 24px */
    --spacing-xl: 2rem;
    /* 32px */
    --spacing-2xl: 3rem;
    /* 48px */

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);

    /* Border Radius */
    --radius-sm: 0.25rem;
    /* 4px */
    --radius-md: 0.375rem;
    /* 6px */
    --radius-lg: 0.5rem;
    /* 8px */
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-family-primary);
    font-size: var(--font-size-base);
    font-weight: var(--font-weight-normal);
    line-height: 1.6;
    color: var(--dark-gray);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-semibold);
    line-height: 1.2;
    margin-bottom: var(--spacing-sm);
    color: var(--dark-green);
}

p {
    margin-bottom: var(--spacing-md);
}

a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--dark-green);
}

/* Font Awesome Icons */
.fa {
    font-family: var(--fa-style-family, "Font Awesome 6 Free");
    font-weight: var(--fa-style, 900);
}

.fa,
.fas,
.fa-solid,
.far,
.fa-regular,
.fal,
.fa-light,
.fat,
.fa-thin,
.fad,
.fa-duotone,
.fab,
.fa-brands {
    -moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: var(--fa-display, inline-block);
    font-style: normal;
    font-variant: normal;
    line-height: 1;
    text-rendering: auto;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Top Bar */
.top-bar {
    background: var(--dark-green);
    color: var(--white);
    padding: 0.10rem 0;
    font-size: 0.85rem;
}

.top-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-contact {
    display: flex;
    gap: 0.2rem;
    align-items: center;
    font-size: 0.8rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: color var(--transition-fast);
}

.contact-item:hover {
    color: var(--light-green);
}

.contact-item i {
    color: var(--light-green);
}

.language-links {
    display: flex;
    gap: 0.8rem;
    align-items: center;
}

.lang-link {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    color: var(--white);
    text-decoration: none;
    padding: 0.3rem 0.7rem;
    margin: 0.1rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    font-weight: var(--font-weight-medium);
    font-size: 0.8rem;
}

.lang-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--light-green);
}

.lang-link.active {
    background: var(--light-green);
    color: var(--dark-green);
}

.lang-link i {
    font-size: 0.8rem;
}

.top-bar-right .social-links {
    display: flex;
    gap: 1rem;
}

.top-bar-right .social-links a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transition: all var(--transition-fast);
    font-size: 0.8rem;
}

.top-bar-right .social-links a:hover {
    background: var(--secondary-green);
    transform: translateY(-2px);
}

/* Main Header */
.main-header {
    background: linear-gradient(180deg, #d8d8d8 0%, #ffffff 35%, #ffffff 60%, #d8d8d8 100%);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.9), inset 0 -1px 2px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 1rem 0;
}

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

.header-left {
    flex-shrink: 0;
    padding-left: 0;
}

.header-left .logo {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.header-left .logo a {
    display: inline-flex;
    align-items: center;
    max-width: 100%;
}

.header-left .logo img,
.header-logo-img {
    width: 250px;
    height: 80px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-left: auto;
    padding-right: 2rem;
}

/* Main Navigation */
.main-navigation {
    display: flex;
    align-items: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin: 0;
    padding: 0;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--dark-gray);
    font-weight: var(--font-weight-normal);
    padding: 0.5rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link:hover {
    color: var(--primary-green);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-green);
    transition: width var(--transition-fast);
}

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

.dropdown-toggle i {
    font-size: 0.75rem;
    transition: transform var(--transition-fast);
}

.dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

/* Dropdown Menu */
.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-md);
    min-width: 220px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all var(--transition-normal);
    z-index: 1001;
    padding: 0.5rem 0;
}

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

.dropdown-menu li {
    list-style: none;
}

.dropdown-menu a {
    display: block;
    padding: 0.75rem 1.5rem;
    color: var(--dark-gray);
    transition: all var(--transition-fast);
}

.dropdown-menu a:hover {
    background: var(--light-gray);
    color: var(--primary-green);
    padding-left: 2rem;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.search-toggle,
.mobile-menu-toggle {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-toggle {
    color: var(--dark-gray);
    font-size: 1.125rem;
}

.search-toggle:hover {
    background: var(--light-gray);
    color: var(--primary-green);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    width: 28px;
    height: 28px;
    padding: 4px;
}

/* Mobile menu toggle should be visible on mobile */
@media only screen and (max-width: 768px) {
    .mobile-menu-toggle {
        display: flex;
    }
}

.mobile-menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--dark-gray);
    transition: all var(--transition-fast);
}

.mobile-menu-toggle:hover {
    background: var(--light-gray);
}

.mobile-menu-toggle:hover span {
    background: var(--primary-green);
}

/* Search Overlay */
.search-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-normal);
}

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

.search-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 600px;
}

.search-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.5rem;
}

.search-form {
    display: flex;
    gap: 1rem;
}

.search-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: var(--radius-lg);
    font-size: 1.125rem;
    font-family: var(--font-family-primary);
}

.search-form button {
    padding: 1rem 1.5rem;
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-lg);
    cursor: pointer;
    transition: background var(--transition-fast);
}

.search-form button:hover {
    background: var(--dark-green);
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    z-index: 1500;
    transform: translateX(-100%);
    transition: transform var(--transition-normal);
    overflow-y: auto;
}

.mobile-menu.active {
    transform: translateX(0);
}

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-gray);
}

.mobile-menu-header .logo img {
    height: 40px;
    width: auto;
}

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark-gray);
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-navigation {
    padding: 1.5rem;
}

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

.mobile-nav-item {
    border-bottom: 1px solid var(--border-gray);
}

.mobile-nav-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    color: var(--dark-gray);
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast);
}

.mobile-nav-link:hover {
    color: var(--primary-green);
}

.mobile-dropdown-toggle i {
    transition: transform var(--transition-fast);
}

.mobile-dropdown-toggle.active i {
    transform: rotate(180deg);
}

.mobile-dropdown-menu {
    list-style: none;
    margin: 0;
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-normal);
}

.mobile-dropdown-menu.active {
    max-height: 300px;
}

.mobile-dropdown-menu li {
    padding-left: 1rem;
}

.mobile-dropdown-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--medium-gray);
    transition: color var(--transition-fast);
}

.mobile-dropdown-menu a:hover {
    color: var(--primary-green);
}

/* Main Content */
main {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    background-color: var(--white);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    height: 80vh;
    min-height: 450px;
    max-height: 800px;
    overflow: hidden;
    margin: 0;
    width: 100%;
    background-color: #111;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.slider-container {
    box-shadow: inset 0 0 100px rgba(0, 0, 0, 0.6), inset 0 -30px 40px rgba(0, 0, 0, 0.5);
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
}

.slide-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide-bg-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    color: var(--white);
}

.slide-text {
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
}

.slide-title {
    font-size: 3.5rem;
    font-weight: var(--font-weight-bold);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
}

.slide-description {
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
}

.slide-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
}

/* Slider Navigation */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    z-index: 3;
    pointer-events: none;
}

.nav-btn {
    position: absolute;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--dark-gray);
    transition: all var(--transition-fast);
    pointer-events: all;
}

.nav-btn:hover {
    background: var(--white);
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.prev-btn {
    left: 2rem;
}

.next-btn {
    right: 2rem;
}

/* Slider Indicators */
.slider-indicators {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.75rem;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.indicator.active,
.indicator:hover {
    background: var(--white);
    transform: scale(1.2);
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1rem;
}

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

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

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white);
}

.btn-outline:hover {
    background: var(--white);
    color: var(--dark-gray);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.125rem;
}

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

.section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Features Section */
.features-section {
    padding: 5rem 0;
    background: var(--light-gray);
    margin: 0;
    width: 100%;
}

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

.feature-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

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

.feature-title {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.feature-description {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* About Preview Section */
.about-preview-section {
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 2rem;
}

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

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

.stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    margin-bottom: 0.5rem;
}

.stat-label {
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Products Preview Section */
.products-preview-section {
    padding: 5rem 0;
    background: var(--light-gray);
    margin: 0;
    width: 100%;
}

.products-preview-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    align-items: start;
}

.product-category {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    height: 100%;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--border-gray);
}

.product-category:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.category-image {
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
    position: relative;
    background-color: var(--light-gray);
}

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

.product-category:hover .category-image img {
    transform: scale(1.1);
}

.category-content {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.category-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Ürün Kategorileri Detaylar Butonu */
.product-category .btn-outline {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
    font-weight: var(--font-weight-semibold);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    box-shadow: var(--shadow-sm);
    margin-top: auto;
}

.product-category .btn-outline:hover {
    background: var(--dark-green);
    border-color: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.product-category .btn-outline i {
    font-size: 0.9rem;
    transition: transform var(--transition-fast);
}

.product-category .btn-outline:hover i {
    transform: translateX(3px);
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    margin: 0;
    width: 100%;
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 1rem;
    color: var(--white);
}

.cta-description {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    color: var(--white);
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-section .btn-outline {
    border-color: var(--white);
    color: var(--white);
}

.cta-section .btn-outline:hover {
    background: var(--white);
    color: var(--dark-green);
}

/* CTA Primary Button (Hemen Ara) */
.cta-section .btn-primary {
    background: #E53E3E;
    border-color: #E53E3E;
    color: var(--white);
}

.cta-section .btn-primary:hover {
    background: #C53030;
    border-color: #C53030;
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Modern Footer Styles */
.modern-footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.modern-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #B81D22, transparent);
}

.modern-footer {
    background: #141414;
    border-top: 3px solid #D9232A;
    color: #ffffff;
    position: relative;
    box-shadow: 0 -10px 30px rgba(0, 0, 0, 0.2);
}

.footer-main {
    padding: 4rem 0 3rem 0;
    position: relative;
}

.footer-main .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.8fr 1fr 1.1fr 1.6fr;
    gap: 3rem;
    align-items: start;
}

/* Company Info Section */
.footer-section.company-info {
    grid-column: 1;
}

.footer-logo {
    margin-bottom: 1.25rem;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
}

.company-description {
    color: #b0b0b0;
    line-height: 1.6;
    margin-bottom: 1.75rem;
    font-size: 0.92rem;
}

/* Social Links */
.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

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

.social-link i {
    font-size: 1.1rem;
}

.social-link:hover {
    background: linear-gradient(135deg, #D9232A, #B81D22);
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 6px 18px rgba(217, 35, 42, 0.4);
    color: #ffffff;
}

/* Footer Section Titles */
.footer-title {
    color: #ffffff;
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.6rem;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 3px;
    background: linear-gradient(90deg, #D9232A, #801014);
    border-radius: 2px;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #b0b0b0;
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
    font-size: 0.92rem;
}

.footer-links a:hover {
    color: #ffffff;
    transform: translateX(5px);
}

/* Footer Contact Info List */
.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 0.9rem;
    transition: transform 0.3s ease;
    width: 100%;
}

.footer-contact-item:hover {
    transform: translateX(4px);
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #D9232A 0%, #801014 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(217, 35, 42, 0.35);
    margin-top: 2px;
}

.footer-contact-icon i {
    color: #ffffff;
    font-size: 0.85rem;
}

.footer-contact-text {
    flex: 1;
    text-align: left;
}

.footer-contact-text span,
.footer-contact-text a {
    color: #cccccc;
    line-height: 1.5;
    font-size: 0.92rem;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
}

.footer-contact-text a:hover {
    color: #ffffff;
}

/* Footer Bottom */
.footer-bottom {
    background: #0d0d0d;
    padding: 1.25rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.copyright {
    color: #999999;
    margin: 0;
    font-size: 0.88rem;
}

.copyright a {
    color: #999999;
    text-decoration: none;
    transition: color 0.3s ease;
}

.copyright a:hover {
    color: #ffffff;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.footer-bottom-links a {
    color: #999999;
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #ffffff;
}

/* Footer Credits */
.footer-credits {
    text-align: center;
    margin-top: 0.75rem;
    padding-top: 0.75rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    font-size: 0.82rem;
    color: #888888;
}

.footer-credits a {
    color: #999999;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.footer-credits a:hover {
    color: #ffffff;
}

/* Footer Language Switcher */
.footer-language-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-language-switcher .language-links {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.footer-language-switcher .lang-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.25rem 0.65rem;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.08);
    color: #cccccc;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.12);
}

.footer-language-switcher .lang-link:hover {
    background: rgba(217, 35, 42, 0.2);
    color: #ffffff;
    border-color: #D9232A;
}

.footer-language-switcher .lang-link.active {
    background: linear-gradient(135deg, #D9232A 0%, #801014 100%);
    color: #ffffff;
    border-color: #D9232A;
    box-shadow: 0 2px 8px rgba(217, 35, 42, 0.3);
}

/* Responsive Design */
@media only screen and (max-width: 1024px) {
    .nav-menu {
        gap: 1.5rem;
    }

    .header-right {
        gap: 1.5rem;
    }
}

@media only screen and (max-width: 768px) {
    .top-bar-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }

    .top-bar-left {
        flex: 1;
    }

    .top-bar-right {
        flex-shrink: 0;
    }

    .top-bar-left .top-bar-contact {
        flex-direction: row;
        gap: 1rem;
        justify-content: flex-start;
    }

    .top-bar-left .top-bar-contact span {
        margin-right: 0;
    }

    .header-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 0 1rem;
        position: relative;
    }

    .header-left {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
        z-index: 1;
    }

    .header-right {
        display: flex;
        align-items: center;
        gap: 1rem;
        margin-left: 0;
        width: auto;
    }

    .main-navigation {
        display: none;
    }

    .search-toggle {
        display: none;
    }
}

@media only screen and (max-width: 480px) {
    .container {
        padding: 0 0.5rem;
    }

    .top-bar-content {
        gap: 0.25rem;
    }

    .top-bar-left .top-bar-contact {
        gap: 0.5rem;
        flex-wrap: wrap;
    }

    .top-bar-left .top-bar-contact span {
        font-size: 0.7rem;
        white-space: nowrap;
        flex-shrink: 0;
    }

    .top-bar-left .top-bar-contact span:first-child {
        display: none;
        /* Telefon numarasını çok küçük ekranlarda gizle */
    }

    .lang-link {
        padding: 0.25rem 0.5rem;
        font-size: 0.75rem;
    }

    .header-content {
        padding: 0 0.5rem;
    }

    .header-left .logo img {
        height: 35px;
    }

    .search-content {
        width: 95%;
    }

    .search-form {
        flex-direction: column;
    }
}

/* Responsive Design for Footer */
@media only screen and (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-section.company-info {
        grid-column: 1 / -1;
        text-align: center;
    }

    .social-links {
        justify-content: center;
    }
}

@media only screen and (max-width: 768px) {
    .footer-main {
        padding: 3rem 0 1.5rem 0;
    }

    .footer-main .container {
        padding: 0 1rem;
    }

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

    .footer-section.company-info {
        grid-column: 1;
    }

    .top-bar-contact .contact-item {
        justify-content: center;
        gap: 0.5rem;
    }

    .footer-contact-item {
        justify-content: center;
    }

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

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }
}

@media only screen and (max-width: 480px) {
    .footer-main {
        padding: 2rem 0 1rem 0;
    }

    .footer-main .container {
        padding: 0 0.5rem;
    }

    .social-links {
        gap: 0.5rem;
    }

    .social-link {
        width: 40px;
    }

    .footer-contact-icon {
        width: 30px;
        height: 30px;
        min-width: 30px;
    }

    .footer-contact-icon i {
        font-size: 0.8rem;
    }

    .footer-contact-item {
        gap: 0.6rem;
    }

    .footer-bottom-links {
        gap: 1rem;
    }
}

/* Responsive Design for Main Content */
@media only screen and (max-width: 1024px) {
    .hero-slider {
        height: 50vh;
        min-height: 300px;
        max-height: 480px;
    }

    .slide-title {
        font-size: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .about-stats {
        justify-items: center;
    }
}

@media only screen and (max-width: 768px) {
    .hero-slider {
        height: 38vh;
        min-height: 240px;
        max-height: 360px;
    }

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

    .slide-description {
        font-size: 1.125rem;
    }

    .slide-actions {
        flex-direction: column;
        align-items: flex-start;
    }

    .nav-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .prev-btn {
        left: 1rem;
    }

    .next-btn {
        right: 1rem;
    }

    .slider-indicators {
        bottom: 1rem;
    }

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

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

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
    }

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
}

@media only screen and (max-width: 480px) {
    .hero-slider {
        height: 30vh;
        min-height: 180px;
        max-height: 260px;
    }

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

    .slide-description {
        font-size: 1rem;
    }

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

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

    .feature-card,
    .product-category {
        padding: 1.5rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 0 1rem;
    }
}

/* Responsive Design for Header */
@media only screen and (max-width: 1024px) {
    .top-bar-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

    .top-bar-contact {
        justify-content: center;
    }

    .language-links {
        justify-content: center;
    }
}

@media only screen and (max-width: 768px) {
    .top-bar {
        padding: 0.3rem 0;
    }

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

    .language-links {
        gap: 0.5rem;
    }

    .lang-link {
        padding: 0.4rem 0.8rem;
        font-size: 0.8rem;
    }
}

@media only screen and (max-width: 480px) {
    .top-bar-content {
        gap: 0.55rem;
    }

    .top-bar-contact {
        font-size: 0.8rem;
    }

    .lang-link {
        padding: 0.3rem 0.6rem;
        font-size: 0.75rem;
    }
}

/* Page Header */
.page-header {
    background: linear-gradient(90deg, #D9232A 10%, #B81D22 50%, #801014 90%);
    border-bottom: 3px solid rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
    padding: 1.8rem 0 1.5rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    perspective: 700px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), inset 0 0 15px rgba(0, 0, 0, 0.3);
}

/* Tarım & Sera İkonları - Komple Kaldırıldı */
.agri-icons {
    display: none !important;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    perspective: 800px;
    transform-style: preserve-3d;
    overflow: hidden;
}

.agri-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.85);
    font-size: 2.8rem;
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.5));
    opacity: 0;
    /* Sayfa açılışında merkeze öbekleşmeyi 100% önler */
    animation: iconSpaceWarp var(--dur, 7s) cubic-bezier(0.25, 0.46, 0.45, 0.94) infinite;
    will-change: transform, opacity;
}

.agri-icon:nth-child(1) {
    top: 20%;
    left: 15%;
    --dx: -35vw;
    --dy: -20vh;
    --rot: -45deg;
    --dur: 6.5s;
    animation-delay: 0s;
}

.agri-icon:nth-child(2) {
    top: 25%;
    left: 80%;
    --dx: 35vw;
    --dy: -18vh;
    --rot: 45deg;
    --dur: 7.2s;
    animation-delay: 0.3s;
}

.agri-icon:nth-child(3) {
    top: 70%;
    left: 12%;
    --dx: -38vw;
    --dy: 20vh;
    --rot: 60deg;
    --dur: 6.8s;
    animation-delay: 0.6s;
}

.agri-icon:nth-child(4) {
    top: 75%;
    left: 85%;
    --dx: 38vw;
    --dy: 22vh;
    --rot: -30deg;
    --dur: 8.0s;
    animation-delay: 0.9s;
}

.agri-icon:nth-child(5) {
    top: 35%;
    left: 25%;
    --dx: -25vw;
    --dy: -10vh;
    --rot: -20deg;
    --dur: 6.2s;
    animation-delay: 1.2s;
}

.agri-icon:nth-child(6) {
    top: 40%;
    left: 75%;
    --dx: 26vw;
    --dy: 12vh;
    --rot: 35deg;
    --dur: 7.5s;
    animation-delay: 1.5s;
}

.agri-icon:nth-child(7) {
    top: 15%;
    left: 35%;
    --dx: -15vw;
    --dy: -24vh;
    --rot: 15deg;
    --dur: 6.9s;
    animation-delay: 1.8s;
}

.agri-icon:nth-child(8) {
    top: 18%;
    left: 65%;
    --dx: 16vw;
    --dy: -22vh;
    --rot: -40deg;
    --dur: 7.8s;
    animation-delay: 2.1s;
}

.agri-icon:nth-child(9) {
    top: 80%;
    left: 30%;
    --dx: -18vw;
    --dy: 23vh;
    --rot: -15deg;
    --dur: 6.4s;
    animation-delay: 2.4s;
}

.agri-icon:nth-child(10) {
    top: 82%;
    left: 70%;
    --dx: 20vw;
    --dy: 24vh;
    --rot: 50deg;
    --dur: 7.6s;
    animation-delay: 2.7s;
}

.agri-icon:nth-child(11) {
    top: 50%;
    left: 8%;
    --dx: -42vw;
    --dy: -3vh;
    --rot: 25deg;
    --dur: 8.5s;
    animation-delay: 3.0s;
}

.agri-icon:nth-child(12) {
    top: 52%;
    left: 90%;
    --dx: 42vw;
    --dy: 4vh;
    --rot: -60deg;
    --dur: 7.9s;
    animation-delay: 3.3s;
}

.agri-icon:nth-child(13) {
    top: 22%;
    left: 45%;
    --dx: -8vw;
    --dy: -23vh;
    --rot: 30deg;
    --dur: 6.6s;
    animation-delay: 3.6s;
}

.agri-icon:nth-child(14) {
    top: 28%;
    left: 55%;
    --dx: 8vw;
    --dy: -20vh;
    --rot: -25deg;
    --dur: 7.4s;
    animation-delay: 3.9s;
}

.agri-icon:nth-child(15) {
    top: 72%;
    left: 42%;
    --dx: -10vw;
    --dy: 21vh;
    --rot: 40deg;
    --dur: 6.7s;
    animation-delay: 4.2s;
}

.agri-icon:nth-child(16) {
    top: 76%;
    left: 58%;
    --dx: 11vw;
    --dy: 22vh;
    --rot: -35deg;
    --dur: 7.7s;
    animation-delay: 4.5s;
}

.agri-icon:nth-child(17) {
    top: 45%;
    left: 18%;
    --dx: -32vw;
    --dy: 8vh;
    --rot: 18deg;
    --dur: 6.3s;
    animation-delay: 4.8s;
}

.agri-icon:nth-child(18) {
    top: 48%;
    left: 82%;
    --dx: 33vw;
    --dy: -8vh;
    --rot: -45deg;
    --dur: 8.2s;
    animation-delay: 5.1s;
}

.agri-icon:nth-child(19) {
    top: 12%;
    left: 22%;
    --dx: -28vw;
    --dy: -25vh;
    --rot: 55deg;
    --dur: 7.1s;
    animation-delay: 5.4s;
}

.agri-icon:nth-child(20) {
    top: 14%;
    left: 78%;
    --dx: 30vw;
    --dy: -24vh;
    --rot: -18deg;
    --dur: 5.7s;
    animation-delay: 5.7s;
}

.agri-icon:nth-child(21) {
    top: 85%;
    left: 18%;
    --dx: -34vw;
    --dy: 25vh;
    --rot: 28deg;
    --dur: 6.9s;
    animation-delay: 6.0s;
}

.agri-icon:nth-child(22) {
    top: 88%;
    left: 82%;
    --dx: 36vw;
    --dy: 26vh;
    --rot: -50deg;
    --dur: 8.4s;
    animation-delay: 6.3s;
}

.agri-icon:nth-child(23) {
    top: 38%;
    left: 38%;
    --dx: -14vw;
    --dy: -12vh;
    --rot: 22deg;
    --dur: 6.5s;
    animation-delay: 6.6s;
}

.agri-icon:nth-child(24) {
    top: 62%;
    left: 62%;
    --dx: 15vw;
    --dy: 13vh;
    --rot: -28deg;
    --dur: 7.7s;
    animation-delay: 6.9s;
}

/* Arkadan küçükten doğup öne doğru büyüyerek süzülen 3D Uzay Yolculuğu efekti */
@keyframes iconSpaceWarp {
    0% {
        transform: translate3d(0, 0, -500px) scale(0.2) rotate(0deg);
        opacity: 0;
    }

    20% {
        opacity: 0.85;
    }

    80% {
        opacity: 0.85;
    }

    100% {
        transform: translate3d(var(--dx, 200px), var(--dy, -150px), 300px) scale(3.2) rotate(var(--rot, 45deg));
        opacity: 0;
    }
}

.page-header-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    position: relative;
    z-index: 2;
}

.page-title {
    font-size: 2.2rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: 0;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    color: #FFFFFF;
}

.page-subtitle {
    font-size: 1.25rem;
    margin-bottom: 0;
    opacity: 0.92;
    line-height: 1.6;
    color: #FFFFFF;
}

.header-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 600px;
    margin: 0 auto;
}

.header-stats .stat-item {
    text-align: center;
}

.header-stats .stat-number {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--light-green);
    margin-bottom: 0.5rem;
}

.header-stats .stat-label {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Company Story */
.company-story {
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.story-description {
    font-size: 1.125rem;
    line-height: 1.7;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.story-features {
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    color: var(--dark-green);
    font-weight: var(--font-weight-medium);
}

.feature-item i {
    color: var(--primary-green);
    font-size: 1.25rem;
}

.story-image img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

/* Values */
.values {
    padding: 5rem 0;
    background: var(--light-gray);
    margin: 0;
    width: 100%;
}

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

.value-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

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

.value-title {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.value-description {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Timeline */
.timeline {
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.timeline-container {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.timeline-container::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--primary-green);
    transform: translateX(-50%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-year {
    background: var(--primary-green);
    color: var(--white);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: var(--font-weight-bold);
    font-size: 1.125rem;
    min-width: 120px;
    text-align: center;
    position: relative;
    z-index: 2;
}

.timeline-year::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 0;
    height: 0;
    border: 8px solid transparent;
    transform: translateY(-50%);
}

.timeline-item:nth-child(odd) .timeline-year::after {
    right: -16px;
    border-left-color: var(--primary-green);
}

.timeline-item:nth-child(even) .timeline-year::after {
    left: -16px;
    border-right-color: var(--primary-green);
}

.timeline-content {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin: 0 2rem;
    flex: 1;
    max-width: 400px;
}

.timeline-content h3 {
    color: var(--dark-green);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.timeline-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Team */
.team {
    padding: 5rem 0;
    background: var(--light-gray);
    margin: 0;
    width: 100%;
}

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

.team-member {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

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

.member-photo {
    height: 300px;
    overflow: hidden;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

.team-member:hover .member-photo img {
    transform: scale(1.1);
}

.member-info {
    padding: 2rem;
    text-align: center;
}

.member-name {
    font-size: 1.5rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.member-position {
    color: var(--primary-green);
    font-weight: var(--font-weight-medium);
    margin-bottom: 1rem;
}

.member-description {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.member-social {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--light-gray);
    color: var(--medium-gray);
    border-radius: 50%;
    text-decoration: none;
    transition: all var(--transition-fast);
}

.social-link:hover {
    background: var(--primary-green);
    color: var(--white);
    transform: translateY(-2px);
}

/* Responsive Design for About Page */
@media only screen and (max-width: 1024px) {
    .page-title {
        font-size: 3rem;
    }

    .story-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .timeline-container::before {
        left: 2rem;
    }

    .timeline-item {
        flex-direction: column !important;
        align-items: flex-start;
        margin-left: 2rem;
    }

    .timeline-year::after {
        display: none;
    }

    .timeline-content {
        margin: 1rem 0 0 0;
        max-width: none;
    }

    .breadcrumbs ol {
        justify-content: center;
    }
}

@media only screen and (max-width: 768px) {
    .page-header {
        padding: 1.4rem 0 1.2rem;
    }

    .page-title {
        font-size: 1.8rem;
    }

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

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

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

    .timeline-item {
        margin-left: 1rem;
    }

    .breadcrumbs {
        margin-top: 1.5rem;
    }

    .breadcrumbs ol {
        font-size: 0.8rem;
        gap: 0.25rem;
    }
}

@media only screen and (max-width: 480px) {
    .page-title {
        font-size: 2rem;
    }

    .page-subtitle {
        font-size: 1.125rem;
    }

    .company-story,
    .timeline {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .values-grid,
    .team-grid {
        padding: 0 1rem;
    }

    .timeline-item {
        margin-left: 0.5rem;
    }

    .timeline-content {
        padding: 1.5rem;
    }

    .breadcrumbs {
        margin-top: 1rem;
    }

    .breadcrumbs ol {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 0.25rem;
        text-align: center;
    }

    .breadcrumbs li:not(:last-child)::after {
        display: none;
    }
}

/* Contact Info Section */
.contact-info-section {
    padding: 4rem 0;
    background: var(--light-gray);
    margin: 0;
    width: 100%;
}

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

.contact-info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
}

.contact-info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.contact-info-card .info-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--white);
}

.contact-info-card h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-semibold);
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast);
}

.info-link:hover {
    color: var(--dark-green);
}

.info-note {
    color: var(--light-green);
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Main Section */
.contact-main-section {
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

.contact-main-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

/* Contact Form Container */
.contact-form-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.form-header {
    margin-bottom: 2rem;
}

.form-header h2 {
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.form-header p {
    color: var(--medium-gray);
}

/* Contact Info Container */
.contact-info-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.info-header {
    margin-bottom: 2rem;
}

.info-header h2 {
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.info-header p {
    color: var(--medium-gray);
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
    transition: all var(--transition-fast);
}

.contact-info-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.contact-info-item .info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.5rem;
    color: var(--white);
}

.contact-info-item .info-content h3 {
    color: var(--dark-green);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.contact-info-item .info-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.contact-info-item .info-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    transition: color var(--transition-fast);
}

.contact-info-item .info-link:hover {
    color: var(--dark-green);
}

.contact-info-item .info-note {
    color: var(--light-green);
    font-size: 0.9rem;
    font-style: italic;
}

/* Contact Form */
.modern-contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: var(--font-weight-medium);
    color: var(--dark-green);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.input-wrapper i {
    position: absolute;
    left: 1rem;
    color: var(--medium-gray);
    font-size: 1rem;
}

.input-wrapper input,
.input-wrapper select,
.input-wrapper textarea {
    width: 100%;
    padding: 0.875rem 1rem 0.875rem 2.5rem;
    border: 2px solid var(--light-gray);
    border-radius: var(--radius-md);
    font-size: 1rem;
    transition: all var(--transition-fast);
    background: var(--white);
}

.input-wrapper textarea {
    padding-left: 2.5rem;
    resize: vertical;
    min-height: 120px;
}

.input-wrapper input:focus,
.input-wrapper select:focus,
.input-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(76, 175, 80, 0.1);
}

.input-wrapper input::placeholder,
.input-wrapper textarea::placeholder {
    color: var(--medium-gray);
}

.btn-full {
    width: 100%;
}

/* Map Container */
.map-container {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.map-header {
    margin-bottom: 2rem;
}

.map-header h2 {
    color: var(--dark-green);
    margin-bottom: 0.5rem;
}

.map-header p {
    color: var(--medium-gray);
}

.map-frame {
    margin-bottom: 2rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.map-frame iframe {
    display: block;
}

/* Transportation Info */
.transportation-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
}

.transport-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.transport-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.transport-content h4 {
    color: var(--dark-green);
    font-size: 1.125rem;
    margin-bottom: 0.5rem;
}

.transport-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    font-size: 0.9rem;
}

/* Responsive Design for Contact Page */
@media only screen and (max-width: 1024px) {
    .map-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact-main-section {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .transportation-info {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .contact-info-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media only screen and (max-width: 768px) {
    .map-section {
        padding: 3rem 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .contact-main-section {
        padding: 3rem 0;
        padding-left: 1rem;
        padding-right: 1rem;
    }

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

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

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 2rem;
    }

    .transport-item {
        flex-direction: column;
        text-align: center;
    }

    .transport-icon {
        margin: 0 auto;
    }

    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }

    .contact-info-item .info-icon {
        margin: 0 auto;
    }
}

@media only screen and (max-width: 480px) {
    .map-section {
        padding: 2rem 0;
    }

    .contact-main-section {
        padding: 2rem 0;
    }

    .contact-form-container,
    .contact-info-container {
        padding: 1.5rem;
    }

    .input-wrapper input,
    .input-wrapper select,
    .input-wrapper textarea {
        padding: 0.75rem 0.75rem 0.75rem 2.25rem;
        font-size: 0.9rem;
    }

    .input-wrapper i {
        left: 0.75rem;
        font-size: 0.9rem;
    }

    .transport-item {
        padding: 1rem;
    }

    .transport-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }

    .contact-info-item {
        padding: 1rem;
    }

    .contact-info-item .info-icon {
        width: 50px;
        height: 50px;
        font-size: 1.25rem;
    }
}

/* Map Section */
.map-section {
    padding: 5rem 0;
    max-width: 1200px;
    margin: 0 auto;
    padding-left: 2rem;
    padding-right: 2rem;
}

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

.map-header h2 {
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.map-header p {
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

.map-frame {
    margin-bottom: 3rem;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-frame iframe {
    display: block;
}

/* Transportation Info */
.transportation-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.transport-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-fast);
}

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

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

.transport-content h4 {
    color: var(--dark-green);
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.transport-content p {
    color: var(--medium-gray);
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 5rem 0;
    background: var(--light-gray);
    margin: 0;
    width: 100%;
}

.contact-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    max-width: 800px;
    margin: 0 auto;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-top: 1rem;
}

.breadcrumbs ol {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 0.25rem;
    flex-wrap: wrap;
    justify-content: center;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    color: rgba(255, 255, 255, 0.75);
    margin: 0 0.4rem;
    font-size: 1.1rem;
}

.breadcrumbs a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.breadcrumbs a:hover {
    color: var(--light-green);
}

.breadcrumbs li:last-child {
    color: var(--light-green);
    font-weight: var(--font-weight-medium);
}

/* Gizlilik Politikası Sayfası */
.privacy-content {
    padding: 5rem 0;
    background: var(--white);
}

.privacy-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.privacy-intro {
    text-align: center;
    margin-bottom: 4rem;
    padding: 3rem;
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

.intro-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: var(--white);
    box-shadow: var(--shadow-lg);
}

.privacy-intro h2 {
    font-size: 2.5rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
}

.privacy-intro p {
    font-size: 1.125rem;
    color: var(--medium-gray);
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto;
}

.privacy-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.privacy-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition-normal);
    border: 2px solid transparent;
}

.privacy-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary-green);
}

.card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-green), var(--secondary-green));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 1.75rem;
    color: var(--white);
}

.privacy-card h3 {
    font-size: 1.5rem;
    color: var(--dark-green);
    margin-bottom: 1.5rem;
    text-align: center;
}

.privacy-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.privacy-card li {
    padding: 0.5rem 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 1.5rem;
}

.privacy-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: var(--font-weight-bold);
}

.privacy-details {
    margin-bottom: 4rem;
}

.detail-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    border-left: 4px solid var(--primary-green);
}

.detail-section h3 {
    color: var(--dark-green);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.detail-section h3 i {
    color: var(--primary-green);
    font-size: 1.25rem;
}

.detail-section h4 {
    color: var(--dark-green);
    font-size: 1.25rem;
    margin: 1.5rem 0 1rem 0;
}

.detail-section p {
    color: var(--medium-gray);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.detail-section ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.detail-section li {
    padding: 0.5rem 0;
    color: var(--medium-gray);
    position: relative;
    padding-left: 1.5rem;
}

.detail-section li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: var(--font-weight-bold);
    font-size: 1.5rem;
    line-height: 1;
}

.privacy-contact {
    margin-bottom: 3rem;
}

.contact-card {
    background: linear-gradient(135deg, var(--primary-green), var(--dark-green));
    color: var(--white);
    padding: 3rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.contact-icon {
    width: 32px !important;
    height: 32px !important;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    font-size: 2rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--white);
}

.contact-card p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.contact-info {
    margin-bottom: 2rem;
}

.contact-info p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.contact-info a {
    color: var(--white);
    text-decoration: none;
    transition: opacity var(--transition-fast);
}

.contact-info a:hover {
    opacity: 0.8;
}

.privacy-update {
    text-align: center;
    padding: 2rem;
    background: var(--light-gray);
    border-radius: var(--radius-lg);
}

.update-info {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--medium-gray);
}

.update-info i {
    color: var(--primary-green);
    font-size: 1.25rem;
}

.update-info p {
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design for Privacy Page */
@media only screen and (max-width: 1024px) {
    .privacy-section {
        padding: 0 1rem;
    }

    .privacy-intro {
        padding: 2rem;
    }

    .privacy-intro h2 {
        font-size: 2rem;
    }

    .privacy-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
}

@media only screen and (max-width: 768px) {
    .privacy-content {
        padding: 3rem 0;
    }

    .privacy-intro {
        padding: 1.5rem;
        margin-bottom: 3rem;
    }

    .intro-icon {
        width: 80px;
        height: 80px;
        font-size: 2rem;
    }

    .privacy-intro h2 {
        font-size: 1.75rem;
    }

    .privacy-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }

    .privacy-card {
        padding: 2rem 1.5rem;
    }

    .detail-section {
        padding: 2rem 1.5rem;
    }

    .contact-card {
        padding: 2rem 1.5rem;
    }

    .contact-card h3 {
        font-size: 1.5rem;
    }
}

@media only screen and (max-width: 480px) {
    .privacy-section {
        padding: 0 0.5rem;
    }

    .privacy-intro {
        padding: 1rem;
    }

    .intro-icon {
        width: 70px;
        height: 70px;
        font-size: 1.75rem;
    }

    .privacy-intro h2 {
        font-size: 1.5rem;
    }

    .privacy-card {
        padding: 1.5rem 1rem;
    }

    .detail-section {
        padding: 1.5rem 1rem;
    }

    .contact-card {
        padding: 1.5rem 1rem;
    }

    .contact-card h3 {
        font-size: 1.25rem;
    }

    .update-info {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Sabit Sayfalar */
.static-page-content {
    padding: 5rem 0;
    background: var(--white);
}

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Main Content */
.main-content {
    width: 100%;
}

.content-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: all var(--transition-normal);
}

.content-card:hover {
    box-shadow: var(--shadow-lg);
}

.content-header {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    padding: 2rem;
    border-bottom: 1px solid var(--border-gray);
    text-align: center;
}

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

.content-header h2 {
    color: var(--dark-green);
    font-size: 2rem;
    margin: 0;
}

.content-body {
    padding: 2.5rem;
    line-height: 1.8;
    color: var(--dark-gray);
}

.content-body h1,
.content-body h2,
.content-body h3,
.content-body h4,
.content-body h5,
.content-body h6 {
    color: var(--dark-green);
    margin: 2rem 0 1rem 0;
}

.content-body h1 {
    font-size: 1.75rem;
}

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

.content-body h3 {
    font-size: 1.25rem;
}

.content-body h4 {
    font-size: 1.125rem;
}

.content-body p {
    margin-bottom: 1.5rem;
    color: var(--medium-gray);
}

.content-body ul,
.content-body ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.content-body li {
    margin-bottom: 0.5rem;
    color: var(--medium-gray);
}

.content-body a {
    color: var(--primary-green);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.content-body a:hover {
    color: var(--dark-green);
    text-decoration: underline;
}

.content-body blockquote {
    background: var(--light-gray);
    border-left: 4px solid var(--primary-green);
    padding: 1.5rem;
    margin: 2rem 0;
    border-radius: 0 var(--radius-md) var(--radius-md) 0;
    font-style: italic;
    color: var(--dark-gray);
}

.content-body table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.content-body th,
.content-body td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-gray);
}

.content-body th {
    background: var(--primary-green);
    color: var(--white);
    font-weight: var(--font-weight-semibold);
}

.content-body tr:hover {
    background: var(--light-gray);
}

.content-footer {
    background: var(--light-gray);
    padding: 2rem;
    border-top: 1px solid var(--border-gray);
}

.page-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--medium-gray);
    font-size: 0.9rem;
}

.meta-item i {
    color: var(--primary-green);
}

/* Sidebar */
.sidebar {
    width: 100%;
}

.sidebar-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    margin-bottom: 2rem;
    overflow: hidden;
    transition: all var(--transition-normal);
}

.sidebar-card:hover {
    box-shadow: var(--shadow-md);
}

.sidebar-header {
    background: var(--primary-green);
    color: var(--white);
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-gray);
}

.sidebar-header h3 {
    margin: 0;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.sidebar-header i {
    font-size: 1rem;
}

.sidebar-content {
    padding: 1.5rem;
}

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

.page-links li {
    margin-bottom: 0.5rem;
}

.page-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1rem;
    color: var(--dark-gray);
    text-decoration: none;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    border: 2px solid transparent;
}

.page-links a:hover {
    background: var(--light-gray);
    color: var(--primary-green);
    border-color: var(--primary-green);
    transform: translateX(5px);
}

.page-links li.active a {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.page-links i {
    font-size: 0.8rem;
    transition: transform var(--transition-fast);
}

.page-links a:hover i {
    transform: translateX(3px);
}

.sidebar-content p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* Responsive Design for Static Pages */
@media only screen and (max-width: 1024px) {
    .content-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar {
        order: -1;
    }

    .page-meta {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media only screen and (max-width: 768px) {
    .static-page-content {
        padding: 3rem 0;
    }

    .content-header {
        padding: 1.5rem;
    }

    .content-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }

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

    .content-body {
        padding: 2rem 1.5rem;
    }

    .content-footer {
        padding: 1.5rem;
    }

    .sidebar-content {
        padding: 1rem;
    }

    .page-links a {
        padding: 0.5rem 0.75rem;
    }
}

@media only screen and (max-width: 480px) {
    .content-header {
        padding: 1rem;
    }

    .content-body {
        padding: 1.5rem 1rem;
    }

    .content-footer {
        padding: 1rem;
    }

    .sidebar-content {
        padding: 0.75rem;
    }

    .page-links a {
        padding: 0.5rem;
        font-size: 0.9rem;
    }
}

/* Resim Yok Durumu */
img[src*="resim_yok.png"] {
    background: var(--light-gray);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--medium-gray);
    font-size: 0.875rem;
    text-align: center;
    padding: 1rem;
}

img[src*="resim_yok.png"]::before {
    content: "📷 Resim Yok";
    display: block;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

/* Ürün Kategorileri için Resim Yok Stili */
.product-category img[src*="resim_yok.png"] {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    color: var(--primary-green);
    font-weight: var(--font-weight-medium);
}

/* Takım Üyeleri için Resim Yok Stili */
.member-photo img[src*="resim_yok.png"] {
    background: linear-gradient(135deg, var(--light-gray), var(--white));
    color: var(--primary-green);
    font-weight: var(--font-weight-medium);
}

/* Footer Logo için Resim Yok Stili */
.footer-logo img[src*="resim_yok.png"] {
    background: var(--white);
    color: var(--dark-gray);
    font-weight: var(--font-weight-medium);
    filter: none;
}

/* ===== ÜRÜN LİSTESİ STİLLERİ ===== */

/* Products Layout - Sidebar + Main Content */
.products-layout {
    padding: 2rem 0;
}

.products-layout-container {
    display: block;
    width: 100%;
}

/* Left Sidebar */
.products-sidebar {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-gray);
    position: sticky;
    top: 2rem;
    height: fit-content;
    transition: all var(--transition-normal);
}

.products-sidebar:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-green);
}

.sidebar-content {
    padding: 1.5rem;
}

.sidebar-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-gray);
}

.sidebar-section:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.sidebar-title {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--dark-green);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sidebar-title i {
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* Quick Stats */
.quick-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.stat-item {
    text-align: center;
    padding: 1rem;
    background: var(--light-gray);
    border-radius: var(--radius-md);
    border: 1px solid var(--border-gray);
}

.stat-number {
    font-size: 1.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--primary-green);
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: var(--font-size-sm);
    color: var(--medium-gray);
    font-weight: var(--font-weight-medium);
}

/* Main Content Area */
.products-main-content {
    min-width: 0;
}

/* Category Info Styles */
.category-info {
    background: var(--light-gray);
    border-radius: var(--radius-md);
    padding: 1rem;
    border: 1px solid var(--border-gray);
}

.category-description p {
    margin: 0;
    color: var(--medium-gray);
    font-size: var(--font-size-sm);
    line-height: 1.5;
}

/* No Content Message */
.no-content-message {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
}

.no-content-content {
    max-width: 400px;
    margin: 0 auto;
}

.no-content-icon {
    font-size: 3rem;
    color: var(--medium-gray);
    margin-bottom: 1rem;
}

.no-content-content h3 {
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-size: var(--font-size-xl);
}

.no-content-content p {
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

/* Category Content Cards */
.category-content-card .product-features {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.category-content-card .feature-tag {
    background: var(--light-gray);
    color: var(--medium-gray);
    padding: 0.25rem 0.5rem;
    border-radius: var(--radius-sm);
    font-size: var(--font-size-xs);
    display: flex;
    align-items: center;
    gap: 0.25rem;
    border: 1px solid var(--border-gray);
}

.category-content-card .feature-tag i {
    font-size: 0.75rem;
    color: var(--primary-green);
}

/* Responsive Design for Products Layout */
@media only screen and (max-width: 1024px) {
    .products-layout-container {
        grid-template-columns: 280px 1fr;
        gap: 1.5rem;
    }

    .products-sidebar {
        top: 1rem;
    }
}

@media only screen and (max-width: 768px) {
    .products-layout-container {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .products-sidebar {
        position: static;
        order: 2;
        margin-top: 1rem;
    }

    .products-main-content {
        order: 1;
    }

    .sidebar-content {
        padding: 1rem;
    }

    .quick-stats {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }

    .stat-item {
        padding: 0.75rem;
    }
}

@media only screen and (max-width: 480px) {
    .products-layout {
        padding: 1rem 0;
    }

    .products-layout-container {
        gap: 0.75rem;
    }

    .sidebar-content {
        padding: 0.75rem;
    }

    .quick-stats {
        grid-template-columns: 1fr;
        gap: 0.5rem;
    }

    .stat-item {
        padding: 0.5rem;
    }
}

.search-filter-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.search-container {
    display: flex;
    justify-content: stretch;
}

.search-input-wrapper {
    position: relative;
    max-width: 500px;
    width: 100%;
}

.search-input {
    width: 100%;
    padding: 1rem 3rem 1rem 1.5rem;
    border: 2px solid var(--border-gray);
    border-radius: 50px;
    font-size: var(--font-size-base);
    font-family: var(--font-family-primary);
    transition: all 0.3s ease;
    background: var(--white);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.search-btn {
    position: absolute;
    right: 0.5rem;
    top: 50%;
    transform: translateY(-50%);
    background: var(--primary-green);
    color: var(--white);
    border: none;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: var(--dark-green);
    transform: translateY(-50%) scale(1.05);
}

.filter-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: stretch;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: stretch;
}

.filter-label {
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    color: var(--dark-gray);
    text-align: left;
}

.filter-select {
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    background: var(--white);
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 150px;
}

.filter-select:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(46, 125, 50, 0.1);
}

.filter-reset-btn {
    padding: 0.75rem 1.5rem;
    background: var(--light-gray);
    color: var(--dark-gray);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    font-family: var(--font-family-primary);
    font-size: var(--font-size-sm);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.filter-reset-btn:hover {
    background: var(--border-gray);
    color: var(--dark-gray);
}

/* Products Section */
.products-section {
    padding: 2rem 0;
}

.products-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    padding: 0 1rem;
}

.products-count {
    font-size: var(--font-size-lg);
    color: var(--medium-gray);
    font-weight: var(--font-weight-medium);
}

.products-count span {
    color: var(--primary-green);
    font-weight: var(--font-weight-bold);
}

.view-options {
    display: flex;
    gap: 0.5rem;
}

.view-btn {
    padding: 0.75rem;
    background: var(--white);
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    color: var(--medium-gray);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 3rem;
    height: 3rem;
}

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

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.product-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid var(--border-gray);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-green);
}

.product-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    height: auto;
    overflow: hidden;
    background: var(--light-gray);
}

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

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

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(184, 29, 34, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.quick-view-btn {
    background: var(--white);
    color: var(--primary-green);
    border: none;
    padding: 1rem 1.5rem;
    border-radius: 8px;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-medium);
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.quick-view-btn:hover {
    background: var(--primary-green);
    color: var(--white);
}

.product-info {
    padding: 1.5rem;
}

.product-category {
    color: var(--primary-green);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-description {
    color: var(--medium-gray);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.feature-tag {
    background: var(--light-green);
    color: var(--dark-green);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: var(--font-size-xs);
    font-weight: var(--font-weight-medium);
}

.product-actions {
    display: flex;
    gap: 0.75rem;
}

.product-actions .btn {
    flex: 1;
    justify-content: center;
}

/* Products List View */
.products-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.product-list-item {
    display: flex;
    gap: 1.5rem;
    background: var(--white);
    border-radius: 12px;
    padding: 1.5rem;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-gray);
    transition: all 0.3s ease;
}

.product-list-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-green);
}

.product-list-image {
    width: 150px;
    height: 150px;
    flex-shrink: 0;
}

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

.product-list-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-list-category {
    color: var(--primary-green);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-list-title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.product-list-description {
    color: var(--medium-gray);
    font-size: var(--font-size-base);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.product-list-actions {
    display: flex;
    gap: 0.75rem;
}

/* Pagination */
.pagination-container {
    display: flex;
    justify-content: center;
    margin-top: 3rem;
}

.pagination-list {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}

.pagination-item {
    margin: 0;
}

.pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-gray);
    border-radius: 8px;
    color: var(--medium-gray);
    text-decoration: none;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-medium);
    transition: all 0.3s ease;
    min-width: 3rem;
}

.pagination-link:hover,
.pagination-link.active {
    background: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

.pagination-link.prev,
.pagination-link.next {
    gap: 0.5rem;
    min-width: auto;
    padding: 0.75rem 1.25rem;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    padding: 1rem;
}

.modal-content {
    background: var(--white);
    border-radius: 16px;
    max-width: 800px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

/* Quick View Image-Only Lightbox */
.modal-content.quick-view-image-only {
    background: transparent;
    border-radius: 0;
    max-width: 90vw;
    max-height: 90vh;
    width: auto;
    box-shadow: none;
    overflow: visible;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-image-container {
    position: relative;
    max-width: 90vw;
    max-height: 85vh;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.6);
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quick-view-image-container img {
    display: block;
    max-width: 90vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    object-fit: contain;
}

.quick-view-image-only .modal-close {
    position: absolute;
    top: -45px;
    right: 0;
    color: #ffffff;
    font-size: 2.8rem;
    font-weight: 300;
    cursor: pointer;
    z-index: 100;
    line-height: 1;
    transition: transform 0.2s ease, color 0.2s ease;
}

.quick-view-image-only .modal-close:hover {
    color: var(--primary-red);
    transform: scale(1.2);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    border-bottom: 1px solid var(--border-gray);
}

.modal-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-gray);
    margin: 0;
}

.modal-close {
    font-size: 2rem;
    color: var(--medium-gray);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
}

.modal-close:hover {
    color: var(--dark-gray);
}

.modal-body {
    padding: 2rem;
}

.quick-view-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: start;
}

.quick-view-image {
    text-align: center;
}

.quick-view-image img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
}

.quick-view-details h4 {
    font-size: var(--font-size-xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.quick-view-details p {
    color: var(--medium-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.quick-view-features h5 {
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-semibold);
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
}

.quick-view-features ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.quick-view-features li {
    padding: 0.5rem 0;
    color: var(--medium-gray);
    border-bottom: 1px solid var(--border-gray);
}

.quick-view-features li:last-child {
    border-bottom: none;
}

.quick-view-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.quick-view-actions .btn {
    flex: 1;
    min-width: 200px;
}

/* No Results */
.no-results {
    padding: 4rem 0;
    text-align: center;
}

.no-results-content {
    max-width: 500px;
    margin: 0 auto;
}

.no-results-icon {
    font-size: 4rem;
    color: var(--medium-gray);
    margin-bottom: 1.5rem;
}

.no-results h3 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.no-results p {
    color: var(--medium-gray);
    font-size: var(--font-size-lg);
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* Responsive Design for Products */
@media only screen and (max-width: 768px) {
    .search-filter-container {
        gap: 1rem;
    }

    .filter-container {
        flex-direction: column;
        gap: 1rem;
    }

    .filter-group {
        width: 100%;
        max-width: 300px;
    }

    .products-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }

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

    .quick-view-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .modal-content {
        margin: 1rem;
        max-height: 95vh;
    }

    .modal-header,
    .modal-body {
        padding: 1rem;
    }

    .quick-view-actions {
        flex-direction: column;
    }

    .quick-view-actions .btn {
        min-width: auto;
    }
}

@media only screen and (max-width: 480px) {
    .search-input {
        padding: 0.875rem 2.5rem 0.875rem 1.25rem;
        font-size: var(--font-size-sm);
    }

    .search-btn {
        width: 2.25rem;
        height: 2.25rem;
    }

    .filter-select {
        padding: 0.625rem 0.875rem;
        font-size: var(--font-size-sm);
        min-width: 120px;
    }

    .product-card {
        margin: 0 0.5rem;
    }

    .product-info {
        padding: 1rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .pagination-link {
        padding: 0.625rem 0.875rem;
        font-size: var(--font-size-sm);
        min-width: 2.5rem;
    }

    .pagination-link.prev,
    .pagination-link.next {
        padding: 0.625rem 1rem;
    }
}

/* Button States */
.btn.added {
    background: var(--secondary-green);
    color: var(--white);
    border-color: var(--secondary-green);
}

.text-danger {
    color: #dc3545 !important;
}

/* Loading States */
.product-card.loading {
    opacity: 0.7;
    pointer-events: none;
}

.product-card.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2rem;
    height: 2rem;
    border: 2px solid var(--border-gray);
    border-top: 2px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

/* ===== GALERI STILLERI ===== */

.galeri-container {
    margin: 2rem 0;
}

.galeri-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.galeri-item {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    background: var(--white);
}

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

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

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

.galeri-item:hover .galeri-image {
    transform: scale(1.05);
}

.galeri-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(46, 125, 50, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.galeri-item:hover .galeri-overlay {
    opacity: 1;
}

.galeri-overlay-content {
    text-align: center;
    color: var(--white);
}

.galeri-overlay-content i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}

.galeri-title {
    font-size: var(--font-size-sm);
    font-weight: 500;
    display: block;
    max-width: 200px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.galeri-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 3rem 1rem;
    color: var(--medium-gray);
}

.galeri-empty i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
    color: var(--border-gray);
}

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

.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    background: none;
    border: none;
    color: var(--white);
    font-size: 2rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: color 0.3s ease;
    z-index: 10000;
}

.lightbox-close:hover {
    color: var(--accent-yellow);
}

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.lightbox-caption {
    margin-top: 1rem;
    color: var(--white);
    text-align: center;
    font-size: var(--font-size-lg);
    font-weight: 500;
    max-width: 600px;
    line-height: 1.4;
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-nav {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    padding: 1rem 0.75rem;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: auto;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
}

.lightbox-nav:active {
    transform: scale(0.95);
}

.lightbox-counter {
    position: absolute;
    bottom: -50px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: var(--font-size-lg);
    font-weight: 500;
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

/* Responsive Galeri */
@media only screen and (max-width: 768px) {
    .galeri-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1rem;
    }

    .galeri-image-wrapper {
        height: 200px;
    }

    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .lightbox-nav {
        padding: 0.75rem 0.5rem;
        font-size: 1.25rem;
    }

    .lightbox-close {
        top: -40px;
        font-size: 1.5rem;
    }

    .lightbox-counter {
        bottom: -40px;
        font-size: var(--font-size-base);
    }
}

@media only screen and (max-width: 480px) {
    .galeri-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .galeri-image-wrapper {
        height: 180px;
    }

    .lightbox-nav {
        padding: 0.5rem 0.25rem;
        font-size: 1rem;
    }

    .lightbox-caption {
        font-size: var(--font-size-base);
        margin-top: 0.75rem;
    }
}

/* Lightbox Animasyonları */
@keyframes lightboxFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.lightbox-modal.active .lightbox-content {
    animation: lightboxFadeIn 0.3s ease;
}

/* Klavye navigasyon göstergesi */
.lightbox-modal::before {
    content: '← → tuşları ile gezinin, ESC ile kapatın';
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: var(--font-size-sm);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    backdrop-filter: blur(10px);
    opacity: 0.8;
}

@media only screen and (max-width: 768px) {
    .lightbox-modal::before {
        display: none;
    }
}

/* ===== BENZER ÜRÜNLER STİLLERİ ===== */
.similar-products-section {
    padding: 4rem 0;
    background: var(--light-gray);
}

.similar-products-section .section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.similar-products-section .section-title {
    font-size: 2.5rem;
    font-weight: var(--font-weight-bold);
    color: var(--dark-green);
    margin-bottom: 1rem;
}

.similar-products-section .section-subtitle {
    font-size: 1.125rem;
    color: var(--medium-gray);
    max-width: 600px;
    margin: 0 auto;
}

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

.similar-product-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all var(--transition-normal);
    border: 1px solid var(--border-gray);
}

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

.similar-product-card .product-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    background: var(--light-gray);
}

.similar-product-card .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-normal);
}

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

.similar-product-card .no-image {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--medium-gray);
    font-size: 2rem;
}

.similar-product-card .no-image span {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.similar-product-card .product-info {
    padding: 1.5rem;
}

.similar-product-card .product-title {
    margin-bottom: 0.75rem;
}

.similar-product-card .product-title a {
    color: var(--dark-green);
    text-decoration: none;
    font-size: 1.125rem;
    font-weight: var(--font-weight-semibold);
    transition: color var(--transition-fast);
}

.similar-product-card .product-title a:hover {
    color: var(--primary-green);
}

.similar-product-card .product-model {
    color: var(--medium-gray);
    font-size: 0.875rem;
    margin-bottom: 0.5rem;
    font-weight: var(--font-weight-medium);
}

.similar-product-card .product-category {
    display: inline-block;
    background: var(--primary-green);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-sm);
    font-size: 0.75rem;
    font-weight: var(--font-weight-medium);
    margin-bottom: 1rem;
}

.similar-product-card .product-description {
    color: var(--medium-gray);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

.similar-product-card .product-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-green);
    text-decoration: none;
    font-weight: var(--font-weight-medium);
    font-size: 0.875rem;
    transition: all var(--transition-fast);
}

.similar-product-card .product-link:hover {
    color: var(--dark-green);
    gap: 0.75rem;
}

.similar-product-card .product-link i {
    transition: transform var(--transition-fast);
}

.similar-product-card .product-link:hover i {
    transform: translateX(2px);
}

/* Benzer Ürünler Responsive */
@media only screen and (max-width: 768px) {
    .similar-products-section {
        padding: 3rem 0;
    }

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

    .similar-products-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .similar-product-card .product-image {
        height: 180px;
    }

    .similar-product-card .product-info {
        padding: 1.25rem;
    }
}

@media only screen and (max-width: 480px) {
    .similar-products-section {
        padding: 2rem 0;
    }

    .similar-products-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .similar-product-card .product-image {
        height: 160px;
    }

    .similar-product-card .product-info {
        padding: 1rem;
    }
}

/* ===== YENİ GALERI STILLERI - SITE TEMASINA UYGUN ===== */

/* Page Header */
.page-header {
    background: linear-gradient(90deg, #D9232A 10%, #B81D22 50%, #801014 90%);
    box-sizing: border-box;
    border-bottom: 3px solid rgba(0, 0, 0, 0.15);
    color: #FFFFFF;
    padding: 1.8rem 0 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25), inset 0 0 15px rgba(0, 0, 0, 0.3);
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-title {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin: 0 0 0.5rem 0;
    color: var(--white);
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.page-description {
    font-size: var(--font-size-lg);
    margin: 0 0 2rem 0;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.page-header-breadcrumb {
    margin-top: 2rem;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5rem;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
}

.breadcrumb-item a {
    color: var(--white);
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.breadcrumb-item a:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.breadcrumb-item.active {
    color: var(--accent-yellow);
    font-weight: var(--font-weight-medium);
}

.breadcrumb-item i {
    font-size: 0.9rem;
}

/* Breadcrumbs */
.breadcrumbs {
    margin-top: 1rem;
}

.breadcrumbs ol {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.25rem;
}

.breadcrumbs li {
    display: flex;
    align-items: center;
    color: #ffffff;
    font-weight: 500;
}

.breadcrumbs li:not(:last-child)::after {
    content: '›';
    margin: 0 0.4rem;
    color: #ffffff;
    font-size: 1.1rem;
    opacity: 0.85;
}

.breadcrumbs a {
    color: #FFFFFF;
    text-decoration: none;
    padding: 0.2rem 0.6rem;
    border-radius: var(--radius-md);
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.breadcrumbs a:hover {
    background: rgba(255, 255, 255, 0.18);
    transform: translateY(-2px);
}

.breadcrumbs li:last-child {
    color: #ffffff;
    font-weight: var(--font-weight-medium);
}

/* Gallery Section */
.gallery-section {
    padding: 4rem 0;
    background: var(--light-gray);
}



/* Gallery Grid */
.gallery-container {
    margin-bottom: 3rem;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.gallery-item {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-fast);
    cursor: pointer;
    position: relative;
    user-select: none;
}

.gallery-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 40px lab(0% 0 0 / 0.15);
}

.gallery-image-wrapper {
    position: relative;
    width: 100%;
    height: 280px;
    overflow: hidden;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-fast);
}

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #d6ddd6b3;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-fast);
    padding: 1.5rem;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-actions {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-action-btn {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    color: var(--white);
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(5px);
}

.gallery-action-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: scale(1.15);
}

.gallery-info {
    display: none !important;
}

/* Gallery Empty State */
.gallery-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 4rem 2rem;
}

.empty-content {
    max-width: 500px;
    margin: 0 auto;
}

.empty-content i {
    font-size: 4rem;
    color: var(--border-gray);
    margin-bottom: 1.5rem;
    display: block;
}

.empty-content h3 {
    font-size: var(--font-size-xl);
    color: var(--dark-gray);
    margin: 0 0 1rem 0;
}

.empty-content p {
    color: var(--medium-gray);
    margin: 0 0 2rem 0;
    line-height: 1.6;
}

/* Gallery Stats */
.gallery-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stats-item {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform var(--transition-fast);
}

.stats-item:hover {
    transform: translateY(-4px);
}

.stats-item i {
    font-size: 2.5rem;
    color: var(--primary-green);
    margin-bottom: 1rem;
    display: block;
}

.stats-number {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    color: var(--dark-gray);
    display: block;
    margin-bottom: 0.5rem;
}

.stats-label {
    color: var(--medium-gray);
    font-size: var(--font-size-sm);
    font-weight: var(--font-weight-medium);
}

/* Call to Action Section */
.cta-section {
    background: linear-gradient(135deg, var(--dark-green) 0%, var(--primary-green) 100%);
    color: var(--white);
    padding: 4rem 0;
    text-align: center;
}

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

.cta-text h2 {
    font-size: var(--font-size-2xl);
    font-weight: var(--font-weight-bold);
    margin: 0 0 1rem 0;
    color: var(--white);
}

.cta-text p {
    font-size: var(--font-size-lg);
    margin: 0 0 2rem 0;
    opacity: 0.9;
    line-height: 1.6;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.cta-actions .btn {
    min-width: 200px;
}

/* Enhanced Lightbox */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity var(--transition-fast);
    backdrop-filter: blur(10px);
}

.lightbox-modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-close {
    position: absolute;
    top: -60px;
    right: 0;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 1rem;
    border-radius: 50%;
    transition: all var(--transition-fast);
    z-index: 10000;
    backdrop-filter: blur(10px);
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: var(--accent-yellow);
    transform: scale(1.1);
}

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 80vh;
    object-fit: contain;
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-caption {
    margin-top: 1.5rem;
    color: var(--white);
    text-align: center;
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    max-width: 600px;
    line-height: 1.5;
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    pointer-events: none;
    padding: 0 2rem;
}

.lightbox-nav {
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--white);
    font-size: 1.25rem;
    padding: 1.5rem 1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    pointer-events: auto;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.lightbox-nav:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.1);
    border-color: var(--accent-yellow);
}

.lightbox-counter {
    position: absolute;
    bottom: -60px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    font-size: var(--font-size-lg);
    font-weight: var(--font-weight-medium);
    background: rgba(0, 0, 0, 0.5);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.lightbox-info {
    position: absolute;
    bottom: -120px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--white);
    text-align: center;
}

.lightbox-details {
    display: flex;
    gap: 2rem;
    justify-content: center;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--font-size-sm);
    opacity: 0.8;
}

.detail-item i {
    color: var(--accent-yellow);
}

/* Responsive Design */
@media only screen and (max-width: 768px) {
    .page-header {
        padding: 1.4rem 0 1.2rem;
    }

    .page-title {
        font-size: var(--font-size-xl);
    }

    .page-description {
        font-size: var(--font-size-base);
    }



    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 1.5rem;
    }

    .gallery-image-wrapper {
        height: 240px;
    }

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

    .cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .cta-actions .btn {
        min-width: 250px;
    }

    .lightbox-content {
        max-width: 95vw;
        max-height: 95vh;
    }

    .lightbox-nav {
        padding: 1rem 0.75rem;
        font-size: 1rem;
    }

    .lightbox-close {
        top: -50px;
        font-size: 1.25rem;
        padding: 0.75rem;
    }

    .lightbox-counter {
        bottom: -50px;
        font-size: var(--font-size-base);
    }

    .lightbox-info {
        bottom: -100px;
    }

    .lightbox-details {
        flex-direction: column;
        gap: 1rem;
    }
}

@media only screen and (max-width: 480px) {
    .page-header {
        padding: 1.2rem 0 1rem;
    }

    .page-title {
        font-size: var(--font-size-lg);
    }

    .breadcrumb {
        flex-direction: column;
        gap: 0.75rem;
    }

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

    .gallery-image-wrapper {
        height: 200px;
    }

    .gallery-overlay {
        padding: 1rem;
    }

    .gallery-actions {
        gap: 0.5rem;
    }

    .gallery-action-btn {
        width: 35px;
        height: 35px;
    }



    .lightbox-nav {
        padding: 0.75rem 0.5rem;
        font-size: 0.9rem;
    }

    .lightbox-caption {
        font-size: var(--font-size-base);
        margin-top: 1rem;
    }
}

/* Animation Enhancements */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

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

.gallery-item {
    animation: fadeInUp 0.6s ease forwards;
}

.gallery-item:nth-child(1) {
    animation-delay: 0.1s;
}

.gallery-item:nth-child(2) {
    animation-delay: 0.2s;
}

.gallery-item:nth-child(3) {
    animation-delay: 0.3s;
}

.gallery-item:nth-child(4) {
    animation-delay: 0.4s;
}

.gallery-item:nth-child(5) {
    animation-delay: 0.5s;
}

.gallery-item:nth-child(6) {
    animation-delay: 0.6s;
}

/* Loading States */
.gallery-item.loading {
    opacity: 0.7;
    pointer-events: none;
}

.gallery-item.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 2rem;
    height: 2rem;
    border: 2px solid var(--border-gray);
    border-top: 2px solid var(--primary-green);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Accessibility Improvements */
.gallery-item:focus {
    outline: 3px solid var(--accent-yellow);
    outline-offset: 2px;
}



/* ===== ÜRÜN DETAY SAYFASI STİLLERİ ===== */

/* Product Detail Layout */
.product-detail-layout {
    padding: 2rem 0;
    background: #f8f9fa;
}

.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

/* Product Images */
.product-images {
    position: sticky;
    top: 2rem;
}

.main-image-container {
    position: relative;
    margin-bottom: 1rem;
    border-radius: 12px;
    overflow: hidden;
    background: #363636;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    width: 100%;
    height: 420px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

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

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.main-image-container:hover .image-overlay {
    opacity: 1;
}

.zoom-btn {
    background: white;
    border: none;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.zoom-btn:hover {
    transform: scale(1.1);
}

.zoom-btn i {
    font-size: 1.2rem;
    color: var(--primary-green);
}

/* Thumbnail Container */
.thumbnail-container {
    margin-top: 1rem;
}

.thumbnail-slider {
    display: flex;
    gap: 0.6rem;
    overflow-x: auto;
    padding: 0.4rem 0;
}

.thumbnail-item {
    flex-shrink: 0;
    width: 96px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    background: #363636;
}

.thumbnail-item:hover,
.thumbnail-item.active {
    border-color: var(--primary-green);
    transform: scale(1.04);
}

.thumbnail-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Product Information */
.product-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.product-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.product-category {
    color: var(--primary-green);
    font-size: 0.9rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.5rem;
}

.product-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
    line-height: 1.2;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffc107;
    font-size: 1rem;
}

.rating-text {
    color: #6c757d;
    font-size: 0.9rem;
}

/* Product Description */
.product-description {
    margin-bottom: 2rem;
}

.product-description h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.product-description p {
    color: #6c757d;
    line-height: 1.6;
}

/* Product Features */
.product-features {
    margin-bottom: 2rem;
}

.product-features h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

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

.features-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    color: #6c757d;
}

.features-list i {
    color: var(--primary-green);
    font-size: 0.9rem;
}

/* Product Actions */
.product-actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.product-actions .btn {
    flex: 1;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-weight: 500;
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.product-actions .btn-primary {
    background: var(--primary-green);
    color: white;
    border-color: var(--primary-green);
}

.product-actions .btn-primary:hover {
    background: #272727;
    border-color: #272727;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 182, 73, 0.3);
}

.product-actions .btn-outline {
    background: transparent;
    color: var(--primary-green);
    border-color: var(--primary-green);
}

.product-actions .btn-outline:hover {
    background: var(--primary-green);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(67, 182, 73, 0.2);
}

/* Product Specifications */
.product-specifications {
    margin-bottom: 2rem;
}

.product-specifications h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.specs-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
}

.spec-label {
    font-weight: 500;
    color: #6c757d;
}

.spec-value {
    font-weight: 600;
    color: #2c3e50;
}

/* Product Tabs */
.product-tabs {
    padding: 3rem 0;
    background: white;
}

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

.tabs-nav {
    display: flex;
    border-bottom: 2px solid #e9ecef;
    margin-bottom: 2rem;
    overflow-x: auto;
}

.tab-btn {
    background: none;
    border: none;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 500;
    color: #6c757d;
    cursor: pointer;
    transition: all 0.3s ease;
    border-bottom: 3px solid transparent;
    white-space: nowrap;
}

.tab-btn:hover,
.tab-btn.active {
    color: var(--primary-green);
    border-bottom-color: var(--primary-green);
    background: rgba(67, 182, 73, 0.05);
}

.tab-panel {
    display: none;
    padding: 2rem 0;
}

.tab-panel.active {
    display: block;
}

.tab-panel h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 1.5rem;
}

.tab-panel h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 1.5rem 0 1rem 0;
}

.tab-panel p {
    color: #6c757d;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.tab-panel ul {
    color: #6c757d;
    line-height: 1.6;
    padding-left: 1.5rem;
}

.tab-panel li {
    margin-bottom: 0.5rem;
}

/* Specifications Table */
.specs-table {
    overflow-x: auto;
}

.specs-table table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1rem;
}

.specs-table td {
    padding: 1rem;
    border-bottom: 1px solid #e9ecef;
    vertical-align: top;
}

.specs-table td:first-child {
    font-weight: 600;
    color: #2c3e50;
    width: 40%;
    background: #f8f9fa;
}

.specs-table td:last-child {
    color: #6c757d;
}

/* Reviews */
.reviews-summary {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
}

.rating-overview {
    display: flex;
    align-items: center;
    gap: 2rem;
}

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

.rating-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green);
    display: block;
    line-height: 1;
}

.rating-count {
    color: #6c757d;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.reviews-list {
    space-y: 1.5rem;
}

.review-item {
    padding: 1.5rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    margin-bottom: 1rem;
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.reviewer-info strong {
    color: #2c3e50;
    font-weight: 600;
}

.review-date {
    color: #6c757d;
    font-size: 0.9rem;
}

.review-item p {
    color: #6c757d;
    line-height: 1.6;
    margin: 0;
}

/* Shipping */
.shipping-info {
    display: grid;
    gap: 1rem;
}

.shipping-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid var(--primary-green);
}

.shipping-option h4 {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0;
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
}

.shipping-option h4 i {
    color: var(--primary-green);
}

.shipping-option p {
    color: #6c757d;
    margin: 0.25rem 0 0 0;
    font-size: 0.9rem;
}

.shipping-price {
    font-weight: 700;
    color: var(--primary-green);
    font-size: 1.1rem;
}

/* Related Products */
.related-products {
    padding: 3rem 0;
    background: #f8f9fa;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    color: #2c3e50;
    text-align: center;
    margin-bottom: 3rem;
}

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

.product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.product-card .product-image {
    height: 200px;
    overflow: hidden;
}

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

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

.product-card .product-info {
    padding: 1.5rem;
    background: white;
}

.product-card .product-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.75rem;
}

.product-card .product-model {
    color: #28a745;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
}

.product-card .product-description {
    color: #6c757d;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.product-card .btn {
    width: 100%;
    justify-content: center;
}

/* Image Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.modal-content {
    background: white;
    border-radius: 12px;
    max-width: 90vw;
    max-height: 90vh;
    overflow: hidden;
    position: relative;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid #e9ecef;
    background: #f8f9fa;
}

.modal-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #2c3e50;
    margin: 0;
}

.modal-close {
    font-size: 1.5rem;
    color: #6c757d;
    cursor: pointer;
    transition: color 0.3s ease;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.modal-close:hover {
    color: #dc3545;
    background: rgba(220, 53, 69, 0.1);
}

.modal-body {
    padding: 1.5rem;
}

.modal-image {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .product-images {
        position: static;
    }

    .main-image-container {
        height: 320px;
    }

    .main-image {
        height: 100%;
        object-fit: contain;
    }

    .product-title {
        font-size: 1.5rem;
    }

    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        min-width: auto;
    }

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

    .tabs-nav {
        flex-wrap: wrap;
    }

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

    .rating-overview {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .shipping-option {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

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

    .modal {
        padding: 1rem;
    }

    .modal-content {
        max-width: 95vw;
        max-height: 95vh;
    }
}

@media (max-width: 480px) {
    .product-info {
        padding: 1.5rem;
    }

    .product-title {
        font-size: 1.3rem;
    }

    .main-image-container {
        height: 250px;
    }

    .main-image {
        height: 100%;
        object-fit: contain;
    }

    .thumbnail-item {
        width: 76px;
        height: 48px;
    }

    .tab-panel {
        padding: 1rem 0;
    }

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

/* Print Styles */
@media print {

    .gallery-overlay,
    .cta-section,
    .lightbox-modal {
        display: none !important;
    }

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

    .gallery-item {
        break-inside: avoid;
        page-break-inside: avoid;
    }
}

/* Responsive Fixes for Logo and Corporate Tabs */
.header-left .logo img,
.header-logo-img {
    width: 250px;
    height: 80px;
    max-width: 100%;
    object-fit: contain;
    display: block;
}

.corporate-tabs-bar .container {
    display: flex;
    justify-content: center;
    padding: 0 0.5rem;
}

.tabs-wrapper {
    display: flex;
    gap: 0.5rem;
    background: #FFF;
    padding: 0.4rem;
    border-radius: 50px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #E9ECEF;
    max-width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.tabs-wrapper::-webkit-scrollbar {
    display: none;
}

.tab-btn {
    padding: 0.7rem 1.8rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.tab-btn i {
    margin-right: 0.5rem;
}

@media (max-width: 992px) {
    .main-header {
        padding: 0.5rem 0;
    }

    .header-left .logo img,
    .header-logo-img {
        width: 180px;
        height: 58px;
    }
}

@media (max-width: 768px) {

    .header-left .logo img,
    .header-logo-img {
        width: 150px;
        height: 48px;
    }

    .corporate-tabs-bar {
        padding: 0.5rem 0 !important;
    }

    .tabs-wrapper {
        width: 100%;
        gap: 0.25rem;
        padding: 0.25rem;
        border-radius: 30px;
    }

    .tab-btn {
        padding: 0.55rem 0.65rem !important;
        font-size: 0.82rem !important;
        flex: 1;
        text-align: center;
        border-radius: 25px !important;
    }

    .tab-btn i {
        margin-right: 0.3rem !important;
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {

    .header-left .logo img,
    .header-logo-img {
        width: 130px;
        height: 42px;
    }

    .tab-btn {
        padding: 0.5rem 0.4rem !important;
        font-size: 0.78rem !important;
    }

    .tab-btn i {
        margin-right: 0.25rem !important;
        font-size: 0.8rem;
    }
}

/* ===== LIGHTBOX MODAL SYSTEM ===== */
.lightbox-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.92);
    backdrop-filter: blur(8px);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 1.5rem;
}

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

.lightbox-content {
    position: relative;
    max-width: 1100px;
    width: 90%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    position: absolute;
    top: -45px;
    right: 0;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #FFF;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.3rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

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

.lightbox-image-container {
    position: relative;
    max-width: 100%;
    max-height: 75vh;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-image-container img {
    max-width: 100%;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    animation: zoomIn 0.3s ease;
}

@keyframes zoomIn {
    from {
        transform: scale(0.92);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-caption {
    color: #FFF;
    font-size: 1.1rem;
    font-weight: 600;
    margin-top: 1rem;
    text-align: center;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.6);
}

.lightbox-navigation {
    position: absolute;
    top: 50%;
    left: -20px;
    right: -20px;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    pointer-events: none;
}

.lightbox-nav {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.2);
    color: #FFF;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(4px);
}

.lightbox-nav:hover {
    background: #B81D22;
    transform: scale(1.1);
}

.lightbox-counter {
    position: absolute;
    bottom: -40px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    font-weight: 600;
}

.gallery-item {
    cursor: pointer;
}

/* ==========================================================================
   Static Pages & Legal Policies (KVKK, Privacy, Terms, Cookies)
   ========================================================================== */
.static-page-section {
    padding: 3.5rem 0 4.5rem;
    background-color: #f8f9fa;
    min-height: 60vh;
}

.static-page-section .content-grid,
.static-page-grid {
    display: grid;
    grid-template-columns: 1fr 340px;
    gap: 2rem;
    align-items: start;
}

/* Main Content Card */
.content-card,
.static-main-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.content-card-header,
.static-card-header {
    display: flex;
    align-items: center;
    gap: 1.25rem;
    padding: 2rem 2.25rem;
    background: linear-gradient(135deg, #ffffff 0%, #fcfcfc 100%);
    border-bottom: 1px solid #edf2f7;
}

.content-card-header .header-icon,
.static-header-badge {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #D9232A 0%, #801014 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 6px 16px rgba(217, 35, 42, 0.25);
    flex-shrink: 0;
}

.content-card-header .header-text h2,
.static-header-info .static-article-title {
    font-size: 1.65rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 0.25rem 0;
}

.content-card-header .header-text .subtitle,
.static-header-info .static-article-subtitle {
    color: #718096;
    font-size: 0.92rem;
    margin: 0;
}

/* Content Body Typography */
.content-body,
.static-card-body {
    padding: 2.25rem;
    color: #2d3748;
    font-size: 1rem;
    line-height: 1.8;
}

.content-body h2,
.content-body h3,
.content-body h4,
.static-card-body h3 {
    color: #1a1a1a;
    font-weight: 700;
    margin: 1.75rem 0 0.75rem 0;
}

.content-body h2 {
    font-size: 1.4rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid #edf2f7;
}

.content-body p,
.static-card-body p {
    margin-bottom: 1.25rem;
    color: #4a5568;
}

.content-body ul,
.content-body ol {
    margin: 1rem 0 1.5rem 1.5rem;
    padding: 0;
}

.content-body li {
    margin-bottom: 0.6rem;
    color: #4a5568;
}

.legal-notice-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: #fff5f5;
    border-left: 4px solid #D9232A;
    border-radius: 8px;
    margin-bottom: 2rem;
}

.legal-notice-box i {
    font-size: 1.4rem;
    color: #D9232A;
}

.legal-notice-box p {
    margin: 0;
    font-size: 0.95rem;
    color: #742a2a;
    font-weight: 500;
}

.legal-content-block h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: #1a202c;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.content-footer,
.static-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    padding: 1.25rem 2.25rem;
    background: #f8fafc;
    border-top: 1px solid #edf2f7;
    font-size: 0.88rem;
    color: #718096;
}

.page-meta,
.static-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.page-meta .meta-item i,
.static-meta-item i {
    color: #D9232A;
}

/* Sidebar Styles */
.sidebar,
.static-sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.sidebar-card {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.06);
    overflow: hidden;
}

.sidebar-card .sidebar-header {
    padding: 1.25rem 1.5rem;
    background: linear-gradient(135deg, #D9232A 0%, #801014 100%);
    color: #ffffff;
}

.sidebar-card .sidebar-header h3 {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: #ffffff;
}

.sidebar-card .sidebar-header h3 i {
    color: #ffffff;
}

.sidebar-card .sidebar-body,
.sidebar-card .sidebar-content {
    padding: 1.25rem;
}

/* Page Links Navigation */
.page-links,
.legal-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.page-links li a,
.legal-nav-list li a {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.93rem;
    background: #f8fafc;
    transition: all 0.25s ease;
    border: 1px solid #edf2f7;
}

.page-links li a i,
.legal-nav-list li a i {
    font-size: 1rem;
    color: #a0aec0;
    transition: color 0.25s ease;
    width: 20px;
    text-align: center;
}

.page-links li a:hover,
.legal-nav-list li a:hover {
    background: #fff5f5;
    color: #D9232A;
    border-color: rgba(217, 35, 42, 0.2);
    transform: translateX(4px);
}

.page-links li a:hover i,
.legal-nav-list li a:hover i {
    color: #D9232A;
}

.page-links li.active a,
.legal-nav-list li.active a {
    background: linear-gradient(135deg, #D9232A 0%, #801014 100%);
    color: #ffffff;
    border-color: #D9232A;
    box-shadow: 0 4px 12px rgba(217, 35, 42, 0.3);
    font-weight: 600;
}

.page-links li.active a i,
.legal-nav-list li.active a i {
    color: #ffffff;
}

/* Help Card */
.sidebar-card.help-card {
    background: linear-gradient(135deg, #ffffff 0%, #fff8f8 100%);
    border-left: 4px solid #D9232A;
}

.sidebar-card.help-card p {
    color: #4a5568;
    font-size: 0.92rem;
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.btn-full {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
    padding: 0.85rem 1.25rem;
    border-radius: 10px;
    font-weight: 600;
    text-align: center;
}

/* Responsive Grid for Static Pages */
@media only screen and (max-width: 992px) {

    .static-page-section .content-grid,
    .static-page-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .sidebar,
    .static-sidebar {
        position: static;
    }

    .content-card,
    .static-main-card {
        border-radius: 14px;
    }
}

@media only screen and (max-width: 576px) {
    .static-page-section {
        padding: 2rem 0;
    }

    .content-card-header,
    .static-card-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
        padding: 1.5rem;
    }

    .content-body,
    .static-card-body {
        padding: 1.5rem;
    }
}