/**
 * FRONTEND CSS
 * Modern, Premium, Minimal Tasarım
 */

:root {
    --primary: #c28e3e;
    --secondary: #000000;
    --tertiary: #949399;
    --light: #f9f9f9;
    --border: #e0e0e0;
    --text: #333;
    --text-light: #666;
}

/* RESET & TEMEL */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text);
    background: white;
    overflow-x: hidden;
}

code {
    background: var(--light);
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 0.9em;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary);
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* HEADER */
.header {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(194, 142, 62, 0.1);
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.header--hidden {
    transform: translateY(-110%);
}

.header--scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
}

.header__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 8px 0 12px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    margin-bottom: 14px;
}

.header__meta-left {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.meta-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text);
    font-weight: 600;
    font-size: 13px;
}

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

.header__meta-right {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.social-link {
    width: 34px;
    height: 34px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(0, 0, 0, 0.02);
    color: var(--secondary);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.social-link:hover {
    transform: translateY(-1px);
    border-color: rgba(194, 142, 62, 0.35);
}

.logo {
    flex: 0 0 auto;
}

.logo h1 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 5px;
    font-weight: 700;
}

.logo p {
    font-size: 13px;
    color: var(--tertiary);
    font-weight: 500;
}

.nav {
    display: flex;
    gap: 30px;
    flex: 1;
    align-items: center;
}

.nav__link {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
    color: var(--text);
    position: relative;
    transition: color 0.3s ease;
    text-decoration: none;
}

.nav__link:after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2.5px;
    background: linear-gradient(90deg, var(--primary), #a87c2e);
    transition: width 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-radius: 2px;
}

.nav__link:hover:after,
.nav__link.active:after {
    width: 100%;
}

.nav__link--admin {
    background: var(--primary);
    color: white;
    padding: 8px 16px;
    border-radius: 5px;
}

.nav__link--admin:after {
    display: none;
}

.site-logo {
    max-height: 55px;
    width: auto;
    display: block;
    margin-bottom: 10px;
}

.logo-text {
    margin-top: 5px;
    font-size: 13px;
    color: var(--tertiary);
}

/* MOBILE MENU */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.mobile-menu-toggle span {
    display: block;
    width: 100%;
    height: 3px;
    background: var(--secondary);
    border-radius: 2px;
    transition: all 0.3s ease;
    transform-origin: center;
}

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

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

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

.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    z-index: 1100;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    opacity: 0;
    visibility: hidden;
}

.mobile-menu.active {
    transform: translateX(0);
    opacity: 1;
    visibility: visible;
}

.mobile-menu__close {
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    border: none;
    font-size: 32px;
    color: var(--secondary);
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.mobile-menu__close:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.1);
}

.mobile-menu__nav {
    display: flex;
    flex-direction: column;
    gap: 40px;
    text-align: center;
}

.mobile-menu__link {
    font-size: 24px;
    font-weight: 600;
    color: var(--secondary);
    text-decoration: none;
    transition: color 0.3s ease;
    position: relative;
}

/* SECTION BADGE (Küçük etiket) */
.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(194, 142, 62, 0.12);
    border: 1px solid rgba(194, 142, 62, 0.18);
    color: var(--secondary);
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 14px;
}

.section-badge i {
    color: var(--primary);
    font-size: 16px;
}

/* ABOUT (Ana sayfa + hakkımızda) */
.about-simple {
    padding: 84px 0;
    background: linear-gradient(180deg, #ffffff 0%, rgba(194, 142, 62, 0.06) 100%);
}

.about-simple .about-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 44px;
    align-items: center;
}

.about-simple .about-content h2 {
    font-size: 34px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--secondary);
    margin-bottom: 12px;
}

.about-simple .about-content .lead {
    font-size: 16px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-features {
    display: grid;
    gap: 14px;
    margin: 18px 0 22px;
}

.about-features .feature {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 12px;
    align-items: start;
    padding: 14px 14px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.06);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

.about-features .feature i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
}

.about-features .feature strong {
    display: inline-block;
    color: var(--secondary);
    font-weight: 700;
    margin-bottom: 2px;
}

.about-features .feature small {
    color: var(--text-light);
}

.about-highlights {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-top: 18px;
}

.about-highlights .highlight {
    padding: 14px 14px;
    border-radius: 16px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.about-highlights .highlight__value {
    font-size: 22px;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--secondary);
}

.about-highlights .highlight__label {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.about-simple .about-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 22px 50px rgba(0, 0, 0, 0.14);
    background: #0b1220;
}

/* CONTACT (İletişim sayfası) iyileştirme */
.contact-wrapper--v2 {
    margin-top: 26px;
}

.contact-wrapper--v2 .lead {
    color: var(--text-light);
}

/* Mobil uyum */
@media (max-width: 900px) {
    .about-simple {
        padding: 64px 0;
    }
    .about-simple .about-grid {
        grid-template-columns: 1fr;
        gap: 26px;
    }
    .about-simple .about-content h2 {
        font-size: 28px;
    }
    .about-highlights {
        grid-template-columns: 1fr;
    }
}

/* CONTACT PAGE (v3) - scoped */
.contact-page {
    padding: 26px 0 84px;
}

.contact-page__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 20px;
    align-items: start;
}

.contact-card {
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 22px;
    box-shadow: 0 20px 46px rgba(0, 0, 0, 0.10);
    padding: 20px;
}

.contact-card--visual {
    padding: 0;
    overflow: hidden;
}

.contact-card--visual img {
    width: 100%;
    height: auto;
    display: block;
}

.contact-card--info h2,
.contact-card--form h2 {
    font-size: 26px;
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 10px;
    color: var(--secondary);
}

.contact-card .lead {
    color: var(--text-light);
    margin-bottom: 16px;
}

.contact-quick-actions {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin: 14px 0 18px;
}

.quick-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 12px;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    background: rgba(0, 0, 0, 0.02);
    color: var(--secondary);
    font-weight: 700;
    transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.quick-btn i {
    color: var(--primary);
}

.quick-btn:hover {
    transform: translateY(-1px);
    border-color: rgba(194, 142, 62, 0.35);
    box-shadow: 0 14px 26px rgba(0, 0, 0, 0.10);
}

.contact-card--form .contact-form {
    margin-top: 10px;
}

.form-group--consent .checkbox {
    display: grid;
    grid-template-columns: 18px 1fr;
    gap: 10px;
    align-items: start;
    font-size: 13px;
    color: var(--text-light);
}

.form-group--consent input[type="checkbox"] {
    margin-top: 3px;
}

.contact-card--map {
    margin-top: 20px;
    padding: 18px;
}

.contact-card__header h3 {
    font-size: 18px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 6px;
}

.contact-card__header p {
    margin-bottom: 12px;
    color: var(--text-light);
    font-size: 13px;
}

.contact-card--map iframe {
    width: 100%;
    border: 0;
    border-radius: 16px;
}

@media (max-width: 900px) {
    .contact-page {
        padding: 10px 0 64px;
    }
    .contact-page__grid {
        grid-template-columns: 1fr;
    }
    .contact-quick-actions {
        grid-template-columns: 1fr;
    }
}

/* ABOUT PAGE values (sade) */
.about-page-values {
    padding: 72px 0 40px;
}

.about-page-values__header h2 {
    font-size: 28px;
    letter-spacing: -0.02em;
    color: var(--secondary);
    margin-bottom: 8px;
}

.about-page-values__header p {
    color: var(--text-light);
    margin-bottom: 18px;
}

.about-page-values__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.value-card {
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 18px;
}

.value-card__icon {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: rgba(194, 142, 62, 0.14);
    border: 1px solid rgba(194, 142, 62, 0.22);
    margin-bottom: 12px;
}

.value-card__icon i {
    color: var(--primary);
    font-size: 18px;
}

.value-card h3 {
    font-size: 16px;
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 6px;
}

.value-card p {
    color: var(--text-light);
    font-size: 14px;
}

.about-page-values__cta {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 18px;
}

/* CORPORATE (Misyon / Vizyon) */
.corporate-panels {
    padding: 28px 0 10px;
}

.corporate-panels__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.panel {
    border-radius: 22px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.10);
    padding: 20px;
}

.panel__icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    display: grid;
    place-items: center;
    background: rgba(194, 142, 62, 0.14);
    border: 1px solid rgba(194, 142, 62, 0.22);
    margin-bottom: 12px;
}

.panel__icon i {
    color: var(--primary);
    font-size: 18px;
}

.panel h2 {
    font-size: 18px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 8px;
}

.panel p {
    color: var(--text-light);
    font-size: 14px;
}

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

@media (max-width: 900px) {
    .about-page-values {
        padding: 54px 0 24px;
    }
    .about-page-values__grid {
        grid-template-columns: 1fr;
    }
}

.mobile-menu__link:hover,
.mobile-menu__link.active {
    color: var(--primary);
}

.mobile-menu__link:after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.mobile-menu__link:hover:after,
.mobile-menu__link.active:after {
    width: 100%;
}

.mobile-menu__admin-link {
    background: var(--primary);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    margin-top: 20px;
    display: inline-block;
    transition: background 0.3s ease;
}

.mobile-menu__admin-link:hover {
    background: #a87533;
}

body.mobile-menu-open {
    overflow: hidden;
}

.header__top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 30px;
    flex-wrap: wrap;
}

.header {
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(12px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.nav {
    justify-content: flex-end;
    flex-wrap: wrap;
}

.nav__link {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.02em;
}

.product-detail {
    display: grid;
    grid-template-columns: 1.2fr 0.9fr;
    gap: 40px;
    align-items: start;
    margin: 40px 0;
}

.product-detail__image,
.product-detail__info {
    background: white;
    border-radius: 20px;
    padding: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.product-detail__image img {
    width: 100%;
    height: auto;
    border-radius: 18px;
    object-fit: cover;
}

.product-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 18px;
    color: var(--tertiary);
    font-size: 14px;
}

.category-badge,
.created-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(194, 142, 62, 0.1);
    padding: 10px 16px;
    border-radius: 999px;
}

.product-detail__info h1 {
    margin-bottom: 18px;
    font-size: 38px;
    line-height: 1.1;
}

.product-description {
    margin-bottom: 24px;
    color: var(--text-light);
    font-size: 16px;
}

.product-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

/* PRODUCT CONTENT TABS */
.content-tabs {
    display: flex;
    gap: 0;
    border-bottom: 2px solid #f0f0f0;
    margin-bottom: 0;
    flex-wrap: wrap;
}

.tab-btn {
    padding: 16px 24px;
    background: none;
    border: none;
    cursor: pointer;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
    position: relative;
}

.tab-btn:hover {
    color: var(--primary);
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.product-content {
    margin-top: 30px;
}

.content-tab {
    display: none;
    animation: fadeIn 0.3s ease;
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.product-content .rich-content {
    line-height: 1.8;
    color: #555;
}

.product-content .rich-content p {
    margin-bottom: 16px;
}

.product-content .rich-content img {
    max-width: 100%;
    border-radius: 14px;
    margin: 25px 0;
}

/* SPECS GRID */
.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.spec-item {
    padding: 20px;
    background: #f9f9f9;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s ease;
}

.spec-item:hover {
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    transform: translateY(-2px);
}

.spec-item strong {
    display: block;
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 14px;
}

.spec-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

/* USAGE GRID */
.usage-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 20px;
}

.usage-item {
    padding: 28px;
    background: linear-gradient(135deg, #f9f9f9 0%, #f0f0f0 100%);
    border-radius: 14px;
    text-align: center;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    border: 1px solid #eee;
}

.usage-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 24px 48px rgba(0,0,0,0.1);
    background: white;
}

.usage-item i {
    font-size: 42px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.usage-item h4 {
    font-size: 18px;
    color: var(--secondary);
    margin-bottom: 12px;
    font-weight: 600;
}

.usage-item p {
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

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

@media (max-width: 768px) {
    .header__meta {
        display: none !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
        border-bottom-width: 0 !important;
    }
    .header {
        padding-top: 0 !important;
        margin-top: 0 !important;
    }
    .header__top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        padding-top: 10px;
    }
    .logo {
        flex: 0;
    }
    .site-logo {
        max-height: 70px;
        margin-bottom: 5px;
    }
    .logo-text {
        font-size: 12px;
    }
    .logo-text {
        display: none;
    }
    .site-logo {
        max-height: 40px;
        margin-bottom: 0;
    }
    .nav {
        display: none;
    }
    .mobile-menu-toggle {
        display: flex;
        margin-left: auto;
    }
}

/* ============================================================
   OVERRIDES (Çakışmaları ezmek için dosya sonu)
   Amaç: Çoklu .about-content / .contact-form gibi global stiller
   bu sayfalardaki scoped tasarımı bozmasın.
   ============================================================ */

/* ABOUT SIMPLE - scoped class names */
main .about-simple .about-simple__content h2 {
    font-size: 34px !important;
    line-height: 1.15 !important;
    letter-spacing: -0.02em !important;
    color: var(--secondary) !important;
    margin-bottom: 12px !important;
}

main .about-simple .about-simple__content .lead {
    font-size: 16px !important;
    color: var(--text-light) !important;
    margin-bottom: 20px !important;
}

main .about-simple .about-simple__image img {
    width: 100% !important;
    height: auto !important;
    border-radius: 22px !important;
    display: block !important;
    object-fit: cover !important;
}

@media (max-width: 900px) {
    main .about-simple .about-simple__content h2 {
        font-size: 28px !important;
    }
}

/* ===========================
   HAKKIMIZDA (v6) - Sıfırdan kurumsal
   =========================== */
.about-v6-hero {
    padding: 22px 0 10px;
}
.about-v6-hero__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 26px;
    align-items: center;
    background: linear-gradient(180deg, rgba(194, 142, 62, 0.10), rgba(194, 142, 62, 0.02));
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 18px;
    padding: 26px;
}
.about-v6-hero__title {
    margin: 10px 0 10px;
    font-size: clamp(28px, 4vw, 44px);
    letter-spacing: -0.02em;
}
.about-v6-hero__lead {
    margin: 0;
    color: rgba(0, 0, 0, 0.70);
    font-size: 16px;
    line-height: 1.65;
    max-width: 62ch;
}
.about-v6-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
}
.about-v6-hero__media img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    border-radius: 16px;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.about-v6-story {
    padding: 22px 0;
}
.about-v6-story__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 26px;
    align-items: start;
}
.about-v6-story__left h2 {
    margin: 0 0 10px;
    font-size: 26px;
    letter-spacing: -0.01em;
}
.about-v6-story__right {
    position: relative;
}
.about-v6-metrics {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 14px;
}
.metric {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 14px;
}
.metric__v {
    font-weight: 800;
    color: var(--primary);
    font-size: 18px;
    letter-spacing: -0.01em;
}
.metric__l {
    margin-top: 6px;
    font-size: 12.5px;
    color: rgba(0, 0, 0, 0.66);
    line-height: 1.35;
}
.about-v6-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}
.about-v6-card {
    display: grid;
    grid-template-columns: 44px 1fr;
    gap: 12px;
    align-items: start;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 14px;
    padding: 14px;
}
.about-v6-card__icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    background: rgba(194, 142, 62, 0.12);
    color: var(--primary);
    font-size: 18px;
}
.about-v6-card__t {
    font-weight: 800;
    font-size: 14px;
    margin: 2px 0 4px;
}
.about-v6-card__d {
    font-size: 13px;
    color: rgba(0, 0, 0, 0.68);
    line-height: 1.55;
}

.about-v6-mv {
    padding: 6px 0 22px;
}
.about-v6-mv__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}
.mv {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 18px;
}
.mv__icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(0, 0, 0, 0.06);
    color: #000;
    margin-bottom: 10px;
    font-size: 18px;
}
.mv h2 {
    margin: 0 0 6px;
    font-size: 18px;
    letter-spacing: -0.01em;
}
.mv p {
    margin: 0;
    color: rgba(0, 0, 0, 0.70);
    line-height: 1.65;
}

.about-v6-values {
    padding: 10px 0 36px;
}
.about-v6-values__head h2 {
    margin: 0;
    font-size: 26px;
    letter-spacing: -0.01em;
}
.about-v6-values__head p {
    margin: 8px 0 0;
    color: rgba(0, 0, 0, 0.70);
}
.about-v6-values__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
    margin-top: 14px;
}
.vcard {
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 16px;
    padding: 18px;
}
.vcard__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(194, 142, 62, 0.12);
    color: var(--primary);
    font-size: 18px;
    margin-bottom: 10px;
}
.vcard h3 {
    margin: 0 0 6px;
    font-size: 16px;
}
.vcard p {
    margin: 0;
    color: rgba(0, 0, 0, 0.70);
    line-height: 1.65;
}
.about-v6-values__cta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: flex-start;
    margin-top: 16px;
}

.about-v6-cta {
    padding: 10px 0 36px;
}
.about-v6-cta__inner {
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    padding: 18px;
    border-radius: 18px;
    border: 1px solid rgba(0,0,0,0.06);
    background: linear-gradient(180deg, rgba(194,142,62,0.10), rgba(0,0,0,0.01));
}
.about-v6-cta__text h2 {
    margin: 0 0 6px;
    font-size: 20px;
    letter-spacing: -0.01em;
}
.about-v6-cta__text p {
    margin: 0;
    color: rgba(0,0,0,0.70);
    line-height: 1.65;
}
.about-v6-cta__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

@media (max-width: 980px) {
    .about-v6-hero__grid {
        grid-template-columns: 1fr;
    }
    .about-v6-hero__media img {
        height: 280px;
    }
    .about-v6-story__grid {
        grid-template-columns: 1fr;
    }
    .about-v6-mv__grid {
        grid-template-columns: 1fr;
    }
    .about-v6-values__grid {
        grid-template-columns: 1fr;
    }
    .about-v6-cta__inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 520px) {
    .about-v6-hero__grid {
        padding: 18px;
    }
    .about-v6-metrics {
        grid-template-columns: 1fr;
    }
}

/* CONTACT PAGE - fully scoped, avoid global .contact-form/.form-row overrides */
.contact-page .contact-card--form .contact-form {
    background: transparent !important;
    padding: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.contact-page .contact-form .form-row {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    gap: 14px !important;
    margin-bottom: 14px !important;
}

.contact-page .contact-form .form-group {
    display: flex !important;
    flex-direction: column !important;
}

.contact-page .contact-form .form-group input,
.contact-page .contact-form .form-group textarea,
.contact-page .contact-form .form-group select {
    width: 100% !important;
    padding: 14px 16px !important;
    border: 2px solid rgba(0, 0, 0, 0.10) !important;
    border-radius: 12px !important;
    background: rgba(255,255,255,0.96) !important;
    font-size: 14px !important;
}

.contact-page .contact-form .form-group input:focus,
.contact-page .contact-form .form-group textarea:focus,
.contact-page .contact-form .form-group select:focus {
    outline: none !important;
    border-color: rgba(194, 142, 62, 0.55) !important;
    box-shadow: 0 0 0 4px rgba(194, 142, 62, 0.12) !important;
}

.contact-page__details {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px !important;
    margin-top: 10px !important;
}

.contact-page__item {
    display: grid !important;
    grid-template-columns: 36px 1fr !important;
    gap: 12px !important;
    padding: 14px !important;
    border-radius: 16px !important;
    background: rgba(0,0,0,0.02) !important;
    border: 1px solid rgba(0,0,0,0.06) !important;
}

.contact-page__icon i {
    color: var(--primary) !important;
    font-size: 20px !important;
}

.contact-page__content h4 {
    margin: 0 0 4px 0 !important;
    font-weight: 800 !important;
    color: var(--secondary) !important;
    font-size: 14px !important;
}

.contact-page__content p {
    margin: 0 !important;
    color: var(--text-light) !important;
    font-size: 13px !important;
}

@media (max-width: 900px) {
    .contact-page .contact-form .form-row {
        grid-template-columns: 1fr !important;
    }
}

/* FOOTER */
.footer {
    background: linear-gradient(180deg, var(--secondary) 0%, rgba(0,0,0,0.95) 100%);
    color: white;
    padding: 80px 0 20px;
    margin-top: 100px;
    border-top: 1px solid rgba(194, 142, 62, 0.2);
}

.footer--homepage {
    margin-top: 100px; /* Ana sayfada normal margin */
}

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

.footer__section h3,
.footer__section h4 {
    margin-bottom: 15px;
    font-size: 16px;
}

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

.footer__section ul {
    list-style: none;
}

.footer__section li {
    margin-bottom: 10px;
}

.footer__section a {
    color: rgba(255, 255, 255, 0.8);
    font-size: 14px;
    transition: color 0.3s;
}

.footer__section a:hover {
    color: var(--primary);
}

.footer__bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.footer-social {
    display: flex;
    gap: 10px;
    margin-top: 14px;
}

.footer-social__link {
    width: 38px;
    height: 38px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.2s ease, border-color 0.2s ease;
}

.footer-social__link:hover {
    transform: translateY(-1px);
    border-color: rgba(194, 142, 62, 0.6);
    color: #fff;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 8px;
}

@media (max-width: 900px) {
    .header__meta {
        display: flex;
        gap: 10px;
        justify-content: space-between;
        align-items: center;
        padding: 8px 0;
    }
    .header__meta-left {
        display: none;
    }
    .header__meta-right {
        display: none;
    }
}

/* HOME CORPORATE (Ana sayfa kurumsal özet) */
.home-corporate {
    padding: 84px 0;
    background: linear-gradient(180deg, rgba(194, 142, 62, 0.06) 0%, #fff 100%);
}

.home-corporate.v2 {
    background: radial-gradient(1200px 520px at 20% 0%, rgba(194, 142, 62, 0.12) 0%, rgba(255,255,255,0) 55%),
        linear-gradient(180deg, rgba(0,0,0,0.02) 0%, #fff 100%);
}

.home-corporate__wrap {
    border-radius: 20px;
    border: 1px solid rgba(0,0,0,0.06);
    background: rgba(255,255,255,0.92);
    box-shadow: 0 24px 60px rgba(0,0,0,0.10);
    padding: 28px;
}

.home-corporate__head {
    max-width: 76ch;
}

.home-corporate__title {
    margin: 10px 0 10px;
    font-size: clamp(26px, 3.2vw, 40px);
    letter-spacing: -0.02em;
    color: var(--secondary);
}

.home-corporate__lead {
    margin: 0;
    color: var(--text-light);
    line-height: 1.7;
}

.home-corporate__grid {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 34px;
    align-items: center;
    margin-top: 18px;
}

.home-corporate__cards {
    display: grid;
    gap: 12px;
}
.hc-card {
    display: grid;
    grid-template-columns: 46px 1fr;
    gap: 12px;
    align-items: start;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    background: #fff;
}
.hc-card__icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: rgba(194, 142, 62, 0.12);
    color: var(--primary);
    font-size: 18px;
}
.hc-card__t {
    font-weight: 900;
    letter-spacing: -0.01em;
}
.hc-card__d {
    margin-top: 4px;
    color: rgba(0,0,0,0.68);
    line-height: 1.65;
    font-size: 13.5px;
}

.home-corporate__stats {
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    padding: 12px;
    border-radius: 16px;
    background: rgba(255,255,255,0.88);
    border: 1px solid rgba(0,0,0,0.06);
    backdrop-filter: blur(10px);
}

.home-corporate__stats .hc-stat {
    padding: 10px 12px;
    border-radius: 14px;
    background: rgba(0,0,0,0.02);
    border: 1px solid rgba(0,0,0,0.06);
}

.home-corporate__stats .hc-stat__v {
    font-size: 20px;
    font-weight: 900;
    color: var(--secondary);
}

.home-corporate__stats .hc-stat__l {
    font-size: 12px;
    color: var(--text-light);
    margin-top: 4px;
}

.home-corporate__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.home-corporate__media {
    position: relative;
}
.home-corporate__media img {
    width: 100%;
    height: 420px;
    display: block;
    border-radius: 22px;
    border: 1px solid rgba(0,0,0,0.08);
    box-shadow: 0 22px 50px rgba(0,0,0,0.14);
    background: #0b1220;
    object-fit: cover;
}

@media (max-width: 900px) {
    .home-corporate {
        padding: 64px 0;
    }
    .home-corporate__wrap {
        padding: 18px;
    }
    .home-corporate__grid {
        grid-template-columns: 1fr;
    }
    .home-corporate__media img {
        height: 280px;
    }
    .home-corporate__stats {
        position: static;
        margin-top: 12px;
        grid-template-columns: 1fr;
    }
}

/* CONTACT v5 (yeniden yapılandırma) */
.contact-v5 {
    padding: 16px 0 84px;
}

.contact-v5__grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 16px;
    align-items: start;
}

.contact-v5__card {
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 22px;
    box-shadow: 0 20px 46px rgba(0,0,0,0.10);
    padding: 20px;
}

.contact-v5__card h2 {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--secondary);
    margin-bottom: 10px;
}

.contact-v5__card .lead {
    color: var(--text-light);
    margin-bottom: 14px;
}

.contact-v5__rows {
    display: grid;
    gap: 10px;
    margin: 12px 0 16px;
}

.contact-v5__row {
    display: grid;
    grid-template-columns: 22px 1fr;
    gap: 10px;
    align-items: start;
    padding: 12px 14px;
    border-radius: 16px;
    border: 1px solid rgba(0,0,0,0.06);
    background: rgba(0,0,0,0.02);
    color: var(--secondary);
    text-decoration: none;
}

.contact-v5__row i {
    color: var(--primary);
    font-size: 18px;
    margin-top: 2px;
}

.contact-v5__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.contact-v5__map {
    margin-top: 16px;
    background: rgba(255,255,255,0.92);
    border: 1px solid rgba(0,0,0,0.08);
    border-radius: 22px;
    box-shadow: 0 20px 46px rgba(0,0,0,0.10);
    padding: 18px;
}

.contact-v5__map-head h3 {
    font-size: 18px;
    font-weight: 900;
    color: var(--secondary);
    margin-bottom: 6px;
}

.contact-v5__map-head p {
    color: var(--text-light);
    font-size: 13px;
    margin-bottom: 12px;
}

.contact-v5__map iframe {
    width: 100%;
    border: 0;
    border-radius: 18px;
}

@media (max-width: 900px) {
    .contact-v5 {
        padding: 10px 0 64px;
    }
    .contact-v5__grid {
        grid-template-columns: 1fr;
    }
}

/* HERO SLIDER - Professional Full-Screen */
.hero-slider {
    position: relative;
    width: 100%;
    max-width: 1920px;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    background: #000;
    z-index: 1;
    margin: 0 auto;
}

.hero-slider__container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-slide__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    transform: scale(1.1);
    transition: transform 8s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide.active .hero-slide__bg {
    transform: scale(1);
}

.hero-slide__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.25) 0%,
        rgba(0, 0, 0, 0.2) 25%,
        rgba(0, 0, 0, 0.35) 75%,
        rgba(0, 0, 0, 0.45) 100%
    );
    z-index: 2;
}

.hero-slide__content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 3;
    padding: 0 20px;
}

.hero-slide__inner {
    max-width: 580px;
    width: 100%;
    padding: 0 60px;
    margin-left: 8vw;
    animation: slideInLeft 1s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

.hero-slide__badge {
    margin-bottom: 24px;
}

.hero-slide__badge span {
    display: inline-flex;
    align-items: center;
    padding: 12px 24px;
    background: rgba(194, 142, 62, 0.9);
    color: white;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.hero-slide__title {
    font-size: clamp(48px, 8vw, 72px);
    font-weight: 800;
    line-height: 1.1;
    color: white;
    margin-bottom: 24px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    letter-spacing: -1px;
}

.hero-slide__text {
    font-size: 20px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    max-width: 500px;
}

.hero-slide__actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn--outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.8);
    padding: 16px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn--outline:hover {
    background: white;
    color: #333;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* Navigation */
.hero-slider__nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    padding: 0 60px;
    z-index: 4;
    transform: translateY(-50%);
    pointer-events: none;
}

.hero-slider__arrow {
    pointer-events: auto;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.hero-slider__arrow:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

/* Pagination */
.hero-slider__pagination {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 4;
}

.hero-slider__dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hero-slider__dot:hover {
    border-color: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.hero-slider__dot.active {
    background: white;
    border-color: white;
    transform: scale(1.3);
}

/* Progress Bar */
.hero-slider__progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 4;
}

.hero-slider__progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #c28e3e, #a87c2e);
    width: 0%;
    transition: width 0.1s linear;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-slide__inner {
        max-width: 500px;
    }

    .hero-slide__title {
        font-size: clamp(40px, 7vw, 60px);
    }

    .hero-slide__text {
        font-size: 18px;
    }
}

@media (max-width: 768px) {
    .hero-slider {
        height: 90vh;
        min-height: 500px;
    }

    .hero-slide__content {
        padding: 20px 0;
    }

    .hero-slide__inner {
        max-width: 100%;
        padding: 0 20px;
        text-align: center;
    }

    .hero-slide__badge {
        justify-content: center;
    }

    .hero-slide__actions {
        justify-content: center;
    }

    .hero-slider__nav {
        padding: 0 20px;
    }

    .hero-slider__arrow {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }

    .hero-slider__pagination {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 80vh;
        min-height: 400px;
    }

    .hero-slide__title {
        font-size: clamp(32px, 10vw, 48px);
        margin-bottom: 16px;
    }

    .hero-slide__text {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .hero-slide__actions {
        flex-direction: column;
        align-items: center;
    }

    .btn--primary, .btn--outline {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .hero-slider__nav {
        display: none; /* Mobile'de navigation'ı gizle */
    }

    .hero-slider__pagination {
        bottom: 20px;
        gap: 8px;
    }

    .hero-slider__dot {
        width: 10px;
        height: 10px;
    }
}

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

/* HERO SECTION (Fallback) */
.hero {
    background: linear-gradient(135deg, var(--secondary), rgba(0, 0, 0, 0.8));
    color: white;
    padding: 100px 0;
    text-align: center;
    border-radius: 12px;
    margin: 40px 0;
}

.hero__content h1 {
    font-size: 48px;
    margin-bottom: 15px;
    font-weight: 700;
}

.hero__content p {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

/* BUTTONS */
.btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    text-align: center;
    font-size: 14px;
    text-decoration: none !important;
    letter-spacing: 0.3px;
}

.btn--primary {
    background: linear-gradient(135deg, var(--primary), #a87c2e);
    color: white;
    box-shadow: 0 8px 20px rgba(194, 142, 62, 0.25);
    position: relative;
    overflow: hidden;
}

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

.btn--primary:hover {
    background: linear-gradient(135deg, #a87533, #8f643f);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(194, 142, 62, 0.4), 0 0 30px rgba(194, 142, 62, 0.2);
}

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

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

.btn--secondary {
    background: var(--tertiary);
    color: white;
    box-shadow: 0 8px 15px rgba(148, 147, 153, 0.2);
}

.btn--secondary:hover {
    background: #7a7780;
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(148, 147, 153, 0.3);
}

.btn--large {
    padding: 16px 40px;
    font-size: 16px;
}

.btn--small {
    padding: 8px 16px;
    font-size: 12px;
}

.btn--danger {
    background: #dc3545 !important;
}

.btn--danger:hover {
    background: #c82333 !important;
}

.switch {
    position: relative;
    display: inline-block;
    width: 52px;
    height: 28px;
}

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

.slider-switch {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #d8d8d8;
    transition: .4s;
    border-radius: 999px;
}

.slider-switch:before {
    position: absolute;
    content: "";
    height: 22px;
    width: 22px;
    left: 4px;
    bottom: 3px;
    background-color: white;
    transition: .4s;
    border-radius: 50%;
}

.switch input:checked + .slider-switch {
    background-color: var(--primary);
}

.switch input:checked + .slider-switch:before {
    transform: translateX(24px);
}

/* Çerez Banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    background: rgba(255, 255, 255, 0.98);
    color: #333;
    border-top: 1px solid #e0e0e0;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 16px 24px;
}

.cookie-banner__content {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex: 1;
    min-width: 240px;
}

.cookie-banner__content p {
    margin: 0;
    font-size: 13px;
    line-height: 1.6;
    color: #666;
}

.cookie-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.cookie-banner__link {
    color: #c28e3e;
    font-weight: 500;
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s ease;
}

.cookie-banner__link:hover {
    color: #a86a3a;
    text-decoration: underline;
}

.cookie-banner__buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.cookie-banner button {
    min-width: 100px;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 500;
    border-radius: 4px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-banner #cookie-accept {
    background-color: #c28e3e;
    color: white;
}

.cookie-banner #cookie-accept:hover {
    background-color: #b8793f;
}

.cookie-banner #cookie-reject {
    background-color: #f5f5f5;
    color: #333;
    border: 1px solid #e0e0e0;
}

.cookie-banner #cookie-reject:hover {
    background-color: #e8e8e8;
}

@media (max-width: 768px) {
    .cookie-banner {
        bottom: 0;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        padding: 12px 16px;
        gap: 12px;
    }

    .cookie-banner__buttons {
        justify-content: flex-end;
    }

    .cookie-banner button {
        flex: 1;
        min-width: 80px;
    }
}

/* ABOUT PAGE */
.section--split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    align-items: center;
    margin-bottom: 40px;
}

.about-image-wrap img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    display: block;
}

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

.benefit-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 10px;
    padding: 25px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.benefit-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(194, 142, 62, 0.15);
    margin-bottom: 15px;
}

.benefit-icon img {
    width: 24px;
    height: 24px;
}

/* CONTACT PAGE */
.contact-map {
    margin-bottom: 30px;
}

.contact-map iframe {
    width: 100%;
    min-height: 360px;
    border: 0;
    border-radius: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.12);
}

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

.contact-form-section, .contact-info-section {
    background: white;
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.03);
}

.contact-info-section .info-card {
    margin-bottom: 18px;
}

.contact-info-section .info-card h3 {
    margin-bottom: 8px;
    font-size: 16px;
}

@media (min-width: 900px) {
    .contact-grid {
        grid-template-columns: 2fr 1fr;
    }
}


/* SECTIONS */
.section {
    padding: 70px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.section h2 {
    font-size: 36px;
    margin-bottom: 50px;
    text-align: center;
    color: var(--secondary);
    font-weight: 700;
    letter-spacing: -0.5px;
}

.section--light {
    background: linear-gradient(180deg, var(--light) 0%, white 100%);
}

/* GRID LAYOUT */
.grid {
    display: grid;
    gap: 30px;
    margin-bottom: 40px;
}

.grid--2 {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
}

.grid--3 {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

/* PRODUCT CARD */
.product-card {
    background: white;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 22px;
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
}

.product-card:hover {
    border-color: var(--primary);
    box-shadow: 0 30px 70px rgba(194, 142, 62, 0.18);
    transform: translateY(-10px);
}

.product-card img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background: var(--light);
    transition: transform 0.5s ease;
}

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

.product-card__placeholder {
    width: 100%;
    height: 250px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
}

.product-card__content {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-card__category {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    padding: 8px 14px;
    border-radius: 999px;
    font-size: 12px;
    color: var(--primary);
    background: rgba(194, 142, 62, 0.1);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    font-weight: 700;
}

.product-card__content h3 {
    font-size: 20px;
}

.product-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--secondary);
}

.product-card__desc {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    flex: 1;
}

.product-card__link {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    transition: gap 0.3s;
}

/* CATEGORY CARD */
.category-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 30px 20px;
    text-align: center;
    transition: all 0.3s;
    text-decoration: none !important;
    color: inherit;
    position: relative;
}

.category-card:hover {
    background: var(--light);
    border-color: var(--primary);
    transform: translateY(-5px);
}

.category-card__icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.category-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.category-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
}

.category-card .arrow {
    color: var(--primary);
    font-weight: bold;
    opacity: 0;
    transition: opacity 0.3s;
}

.category-card:hover .arrow {
    opacity: 1;
}

.category-card__link {
    display: inline-block;
    color: var(--primary);
    font-weight: 600;
}

.group-card {
    background: linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.92) 100%);
    border: 1px solid rgba(194, 142, 62, 0.18);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    transition: transform 0.35s ease, border-color 0.3s ease, box-shadow 0.35s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.group-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary);
    box-shadow: 0 30px 60px rgba(194, 142, 62, 0.18);
}

.group-card__media {
    min-height: 220px;
    background-size: cover;
    background-position: center;
}

.group-card__media--fallback {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(194,142,62,0.12), rgba(0,0,0,0.05));
    color: var(--secondary);
    font-size: 48px;
    font-weight: 700;
}

.group-card__info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.group-card__info h3 {
    margin: 0;
    font-size: 22px;
    color: var(--secondary);
}

.group-card__info p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.7;
    flex: 1;
}

.group-card__action {
    font-weight: 700;
    color: var(--primary);
}

.why-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.why-container {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
}

.why-sidebar {
    position: sticky;
    top: 100px;
}

.why-sidebar h2 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 24px;
    line-height: 1.3;
}

.why-sidebar p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

.why-grid-wrapper {
    width: 100%;
}

.why-card {
    background: white;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 35px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.07);
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.320, 1), border-color 0.3s ease, box-shadow 0.4s ease;
}

.why-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: 0 28px 55px rgba(194, 142, 62, 0.15);
}

.why-card h3 {
    margin-bottom: 18px;
    color: var(--secondary);
    font-size: 20px;
}

.why-card p {
    color: var(--text-light);
    line-height: 1.8;
}

.partners-section {
    padding-top: 40px;
}

.partners-slider {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
    scroll-behavior: smooth;
    padding-bottom: 10px;
}

.partner-slide {
    min-width: 160px;
    min-height: 96px;
    flex: 0 0 auto;
    background: white;
    border-radius: 18px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px;
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.07);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
}

.partner-slide img {
    max-width: 100%;
    max-height: 56px;
    object-fit: contain;
}

@media (max-width: 768px) {
    .partner-slide {
        min-width: 132px;
        min-height: 88px;
    }
    .partner-slide img {
        max-height: 48px;
    }
}

/* BLOG CARD */
.blog-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.blog-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.blog-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    background: var(--light);
}

.blog-card__placeholder {
    width: 100%;
    height: 200px;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 50px;
}

.blog-card__content {
    padding: 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-card time {
    font-size: 12px;
    color: var(--primary);
    margin-bottom: 8px;
}

.blog-card h3 {
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 1.4;
    color: var(--secondary);
}

.blog-card p {
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 15px;
    flex: 1;
}

.blog-card__link {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
}

/* YENİ EKLEMELER - GELİŞMİŞ ÜRÜN SAYFASI */

/* Arama ve Filtreleme */
.section--filters {
    background: linear-gradient(135deg, var(--light) 0%, white 100%);
    border-radius: 16px;
    margin: 40px 0;
    padding: 40px;
}

.filters-container {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.search-form {
    display: flex;
    justify-content: center;
}

.search-input-group {
    display: flex;
    max-width: 500px;
    width: 100%;
    background: white;
    border-radius: 50px;
    border: 2px solid rgba(194, 142, 62, 0.2);
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.search-input-group:focus-within {
    border-color: var(--primary);
}

.search-input {
    flex: 1;
    padding: 12px 20px;
    border: none;
    outline: none;
    font-size: 16px;
}

.search-btn {
    padding: 12px 24px;
    border: none;
    background: var(--primary);
    color: white;
    cursor: pointer;
    transition: background 0.3s ease;
}

.search-btn:hover {
    background: #a87533;
}

/* HAKKIMIZDA BÖLÜMÜ - PROFESYONEL TASARIM */
.about-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(194, 142, 62, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.about-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.about-title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    color: var(--secondary);
    margin-bottom: 24px;
    letter-spacing: -0.5px;
    background: linear-gradient(135deg, var(--secondary), rgba(0, 0, 0, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-subtitle {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-light);
    max-width: 700px;
    margin: 0 auto;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 50px;
    position: relative;
    z-index: 1;
}

.about-card {
    background: white;
    padding: 50px 40px;
    border-radius: 24px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(194, 142, 62, 0.12);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.about-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.about-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 40px 80px rgba(194, 142, 62, 0.15);
    border-color: var(--primary);
}

.about-card:hover::after {
    left: 100%;
}

.about-card__header {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 24px;
}

.about-card__icon {
    width: 70px;
    height: 70px;
    min-width: 70px;
    background: linear-gradient(135deg, var(--primary), #a87c2e);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 32px;
    box-shadow: 0 15px 40px rgba(194, 142, 62, 0.25);
    transition: all 0.3s ease;
}

.about-card:hover .about-card__icon {
    transform: rotate(5deg) scale(1.1);
    box-shadow: 0 20px 50px rgba(194, 142, 62, 0.35);
}

.about-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 16px;
}

.about-card p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 0;
    }

    .about-section::before {
        display: none;
    }

    .about-header {
        margin-bottom: 40px;
    }

    .about-title {
        font-size: 28px;
        margin-bottom: 16px;
    }

    .about-subtitle {
        font-size: 14px;
    }

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

    .about-card {
        padding: 30px 20px;
    }

    .about-card__header {
        gap: 16px;
    }

    .about-card__icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        font-size: 24px;
    }

    .about-card h3 {
        font-size: 16px;
    }

    .about-card p {
        font-size: 13px;
    }
}

/* BİZE ULAŞIN BÖLÜMÜ - PROFESYONEL TASARIM */
.contact-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #ffffff 0%, #f5f7fa 50%, #fef8f3 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    bottom: -40%;
    left: -20%;
    width: 1200px;
    height: 1200px;
    background: radial-gradient(circle, rgba(194, 142, 62, 0.08) 0%, transparent 65%);
    border-radius: 50%;
    z-index: 0;
    animation: float 20s ease-in-out infinite;
}

.contact-section::after {
    content: '';
    position: absolute;
    top: -20%;
    right: -25%;
    width: 900px;
    height: 900px;
    background: radial-gradient(circle, rgba(148, 147, 153, 0.04) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: float 25s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0px) translateX(0px); }
    50% { transform: translateY(-50px) translateX(30px); }
}

.contact-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.contact-header h2 {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 800;
    background: linear-gradient(135deg, var(--secondary) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

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

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    position: relative;
    z-index: 1;
    align-items: start;
}

.contact-column {
    animation: fadeIn 0.8s ease-out;
}

.contact-info-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 28px;
    transition: all 0.3s ease;
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(194, 142, 62, 0.1);
}

.contact-info-item:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(194, 142, 62, 0.2);
    box-shadow: 0 15px 50px rgba(194, 142, 62, 0.08);
}

.contact-info-icon {
    width: 72px;
    height: 72px;
    min-width: 72px;
    background: linear-gradient(135deg, var(--primary) 0%, #a87c2e 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 28px;
    box-shadow: 0 20px 50px rgba(194, 142, 62, 0.3);
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, rgba(255, 255, 255, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-info-item:hover .contact-info-icon {
    transform: scale(1.15) rotate(-5deg);
    box-shadow: 0 25px 60px rgba(194, 142, 62, 0.4);
}

.contact-info-item:hover .contact-info-icon::before {
    opacity: 1;
}

.contact-info-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 12px;
}

.contact-info-content p {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.contact-form {
    background: white;
    padding: 60px 50px;
    border-radius: 24px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(194, 142, 62, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(194, 142, 62, 0.08), rgba(194, 142, 62, 0));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-form::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -50%;
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(148, 147, 153, 0.06), rgba(148, 147, 153, 0));
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.contact-form:hover {
    box-shadow: 0 35px 100px rgba(0, 0, 0, 0.12), 0 0 40px rgba(194, 142, 62, 0.08);
    border-color: rgba(194, 142, 62, 0.3);
    transform: translateY(-3px);
}

.contact-form:hover::before,
.contact-form:hover::after {
    opacity: 1;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.contact-form .form-group {
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    font-size: 16px;
    font-family: inherit;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8), rgba(194, 142, 62, 0.02));
    transition: all 0.3s cubic-bezier(0.23, 1, 0.320, 1);
    color: var(--secondary);
    position: relative;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: rgba(0, 0, 0, 0.4);
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(194, 142, 62, 0.15), inset 0 1px 3px rgba(194, 142, 62, 0.1);
    transform: translateY(-1px);
}

.contact-form textarea {
    resize: vertical;
    min-height: 140px;
}

/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
    .about-section {
        padding: 80px 0;
    }

    .about-section::before {
        width: 400px;
        height: 400px;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-card {
        padding: 40px 30px;
    }

    .contact-section {
        padding: 80px 0;
    }

    .contact-section::before {
        display: none;
    }

    .contact-header {
        margin-bottom: 40px;
    }

    .contact-header h2 {
        font-size: 24px;
        margin-bottom: 12px;
    }

    .contact-header p {
        font-size: 14px;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info-item {
        padding: 20px;
        background: white;
        border-radius: 12px;
        display: flex;
        gap: 16px;
        border: 1px solid #f0f0f0;
    }

    .contact-info-icon {
        font-size: 24px;
        min-width: 30px;
    }

    .contact-info-content h4 {
        font-size: 14px;
        margin-bottom: 6px;
    }

    .contact-info-content p {
        font-size: 13px;
    }

    .contact-form {
        padding: 30px 20px;
        border: 1px solid #f0f0f0;
        border-radius: 14px;
        background: white;
    }

    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .contact-form .form-group input,
    .contact-form .form-group textarea {
        font-size: 14px;
        padding: 12px;
    }

    .contact-form button {
        width: 100%;
        padding: 14px 20px;
    }
}

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

.fade-in-on-scroll {
    opacity: 0;
    transform: translateY(40px);
    animation: fadeIn 0.8s cubic-bezier(0.23, 1, 0.320, 1) forwards;
}

.category-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 20px;
    border: 2px solid rgba(194, 142, 62, 0.3);
    border-radius: 25px;
    background: white;
    color: var(--text);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    font-size: 14px;
}

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

.search-results {
    text-align: center;
    padding: 20px;
    background: rgba(194, 142, 62, 0.1);
    border-radius: 12px;
    margin-top: 20px;
}

.clear-search {
    color: var(--primary);
    font-weight: 600;
    margin-left: 15px;
    text-decoration: underline;
}

/* Gelişmiş Ürün Kartı */
.product-card--enhanced {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.1);
    background: white;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.product-card--enhanced:hover {
    transform: translateY(-8px);
    box-shadow: 0 30px 75px rgba(0, 0, 0, 0.15);
}

.product-card--enhanced .product-card__image {
    position: relative;
    overflow: hidden;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
}

.product-card__image img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.4s ease;
}

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

.product-card__content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.product-card__title {
    font-size: 22px;
    line-height: 1.2;
    margin-bottom: 10px;
    color: var(--secondary);
}

.product-card__meta {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    color: var(--tertiary);
    font-size: 14px;
}

.product-card__overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(194, 142, 62, 0.88);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card--enhanced:hover .product-card__overlay {
    opacity: 1;
}

.product-card__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: auto;
}

.product-card__actions .product-card__link,
.product-card__actions .product-card__cta {
    flex: 1;
}

.product-card__link,
.product-card__cta {
    padding: 10px 18px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.product-card__link {
    color: var(--primary);
    border: 1px solid var(--primary);
    background: rgba(194, 142, 62, 0.06);
}

.product-card__link:hover {
    background: var(--primary);
    color: white;
}

.product-card__cta {
    background: var(--secondary);
    color: white;
}

.product-card__cta:hover {
    background: #333;
}

/* Kategori Başlığı */
.category-header {
    text-align: center;
    margin-bottom: 40px;
}

.category-header h2 {
    font-size: 32px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.category-header p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.category-stats {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--primary);
    font-weight: 600;
}

/* Boş Durum */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.empty-state__icon {
    font-size: 64px;
    color: var(--tertiary);
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 10px;
}

.empty-state p {
    color: var(--text-light);
    margin-bottom: 30px;
}

/* GELİŞMİŞ ÜRÜN DETAY SAYFASI */

/* Galeri */
.product-detail__gallery {
    margin-bottom: 30px;
}

.product-main-image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.product-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.product-image-placeholder {
    width: 100%;
    height: 500px;
    background: var(--light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--tertiary);
}

.product-image-placeholder i {
    font-size: 64px;
    margin-bottom: 15px;
}

.product-image-placeholder span {
    font-size: 18px;
    font-weight: 600;
}

/* Ürün Özellikleri */
.product-features {
    margin: 30px 0;
    padding: 25px;
    background: var(--light);
    border-radius: 12px;
    border-left: 4px solid var(--primary);
}

.product-features h3 {
    margin-bottom: 15px;
    color: var(--secondary);
    font-size: 18px;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-light);
}

.features-list i {
    color: var(--primary);
    font-size: 16px;
}

/* İçerik Sekmeleri */
.content-tabs {
    display: flex;
    border-bottom: 2px solid var(--border);
    margin-bottom: 30px;
}

.tab-btn {
    padding: 15px 30px;
    background: none;
    border: none;
    cursor: pointer;
    font-weight: 600;
    color: var(--text-light);
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}

.tab-btn.active {
    color: var(--primary);
    border-bottom-color: var(--primary);
}

.tab-btn:hover {
    color: var(--primary);
}

.content-tab {
    display: none;
}

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

/* Teknik Özellikler */
.specs-content h3 {
    margin-bottom: 20px;
    color: var(--secondary);
}

.specs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.spec-item {
    padding: 15px;
    background: white;
    border-radius: 8px;
    border: 1px solid var(--border);
}

.spec-item strong {
    color: var(--secondary);
    display: block;
    margin-bottom: 5px;
}

/* Kullanım Alanları */
.usage-content h3 {
    margin-bottom: 20px;
    color: var(--secondary);
}

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

.usage-item {
    padding: 25px;
    background: white;
    border-radius: 12px;
    border: 1px solid var(--border);
    text-align: center;
    transition: transform 0.3s ease;
}

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

.usage-item i {
    font-size: 32px;
    color: var(--primary);
    margin-bottom: 15px;
}

.usage-item h4 {
    margin-bottom: 10px;
    color: var(--secondary);
}

.usage-item p {
    color: var(--text-light);
    font-size: 14px;
}

/* Neden Biz İkonları */
.why-card__icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(194, 142, 62, 0.15), rgba(194, 142, 62, 0.25));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 24px;
    color: var(--primary);
}

/* Responsive İyileştirmeler */
@media (max-width: 1024px) {
    .why-container {
        gap: 40px;
    }

    .why-sidebar {
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .why-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .why-sidebar {
        position: relative;
        top: auto;
        padding-bottom: 20px;
        border-bottom: 2px solid #f0f0f0;
    }

    .why-sidebar h2 {
        font-size: 24px;
        margin-bottom: 16px;
    }

    .why-sidebar p {
        font-size: 14px;
    }

    .why-grid {
        grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    }

    .content-tabs {
        gap: 0;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .tab-btn {
        padding: 12px 16px;
        font-size: 13px;
        white-space: nowrap;
    }

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

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

    .filters-container {
        gap: 20px;
    }

    .search-input-group {
        max-width: 100%;
    }

    .category-filters {
        justify-content: center;
    }

    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }

    .product-main-image {
        border-radius: 12px;
    }

    .product-image {
        height: 300px;
    }

    .product-image-placeholder {
        height: 300px;
    }

    .content-tabs {
        flex-wrap: wrap;
    }

    .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

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

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

    .why-card__icon {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}

@media (max-width: 480px) {
    .section--filters {
        padding: 30px 20px;
    }

    .product-features {
        padding: 20px;
    }

    .features-list li {
        font-size: 14px;
    }

    .usage-item {
        padding: 20px;
    }
}

/* SAYFA BAŞLIĞI */
.page-header {
    text-align: center;
    padding: 60px 0 40px;
    border-bottom: 1px solid var(--border);
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 15px;
    color: var(--secondary);
}

.page-header p {
    font-size: 18px;
    color: var(--text-light);
}

/* FILTERS */
.filters {
    display: flex;
    gap: 15px;
    margin: 40px 0;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-tag {
    padding: 8px 16px;
    background: var(--light);
    border: 1px solid var(--border);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.3s;
    cursor: pointer;
    text-decoration: none !important;
    color: var(--text);
}

.filter-tag:hover,
.filter-tag.active {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* PRODUCT DETAIL */
.product-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0;
    align-items: start;
}

.product-detail__image img {
    width: 100%;
    border-radius: 8px;
}

.product-image-placeholder {
    width: 100%;
    aspect-ratio: 1;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 100px;
    border-radius: 8px;
}

.product-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.category-badge {
    background: var(--light);
    padding: 8px 12px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    color: var(--primary);
}

.created-date {
    font-size: 12px;
    color: var(--text-light);
}

.product-detail h1 {
    font-size: 36px;
    margin-bottom: 20px;
    color: var(--secondary);
    line-height: 1.2;
}

.product-description {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 30px;
}

.product-actions {
    display: flex;
    gap: 15px;
}

/* BREADCRUMB */
.breadcrumb {
    display: flex;
    gap: 10px;
    font-size: 13px;
    margin: 30px 0;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary);
}

/* RICH CONTENT */
.rich-content {
    margin: 40px 0;
    font-size: 16px;
    line-height: 1.8;
    color: var(--text);
}

.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
    margin-top: 30px;
    margin-bottom: 15px;
    color: var(--secondary);
    font-weight: 700;
}

.rich-content h2 {
    font-size: 28px;
}

.rich-content h3 {
    font-size: 22px;
}

.rich-content p {
    margin-bottom: 15px;
}

.rich-content ul,
.rich-content ol {
    margin: 20px 0 20px 30px;
}

.rich-content li {
    margin-bottom: 10px;
}

.rich-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 30px 0;
}

.rich-content table th,
.rich-content table td {
    border: 1px solid var(--border);
    padding: 12px;
    text-align: left;
}

.rich-content table th {
    background: var(--light);
    font-weight: 600;
    color: var(--secondary);
}

.rich-content table tr:hover {
    background: var(--light);
}

.rich-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 20px 0;
}

.rich-content a {
    color: var(--primary);
    text-decoration: underline;
}

/* CONTACT FORM */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin: 60px 0;
}

.contact-form-section h2,
.contact-info-section h2 {
    font-size: 24px;
    margin-bottom: 30px;
    color: var(--secondary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--secondary);
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid var(--border);
    border-radius: 6px;
    font-family: inherit;
    font-size: 14px;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(194, 142, 62, 0.1);
}

.info-card {
    background: var(--light);
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 16px;
    margin-bottom: 10px;
    color: var(--secondary);
}

.info-card p {
    font-size: 14px;
    color: var(--text-light);
}

.info-card a {
    color: var(--primary);
}

/* ALERTS */
.alert {
    padding: 15px 20px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-size: 14px;
}

.alert-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.alert-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

/* EMPTY STATE */
.empty-state {
    text-align: center;
    padding: 60px 20px;
    background: var(--light);
    border-radius: 8px;
    color: var(--text-light);
    font-size: 16px;
}

/* ABOUT CONTENT */
.about-content {
    margin: 60px 0;
}

.about-snippet {
    text-align: center;
    padding: 60px 40px;
    background: var(--secondary);
    color: white;
    border-radius: 12px;
}

.about-snippet h2 {
    color: white;
    margin-bottom: 20px;
}

.about-snippet p {
    font-size: 16px;
    margin-bottom: 25px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* BENEFITS GRID */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin: 40px 0;
}

.benefit-card {
    background: white;
    border: 1px solid var(--border);
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
}

.benefit-card:hover {
    border-color: var(--primary);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.benefit-icon {
    font-size: 40px;
    margin-bottom: 15px;
}

.benefit-card h3 {
    margin-bottom: 10px;
    color: var(--secondary);
}

.benefit-card p {
    font-size: 14px;
    color: var(--text-light);
}

/* CONTACT INLINE */
.contact-inline {
    background: var(--light);
    padding: 30px;
    border-radius: 8px;
    margin: 30px 0;
}

.contact-inline p {
    margin-bottom: 15px;
    font-size: 14px;
}

.contact-inline a {
    color: var(--primary);
    font-weight: 600;
}

/* BLOG DETAIL */
.blog-detail {
    margin: 60px 0;
}

.blog-detail__header {
    margin-bottom: 40px;
}

.blog-detail__header h1 {
    font-size: 40px;
    color: var(--secondary);
    margin-bottom: 15px;
    line-height: 1.2;
}

.blog-detail__date {
    color: var(--text-light);
    font-size: 14px;
}

.blog-detail__image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 40px;
}

.blog-detail__content {
    margin-bottom: 40px;
}

.blog-detail__nav {
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .header__top {
        flex-direction: row;
        gap: 20px;
        align-items: center;
        justify-content: space-between;
    }

    .nav {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

    .nav__link {
        padding: 8px 0;
    }

    .grid--2,
    .grid--3 {
        grid-template-columns: 1fr;
    }

    .hero__content h1 {
        font-size: 32px;
    }

    .product-detail {
        grid-template-columns: 1fr;
    }

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

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

    .page-header h1 {
        font-size: 28px;
    }
}

/* UTILITY CLASSES */
.text-center {
    text-align: center;
}

.mt-20 {
    margin-top: 20px;
}

.mb-20 {
    margin-bottom: 20px;
}

/* ALERTS */
.alert {
    padding: 18px 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 500;
    border-left: 4px solid;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInDown 0.4s ease-out;
}

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

.alert strong {
    font-weight: 700;
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f9e0e3 100%);
    border-left-color: #dc3545;
    color: #721c24;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #ddfce6 100%);
    border-left-color: #28a745;
    color: #155724;
}

/* CONTACT SECTION */
.contact-section {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info h2 {
    font-size: 36px;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.contact-info > p {
    font-size: 18px;
    color: var(--text-light);
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.contact-item i {
    font-size: 24px;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item strong {
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 5px;
    display: block;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
}

.contact-item a:hover {
    text-decoration: underline;
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.contact-form h3 {
    font-size: 24px;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
    font-weight: 600;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

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

.form-group label {
    font-weight: 600;
    color: var(--secondary);
    margin-bottom: 8px;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 14px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    font-family: inherit;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(194, 142, 62, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form .btn {
    width: 100%;
    padding: 16px;
    font-size: 16px;
    font-weight: 600;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact-form .btn i {
    font-size: 18px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-info h2 {
        font-size: 28px;
    }

    .contact-form {
        padding: 30px 20px;
    }

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

    .contact-item {
        padding: 15px;
    }
}

/* BREADCRUMB */
.breadcrumb {
    background: white;
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
    margin-bottom: 40px;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
    flex-wrap: wrap;
}

.breadcrumb-item {
    font-size: 14px;
    color: var(--text-light);
}

.breadcrumb-item a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-item a:hover {
    color: var(--secondary);
    text-decoration: underline;
}

.breadcrumb-item.active {
    color: var(--secondary);
    font-weight: 600;
}

.breadcrumb-separator {
    color: var(--text-light);
    font-size: 12px;
}

.breadcrumb-separator i {
    font-size: 10px;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .breadcrumb {
        padding: 15px 0;
        margin-bottom: 30px;
    }
    
    .breadcrumb-list {
        gap: 6px;
    }
    
    .breadcrumb-item {
        font-size: 13px;
    }
}

/* İLETİŞİM SAYFASI */
.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.contact-info-card h2 {
    color: var(--secondary);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-info-card > p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary), #a87c2e);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 20px;
}

.contact-content h4 {
    color: var(--secondary);
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 5px;
}

.contact-content p {
    color: var(--text);
    margin-bottom: 3px;
    font-size: 14px;
}

.contact-content small {
    color: var(--text-light);
    font-size: 12px;
}

.contact-map {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
}

.contact-map h3 {
    color: var(--secondary);
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 600;
}

.contact-map iframe {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    border: none;
}

.contact-form-section {
    display: flex;
    flex-direction: column;
}

.contact-form-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border);
    flex: 1;
}

.contact-form-card h2 {
    color: var(--secondary);
    font-size: 24px;
    margin-bottom: 15px;
    font-weight: 600;
}

.contact-form-card > p {
    color: var(--text-light);
    margin-bottom: 25px;
    line-height: 1.6;
}

.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form label {
    display: block;
    color: var(--secondary);
    font-weight: 500;
    margin-bottom: 8px;
    font-size: 14px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
    background: white;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(194, 142, 62, 0.1);
}

.contact-form textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form select {
    cursor: pointer;
}

.btn--large {
    padding: 14px 32px;
    font-size: 16px;
    font-weight: 600;
}

.btn--large i {
    margin-right: 8px;
}

/* ALERTS */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
}

.alert-error {
    background: #fef2f2;
    color: #dc2626;
    border: 1px solid #fecaca;
}

.alert-success {
    background: #f0fdf4;
    color: #16a34a;
    border: 1px solid #bbf7d0;
}

.alert i {
    font-size: 18px;
}

/* RESPONSIVE İLETİŞİM */
@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .contact-info-card,
    .contact-form-card,
    .contact-map {
        padding: 20px;
    }

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

    .contact-details {
        gap: 15px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-icon {
        width: 45px;
        height: 45px;
    }

    .contact-icon i {
        font-size: 18px;
    }

    .contact-content h4 {
        font-size: 15px;
    }

    .contact-content p {
        font-size: 13px;
    }
}

/* SADE VE MODERN ANA SAYFA TASARIMI */

/* HERO SECTION - SADE */
.hero-simple {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero-simple .container {
    max-width: 800px;
}

.hero-simple .hero-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: white;
}

.hero-simple .hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 20px;
    opacity: 0.9;
}

.hero-simple .hero-description {
    font-size: 1.1rem;
    margin-bottom: 40px;
    opacity: 0.8;
    line-height: 1.6;
}

.hero-simple .hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* HİZMETLER - SADE */
.services-simple {
    padding: 80px 0;
    background: #f8f9fa;
}

.services-simple .section-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 50px;
}

.services-simple .services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.services-simple .service-card {
    background: white;
    padding: 40px 30px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
}

.services-simple .service-card:hover {
    transform: translateY(-5px);
}

.services-simple .service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #a87c2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
}

.services-simple .service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.services-simple .service-card p {
    color: #666;
    line-height: 1.6;
}

/* ÜRÜNLER */
.products-section {
    padding: 80px 0;
    background: white;
}

.products-section .container {
    max-width: 1200px;
}

.products-section .section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 50px;
}

.products-section .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d2d2d;
    margin: 0;
}

.products-section .view-all-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
}

.products-section .view-all-link:hover {
    color: #a87c2e;
}

.products-section .products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.products-section .product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease;
    border: 1px solid #e9ecef;
}

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

.products-section .product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
}

.products-section .product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.products-section .product-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 3rem;
}

.products-section .product-content {
    padding: 20px;
}

.products-section .product-category {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.products-section .product-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 10px;
    line-height: 1.3;
}

.products-section .product-description {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
}

.products-section .product-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
}

.products-section .product-link:hover {
    color: #a87c2e;
}

/* HAKKIMIZDA - SADE */
.about-simple {
    padding: 80px 0;
    background: #f8f9fa;
}

.about-simple .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-simple .about-content h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.about-simple .about-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-simple .about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-simple .feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-simple .feature i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-simple .feature span {
    color: #2d2d2d;
    font-weight: 500;
}

.about-simple .about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* İLETİŞİM */
.contact-section {
    padding: 80px 0;
    background: white;
}

.contact-section .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-section .contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.contact-section .contact-info > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-section .contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-section .contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-section .contact-item i {
    color: var(--primary);
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.contact-section .contact-item strong {
    color: #2d2d2d;
    display: block;
    margin-bottom: 5px;
}

.contact-section .contact-item div {
    color: #666;
    line-height: 1.5;
}

.contact-section .contact-form {
    background: #f8f9fa;
    padding: 40px;
    border-radius: 12px;
}

.contact-section .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-section .form-group {
    margin-bottom: 20px;
}

.contact-section .form-group:last-child {
    margin-bottom: 0;
}

.contact-section input,
.contact-section textarea {
    width: 100%;
    padding: 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.contact-section input:focus,
.contact-section textarea:focus {
    outline: none;
    border-color: var(--primary);
}

.contact-section textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-section .btn--full {
    width: 100%;
}

/* ALERTS */
.alert {
    padding: 15px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-weight: 500;
}

.alert--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-simple {
        padding: 60px 0;
    }

    .hero-simple .hero-title {
        font-size: 2.2rem;
    }

    .hero-simple .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-simple .hero-description {
        font-size: 1rem;
    }

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

    .services-simple,
    .products-section,
    .about-simple,
    .contact-section {
        padding: 60px 0;
    }

    .services-simple .section-title,
    .products-section .section-title,
    .about-simple .about-content h2,
    .contact-section .contact-info h2 {
        font-size: 2rem;
    }

    .services-simple .services-grid {
        grid-template-columns: 1fr;
    }

    .products-section .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .about-simple .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-section .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-section .contact-form {
        padding: 30px 20px;
    }

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

/* ÜRÜNLER SAYFASI */
.products-filters {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.search-form {
    display: flex;
    gap: 10px;
    flex: 1;
    max-width: 400px;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
}

.category-list {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.category-link {
    color: #666;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 20px;
    border: 1px solid #e9ecef;
    transition: all 0.3s ease;
    font-weight: 500;
}

.category-link:hover,
.category-link.active {
    color: var(--primary);
    border-color: var(--primary);
    background: rgba(194, 142, 62, 0.1);
}

.no-products {
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.no-products i {
    font-size: 4rem;
    margin-bottom: 20px;
    opacity: 0.5;
}

.no-products h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #2d2d2d;
}

.no-products p {
    margin-bottom: 30px;
}

/* HAKKIMIZDA SAYFASI */
.page-header {
    text-align: center;
    margin-bottom: 50px;
}

.page-header h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.page-header p {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.about-simple .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1000px;
    margin: 0 auto;
}

.about-simple .about-content h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 20px;
}

.about-simple .about-content p {
    color: #666;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
}

.about-simple .about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.about-simple .feature {
    display: flex;
    align-items: center;
    gap: 15px;
}

.about-simple .feature i {
    color: var(--primary);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.about-simple .feature span {
    color: #2d2d2d;
    font-weight: 500;
}

.about-simple .about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-placeholder {
    width: 100%;
    height: 300px;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    color: #6c757d;
}

.about-placeholder i {
    font-size: 3rem;
    margin-bottom: 10px;
}

.about-placeholder p {
    font-size: 1.1rem;
    font-weight: 500;
}

/* BREADCRUMB */
.breadcrumb {
    margin-bottom: 30px;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--primary);
}

.breadcrumb span {
    color: #ccc;
    margin: 0 8px;
}

/* RESPONSIVE GÜNCELLEMELER */
@media (max-width: 768px) {
    .hero-simple {
        padding: 60px 0;
    }

    .hero-simple .hero-title {
        font-size: 2.2rem;
    }

    .hero-simple .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-simple .hero-description {
        font-size: 1rem;
    }

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

    .services-simple,
    .products-section,
    .about-simple,
    .contact-section {
        padding: 60px 0;
    }

    .services-simple .section-title,
    .products-section .section-title,
    .about-simple .about-content h2,
    .contact-section .contact-info h2 {
        font-size: 2rem;
    }

    .services-simple .services-grid {
        grid-template-columns: 1fr;
    }

    .products-section .section-header {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }

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

    .about-simple .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .contact-section .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-section .contact-form {
        padding: 30px 20px;
    }

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

    .products-filters {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .search-form {
        max-width: none;
    }

    .category-list {
        justify-content: center;
    }
}

/* HERO SECTION */
.hero-modern {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(194, 142, 62, 0.1) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0;
}

.hero-text {
    max-width: 600px;
    margin-bottom: 60px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary), #a87c2e);
    color: white;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(194, 142, 62, 0.3);
}

.hero-badge span {
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 20px;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    color: white;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 30px;
    line-height: 1.6;
}

.hero-description {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 40px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.hero-visual {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 400px;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    color: white;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    display: block;
    margin-bottom: 5px;
    background: linear-gradient(135deg, var(--primary), #a87c2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.9rem;
    opacity: 0.9;
    font-weight: 500;
}

.hero-shape {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1;
}

.hero-shape svg {
    width: 100%;
    height: auto;
}

/* HİZMETLER */
.services-section {
    padding: 100px 0;
    background: #f8f9fa;
}

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

.service-card {
    background: white;
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), #a87c2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(194, 142, 62, 0.3);
}

.service-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2d2d2d;
}

.service-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.service-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.service-link:hover {
    color: #a87c2e;
    transform: translateX(5px);
}

/* İSTATİSTİKLER */
.stats-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
}

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

.stat-item {
    text-align: center;
    padding: 40px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.stat-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), #a87c2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: white;
    font-size: 1.8rem;
    box-shadow: 0 10px 30px rgba(194, 142, 62, 0.3);
}

.stat-content .stat-number {
    font-size: 3rem;
    font-weight: 800;
    display: block;
    margin-bottom: 10px;
    background: linear-gradient(135deg, var(--primary), #a87c2e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-content .stat-label {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.stat-content .stat-desc {
    font-size: 0.9rem;
    opacity: 0.8;
    line-height: 1.5;
}

/* ÜRÜNLER */
.products-section {
    padding: 100px 0;
    background: white;
}

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

.product-card-modern {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.product-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.product-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

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

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

.product-placeholder {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6c757d;
    font-size: 3rem;
}

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

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

.product-content {
    padding: 25px;
}

.product-category {
    color: var(--primary);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.product-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 12px;
    line-height: 1.3;
}

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

.product-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.product-link:hover {
    color: #a87c2e;
    transform: translateX(5px);
}

.products-cta {
    text-align: center;
    margin-top: 50px;
}

/* HAKKIMIZDA */
.about-modern-section {
    padding: 100px 0;
    background: #f8f9fa;
}

.about-modern-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    padding-right: 40px;
}

.about-features {
    margin-top: 40px;
}

.about-feature {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    padding: 25px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

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

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

.feature-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 10px;
}

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

.about-visual {
    position: relative;
}

.about-image {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    height: 500px;
    background: linear-gradient(135deg, #1a1a1a, #2d2d2d);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(194, 142, 62, 0.1), rgba(0, 0, 0, 0.3));
}

.about-stats-modern {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    display: flex;
    justify-content: space-between;
}

.stat-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    min-width: 120px;
}

.stat-number-modern {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 5px;
}

.stat-label-modern {
    font-size: 0.9rem;
    color: #666;
    font-weight: 600;
}

/* CTA SECTION */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--primary), #a87c2e);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 20px;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* HIZLI İLETİŞİM MODERN */
.quick-contact-modern {
    padding: 100px 0;
    background: white;
}

.quick-contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-modern h2 {
    font-size: 2rem;
    font-weight: 800;
    color: #2d2d2d;
    margin-bottom: 15px;
}

.contact-info-modern > p {
    color: #666;
    font-size: 1.1rem;
    margin-bottom: 40px;
    line-height: 1.6;
}

.contact-info-list-modern {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info-item-modern {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.contact-icon-modern {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary), #a87c2e);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(194, 142, 62, 0.3);
}

.contact-content-modern h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 5px;
}

.contact-content-modern p {
    color: #666;
    margin-bottom: 3px;
    font-size: 0.95rem;
}

.contact-content-modern small {
    color: #999;
    font-size: 0.85rem;
}

.form-card {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.form-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2d2d2d;
    margin-bottom: 10px;
}

.form-card > p {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.6;
}

.contact-form-modern .form-row-modern {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form-modern .form-group-modern {
    margin-bottom: 20px;
}

.contact-form-modern label {
    display: block;
    color: #2d2d2d;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.contact-form-modern input,
.contact-form-modern textarea {
    width: 100%;
    padding: 15px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    background: white;
}

.contact-form-modern input:focus,
.contact-form-modern textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(194, 142, 62, 0.1);
}

.contact-form-modern textarea {
    resize: vertical;
    min-height: 120px;
}

/* RESPONSIVE MODERN */
@media (max-width: 1024px) {
    .hero-modern {
        min-height: auto;
        padding: 100px 0;
    }

    .hero-content {
        padding: 80px 0;
    }

    .hero-visual {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 60px;
    }

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

    .about-modern-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-content {
        padding-right: 0;
        text-align: center;
    }

    .about-stats-modern {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
        margin-top: 30px;
    }

    .quick-contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .services-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    }

    .stats-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

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

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

    .hero-stats {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .stat-card {
        padding: 20px;
    }

    .services-section,
    .products-section,
    .about-modern-section,
    .quick-contact-modern {
        padding: 60px 0;
    }

    .services-grid,
    .products-grid {
        grid-template-columns: 1fr;
    }

    .about-features {
        text-align: left;
    }

    .about-feature {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .cta-content h2 {
        font-size: 2rem;
    }

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

    .contact-info-list-modern {
        gap: 20px;
    }

    .contact-info-item-modern {
        gap: 15px;
    }

    .form-card {
        padding: 30px 20px;
    }

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

    .col-lg-8.mx-auto.text-center{
        text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
    }

/* Sadece ekran genişliği 767.98px ve altında olan cihazlarda (Mobil) çalışır */
@media (max-width: 767.98px) {
    .col-lg-8.text-center .lead.text-white.lh-lg {
        line-height: 1.5 !important; /* Kendi istediğin değeri buraya yaz */
    }
}
.h3.fw-bold.mb-4 {
    text-align: center;
}

@media (max-width: 767.98px) { 
    .site-logo {
        max-height: 60px;
        margin-bottom: -2px;
        }
    }

    
/* Sadece mobil ekranlarda geçerli olacak ayarlar */
@media (max-width: 767.98px) {
    .col-12.d-flex.justify-content-between.align-items-center .section-title {
        /* Yapmak istediğin değişiklikleri buraya yazabilirsin */
        margin-bottom: 0px !important; /* Örnek: Yazı boyutunu küçült */
        font-size: 30px;

    }

    .section {   
        margin-top: 20px;
        padding-bottom: 0px;
        padding-top: 10px;}
}

@media (max-width: 768px) {
    .slider-nav.slider-nav-prev.slider-nav {
        display: none;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    } 
    .slider-nav.slider-nav-next.slider-nav {
        display: none;
        width: 30px;
        height: 30px;
        font-size: 1rem;
    }
}

.col-12.d-flex.justify-content-between.align-items-center .section-title {
        /* Yapmak istediğin değişiklikleri buraya yazabilirsin */
        margin-bottom: 0px !important; /* Örnek: Yazı boyutunu küçült */
        font-size: 30px;
}



