/* =====================================================
   Doli Teknoloji - Ana Stil Dosyası
   Performans odaklı, endüstriyel, profesyonel tasarım
   ===================================================== */

/* ---- 1. CSS Değişkenleri ---- */
:root {
    --color-dark:       #000000;
    --color-dark-2:     #233D4D;
    --color-dark-3:     #2c4a5c;
    --color-border:     #3a596d;
    --color-white:      #ffffff;
    --color-light:      #EAECF0;
    --color-light-2:    #d0d5dd;
    --color-gray:       #98a2b3;
    --color-gray-2:     #667085;
    --color-text:       #1d2939;
    --color-text-light: #475467;

    /* Kurumsal vurgu rengi - Doli Kırmızı */
    --color-accent:     #E20045;
    --color-accent-dark:#b30034;
    --color-accent-light:#ff1e60;
    --color-accent-rgb: 226, 0, 69;

    /* Turuncu vurgu yerine kırmızı kullanımı */
    --color-orange:     #E20045;
    --color-orange-light:#ff1e60;

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Barlow Condensed', 'Inter', sans-serif;

    --header-height: 80px;
    --header-top-height: 38px;
    --transition: 0.25s ease;
    --radius: 8px;
    --radius-lg: 16px;
    --shadow: 0 4px 20px rgba(0,0,0,0.05);
    --shadow-md: 0 8px 30px rgba(35, 61, 77, 0.08);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.12);
}

/* ---- 2. Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
    font-family: var(--font-main);
    font-size: 15px;
    line-height: 1.65;
    color: var(--color-text);
    background: #090d16;
    overflow-x: hidden;
}

body:not(.home-page) {
    padding-top: 0;
}

img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
ul, ol { list-style: none; }
input, textarea, select { font-family: inherit; }

/* ---- 3. Tipografi ---- */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--color-dark);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.5rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); }
h4 { font-size: 1.2rem; }

p { color: var(--color-text-light); line-height: 1.75; }

/* ---- 4. Layout ---- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.section { padding: 5rem 0; }
.section-sm { padding: 3rem 0; }

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-header .section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-accent);
    background: rgba(var(--color-accent-rgb), 0.08);
    border: 1px solid rgba(var(--color-accent-rgb), 0.2);
    padding: 0.35rem 1rem;
    border-radius: 2rem;
    margin-bottom: 1rem;
}

.section-header .section-tag-lg {
    font-size: 1.25rem;
    font-weight: 800;
    padding: 0.5rem 1.75rem;
    border-radius: 30px;
    letter-spacing: 0.05em;
    background: rgba(var(--color-accent-rgb), 0.12);
    border: 1px solid rgba(var(--color-accent-rgb), 0.3);
}

.section-header h2 {
    color: var(--color-dark);
    margin-bottom: 0.75rem;
}

.section-header p {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.05rem;
}

/* ---- 5. Butonlar ---- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius);
    transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
    white-space: nowrap;
    text-decoration: none;
}

.btn:active { transform: translateY(1px); }

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

.btn-primary:hover {
    background: var(--color-accent-dark);
    border-color: var(--color-accent-dark);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 2px solid rgba(255,255,255,0.5);
}

.btn-outline:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--color-white);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-border);
}

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

.btn-sm { padding: 0.45rem 1rem; font-size: 0.8rem; }
.btn-lg { padding: 0.75rem 1.6rem; font-size: 0.95rem; }

.btn-hero-cta {
    padding: 0.85rem 1.8rem;
    font-size: 1.05rem;
    font-weight: 700;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: 0 8px 25px rgba(226, 0, 69, 0.45);
    transition: all 0.25s ease;
}
.btn-hero-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(226, 0, 69, 0.6);
}

/* ---- 6. Header ---- */
.header-top {
    background: transparent;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    height: var(--header-top-height);
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1002;
    width: 100%;
}

.site-header {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    pointer-events: none;
    transition: top 0.3s ease;
}

.site-header > * {
    pointer-events: auto;
}

.header-top-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.header-contact-info {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.header-contact-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    color: var(--color-gray);
    transition: color var(--transition);
}

.header-contact-item:hover { color: var(--color-white); }

.header-top-right { display: flex; align-items: center; gap: 1rem; }

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: #25D366;
    transition: opacity var(--transition);
}

.whatsapp-btn:hover { opacity: 0.8; }

/* Navbar */
.navbar {
    position: relative;
    top: 0;
    z-index: 1000;
    background: rgba(34, 52, 64, 0.94);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    margin: 0 auto;
    max-width: 1280px;
    width: calc(100% - 2rem);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(34, 52, 64, 0.98);
    border-color: rgba(226, 0, 69, 0.45);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(18px);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 65px;
    padding: 0 1.5rem;
    gap: 1.5rem;
}

/* Logo */
.navbar-logo { display: flex; align-items: center; flex-shrink: 0; }
.navbar-logo img {
    height: 50px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--color-white);
}

.logo-sub {
    font-family: var(--font-main);
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    color: var(--color-accent);
    text-transform: uppercase;
}

.logo-text--footer .logo-main { font-size: 1.4rem; }

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 0;
    flex: 1;
    justify-content: center;
}

.nav-menu > li { position: relative; }

.nav-menu > li > a {
    display: flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0 1.1rem;
    height: var(--header-height);
    font-size: 0.88rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    color: var(--color-gray);
    transition: color var(--transition);
    white-space: nowrap;
}

.nav-menu > li > a:hover,
.nav-menu > li.active > a { color: var(--color-white); }

.nav-menu > li.active > a {
    color: var(--color-accent-light);
}

.dropdown-arrow { transition: transform var(--transition); flex-shrink: 0; }
.has-dropdown:hover .dropdown-arrow { transform: rotate(180deg); }

/* Dropdown */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    background: var(--color-dark-3);
    border: 1px solid var(--color-border);
    border-top: 2px solid var(--color-accent);
    border-radius: 0 0 var(--radius) var(--radius);
    min-width: 230px;
    padding: 0.5rem 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition), visibility var(--transition);
    box-shadow: var(--shadow-md);
    z-index: 100;
}

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

.dropdown-menu li a {
    display: block;
    padding: 0.6rem 1.25rem;
    font-size: 0.875rem;
    color: var(--color-gray);
    transition: color var(--transition), background var(--transition);
}

.dropdown-menu li a:hover {
    color: var(--color-white);
    background: rgba(255,255,255,0.04);
    padding-left: 1.5rem;
}

.dropdown-divider {
    border-top: 1px solid var(--color-border);
    margin-top: 0.4rem;
    padding-top: 0.4rem;
}

.dropdown-divider a { color: var(--color-accent-light) !important; font-weight: 600; }

/* Navbar Actions */
.navbar-actions { display: flex; align-items: center; gap: 1rem; flex-shrink: 0; }

.btn-teklif {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.55rem 1.25rem;
    background: var(--color-accent);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 700;
    border-radius: var(--radius);
    letter-spacing: 0.02em;
    transition: background var(--transition);
    white-space: nowrap;
}

.btn-teklif:hover { background: var(--color-accent-dark); }

/* Hamburger */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    padding: 8px;
    border-radius: var(--radius);
    transition: background var(--transition);
}

.hamburger:hover { background: rgba(255,255,255,0.08); }
.hamburger span { display: block; height: 2px; background: var(--color-white); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }

.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Nav Overlay */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 900;
}

/* ---- 7. Hero Bölümü ---- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 580px;
    max-height: 900px;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--color-dark);
}

.hero-video-wrap {
    position: absolute;
    inset: 0;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-wrap video,
.hero-video-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.45;
    display: block;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(24,28,34,0.85) 0%, rgba(24,28,34,0.5) 60%, rgba(24,28,34,0.3) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
}

.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-accent-light);
    margin-bottom: 1.25rem;
}

.hero-tag::before {
    content: '';
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-accent-light);
}

.hero h1 {
    font-size: clamp(2.2rem, 5.5vw, 4rem);
    font-weight: 800;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 1.25rem;
    letter-spacing: -0.01em;
}

.hero h1 span { color: var(--color-accent-light); }

.hero-desc {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    max-width: 540px;
    margin-bottom: 2.25rem;
    line-height: 1.7;
}

.hero-actions { display: flex; align-items: center; gap: 1rem; flex-wrap: wrap; }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255,255,255,0.4);
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-scroll-dot {
    width: 1.5px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255,255,255,0.6), transparent);
    animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.3; }
}

/* ---- 8. Hakkımızda Bölümü ---- */
.about-section {
    background:
        linear-gradient(to bottom, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.70) 50%, rgba(15,23,42,0.85) 100%),
        url('../images/about-factory-bg.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
    padding: 5rem 0;
    border-bottom: none;
}

.about-section .container { position: relative; z-index: 1; }

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

.about-image-wrap {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 0 1px rgba(255,255,255,0.1);
    background: #0f172a;
}

.about-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
}

.about-image-wrap:hover img { transform: scale(1.03); }

.about-badge {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: linear-gradient(135deg, var(--color-accent), var(--color-accent-dark));
    color: var(--color-white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(226,0,69,0.45);
    z-index: 5;
    backdrop-filter: blur(8px);
}

.about-badge-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    line-height: 1;
    display: block;
}

.about-badge-text { font-size: 0.8rem; opacity: 0.9; }

.about-content { padding: 1rem 0; }
.about-content .section-tag { margin-bottom: 0.75rem; }
.about-content h2 {
    margin-bottom: 1rem;
    color: #ffffff;
    font-weight: 800;
    text-shadow: 0 2px 20px rgba(0,0,0,0.5);
}
.about-content .lead {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.25rem;
    line-height: 1.7;
    font-weight: 500;
}
.about-content > p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    line-height: 1.6;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin: 1.75rem 0;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius);
    padding: 0.9rem;
    backdrop-filter: blur(8px);
    transition: all 0.25s ease;
}

.about-feature-item:hover {
    background: rgba(226, 0, 69, 0.15);
    border-color: rgba(226, 0, 69, 0.4);
    transform: translateY(-2px);
}

.about-feature-icon {
    width: 38px;
    height: 38px;
    background: rgba(226, 0, 69, 0.2);
    border: 1px solid rgba(226, 0, 69, 0.3);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ff4d7e;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.about-feature-item h5 {
    font-size: 0.88rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.15rem;
    font-family: var(--font-main);
}

.about-feature-item p {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

/* ---- 9. Kategori Kartları ---- */
.categories-section {
    background:
        linear-gradient(to bottom, rgba(15,23,42,0.85) 0%, rgba(15,23,42,0.70) 50%, rgba(15,23,42,0.90) 100%),
        url('../images/about-factory-bg.jpg') center center / cover no-repeat;
    background-attachment: fixed;
    position: relative;
    padding: 5rem 0;
}

.categories-section .section-header h2 {
    color: #ffffff;
}

.categories-section .section-header p {
    color: rgba(255, 255, 255, 0.85);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.cat-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-dark-3);
    cursor: pointer;
    display: block;
    text-decoration: none;
}

.cat-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.cat-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(20,24,30,0.9) 0%, rgba(20,24,30,0.3) 60%, transparent 100%);
    transition: background var(--transition);
}

.cat-card:hover .cat-card-overlay {
    background: linear-gradient(to top, rgba(20,24,30,0.95) 0%, rgba(20,24,30,0.6) 60%, rgba(20,24,30,0.2) 100%);
}

.cat-card:hover .cat-card-img { transform: scale(1.06); }

.cat-card-body {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    transform: translateY(0);
    transition: transform var(--transition);
}

.cat-card-name {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.3rem;
}

.cat-card-desc {
    font-size: 0.82rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 0.75rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.cat-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--color-accent-light);
    letter-spacing: 0.05em;
    opacity: 0;
    transform: translateY(8px);
    transition: opacity var(--transition), transform var(--transition);
}

.cat-card:hover .cat-card-btn {
    opacity: 1;
    transform: translateY(0);
}

.btn-outline-dark {
    background: transparent;
    color: var(--color-dark);
    border: 2px solid var(--color-border);
}

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

/* ---- 10. Makine Kartları ---- */
.machines-section { background: #c0c5cf; }

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

.machine-card {
    background: #f0f2f5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid #bcc1cc;
    transition: transform var(--transition), box-shadow var(--transition);
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

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

.machine-card-img-wrap {
    position: relative;
    aspect-ratio: 4/3;
    overflow: hidden;
    background: linear-gradient(135deg, #f8fafc 0%, #e8edf5 100%);
}

.machine-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 1rem;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.machine-card:hover .machine-card-img-wrap img { transform: scale(1.08); }

.machine-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(196, 30, 58, 0.92) 0%, rgba(150, 10, 30, 0.88) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    backdrop-filter: blur(2px);
}

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

.machine-card-overlay-inner {
    color: white;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    transform: translateY(8px);
    transition: transform 0.3s ease;
}
.machine-card:hover .machine-card-overlay-inner { transform: translateY(0); }
.machine-card-overlay-inner span {
    font-weight: 700;
    font-size: 0.95rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

/* Model kodu rozeti — resmin sol alt köşesi */
.machine-card-model-badge {
    position: absolute;
    bottom: 0.75rem;
    left: 0.75rem;
    background: rgba(15, 20, 35, 0.85);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    font-family: 'Courier New', monospace;
    padding: 0.3rem 0.65rem;
    border-radius: 4px;
    letter-spacing: 0.08em;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.15);
}

.machine-card-badge {
    position: absolute;
    top: 0.75rem;
    left: 0.75rem;
    background: linear-gradient(135deg, #c41e3a, #ff3a5c);
    color: white;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 0.28rem 0.7rem;
    border-radius: 3rem;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(196,30,58,0.4);
}

.machine-card-body {
    padding: 1.4rem 1.25rem 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.machine-card-cat {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.machine-card-cat-dot {
    width: 6px;
    height: 6px;
    background: var(--color-accent);
    border-radius: 50%;
    display: inline-block;
    flex-shrink: 0;
}

.machine-card-name {
    font-size: 1.08rem;
    font-weight: 800;
    color: var(--color-dark);
    margin-bottom: 0.5rem;
    line-height: 1.3;
    transition: color 0.2s;
}
.machine-card:hover .machine-card-name { color: var(--color-accent); }

.machine-card-desc {
    font-size: 0.85rem;
    color: var(--color-text-light);
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 1rem;
    line-height: 1.55;
}

.machine-card-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 0.85rem;
    border-top: 1px solid var(--color-light-2);
    margin-top: auto;
}

.machine-card-link {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--color-accent);
    display: flex;
    align-items: center;
    gap: 0.35rem;
    transition: gap 0.2s;
    letter-spacing: 0.02em;
}

.machine-card:hover .machine-card-link { gap: 0.65rem; }

/* ---- 11. Neden Doli (Why Cards) ---- */
.why-section { background: var(--color-dark); }

.why-section .section-header h2,
.why-section .section-header .section-tag { color: var(--color-white); }
.why-section .section-header p { color: var(--color-gray); }

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.why-card {
    padding: 2rem;
    background: var(--color-dark-3);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    transition: border-color var(--transition), transform var(--transition);
}

.why-card:hover {
    border-color: var(--color-accent);
    transform: translateY(-3px);
}

.why-card-icon {
    width: 50px;
    height: 50px;
    background: rgba(var(--color-accent-rgb), 0.12);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent-light);
    margin-bottom: 1.25rem;
}

.why-card h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: 0.6rem;
    font-family: var(--font-main);
}

.why-card p {
    font-size: 0.875rem;
    color: var(--color-gray);
    margin: 0;
}

/* ---- 12. Video Galerisi ---- */
.videos-section { background: var(--color-light); }

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

.video-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 16/9;
    background: var(--color-dark);
    cursor: pointer;
}

.video-card-thumb {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.video-card:hover .video-card-thumb { transform: scale(1.04); }

.video-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(20,24,30,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background var(--transition);
}

.video-card:hover .video-card-overlay { background: rgba(20,24,30,0.4); }

.video-play-btn {
    width: 64px;
    height: 64px;
    background: var(--color-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
    transition: transform var(--transition), box-shadow var(--transition);
}

.video-card:hover .video-play-btn {
    transform: scale(1.08);
    box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

.video-card-title {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.25rem;
    background: linear-gradient(to top, rgba(20,24,30,0.9), transparent);
    color: var(--color-white);
    font-size: 0.9rem;
    font-weight: 600;
}

/* Video Modal */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.92);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.video-modal.active { display: flex; }

.video-modal-inner {
    position: relative;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.video-modal-inner iframe,
.video-modal-inner video {
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -2.5rem;
    right: 0;
    color: var(--color-white);
    font-size: 2rem;
    line-height: 1;
    cursor: pointer;
    opacity: 0.7;
    transition: opacity var(--transition);
    background: none;
    border: none;
}

.video-modal-close:hover { opacity: 1; }

/* ---- 13. CTA (Teklif) Bölümü ---- */
.cta-section {
    background: radial-gradient(circle at top right, rgba(226, 0, 69, 0.15), transparent 60%), linear-gradient(135deg, var(--color-dark-2) 0%, #0d1419 100%);
    padding: 6.5rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--color-border);
    border-bottom: 3px solid var(--color-accent);
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(ellipse at center, black, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse at center, black, transparent 80%);
    pointer-events: none;
}

.cta-inner {
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta-inner h2 {
    color: var(--color-white);
    font-size: 2.5rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: -0.02em;
    margin-bottom: 1.25rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.15;
}

.cta-inner p {
    color: var(--color-gray);
    font-size: 1.15rem;
    max-width: 600px;
    margin: 0 auto 2.5rem;
    line-height: 1.6;
}

/* ---- 14. Stats Bar ---- */
.stats-bar {
    background: linear-gradient(90deg, var(--color-accent-dark) 0%, var(--color-accent) 100%);
    padding: 2.5rem 0;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.15);
}

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

.stat-item {
    text-align: center;
    color: var(--color-white);
    padding: 0.5rem;
    border-right: 1px solid rgba(255,255,255,0.15);
}

.stat-item:last-child {
    border-right: none;
}

.stat-num {
    font-family: var(--font-heading);
    font-size: 2.85rem;
    font-weight: 800;
    display: block;
    line-height: 1;
    margin-bottom: 0.4rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.2);
}

.stat-label {
    font-size: 0.85rem;
    text-transform: uppercase;
    font-weight: 600;
    opacity: 0.9;
    letter-spacing: 0.08em;
}

/* ---- 15. Footer ---- */
.site-footer {
    background: #0b0f13;
    color: var(--color-gray);
    border-top: 1px solid rgba(255,255,255,0.05);
    font-family: var(--font-main);
}

.footer-main { 
    padding: 5.5rem 0 4rem; 
    background: radial-gradient(circle at 85% 15%, rgba(226, 0, 69, 0.06), transparent 50%),
                linear-gradient(135deg, #233D4D 0%, #050b0f 100%);
    position: relative;
    border-top: 1px solid rgba(226, 0, 69, 0.15);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2.5fr 1.5fr 1.5fr 2.5fr;
    gap: 4rem;
}

.footer-brand {
    display: flex;
    flex-direction: column;
}

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

.footer-logo img {
    max-width: 130px;
    height: auto;
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--color-gray);
    line-height: 1.8;
    margin-bottom: 2rem;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-white);
    margin-bottom: 1.75rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--color-accent);
}

.footer-links { 
    display: flex; 
    flex-direction: column; 
    gap: 0.75rem; 
}

.footer-links a {
    font-size: 0.9rem;
    color: var(--color-gray);
    transition: color var(--transition), transform var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-links a::before {
    content: '→';
    font-size: 0.75rem;
    color: var(--color-accent);
    opacity: 0;
    transition: opacity var(--transition), transform var(--transition);
    transform: translateX(-5px);
}

.footer-links a:hover { 
    color: var(--color-white); 
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-contact-list { 
    display: flex; 
    flex-direction: column; 
    gap: 1.25rem; 
}

.footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
}

.footer-contact-list svg { 
    flex-shrink: 0; 
    margin-top: 3px; 
    color: var(--color-accent); 
    transition: transform var(--transition);
}

.footer-contact-list li:hover svg {
    transform: scale(1.15);
}

.footer-contact-list a { 
    color: var(--color-gray);
    transition: color var(--transition); 
}

.footer-contact-list a:hover { 
    color: var(--color-white); 
}

.footer-social { 
    display: flex; 
    gap: 0.75rem; 
    margin-top: auto;
    padding-top: 1rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gray);
    transition: all var(--transition);
}

.social-link:hover { 
    background: var(--color-accent); 
    color: var(--color-white); 
    border-color: var(--color-accent); 
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(226, 0, 69, 0.4);
}

.footer-bottom {
    background: #080b0e;
    border-top: 1px solid rgba(255,255,255,0.04);
    padding: 1.75rem 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--color-gray-2);
}

.footer-legal { display: flex; gap: 2rem; }
.footer-legal a { color: var(--color-gray-2); transition: color var(--transition); }
.footer-legal a:hover { color: var(--color-white); }

/* ---- 16. WhatsApp Float ---- */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 56px;
    height: 56px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.35);
    z-index: 800;
    transition: transform var(--transition), box-shadow var(--transition);
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 28px rgba(37, 211, 102, 0.5);
}

/* ---- 17. Makineler Sayfası ---- */
.page-hero {
    background: var(--color-dark-2);
    padding: 3.5rem 0;
    border-bottom: 1px solid var(--color-border);
}

.page-hero h1 { color: var(--color-white); margin-bottom: 0.5rem; }
.page-hero p { color: var(--color-gray); }

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--color-gray-2);
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.breadcrumb a { color: var(--color-gray-2); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--color-accent-light); }
.breadcrumb-sep { opacity: 0.5; }

/* Filter Bar */
.filter-bar {
    background: var(--color-white);
    border-bottom: 1px solid var(--color-light-2);
    padding: 1.25rem 0;
}

.filter-bar-inner {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.search-input-wrap {
    position: relative;
    flex: 1;
    min-width: 220px;
}

.search-input-wrap svg {
    position: absolute;
    left: 1rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--color-gray);
    pointer-events: none;
}

.search-input {
    width: 100%;
    padding: 0.6rem 1rem 0.6rem 2.75rem;
    border: 1px solid var(--color-light-2);
    border-radius: var(--radius);
    font-size: 0.875rem;
    background: var(--color-light);
    color: var(--color-text);
    transition: border-color var(--transition);
    outline: none;
}

.search-input:focus { border-color: var(--color-accent); background: var(--color-white); }

.filter-cats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.filter-cat-btn {
    padding: 0.45rem 1rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    border: 1px solid var(--color-light-2);
    background: var(--color-white);
    color: var(--color-text-light);
    transition: all var(--transition);
    cursor: pointer;
}

.filter-cat-btn:hover,
.filter-cat-btn.active {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

/* Pagination */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    margin-top: 3rem;
}

.page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text);
    border: 1px solid var(--color-light-2);
    transition: all var(--transition);
}

.page-link:hover,
.page-link.active {
    background: var(--color-accent);
    color: white;
    border-color: var(--color-accent);
}

/* ---- 18. Makine Detay ---- */
.machine-detail-grid {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 3rem;
    align-items: start;
}

.machine-gallery-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    background: var(--color-light);
    cursor: zoom-in;
}

.machine-gallery-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.machine-gallery-thumbs {
    display: flex;
    gap: 0.6rem;
    margin-top: 0.75rem;
    flex-wrap: wrap;
}

.gallery-thumb {
    width: 72px;
    height: 54px;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color var(--transition);
    flex-shrink: 0;
}

.gallery-thumb.active { border-color: var(--color-accent); }

.gallery-thumb img { width: 100%; height: 100%; object-fit: cover; }

/* Sidebar */
.machine-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

.machine-info-card {
    background: var(--color-light);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    border: 1px solid var(--color-light-2);
}

.machine-info-cat {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--color-accent);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.machine-info-name {
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--color-dark);
    line-height: 1.2;
    margin-bottom: 0.4rem;
}

.machine-info-model {
    font-size: 0.85rem;
    color: var(--color-gray-2);
    font-family: monospace;
    margin-bottom: 1rem;
}

.machine-info-desc {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.machine-cta-btns {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.machine-cta-btns .btn {
    justify-content: center;
    text-align: center;
}

/* Teknik Özellikler */
.features-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}

.features-table tr:not(:last-child) {
    border-bottom: 1px solid var(--color-light-2);
}

.features-table td {
    padding: 0.75rem 0.5rem;
    vertical-align: top;
}

.features-table td:first-child {
    width: 45%;
    font-weight: 600;
    color: var(--color-text);
}

.features-table td:last-child { color: var(--color-text-light); }

.features-table tr:hover td { background: rgba(var(--color-accent-rgb), 0.03); }

/* Tabs */
.tabs-nav {
    display: flex;
    border-bottom: 2px solid var(--color-light-2);
    margin-bottom: 2rem;
    overflow-x: auto;
    gap: 0;
}

.tab-btn {
    padding: 0.85rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-light);
    border-bottom: 2px solid transparent;
    margin-bottom: -2px;
    white-space: nowrap;
    transition: color var(--transition), border-color var(--transition);
    cursor: pointer;
    background: none;
}

.tab-btn.active { color: var(--color-accent); border-bottom-color: var(--color-accent); }
.tab-btn:hover { color: var(--color-dark); }

.tab-content { display: none; }
.tab-content.active { display: block; }

/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.95);
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.lightbox.active { display: flex; }

.lightbox-img {
    max-width: 90vw;
    max-height: 90vh;
    border-radius: var(--radius);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    opacity: 0.7;
    background: none;
    border: none;
    line-height: 1;
    transition: opacity var(--transition);
}

.lightbox-close:hover { opacity: 1; }

/* ---- 19. Form Styles ---- */
.form-section { background: var(--color-light); }

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

.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }

.form-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-label .req { color: var(--color-orange); margin-left: 2px; }

.form-control {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--color-light-2);
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-family: inherit;
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--transition);
    outline: none;
    width: 100%;
}

.form-control:focus { border-color: var(--color-accent); }
.form-control.error { border-color: #e53e3e; }

textarea.form-control { resize: vertical; min-height: 130px; }

.form-note { font-size: 0.78rem; color: var(--color-gray); }

.form-error {
    font-size: 0.8rem;
    color: #e53e3e;
    margin-top: -0.2rem;
}

.form-success {
    background: #d4edda;
    color: #155724;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
}

.kvkk-group { display: flex; align-items: flex-start; gap: 0.6rem; }
.kvkk-group input[type="checkbox"] { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; accent-color: var(--color-accent); cursor: pointer; }
.kvkk-group label { font-size: 0.82rem; color: var(--color-text-light); cursor: pointer; }
.kvkk-group a { color: var(--color-accent); }

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 3rem;
    align-items: start;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--color-light);
    border-radius: var(--radius-lg);
    margin-bottom: 1rem;
}

.contact-info-icon {
    width: 44px;
    height: 44px;
    background: var(--color-accent);
    color: white;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-text h5 { font-size: 0.85rem; font-weight: 700; color: var(--color-dark); margin-bottom: 0.2rem; font-family: var(--font-main); }
.contact-info-text a, .contact-info-text span { font-size: 0.9rem; color: var(--color-text-light); }
.contact-info-text a:hover { color: var(--color-accent); }

/* ---- 20. Kurumsal Sayfalar ---- */
.corporate-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 3rem;
    align-items: start;
}

.corporate-sidebar {
    position: sticky;
    top: calc(var(--header-height) + 1rem);
}

.corporate-nav {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--color-light-2);
}

.corporate-nav-item {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.25rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-text-light);
    border-left: 3px solid transparent;
    transition: all var(--transition);
}

.corporate-nav-item:hover { background: var(--color-light); color: var(--color-dark); }
.corporate-nav-item.active { border-left-color: var(--color-accent); color: var(--color-accent); background: rgba(var(--color-accent-rgb), 0.04); }

.corporate-content {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 2.25rem;
    border: 1px solid var(--color-light-2);
    min-height: auto;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
}

.corporate-content h2 { margin-bottom: 1.25rem; }
.corporate-content p { margin-bottom: 1rem; }
.corporate-content h3 { margin: 1.5rem 0 0.75rem; font-size: 1.1rem; }

/* ---- 21. Admin Panel ---- */
.admin-body {
    background: #f0f2f5;
    min-height: 100vh;
}

.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 260px;
    background: var(--color-dark-2);
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    overflow-y: auto;
    z-index: 100;
}

.admin-sidebar-logo {
    padding: 1.5rem 1.25rem;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.admin-sidebar-logo .logo-text .logo-main { font-size: 1.2rem; }

.admin-nav { padding: 1rem 0; flex: 1; }

.admin-nav-label {
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-gray-2);
    padding: 0.75rem 1.25rem 0.4rem;
}

.admin-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1.25rem;
    font-size: 0.875rem;
    color: var(--color-gray);
    transition: all var(--transition);
    position: relative;
}

.admin-nav-item:hover { color: var(--color-white); background: rgba(255,255,255,0.05); }

.admin-nav-item.active {
    color: var(--color-white);
    background: rgba(var(--color-accent-rgb), 0.15);
    border-right: 3px solid var(--color-accent);
}

.admin-nav-item svg { flex-shrink: 0; }

.admin-badge {
    margin-left: auto;
    background: var(--color-accent);
    color: white;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 10px;
}

.admin-main {
    margin-left: 260px;
    flex: 1;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.admin-topbar {
    background: var(--color-white);
    border-bottom: 1px solid #e2e8f0;
    padding: 0 1.5rem;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    top: 0;
    z-index: 50;
}

.admin-topbar h1 { font-size: 1.2rem; font-weight: 700; color: var(--color-dark); font-family: var(--font-main); }

.admin-topbar-right { display: flex; align-items: center; gap: 1rem; }

.admin-content { padding: 2rem 1.5rem; flex: 1; }

/* Admin Cards */
.admin-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    overflow: hidden;
}

.admin-card-header {
    padding: 1.25rem 1.5rem;
    border-bottom: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.admin-card-header h3 { font-size: 1rem; font-weight: 700; color: var(--color-dark); font-family: var(--font-main); }
.admin-card-body { padding: 1.5rem; }

/* Stat Cards */
.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.admin-stat-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 1.5rem;
    border: 1px solid #e2e8f0;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.admin-stat-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.admin-stat-icon.blue { background: rgba(var(--color-accent-rgb), 0.1); color: var(--color-accent); }
.admin-stat-icon.green { background: rgba(16, 185, 129, 0.1); color: #10b981; }
.admin-stat-icon.orange { background: rgba(245, 158, 11, 0.1); color: #f59e0b; }
.admin-stat-icon.red { background: rgba(239, 68, 68, 0.1); color: #ef4444; }

.admin-stat-num { font-size: 1.75rem; font-weight: 800; color: var(--color-dark); line-height: 1; }
.admin-stat-label { font-size: 0.82rem; color: var(--color-text-light); margin-top: 0.2rem; }

/* Admin Table */
.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.875rem;
}

.admin-table th {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--color-text-light);
    background: #f8fafc;
    border-bottom: 1px solid #e2e8f0;
}

.admin-table td {
    padding: 0.9rem 1rem;
    border-bottom: 1px solid #f1f5f9;
    color: var(--color-text);
    vertical-align: middle;
}

.admin-table tr:last-child td { border-bottom: none; }
.admin-table tr:hover td { background: #f8fafc; }

/* Admin Form */
.admin-form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.admin-form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.admin-form-group.full { grid-column: 1 / -1; }

.admin-form-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-text);
}

.admin-form-control {
    padding: 0.65rem 0.9rem;
    border: 1px solid #e2e8f0;
    border-radius: var(--radius);
    font-size: 0.875rem;
    font-family: inherit;
    color: var(--color-text);
    background: var(--color-white);
    transition: border-color var(--transition);
    outline: none;
    width: 100%;
}

.admin-form-control:focus { border-color: var(--color-accent); }

textarea.admin-form-control { resize: vertical; min-height: 100px; }

/* Badges */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.65rem;
    border-radius: 2rem;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.badge-success { background: #d1fae5; color: #065f46; }
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-info    { background: #dbeafe; color: #1e40af; }
.badge-danger  { background: #fee2e2; color: #991b1b; }
.badge-gray    { background: #f1f5f9; color: #475569; }

/* Action Buttons */
.action-btns { display: flex; align-items: center; gap: 0.4rem; }

.action-btn {
    width: 32px;
    height: 32px;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    transition: background var(--transition), color var(--transition);
    cursor: pointer;
}

.action-btn-edit { background: #dbeafe; color: #1e40af; }
.action-btn-edit:hover { background: #1e40af; color: white; }
.action-btn-delete { background: #fee2e2; color: #991b1b; }
.action-btn-delete:hover { background: #991b1b; color: white; }
.action-btn-view { background: #d1fae5; color: #065f46; }
.action-btn-view:hover { background: #065f46; color: white; }

/* Feature Row (dinamik teknik özellik) */
.feature-row {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 0.6rem;
    align-items: center;
    margin-bottom: 0.6rem;
}

.remove-feature-btn {
    width: 32px;
    height: 32px;
    background: #fee2e2;
    color: #991b1b;
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    transition: background var(--transition);
}

.remove-feature-btn:hover { background: #991b1b; color: white; }

/* Alert */
.alert {
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius);
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    border-left: 4px solid;
}

.alert-success { background: #d1fae5; color: #065f46; border-color: #10b981; }
.alert-error   { background: #fee2e2; color: #991b1b; border-color: #ef4444; }
.alert-info    { background: #dbeafe; color: #1e40af; border-color: #3b82f6; }
.alert-warning { background: #fef3c7; color: #92400e; border-color: #f59e0b; }

/* Image Upload Preview */
.image-upload-area {
    border: 2px dashed var(--color-light-2);
    border-radius: var(--radius-lg);
    padding: 2rem;
    text-align: center;
    cursor: pointer;
    transition: border-color var(--transition), background var(--transition);
}

.image-upload-area:hover { border-color: var(--color-accent); background: rgba(var(--color-accent-rgb), 0.02); }
.image-upload-area.dragover { border-color: var(--color-accent); background: rgba(var(--color-accent-rgb), 0.05); }

.upload-preview-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1rem;
}

.upload-preview-item {
    position: relative;
    width: 80px;
    height: 60px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--color-light-2);
}

.upload-preview-item img { width: 100%; height: 100%; object-fit: cover; }

.upload-preview-remove {
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: rgba(0,0,0,0.7);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.65rem;
    cursor: pointer;
    line-height: 1;
    transition: background var(--transition);
}

.upload-preview-remove:hover { background: #ef4444; }

/* Switch Toggle */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 44px;
    height: 24px;
}

.toggle-switch input { opacity: 0; width: 0; height: 0; }

.toggle-slider {
    position: absolute;
    inset: 0;
    background: #cbd5e1;
    border-radius: 24px;
    cursor: pointer;
    transition: background var(--transition);
}

.toggle-slider::before {
    content: '';
    position: absolute;
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 50%;
    top: 3px;
    left: 3px;
    transition: transform var(--transition);
    box-shadow: 0 1px 3px rgba(0,0,0,0.2);
}

.toggle-switch input:checked + .toggle-slider { background: var(--color-accent); }
.toggle-switch input:checked + .toggle-slider::before { transform: translateX(20px); }

/* ---- 22. Scroll Reveal ---- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

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

/* ---- 23. Responsive ---- */
@media (max-width: 1100px) {
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .machines-grid { grid-template-columns: repeat(2, 1fr); }
    .admin-stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 900px) {
    .why-grid { grid-template-columns: repeat(2, 1fr); }
    .videos-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 2rem; }
    .about-features { grid-template-columns: 1fr 1fr; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .machine-detail-grid { grid-template-columns: 1fr; }
    .machine-sidebar { position: static; }
    .corporate-layout { grid-template-columns: 1fr; }
    .corporate-sidebar { position: static; }
    .contact-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    :root { --header-height: 64px; }
    
    .header-top { display: none; }
    
    .hamburger { display: flex; }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 300px;
        height: 100vh;
        background: var(--color-dark-2);
        flex-direction: column;
        justify-content: flex-start;
        padding: 5rem 0 2rem;
        z-index: 950;
        transition: right 0.3s ease;
        border-left: 1px solid var(--color-border);
        overflow-y: auto;
        align-items: stretch;
    }
    
    .nav-menu.open { right: 0; }
    
    .nav-overlay { display: block; opacity: 0; pointer-events: none; transition: opacity 0.3s ease; }
    .nav-overlay.active { opacity: 1; pointer-events: all; }
    
    .nav-menu > li > a {
        height: auto;
        padding: 0.9rem 1.5rem;
        border-bottom: 1px solid rgba(255,255,255,0.06);
    }
    
    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        background: rgba(0,0,0,0.15);
        border: none;
        border-top: none;
        border-radius: 0;
        box-shadow: none;
        display: none;
        padding: 0;
    }
    
    .has-dropdown.mobile-open > .dropdown-menu { display: block; }
    .dropdown-menu li a { padding: 0.7rem 2rem; border-bottom: 1px solid rgba(255,255,255,0.04); }
    
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .machines-grid { grid-template-columns: 1fr; }
    .why-grid { grid-template-columns: 1fr; }
    .videos-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .form-grid { grid-template-columns: 1fr; }
    .admin-form-grid { grid-template-columns: 1fr; }
    .about-features { grid-template-columns: 1fr; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    
    .hero { max-height: 680px; }
    
    .section { padding: 3.5rem 0; }
    
    .admin-sidebar { transform: translateX(-100%); transition: transform 0.3s ease; }
    .admin-sidebar.open { transform: translateX(0); }
    .admin-main { margin-left: 0; }
    .admin-stats-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .categories-grid { grid-template-columns: 1fr; }
    .admin-stats-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; width: 100%; }
    .hero-actions .btn { width: 100%; justify-content: center; }
    .machine-gallery-thumbs { gap: 0.4rem; }
    .gallery-thumb { width: 60px; height: 45px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ---- 24. Print / Accessibility ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}

.sr-only {
    position: absolute; width: 1px; height: 1px;
    padding: 0; margin: -1px; overflow: hidden;
    clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* Scroll to top */
.scroll-top-btn {
    position: fixed;
    bottom: 5.5rem;
    right: 2rem;
    width: 42px;
    height: 42px;
    background: var(--color-dark-3);
    color: var(--color-white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 700;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition), transform var(--transition);
    border: 1px solid var(--color-border);
    cursor: pointer;
}

.scroll-top-btn.visible { opacity: 1; pointer-events: all; }
.scroll-top-btn:hover { background: var(--color-accent); border-color: var(--color-accent); transform: translateY(-2px); }

/* =================== DİL SEÇİCİ =================== */
.lang-switcher {
    position: relative;
    display: inline-flex;
    align-items: center;
}

.lang-current {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2);
    color: var(--color-white);
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.78rem;
    font-weight: 600;
    cursor: pointer;
    letter-spacing: 0.04em;
    transition: background var(--transition), border-color var(--transition);
    white-space: nowrap;
}
.lang-current:hover { background: rgba(255,255,255,0.22); border-color: rgba(255,255,255,0.4); }
.lang-current svg { transition: transform 0.2s; }
.lang-switcher.open .lang-current svg { transform: rotate(180deg); }

.lang-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius);
    box-shadow: 0 8px 24px rgba(0,0,0,0.15);
    min-width: 140px;
    list-style: none;
    padding: 4px 0;
    z-index: 9999;
    animation: fadeInDown 0.15s ease;
}
.lang-switcher.open .lang-dropdown { display: block; }

.lang-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 14px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-dark);
    text-decoration: none;
    transition: background var(--transition), color var(--transition);
    white-space: nowrap;
}
.lang-option:hover { background: var(--color-bg); color: var(--color-accent); }
.lang-option.active { color: var(--color-accent); font-weight: 700; }

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

/* Header top sağ */
.header-top-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* =================== RTL ARABİC FULL SUPPORT =================== */
[dir="rtl"] {
    font-family: 'Noto Sans Arabic', 'Inter', 'Arial', sans-serif;
    text-align: right;
}

/* Genel layout */
[dir="rtl"] .nav-menu { direction: rtl; flex-direction: row-reverse; }
[dir="rtl"] .dropdown-menu { right: auto; left: 0; text-align: right; }
[dir="rtl"] .lang-dropdown { right: auto; left: 0; }
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-contact-list li { direction: rtl; }

/* Header */
[dir="rtl"] .header-top-inner { flex-direction: row-reverse; }
[dir="rtl"] .header-contact-info { flex-direction: row-reverse; }
[dir="rtl"] .navbar-inner { flex-direction: row-reverse; }
[dir="rtl"] .navbar-actions { flex-direction: row-reverse; }
[dir="rtl"] .header-top-right { flex-direction: row-reverse; }

/* Hero */
[dir="rtl"] .hero-content { text-align: right; }
[dir="rtl"] .hero-actions { flex-direction: row-reverse; justify-content: flex-end; }
[dir="rtl"] .hero-tag { text-align: right; }

/* Stats */
[dir="rtl"] .stats-grid { direction: rtl; }
[dir="rtl"] .stat-item { text-align: right; }

/* Section headers */
[dir="rtl"] .section-header { text-align: right; }
[dir="rtl"] .section-header p { margin: 0; }

/* About */
[dir="rtl"] .about-grid { direction: rtl; }
[dir="rtl"] .about-text { text-align: right; }
[dir="rtl"] .about-features { direction: rtl; }
[dir="rtl"] .about-feature-item { flex-direction: row-reverse; text-align: right; }

/* Cards ve grids */
[dir="rtl"] .machine-card-content { text-align: right; }
[dir="rtl"] .machine-card-meta { flex-direction: row-reverse; }
[dir="rtl"] .category-card { text-align: right; }
[dir="rtl"] .why-card { text-align: right; }
[dir="rtl"] .news-card-content { text-align: right; }

/* Makine detay */
[dir="rtl"] .md-main-grid { direction: rtl; }
[dir="rtl"] .md-info-card { text-align: right; }
[dir="rtl"] .md-specs-table td:first-child { text-align: right; }
[dir="rtl"] .tab-btn { direction: rtl; }
[dir="rtl"] .tabs-nav { flex-direction: row-reverse; }

/* Footer */
[dir="rtl"] .footer-main { direction: rtl; }
[dir="rtl"] .footer-col { text-align: right; }
[dir="rtl"] .footer-links li a { text-align: right; }
[dir="rtl"] .footer-contact-list li { flex-direction: row-reverse; gap: 0.5rem; }
[dir="rtl"] .footer-bottom-inner { flex-direction: row-reverse; }
[dir="rtl"] .footer-social { flex-direction: row-reverse; }

/* Breadcrumb */
[dir="rtl"] .breadcrumb { flex-direction: row-reverse; }

/* Contact */
[dir="rtl"] .contact-grid { direction: rtl; }
[dir="rtl"] .contact-info-item { flex-direction: row-reverse; text-align: right; }
[dir="rtl"] .contact-info-text { text-align: right; }

/* Forms */
[dir="rtl"] .form-grid { direction: rtl; }
[dir="rtl"] .form-group { text-align: right; }
[dir="rtl"] .form-label { text-align: right; display: block; }
[dir="rtl"] input, [dir="rtl"] textarea, [dir="rtl"] select { text-align: right; direction: rtl; }

/* Page hero */
[dir="rtl"] .page-hero { text-align: right; }

/* Filter buttons */
[dir="rtl"] .filter-bar { flex-direction: row-reverse; justify-content: flex-end; }

/* Scroll top button */
[dir="rtl"] .scroll-top-btn { right: auto; left: 2rem; }

/* WhatsApp float */
[dir="rtl"] .whatsapp-float { right: auto; left: 1.5rem; }

/* Arabic font for Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+Arabic:wght@300;400;500;600;700;800&display=swap');


/* =================== HAKKIMIZDA MEDYA SLIDER =================== */
.about-image-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4 / 3;
    min-height: 380px;
    max-height: 480px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #0f172a;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-media-slides {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-media-slide {
    display: none;
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    align-items: center;
    justify-content: center;
}

.about-media-slide.active {
    display: flex;
    opacity: 1;
}

.about-media-slide img,
.about-media-slide video,
.about-media-slide iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
    border-radius: var(--radius-lg);
}

.about-slide-label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: rgba(15, 23, 42, 0.82);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 10;
}

.about-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.85);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    color: var(--color-dark);
    font-size: 1.1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 20;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
}
.about-nav-btn:hover {
    background: var(--color-accent);
    color: #fff;
    transform: translateY(-50%) scale(1.08);
}
.about-nav-btn.prev { left: 1rem; }
.about-nav-btn.next { right: 1rem; }

.about-media-dots {
    position: absolute;
    bottom: 1rem;
    right: 1.5rem;
    display: flex;
    gap: 6px;
    z-index: 20;
}

.about-media-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.45);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.about-media-dot.active,
.about-media-dot:hover {
    background: var(--color-accent);
    transform: scale(1.3);
}


/* =================== İŞLENEN MAHSULLER (Crops Design System) =================== */

/* Topbar Ticker / Badges */
.header-crop-ticker {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.8rem;
}
.crop-ticker-label {
    color: var(--color-gray);
    font-weight: 600;
    margin-right: 0.2rem;
}
.crop-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.2rem 0.65rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.08);
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    transition: all 0.25s ease;
    border: 1px solid rgba(255,255,255,0.12);
}
.crop-pill:hover {
    background: var(--color-accent);
    color: #fff;
    border-color: var(--color-accent);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(226,0,69,0.3);
}
.crop-pill-pancar {
    background: rgba(168,85,247,0.18);
    color: #e9d5ff;
    border-color: rgba(168,85,247,0.35);
    font-weight: 700;
}
.crop-pill-pancar:hover {
    background: #9333ea;
    color: #fff;
    border-color: #9333ea;
    box-shadow: 0 4px 14px rgba(147,51,234,0.4);
}

/* Hero Crop Badges */
.hero-crop-badges {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-top: 1.25rem;
    margin-bottom: 0.75rem;
}
.hero-crop-title {
    color: #94a3b8;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-right: 0.25rem;
}
.hero-crop-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.4rem 0.9rem;
    border-radius: 24px;
    background: rgba(15, 23, 42, 0.65);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.15);
    color: #f8fafc;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}
.hero-crop-badge:hover {
    background: rgba(226,0,69,0.85);
    color: #fff;
    border-color: var(--color-accent);
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 6px 20px rgba(226,0,69,0.35);
}
.hero-crop-badge-pancar {
    background: linear-gradient(135deg, rgba(88,28,135,0.75), rgba(126,34,206,0.75));
    border-color: rgba(192,132,252,0.45);
    color: #faf5ff;
}
.hero-crop-badge-pancar:hover {
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    border-color: #c084fc;
    box-shadow: 0 6px 24px rgba(168,85,247,0.45);
}
.hero-crop-badge-pancar em {
    font-style: normal;
    font-size: 0.72rem;
    padding: 1px 6px;
    background: rgba(255,255,255,0.22);
    border-radius: 10px;
    font-weight: 700;
}

/* Crop Filter Container in Makineler */
.crop-filter-container {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    border: 1px solid #e2e8f0;
    margin-bottom: 1.5rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.03);
}
.crop-tabs-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.crop-tabs-title {
    font-size: 0.9rem;
    font-weight: 700;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.crop-tabs-list {
    display: flex;
    gap: 0.6rem;
    flex-wrap: wrap;
}
.crop-tab-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.55rem 1.1rem;
    border-radius: 24px;
    background: #f8fafc;
    border: 1px solid #cbd5e1;
    color: #334155;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
}
.crop-tab-btn:hover {
    background: #f1f5f9;
    border-color: #94a3b8;
    color: #0f172a;
}
.crop-tab-btn.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: #fff;
    box-shadow: 0 4px 14px rgba(226,0,69,0.3);
}
.crop-tab-pancar {
    border-color: #c084fc;
    color: #7e22ce;
    background: #faf5ff;
}
.crop-tab-pancar:hover {
    background: #f3e8ff;
    border-color: #a855f7;
    color: #6b21a8;
}
.crop-tab-pancar.active {
    background: linear-gradient(135deg, #7e22ce, #a855f7);
    border-color: #9333ea;
    color: #fff;
    box-shadow: 0 4px 16px rgba(147,51,234,0.35);
}
.pancar-star {
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 10px;
    background: #e9d5ff;
    color: #6b21a8;
    font-weight: 800;
}
.crop-tab-pancar.active .pancar-star {
    background: rgba(255,255,255,0.25);
    color: #fff;
}

/* Homepage Crops Showcase Grid */
.crops-showcase-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (max-width: 1024px) {
    .crops-showcase-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .crops-showcase-grid { grid-template-columns: 1fr; }
}
.crop-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    border: 1px solid #e2e8f0;
    padding: 1.75rem 1.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4,0,0.2,1);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.crop-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(226,0,69,0.3);
}
.crop-card-pancar {
    border-color: rgba(168,85,247,0.35);
    background: linear-gradient(180deg, #ffffff 0%, #faf5ff 100%);
}
.crop-card-pancar:hover {
    border-color: #a855f7;
    box-shadow: 0 12px 30px rgba(147,51,234,0.15);
}
.crop-card-icon {
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 1rem;
}
.crop-card-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 3px 8px;
    border-radius: 12px;
    background: #f1f5f9;
    color: #475569;
    text-transform: uppercase;
}
.crop-card-pancar .crop-card-badge {
    background: #f3e8ff;
    color: #7e22ce;
}
.crop-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--color-dark);
    margin-bottom: 0.6rem;
    font-family: var(--font-heading);
}
.crop-card-desc {
    font-size: 0.88rem;
    color: var(--color-text-light);
    line-height: 1.5;
    margin-bottom: 1.25rem;
    flex: 1;
}
.crop-card-features {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
    font-size: 0.82rem;
    color: #334155;
}
.crop-card-features li {
    position: relative;
    padding-left: 1.2rem;
    margin-bottom: 0.4rem;
}
.crop-card-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--color-accent);
    font-weight: 800;
}
.crop-card-pancar .crop-card-features li::before {
    color: #9333ea;
}
.crop-card-btn {
    margin-top: auto;
    width: 100%;
    justify-content: center;
}

/* =================== ULTRA RESPONSIVE & FLUID LAYOUT ENHANCEMENTS =================== */

/* 1. Viewport & Prevent Horizontal Overflow */
html, body {
    width: 100%;
    max-width: 100vw;
    overflow-x: hidden !important;
    -webkit-tap-highlight-color: transparent;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

/* 2. Responsive Images, Videos, Tables & Containers */
img, video, canvas, svg {
    max-width: 100%;
    height: auto;
}

.table-responsive, .admin-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
}

/* 3. Fluid Responsive Containers */
.container {
    width: 100%;
    max-width: 1280px;
    margin-left: auto;
    margin-right: auto;
    padding-left: clamp(1rem, 3vw, 2rem);
    padding-right: clamp(1rem, 3vw, 2rem);
}

/* 4. Responsive Navigation Header */
@media (max-width: 1024px) {
    .header-contact-info {
        display: none;
    }
    .site-header .header-top {
        padding: 0.5rem 0;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: clamp(280px, 80vw, 360px);
        height: 100vh;
        background: #0f172a;
        padding: 5rem 1.5rem 2rem;
        flex-direction: column;
        gap: 0;
        z-index: 999;
        transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-shadow: -10px 0 30px rgba(0,0,0,0.5);
    }
    .nav-menu.open {
        right: 0;
    }
    .nav-menu > li > a {
        color: #f8fafc;
        font-size: 1.05rem;
        padding: 1rem 0;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
}

/* 5. Fluid Responsive Grid Layouts */
@media (max-width: 1024px) {
    .machines-grid, .categories-grid, .why-grid, .videos-grid, .news-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.25rem !important;
    }
    .md-main-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
    }
}

@media (max-width: 640px) {
    /* ---- GENEL LAYOUT ---- */
    .container { padding: 0 1rem; }
    .section { padding: 2.5rem 0 !important; }
    .section-sm { padding: 1.75rem 0 !important; }
    .section-header { margin-bottom: 2rem; }
    .section-header h2 { font-size: clamp(1.3rem, 5vw, 1.75rem) !important; }
    .section-header p { font-size: 0.9rem !important; }
    .section-header .section-tag-lg {
        font-size: 0.85rem !important;
        padding: 0.35rem 0.9rem !important;
        border-radius: 20px !important;
        letter-spacing: 0.06em !important;
    }

    /* ---- GRİDLER ---- */
    .machines-grid, .categories-grid, .why-grid,
    .videos-grid, .news-grid, .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 0.85rem !important;
    }
    .stats-grid { grid-template-columns: 1fr 1fr !important; gap: 0.75rem !important; }
    .about-features { grid-template-columns: 1fr !important; gap: 0.75rem !important; }

    /* ---- HERO ---- */
    .hero {
        min-height: 100svh;
        max-height: none;
        padding: 0;
        height: 100svh;
    }
    .hero-video-wrap video { object-position: center center; }
    .categories-section { background-attachment: scroll !important; }
    .hero-content { padding: 0 0.25rem; }
    .hero-content h1 {
        font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
        line-height: 1.15 !important;
        margin-bottom: 0.85rem;
    }
    .hero-desc {
        font-size: clamp(0.85rem, 3.5vw, 1rem) !important;
        margin-bottom: 1.5rem;
        max-width: 100%;
    }
    .hero-actions {
        flex-direction: column;
        width: 100%;
        gap: 0.65rem;
        align-items: stretch;
    }
    .hero-actions .btn,
    .hero-actions .btn-hero-cta {
        width: 100%;
        justify-content: center;
        padding: 0.7rem 1rem !important;
        font-size: 0.9rem !important;
        border-radius: 8px !important;
        white-space: normal;
        text-align: center;
    }
    .hero-actions .btn-hero-cta svg { width: 16px !important; height: 16px !important; }
    .btn-lg { padding: 0.65rem 1.1rem !important; font-size: 0.875rem !important; }
    .btn-hero-cta { font-size: 0.9rem !important; padding: 0.7rem 1rem !important; }
    .hero-scroll { display: none; }

    /* ---- NAVBAR ---- */
    .navbar { border-radius: 16px; margin: 0 0.5rem; width: calc(100% - 1rem); }
    .navbar-inner { height: 56px; padding: 0 0.9rem; }
    .navbar-logo img { height: 38px; }
    .logo-main { font-size: 1.25rem !important; }
    .logo-sub { font-size: 0.55rem !important; }
    .btn-teklif { padding: 0.45rem 0.85rem; font-size: 0.78rem; }
    .lang-switcher { font-size: 0.78rem; gap: 0.25rem; }
    .nav-menu { width: 85vw; max-width: 320px; }

    /* ---- STATİSTİKLER ---- */
    .stats-grid { gap: 0.65rem !important; }
    .stat-item { padding: 1.25rem 1rem; }
    .stat-number { font-size: clamp(1.8rem, 7vw, 2.5rem) !important; }
    .stat-label { font-size: 0.75rem; }

    /* ---- ABOUT ---- */
    .about-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .about-image-wrap { aspect-ratio: 16/9; }
    .about-badge { padding: 0.75rem 1rem; bottom: 0.75rem; left: 0.75rem; }
    .about-badge-num { font-size: 1.5rem; }
    .about-content h2 { font-size: clamp(1.3rem, 5vw, 1.75rem) !important; }
    .about-features { grid-template-columns: 1fr !important; }

    /* ---- MAKİNE KARTLARI ---- */
    .machine-card-img-wrap { aspect-ratio: 16/9; }
    .machine-card-body { padding: 1rem; }
    .machine-card-name { font-size: 1rem; }
    .machine-card-desc { font-size: 0.82rem; -webkit-line-clamp: 2; }
    .machine-card-footer { padding-top: 0.65rem; }

    /* ---- KATEGORİ KARTLARI ---- */
    .cat-card { aspect-ratio: 16/9; }
    .cat-card-body { padding: 1rem; }
    .cat-card-name { font-size: 1rem; }
    .cat-card-btn { opacity: 1 !important; transform: none !important; }

    /* ---- VİDEO ---- */
    .video-card { aspect-ratio: 16/9; }
    .video-play-btn { width: 48px; height: 48px; }
    .video-card-title { font-size: 0.8rem; padding: 0.75rem; }
    .video-modal-inner { aspect-ratio: 16/9; border-radius: 8px; }
    .video-modal { padding: 0.5rem; }

    /* ---- WHY SECTION ---- */
    .why-card { padding: 1.25rem 1rem; }
    .why-card h4 { font-size: 0.95rem; }
    .why-card p { font-size: 0.82rem; }
    .why-card-icon { width: 42px; height: 42px; }

    /* ---- CTA SEKSİYONU ---- */
    .cta-section { padding: 3rem 0 !important; }
    .cta-inner h2 { font-size: clamp(1.2rem, 5vw, 1.6rem) !important; }
    .cta-inner p { font-size: 0.88rem; }

    /* ---- FOOTER ---- */
    .footer { padding: 2.5rem 0 1.25rem; }
    .footer-grid { gap: 1.25rem !important; }
    .footer-bottom-inner { flex-direction: column; text-align: center; gap: 0.75rem; }
    .footer-bottom-links { gap: 0.75rem; flex-wrap: wrap; justify-content: center; }

    /* ---- MAKİNE DETAY ---- */
    .md-main-grid { grid-template-columns: 1fr !important; gap: 1.25rem !important; }
    .md-gallery-main-img-wrap { aspect-ratio: 4/3; }
    .md-info-card { padding: 1rem; }
    .md-key-stats { grid-template-columns: repeat(2, 1fr) !important; gap: 0.6rem !important; }
    .md-stat-value { font-size: 1.2rem; }
    .md-tab-btn { font-size: 0.78rem; padding: 0.6rem 0.75rem; }
    .md-gallery-thumbs-wrap { gap: 0.35rem; }
    .md-gallery-thumb { width: 56px; height: 42px; }

    /* ---- İLETİŞİM ---- */
    .contact-grid { grid-template-columns: 1fr !important; gap: 1.5rem; }
    .form-grid { grid-template-columns: 1fr !important; }
    .contact-info-card { padding: 1.25rem; }
    .map-wrap { height: 220px; }

    /* ---- SCROLL TOP ---- */
    .scroll-top-btn { width: 38px; height: 38px; bottom: 1rem; right: 1rem; }
}

/* ---- TABLET (641px - 1024px) ---- */
@media (min-width: 641px) and (max-width: 1024px) {
    .container { padding: 0 1.25rem; }
    .categories-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .machines-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .why-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .videos-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .about-grid { grid-template-columns: 1fr !important; gap: 2rem; }
    .about-image-wrap { aspect-ratio: 16/9; }
    .hero { max-height: 75vh; }
    .hero-content h1 { font-size: clamp(1.8rem, 4vw, 2.8rem) !important; }
    .md-main-grid { grid-template-columns: 1fr !important; }
    .categories-section { background-attachment: scroll !important; }
}

