/* ============================================
   INNOVIA İKLİM - Ana Stil Dosyası
   ============================================ */

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

:root {
    --primary: #1e3a8a;
    --primary-dark: #1e2f6b;
    --primary-light: #2563eb;
    --accent: #3b82f6;
    --accent-cyan: #06b6d4;
    --orange: #f97316;
    --red: #ef4444;
    --green: #10b981;
    --whatsapp: #25d366;
    
    --dark: #0f172a;
    --gray-900: #111827;
    --gray-800: #1f2937;
    --gray-700: #374151;
    --gray-600: #4b5563;
    --gray-500: #6b7280;
    --gray-400: #9ca3af;
    --gray-300: #d1d5db;
    --gray-200: #e5e7eb;
    --gray-100: #f3f4f6;
    --gray-50: #f9fafb;
    --white: #ffffff;
    
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 30px rgba(0,0,0,0.12);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.15);
    
    --radius-sm: 6px;
    --radius: 10px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--gray-800);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

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

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
    background: var(--dark);
    color: var(--gray-300);
    font-size: 13px;
    padding: 0;
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.top-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gray-300);
}

.top-bar-item svg {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

.top-bar-right {
    display: flex;
    gap: 15px;
    align-items: center;
}

.btn-teklif {
    background: linear-gradient(135deg, var(--accent), var(--primary-light));
    color: white;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    transition: var(--transition);
}

.btn-teklif:hover {
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59,130,246,0.4);
}

.top-bar-phone {
    color: var(--white);
    font-weight: 600;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    background: var(--white);
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: var(--transition);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

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

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

.main-nav a {
    color: var(--gray-700);
    font-weight: 600;
    font-size: 15px;
    padding: 0;
    position: relative;
    transition: var(--transition);
}

.main-nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 3px;
    background: var(--primary-light);
    transition: var(--transition);
    border-radius: 2px;
}

.main-nav a:hover,
.main-nav a.active {
    color: var(--primary);
}

.main-nav a:hover::after,
.main-nav a.active::after {
    width: 100%;
}

.has-dropdown {
    position: relative;
}

.has-dropdown > a::before {
    content: '▾';
    margin-left: 4px;
    font-size: 10px;
    color: var(--gray-500);
}

.dropdown {
    position: absolute;
    top: calc(100% + 0px);
    left: 0;
    min-width: 230px;
    background: white;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
    z-index: 1000;
    pointer-events: none;
}
/* Görünmez köprü — menü ile dropdown arasındaki boşluğu kapat */
.has-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 12px;
    background: transparent;
}

.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 14px;
    color: var(--gray-700);
}

.dropdown a::after { display: none; }

.dropdown a:hover {
    background: var(--gray-50);
    color: var(--primary);
    padding-left: 25px;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.icon-btn {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--gray-100);
    color: var(--gray-700);
    transition: var(--transition);
    position: relative;
    border: none;
    cursor: pointer;
}

.icon-btn:hover {
    background: var(--primary);
    color: white;
}

.icon-btn .badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    padding: 0 4px;
}

.mobile-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: none;
    background: var(--gray-100);
    border-radius: 8px;
    cursor: pointer;
    align-items: center;
    justify-content: center;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--gray-800);
    margin: 3px 0;
    transition: var(--transition);
}

/* ============================================
   HERO / SLIDER
   ============================================ */
.hero {
    background: linear-gradient(135deg, #1a2754 0%, #0f1b3d 50%, #1a2754 100%);
    color: white;
    padding: 60px 0 100px;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(59,130,246,0.15), transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(6,182,212,0.1), transparent 50%);
    pointer-events: none;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.hero-content h1 .gradient {
    background: linear-gradient(135deg, #3b82f6, #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 17px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 30px;
    line-height: 1.7;
}

.hero-buttons {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    margin-bottom: 30px;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 15px;
    font-weight: 600;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37,99,235,0.4);
}

.btn-outline-white {
    background: rgba(255,255,255,0.1);
    border: 1.5px solid rgba(255,255,255,0.3);
    color: white;
    backdrop-filter: blur(10px);
}

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

.btn-outline {
    background: white;
    border: 1.5px solid var(--gray-200);
    color: var(--gray-800);
}

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

.hero-features {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    color: rgba(255,255,255,0.85);
    font-size: 14px;
}

.hero-feature {
    display: flex;
    align-items: center;
    gap: 8px;
}

.hero-feature svg {
    width: 18px;
    height: 18px;
    color: var(--accent-cyan);
}

.hero-image {
    position: relative;
}

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

.hero-stats {
    position: absolute;
    right: 20px;
    top: 20px;
    background: rgba(15,23,42,0.85);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius);
    padding: 24px;
    min-width: 220px;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

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

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(59,130,246,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-cyan);
}

.stat-icon svg { width: 20px; height: 20px; }

.stat-value {
    font-size: 22px;
    font-weight: 800;
    color: white;
    line-height: 1;
}

.stat-label {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin-top: 4px;
}

/* ============================================
   SECTION GENEL
   ============================================ */
section {
    padding: 70px 0;
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 800;
    color: var(--gray-900);
    letter-spacing: -0.02em;
}

.section-header .more-link {
    color: var(--primary);
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
}

/* ============================================
   KATEGORİ KARTLARI
   ============================================ */
.categories-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 20px;
}

.category-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

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

.category-card h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.category-card .cat-desc {
    font-size: 13px;
    color: var(--gray-600);
    margin-bottom: 15px;
    flex-grow: 1;
}

.category-card .cat-image {
    width: 100%;
    height: 100px;
    object-fit: contain;
    margin-bottom: 15px;
}

.category-card .cat-link {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 5px;
    margin-top: auto;
}

.category-card:hover .cat-link {
    gap: 10px;
}

/* ============================================
   NEDEN BİZ
   ============================================ */
.why-us {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2754 100%);
    color: white;
    border-radius: var(--radius-lg);
    padding: 40px;
    margin: 30px 0 0;
}

.why-us h2 {
    font-size: 20px;
    margin-bottom: 25px;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.why-us-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 25px;
}

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

.why-icon {
    width: 50px;
    height: 50px;
    background: rgba(59,130,246,0.2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-cyan);
}

.why-icon svg { width: 24px; height: 24px; }

.why-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
    color: white;
}

.why-item p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    line-height: 1.5;
}

/* ============================================
   ÜRÜN KARTLARI
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.product-card {
    background: white;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    position: relative;
}

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

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--green);
    color: white;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    z-index: 2;
}

.product-badge.discount {
    background: var(--red);
}

.product-badge.new {
    background: var(--orange);
}

.product-image {
    background: var(--gray-50);
    padding: 20px;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: var(--transition);
}

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

.product-info {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.product-info h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 42px;
}

.product-info h3 a {
    color: inherit;
}

.product-info h3 a:hover {
    color: var(--primary);
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 12px;
    font-size: 13px;
}

.product-rating .stars {
    color: #fbbf24;
    display: flex;
    gap: 2px;
}

.product-rating .stars svg { width: 14px; height: 14px; fill: currentColor; }

.product-rating .review-count {
    color: var(--gray-500);
}

.product-price {
    margin-bottom: 12px;
    margin-top: auto;
}

.price-current {
    font-size: 22px;
    font-weight: 800;
    color: var(--gray-900);
}

.price-old {
    text-decoration: line-through;
    color: var(--gray-400);
    font-size: 14px;
    margin-right: 8px;
}

.price-taksit {
    color: var(--gray-500);
    font-size: 12px;
    margin-top: 2px;
}

.price-hidden {
    background: var(--gray-50);
    border: 1px dashed var(--gray-300);
    padding: 10px;
    border-radius: 6px;
    text-align: center;
    font-size: 13px;
    color: var(--gray-600);
}

.price-hidden a {
    color: var(--primary);
    font-weight: 600;
}

.btn-sepete {
    width: 100%;
    background: white;
    color: var(--primary);
    border: 1.5px solid var(--primary);
    padding: 10px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
}

.btn-sepete:hover {
    background: var(--primary);
    color: white;
}

.btn-sepete.btn-quote {
    background: var(--primary);
    color: white;
}

.btn-sepete.btn-quote:hover {
    background: var(--primary-dark);
}

/* ============================================
   MONTAJ BANNER
   ============================================ */
.cta-banner {
    background: linear-gradient(135deg, #1a2754 0%, #0f1b3d 100%);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 2fr;
    color: white;
    position: relative;
}

.cta-banner-image {
    height: 100%;
    min-height: 250px;
    background-size: cover;
    background-position: center;
}

.cta-banner-content {
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cta-banner h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: white;
}

.cta-banner p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
}

.cta-features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 25px;
}

.cta-feature {
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.cta-feature-icon {
    width: 40px;
    height: 40px;
    background: rgba(59,130,246,0.2);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--accent-cyan);
}

.cta-feature h4 {
    font-size: 13px;
    color: white;
    margin-bottom: 3px;
}

.cta-feature p {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
    margin: 0;
}

/* ============================================
   PROJELER
   ============================================ */
.projects-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.project-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

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

.project-image {
    height: 160px;
    background-size: cover;
    background-position: center;
    background-color: var(--gray-100);
}

.project-info {
    padding: 18px;
}

.project-info h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 10px;
    line-height: 1.4;
    min-height: 40px;
}

.project-cat {
    display: inline-block;
    background: var(--gray-100);
    color: var(--primary);
    padding: 4px 10px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

/* ============================================
   MARKALAR
   ============================================ */
.brands-section {
    background: var(--gray-50);
    padding: 50px 0;
}

.brands-section h2 {
    text-align: center;
    font-size: 16px;
    color: var(--gray-600);
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(8, 1fr);
    gap: 30px;
    align-items: center;
}

.brand-item {
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(0%);
    opacity: 0.6;
    transition: var(--transition);
}

.brand-item:hover {
    filter: grayscale(0%);
    opacity: 1;
}

.brand-item img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
}

.brand-text {
    font-weight: 800;
    font-size: 18px;
    color: var(--gray-700);
}

/* ============================================
   BLOG
   ============================================ */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
}

.blog-card {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

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

.blog-image {
    height: 180px;
    background-size: cover;
    background-position: center;
    background-color: var(--gray-100);
}

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

.blog-meta {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.blog-cat {
    color: var(--primary);
    font-weight: 700;
}

.blog-date {
    color: var(--gray-500);
}

.blog-content h3 {
    font-size: 15px;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 15px;
    line-height: 1.4;
    flex-grow: 1;
}

.blog-content h3 a {
    color: inherit;
}

.blog-content h3 a:hover {
    color: var(--primary);
}

.read-more {
    color: var(--primary);
    font-weight: 600;
    font-size: 13px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* ============================================
   FLOATING BUTTONS
   ============================================ */
.floating-btns {
    position: fixed;
    right: 20px;
    bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    color: white;
    transition: var(--transition);
    text-decoration: none;
    cursor: pointer;
    border: none;
    position: relative;
}

.float-btn:hover {
    transform: scale(1.1);
    color: white;
}

.float-btn.wa { background: var(--whatsapp); }
.float-btn.tel { background: var(--primary); }
.float-btn.top { background: var(--gray-800); }

.float-btn svg { width: 26px; height: 26px; }

.float-btn .badge-pulse {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--red);
    color: white;
    font-size: 11px;
    font-weight: 700;
    min-width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

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

.footer-col h4 {
    color: white;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

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

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    transition: var(--transition);
}

.footer-col ul a:hover {
    color: white;
    padding-left: 5px;
}

.footer-about {
    margin-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
}

.footer-about img {
    height: 50px;
    margin-bottom: 15px;
    filter: brightness(0) invert(1);
}

.footer-contact-item {
    display: flex;
    gap: 10px;
    margin-bottom: 12px;
    font-size: 14px;
    align-items: flex-start;
}

.footer-contact-item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

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

.footer-social a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

.footer-social svg { width: 18px; height: 18px; }

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 25px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 13px;
}

.footer-bottom-links {
    display: flex;
    gap: 25px;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.7);
}

/* ============================================
   FORM ELEMENTS
   ============================================ */
.form-group {
    margin-bottom: 18px;
}

.form-group label {
    display: block;
    font-weight: 600;
    color: var(--gray-700);
    font-size: 14px;
    margin-bottom: 6px;
}

.form-group label .req {
    color: var(--red);
}

.form-control {
    width: 100%;
    padding: 12px 14px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    transition: var(--transition);
    background: white;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(59,130,246,0.1);
}

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

/* ============================================
   PAGE HEADER
   ============================================ */
.page-header {
    background: linear-gradient(135deg, var(--dark) 0%, #1a2754 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(59,130,246,0.15), transparent 50%);
}

.page-header h1 {
    font-size: 36px;
    font-weight: 800;
    margin-bottom: 12px;
    position: relative;
}

.page-header p {
    color: rgba(255,255,255,0.8);
    font-size: 15px;
    position: relative;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    margin-top: 15px;
    position: relative;
}

.breadcrumb a {
    color: rgba(255,255,255,0.8);
}

.breadcrumb a:hover { color: white; }

.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ============================================
   BADGE / TAG
   ============================================ */
.badge {
    display: inline-block;
    padding: 4px 10px;
    background: var(--gray-100);
    color: var(--gray-700);
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
}

.badge-success { background: rgba(16,185,129,0.1); color: var(--green); }
.badge-warning { background: rgba(245,158,11,0.1); color: #d97706; }
.badge-danger { background: rgba(239,68,68,0.1); color: var(--red); }
.badge-primary { background: rgba(37,99,235,0.1); color: var(--primary-light); }

/* ============================================
   ALERT
   ============================================ */
.alert {
    padding: 14px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 14px;
    border-left: 4px solid;
}

.alert-success {
    background: rgba(16,185,129,0.1);
    color: var(--green);
    border-left-color: var(--green);
}

.alert-danger {
    background: rgba(239,68,68,0.1);
    color: var(--red);
    border-left-color: var(--red);
}

.alert-info {
    background: rgba(37,99,235,0.1);
    color: var(--primary-light);
    border-left-color: var(--primary-light);
}

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 1100px) {
    .categories-grid { grid-template-columns: repeat(3, 1fr); }
    .why-us-grid { grid-template-columns: repeat(3, 1fr); }
    .products-grid { grid-template-columns: repeat(3, 1fr); }
    .projects-grid { grid-template-columns: repeat(3, 1fr); }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
    .brands-grid { grid-template-columns: repeat(4, 1fr); }
    .footer-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 768px) {
    .container { padding: 0 15px; }
    
    .top-bar-left { display: none; }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        align-items: stretch;
        padding: 70px 20px 20px;
        gap: 0;
        box-shadow: -10px 0 30px rgba(0,0,0,0.1);
        transition: right 0.3s;
        z-index: 1001;
        overflow-y: auto;
    }
    
    .main-nav.open { right: 0; }
    
    .main-nav a {
        padding: 14px 0;
        border-bottom: 1px solid var(--gray-100);
        width: 100%;
    }
    
    .has-dropdown .dropdown {
        position: static;
        box-shadow: none;
        padding: 0 0 10px 15px;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
    }
    
    .has-dropdown.open .dropdown {
        display: block;
    }
    .has-dropdown .dropdown a {
        padding: 10px 15px !important;
        font-size: 13.5px;
        color: var(--gray-700);
        border-bottom: 1px solid var(--gray-100);
    }
    .has-dropdown .dropdown a:last-child {
        border-bottom: none;
    }
    
    .mobile-toggle { display: flex; }
    
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(0,0,0,0.5);
        z-index: 1000;
        display: none;
    }
    
    .mobile-overlay.active { display: block; }
    
    .hero { padding: 40px 0 60px; }
    
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .hero-content h1 { font-size: 36px; }
    .hero-content p { font-size: 15px; }
    
    .hero-stats {
        position: relative;
        right: auto;
        top: auto;
        margin: 20px 0;
    }
    
    section { padding: 50px 0; }
    
    .section-header h2 { font-size: 24px; }
    
    .categories-grid { grid-template-columns: repeat(2, 1fr); }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .projects-grid { grid-template-columns: 1fr; }
    .blog-grid { grid-template-columns: 1fr; }
    .why-us-grid { grid-template-columns: 1fr; }
    .brands-grid { grid-template-columns: repeat(3, 1fr); gap: 20px; }
    .footer-grid { grid-template-columns: 1fr; gap: 25px; }
    
    .why-us { padding: 25px; }
    
    .cta-banner {
        grid-template-columns: 1fr;
    }
    
    .cta-banner-image { min-height: 180px; }
    
    .cta-features-grid {
        grid-template-columns: 1fr;
    }
    
    .page-header h1 { font-size: 26px; }
    
    .header-inner { padding: 12px 0; }
    
    .logo img { height: 42px; }
    
    .floating-btns {
        right: 12px;
        bottom: 12px;
    }
    
    .float-btn {
        width: 50px;
        height: 50px;
    }
}

@media (max-width: 480px) {
    .hero-content h1 { font-size: 28px; }
    .price-current { font-size: 18px; }
    .product-image { height: 160px; }
    .btn { padding: 12px 20px; font-size: 14px; }
    .categories-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
    .category-card { padding: 18px 14px; }
    .category-card .cat-image { height: 80px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

/* ============================================
   ANIMATIONS - Innovia İklim
   ============================================ */

/* Keyframes */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
    from { opacity: 0; transform: translateX(-30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeInRight {
    from { opacity: 0; transform: translateX(30px); }
    to { opacity: 1; transform: translateX(0); }
}
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}
@keyframes pulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.5); }
    50% { transform: scale(1.05); box-shadow: 0 0 0 14px rgba(37, 99, 235, 0); }
}

    50% { box-shadow: 0 0 0 14px rgba(34, 197, 94, 0); }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}
@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}
@keyframes shimmer {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes rotateIn {
    from { opacity: 0; transform: rotate(-10deg) scale(0.9); }
    to { opacity: 1; transform: rotate(0) scale(1); }
}

/* Hero alanı giriş animasyonları */
.hero-content h1 { animation: fadeInUp 0.8s ease-out 0.1s both; }
.hero-content > p { animation: fadeInUp 0.8s ease-out 0.3s both; }
.hero-buttons { animation: fadeInUp 0.8s ease-out 0.5s both; }
.hero-features { animation: fadeInUp 0.8s ease-out 0.7s both; }
.hero-image, .hero img { animation: fadeInRight 1s ease-out 0.3s both; }
.hero-stats, .stats-card { animation: fadeInRight 1s ease-out 0.6s both; }

/* Üst bar */
.top-bar { animation: fadeIn 0.6s ease-out both; }
.header, header { animation: fadeInUp 0.5s ease-out both; }

/* Scroll reveal classes (JS ile eklenir) */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.7s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* Kategori kartları - hover */
.category-card {
    transition: transform 0.35s cubic-bezier(0.2, 0.8, 0.2, 1), 
                box-shadow 0.35s cubic-bezier(0.2, 0.8, 0.2, 1),
                border-color 0.35s ease;
    will-change: transform;
}
.category-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
    border-color: #2563eb;
}
.category-card .cat-image img,
.category-card img {
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.category-card:hover .cat-image img,
.category-card:hover img {
    transform: scale(1.1);
}

/* Ürün kartları */
.product-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}
.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(0, 0, 0, 0.12);
}
.product-card .product-image,
.product-card .product-image img {
    overflow: hidden;
    transition: transform 0.5s ease;
}
.product-card:hover .product-image img {
    transform: scale(1.08);
}

/* Proje kartları */
.project-card {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    overflow: hidden;
}
.project-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 24px 50px rgba(15, 23, 42, 0.18);
}
.project-card img {
    transition: transform 0.7s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.project-card:hover img {
    transform: scale(1.12);
}

/* Blog kartları */
.blog-card {
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    overflow: hidden;
}
.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.1);
}
.blog-card img {
    transition: transform 0.6s ease;
}
.blog-card:hover img {
    transform: scale(1.08);
}

/* Butonlar */
.btn, button.btn {
    position: relative;
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}
.btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.3);
}
.btn:active {
    transform: translateY(0);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.25), transparent);
    transition: left 0.5s ease;
}
.btn-primary:hover::before {
    left: 100%;
}

/* Header navigasyon link efekti */
.main-nav a, nav a {
    position: relative;
    transition: color 0.25s ease;
}
.main-nav a::after, nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #2563eb;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}
.main-nav a:hover::after, nav a:hover::after {
    width: 80%;
}

/* Stat kartı (15+, 2500+ vb.) */
.stat-item, .hero-stat {
    transition: transform 0.3s ease;
}
.stat-item:hover, .hero-stat:hover {
    transform: translateX(-6px);
}
.stat-number {
    display: inline-block;
    transition: transform 0.3s ease;
}
.stat-item:hover .stat-number {
    transform: scale(1.08);
}

/* WhatsApp / floating buttons - cleaned */
.float-btn, .cta-float {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.float-btn:hover, .cta-float:hover {
    transform: scale(1.05);
}

/* Üst bar Teklif Al butonu */
.btn-quote, .top-bar .btn {
    animation: pulse 2.5s infinite;
}

/* Marka logoları - sonsuz kayan slider */
.brands-grid, .brands-wrapper {
    overflow: hidden;
    position: relative;
}
.brands-grid:hover .brands-track,
.brands-wrapper:hover .brands-track {
    animation-play-state: paused;
}
.brands-track {
    display: flex;
    gap: 40px;
    animation: marquee 30s linear infinite;
    width: fit-content;
}
.brand-item {
    flex-shrink: 0;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(0%);
    opacity: 0.8;
}
.brand-item:hover {
    transform: scale(1.15);
    filter: grayscale(0);
    opacity: 1;
}

/* Why us icon float */
.why-item i, .why-item .icon, .feature-icon {
    transition: transform 0.4s ease;
}
.why-item:hover i, .why-item:hover .icon, .why-item:hover .feature-icon {
    animation: float 1.5s ease-in-out infinite;
}

/* CTA banner */
.cta-banner, .montaj-banner {
    position: relative;
    overflow: hidden;
}
.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%; left: -50%;
    width: 200%; height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, transparent 60%);
    animation: float 6s ease-in-out infinite;
    pointer-events: none;
}

/* Discount badge */
.badge, .discount-badge, .product-badge {
    animation: rotateIn 0.6s ease-out both;
    transition: transform 0.2s ease;
}
.badge:hover, .discount-badge:hover, .product-badge:hover {
    transform: scale(1.1) rotate(-3deg);
}

/* Search/User ikonları */
.icon-btn, .header-icon, .search-icon, .user-icon {
    transition: transform 0.3s ease, background-color 0.3s ease;
}
.icon-btn:hover, .header-icon:hover, .search-icon:hover, .user-icon:hover {
    transform: scale(1.12);
    background-color: rgba(37, 99, 235, 0.1);
}

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

/* Loading skeleton (opsiyonel) */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
}

/* Reduce motion - accessibility */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ============================================
   PRODUCTS SLIDER - Yatay kayar
   ============================================ */
.bestsellers-section {
    padding: 60px 0;
}

.products-slider-wrap {
    position: relative;
    padding: 0 50px;
}

.products-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 10px 4px 20px;
}
.products-slider::-webkit-scrollbar { display: none; }

.slider-item {
    flex: 0 0 calc((100% - 80px) / 5);
    min-width: 220px;
    scroll-snap-align: start;
    transition: transform 0.3s ease;
}
.slider-item:hover {
    transform: translateY(-4px);
}

/* Slider içindeki ürün kartı tam yer kaplasın */
.slider-item .product-card,
.slider-item > article,
.slider-item > div {
    height: 100%;
    width: 100%;
}

/* Navigation butonları */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    font-size: 26px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.1);
    transition: all 0.25s ease;
    z-index: 5;
    line-height: 1;
    padding: 0;
}
.slider-nav:hover {
    background: #2563eb;
    color: #ffffff;
    border-color: #2563eb;
    transform: translateY(-50%) scale(1.08);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}
.slider-nav:active {
    transform: translateY(-50%) scale(0.96);
}
.slider-nav.is-disabled {
    opacity: 0.4;
    cursor: not-allowed;
}
.slider-prev { left: 0; }
.slider-next { right: 0; }

/* Responsive */
@media (max-width: 1100px) {
    .slider-item { flex: 0 0 calc((100% - 60px) / 4); }
}
@media (max-width: 900px) {
    .slider-item { flex: 0 0 calc((100% - 40px) / 3); }
}
@media (max-width: 640px) {
    .products-slider-wrap { padding: 0 8px; }
    .slider-item { flex: 0 0 calc((100% - 20px) / 2); min-width: 160px; }
    .slider-nav { display: none; }
}
@media (max-width: 420px) {
    .slider-item { flex: 0 0 78%; }
}


/* ============================================
   MODERN SLIDER EFFECTS - v2
   ============================================ */

/* Slider container - perspective ile 3D his */
.products-slider-wrap {
    perspective: 1500px;
    perspective-origin: center center;
}

/* Slider kenarlarda fade (kayan içerik dışarı çıkıyor hissi) */
.products-slider-wrap::before,
.products-slider-wrap::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 70px;
    pointer-events: none;
    z-index: 3;
}
.products-slider-wrap::before {
    left: 50px;
    background: linear-gradient(to right, #f8fafc 0%, transparent 100%);
}
.products-slider-wrap::after {
    right: 50px;
    background: linear-gradient(to left, #f8fafc 0%, transparent 100%);
}

/* Slider'ın kendisi - smooth momentum */
.products-slider {
    scroll-padding: 0 20px;
}

/* Slider item - 3D ve hover efektleri */
.slider-item {
    transform-style: preserve-3d;
    transform-origin: center center;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                opacity 0.5s ease,
                filter 0.4s ease;
    opacity: 0.85;
    filter: brightness(0.95);
}

/* Aktif/hover olan kart - öne çıkar */
.slider-item:hover,
.slider-item.active {
    transform: translateY(-10px) scale(1.03);
    opacity: 1;
    filter: brightness(1.05);
    z-index: 2;
}

/* Mouse hover - 3D tilt */
.slider-item:hover .product-card {
    box-shadow: 0 25px 60px rgba(37, 99, 235, 0.2),
                0 10px 25px rgba(0, 0, 0, 0.08);
    transform: rotateY(-2deg) rotateX(2deg);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Slider içindeki kartın iç görsel zoom */
.slider-item .product-image,
.slider-item .product-card > img {
    overflow: hidden;
}
.slider-item .product-image img,
.slider-item img {
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.slider-item:hover .product-image img,
.slider-item:hover img {
    transform: scale(1.12);
}

/* Slider giriş animasyonu - sayfa yüklenince kartlar sıralı gelir */
@keyframes sliderItemIn {
    from {
        opacity: 0;
        transform: translateY(40px) scale(0.92);
    }
    to {
        opacity: 0.85;
        transform: translateY(0) scale(1);
    }
}
.slider-item {
    animation: sliderItemIn 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94) backwards;
}
.slider-item:nth-child(1) { animation-delay: 0.05s; }
.slider-item:nth-child(2) { animation-delay: 0.15s; }
.slider-item:nth-child(3) { animation-delay: 0.25s; }
.slider-item:nth-child(4) { animation-delay: 0.35s; }
.slider-item:nth-child(5) { animation-delay: 0.45s; }
.slider-item:nth-child(6) { animation-delay: 0.55s; }
.slider-item:nth-child(7) { animation-delay: 0.65s; }
.slider-item:nth-child(8) { animation-delay: 0.75s; }

/* Navigation butonları - daha modern */
.slider-nav {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border: 2px solid rgba(37, 99, 235, 0.15);
    color: #2563eb;
    font-size: 28px;
    width: 48px;
    height: 48px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.slider-nav::before {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.slider-nav:hover {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    color: #ffffff;
    border-color: transparent;
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.4);
}
.slider-nav:hover::before {
    opacity: 1;
}

/* Slider altına aktif indicator (dot'lar) */
.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
}
.slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #cbd5e1;
    cursor: pointer;
    border: none;
    padding: 0;
    transition: all 0.3s ease;
}
.slider-dot:hover {
    background: #94a3b8;
    transform: scale(1.2);
}
.slider-dot.active {
    background: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    width: 28px;
    border-radius: 4px;
}

/* Slider sırasında kayma efekti */
.products-slider.is-scrolling .slider-item {
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.products-slider.is-scrolling .slider-item:not(:hover) {
    transform: scale(0.97);
    filter: brightness(0.9) blur(0.5px);
}

/* Card içeriği için "shimmer" efekti hover'da */
.slider-item .product-card {
    position: relative;
    overflow: hidden;
}
.slider-item .product-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.4),
        transparent
    );
    transition: left 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
    z-index: 1;
}
.slider-item:hover .product-card::after {
    left: 150%;
}

/* Responsive - mobilde fade kenar kapat */
@media (max-width: 640px) {
    .products-slider-wrap::before,
    .products-slider-wrap::after {
        display: none;
    }
    .slider-item {
        opacity: 1;
        filter: none;
    }
}

/* ============================================
   PROJECTS SLIDER - özelleştirme
   ============================================ */
.projects-slider-wrap::before,
.projects-slider-wrap::after {
    background: linear-gradient(to right, #ffffff 0%, transparent 100%);
}
.projects-slider-wrap::after {
    background: linear-gradient(to left, #ffffff 0%, transparent 100%);
}

.projects-slider .project-card {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: #ffffff;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.08);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    height: 100%;
    position: relative;
}
.projects-slider .project-card:hover {
    box-shadow: 0 25px 55px rgba(15, 23, 42, 0.18);
}
.projects-slider .project-image {
    width: 100%;
    height: 200px;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.projects-slider .project-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.7) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
    pointer-events: none;
}
.projects-slider .project-card:hover::before {
    opacity: 1;
}
.projects-slider .project-card:hover .project-image {
    transform: scale(1.1);
}
.projects-slider .project-info {
    padding: 18px 20px;
    position: relative;
    z-index: 2;
}
.projects-slider .project-info h3 {
    font-size: 15px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 8px;
    line-height: 1.4;
}
.projects-slider .project-cat {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: #2563eb;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

/* ============================================
   BRANDS MARQUEE - sonsuz kayan
   ============================================ */
.brands-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}
.brands-section h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 35px;
    letter-spacing: 0.5px;
}

.brands-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 8%, #000 92%, transparent 100%);
}

.brands-track {
    display: flex;
    gap: 60px;
    align-items: center;
    animation: brandsScroll 25s linear infinite;
    width: max-content;
    padding: 0;
}

.brands-marquee:hover .brands-track {
    animation-play-state: paused;
}

@keyframes brandsScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.brands-track .brand-item {
    flex: 0 0 auto;
    width: 160px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    filter: grayscale(0%);
    opacity: 0.65;
    transition: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0 10px;
}
.brands-track .brand-item:hover {
    filter: grayscale(0);
    opacity: 1;
    transform: scale(1.15);
}
.brands-track .brand-item img {
    max-width: 100%;
    max-height: 60px;
    width: auto;
    height: auto;
    object-fit: contain;
}
.brands-track .brand-text {
    font-size: 20px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 1px;
    text-align: center;
}

@media (max-width: 768px) {
    .brands-track { gap: 35px; animation-duration: 18s; }
    .brands-track .brand-item { width: 110px; height: 60px; }
    .brands-section h2 { font-size: 18px; }
}

/* ============================================
   BRANDS FADE CAROUSEL - v3 (override)
   ============================================ */
/* Eski marquee animasyonunu durdur */
.brands-track {
    animation: none !important;
    display: none !important;
}
.brands-marquee {
    display: none !important;
}

/* Yeni fade-carousel grid */
.brands-fade {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px 40px;
    align-items: center;
    justify-items: center;
    padding: 30px 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    min-height: 200px;
}

.brands-fade .brand-item {
    width: 100%;
    max-width: 180px;
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translateY(20px) scale(0.92);
    transition: opacity 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.5s ease;
    pointer-events: none;
    filter: grayscale(0%) brightness(1);
    position: relative;
}

.brands-fade .brand-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.brands-fade .brand-item.is-leaving {
    opacity: 0;
    transform: translateY(-15px) scale(0.95);
}

.brands-fade .brand-item:hover {
    filter: grayscale(0%) brightness(1);
    transform: translateY(-4px) scale(1.05);
}

.brands-fade .brand-item img {
    max-width: 100%;
    max-height: 65px;
    width: auto;
    height: auto;
    object-fit: contain;
    transition: transform 0.4s ease;
}

.brands-fade .brand-text {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 1.2px;
    text-align: center;
}

/* Glowing background efekti aktif markalar için */
.brands-fade .brand-item.is-visible::before {
    content: '';
    position: absolute;
    inset: -15px;
    background: radial-gradient(ellipse, rgba(37, 99, 235, 0.06) 0%, transparent 70%);
    border-radius: 20px;
    z-index: -1;
    animation: brandGlow 3s ease-in-out infinite;
}

@keyframes brandGlow {
    0%, 100% { opacity: 0.6; }
    50% { opacity: 1; }
}

/* Responsive */
@media (max-width: 900px) {
    .brands-fade {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px 30px;
    }
}
@media (max-width: 640px) {
    .brands-fade {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
        min-height: 280px;
    }
    .brands-fade .brand-item {
        height: 70px;
        max-width: 140px;
    }
}

/* ============================================
   BRANDS STAGE - Tek satır modern geçiş (v4)
   ============================================ */
/* Eski varyantları kapat */
.brands-marquee, .brands-track, .brands-fade {
    display: none !important;
}

.brands-stage {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 60px;
    height: 130px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
    mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%);
}

.brand-slot {
    position: absolute;
    top: 50%;
    height: 80px;
    width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                left 0.8s cubic-bezier(0.4, 0, 0.2, 1),
                filter 0.4s ease;
    filter: grayscale(0%);
    pointer-events: none;
    will-change: opacity, left;
}

.brand-slot.is-active {
    opacity: 1;
    pointer-events: auto;
}

.brand-slot:hover {
    filter: grayscale(0);
    transform: translate(-50%, -55%) scale(1.08);
}

.brand-slot img {
    max-width: 100%;
    max-height: 70px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.brand-slot .brand-text {
    font-size: 22px;
    font-weight: 800;
    color: #0f172a;
    letter-spacing: 1.2px;
    white-space: nowrap;
}

/* Alt gösterge çizgisi */
.brands-stage::after {
    content: '';
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #2563eb, transparent);
    border-radius: 2px;
    opacity: 0.4;
}

@media (max-width: 900px) {
    .brands-stage { height: 110px; padding: 30px 30px; }
    .brand-slot { width: 140px; height: 60px; }
    .brand-slot img { max-height: 50px; }
}
@media (max-width: 640px) {
    .brands-stage { padding: 20px 10px; height: 100px; }
    .brand-slot { width: 110px; height: 50px; }
    .brand-slot img { max-height: 42px; }
    .brand-slot .brand-text { font-size: 16px; }
}

/* Header sıkı oturma - üst/alt beyazlık temizliği */
.header,
.main-header,
header.site-header {
    padding: 0 !important;
    margin: 0 !important;
}
.header-row,
.header-inner,
.header-container {
    padding: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    align-items: center;
}
.logo {
    padding: 4px 0 !important;
    margin: 0 !important;
    display: flex;
    align-items: center;
}
.logo img {
    display: block;
    margin: 0;
    padding: 0;
}

/* ============================================
   HEADER SIKIŞTIRMA - tek satır kompakt
   ============================================ */
.top-bar,
.topbar {
    padding: 8px 0 !important;
    margin: 0 !important;
    line-height: 1.2;
}
.top-bar .container,
.topbar .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.header,
.main-header,
header.site-header,
.site-header {
    padding: 0 !important;
    margin: 0 !important;
    border-top: 0;
}

.header-inner,
.header-row,
.header-container,
.header > .container {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
}

.logo {
    padding: 6px 0 !important;
    margin: 0 !important;
    line-height: 0;
}
.logo img {
    display: block;
    height: 56px !important;
    width: auto;
    margin: 0;
    padding: 0;
}

/* Nav linklerini header'a tam ortala */
.main-nav,
.header-nav,
nav.main-nav {
    margin: 0 !important;
    padding: 0 !important;
    align-items: center;
}
.main-nav a,
.header-nav a {
    padding-top: 6px !important;
    padding-bottom: 6px !important;
}

/* Sağ butonlar (arama/üye) */
.header-actions {
    margin: 0 !important;
    padding: 0 !important;
    gap: 8px;
}

/* ============================================
   HEADER FINAL - tek satır, logo büyük, sıkışık
   ============================================ */
.logo img {
    height: 70px !important;
    width: auto !important;
}

.header,
.main-header,
header.site-header {
    padding: 8px 0 !important;
    margin: 0 !important;
    border-top: 0 !important;
    border-bottom: 0 !important;
}

.header-inner,
.header-row,
.header > .container,
.main-header > .container {
    padding: 0 20px !important;
    margin: 0 auto !important;
    min-height: 0 !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px;
}

.logo {
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
    flex-shrink: 0;
}

.main-nav,
nav.main-nav {
    flex: 1;
    justify-content: center;
    margin: 0 !important;
    padding: 0 !important;
}

.header-actions {
    margin: 0 !important;
    padding: 0 !important;
    flex-shrink: 0;
}

/* ============================================
   LOGO - dikkat çekici, modern
   ============================================ */
.logo {
    position: relative;
    display: inline-flex;
    align-items: center;
    padding: 4px 8px !important;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo img {
    height: 70px !important;
    width: auto !important;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                filter 0.4s ease;
    filter: drop-shadow(0 2px 8px rgba(37, 99, 235, 0.15));
    position: relative;
    z-index: 2;
}

/* Logo'nun arkasında soft halka */
.logo::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 16px;
    background: radial-gradient(circle at center, rgba(59, 130, 246, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 0;
}

/* Soft shine efekti */
.logo::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        110deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 3;
    transition: left 0.9s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 12px;
    overflow: hidden;
}

.logo:hover {
    transform: translateY(-2px);
}
.logo:hover::before {
    opacity: 1;
}
.logo:hover::after {
    left: 130%;
}
.logo:hover img {
    transform: scale(1.04);
    filter: drop-shadow(0 6px 16px rgba(37, 99, 235, 0.3));
}

/* İlk yüklemede dikkat çekici hafif pulse - 1 kez */
@keyframes logoIntro {
    0% {
        opacity: 0;
        transform: scale(0.85) translateY(-10px);
        filter: blur(8px);
    }
    60% {
        opacity: 1;
        transform: scale(1.05) translateY(0);
        filter: blur(0);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.logo img {
    animation: logoIntro 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}

/* Periyodik dikkat çekici parıltı - her 8 saniyede bir */
@keyframes logoShine {
    0%, 95%, 100% { left: -100%; }
    97% { left: 130%; }
}

.logo {
    overflow: hidden;
}
.logo::after {
    animation: logoShine 8s ease-in-out infinite;
}
.logo:hover::after {
    animation: none;
}

/* Mobil */
@media (max-width: 768px) {
    .logo img {
        height: 52px !important;
    }
}

/* Logo - kırpılmış PNG için büyük gösterim */
.logo img {
    height: 95px !important;
    max-height: none !important;
}
@media (max-width: 768px) {
    .logo img {
        height: 65px !important;
    }
}

/* ============================================
   HEADER COMPACT - Logo taşmalı, header sıkışık
   ============================================ */
.header,
.main-header,
header.site-header {
    padding: 0 !important;
    margin: 0 !important;
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    overflow: visible !important;
    position: relative;
}

.header-inner,
.header-row,
.header > .container,
.main-header > .container,
header.site-header > .container {
    padding: 0 20px !important;
    margin: 0 auto !important;
    height: 70px !important;
    min-height: 70px !important;
    display: flex !important;
    align-items: center !important;
    gap: 20px;
    overflow: visible !important;
}

.logo {
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
    flex-shrink: 0;
    height: 70px;
    display: flex;
    align-items: center;
    overflow: visible;
}

.logo img {
    height: 90px !important;
    width: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block;
}

/* Top bar sıkışık */
.top-bar,
.topbar {
    padding: 6px 0 !important;
    margin: 0 !important;
    min-height: 0 !important;
    line-height: 1.4;
}

/* Mobil */
@media (max-width: 768px) {
    .header,
    .header-inner,
    .header > .container {
        height: 60px !important;
        min-height: 60px !important;
        max-height: 60px !important;
    }
    .logo { height: 60px; }
    .logo img { height: 70px !important; }
}

/* ============================================
   LOGO - beyaz alana tam otur, ekstra büyüt
   ============================================ */
.logo {
    position: relative;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
    flex-shrink: 0;
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    overflow: visible !important;
    border-radius: 0 !important;
}

.logo a,
.logo > a {
    display: flex !important;
    align-items: center !important;
    line-height: 0 !important;
    padding: 0 !important;
    margin: 0 !important;
    height: 100% !important;
}

.logo img {
    height: 130px !important;
    width: auto !important;
    max-height: none !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    object-fit: contain;
}

/* Logo etrafındaki ::before/::after halka efektlerini kapat */
.logo::before,
.logo::after {
    display: none !important;
}

@media (max-width: 768px) {
    .logo img { height: 80px !important; }
}

/* Logo - sol kenara yaklaştır ama tam yapışmasın */
.header-inner,
.header-row,
.header > .container,
.main-header > .container,
header.site-header > .container {
    padding-left: 30px !important;
    padding-right: 30px !important;
    max-width: 100% !important;
}

.logo {
    margin-left: 20px !important;
}

@media (max-width: 768px) {
    .header-inner,
    .header > .container { padding-left: 15px !important; padding-right: 15px !important; }
    .logo { margin-left: 0 !important; }
}

/* ============================================
   MOBİL UYUM - Hamburger menu + responsive
   ============================================ */

/* Hamburger toggle - normalde gizli */
.mobile-toggle {
    display: none;
    width: 38px;
    height: 38px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    padding: 0;
    transition: all 0.25s ease;
}
.mobile-toggle:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}
.mobile-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    background: #0f172a;
    border-radius: 2px;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transform-origin: center;
}
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile overlay (arka karartı) */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
    backdrop-filter: blur(3px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.35s ease;
    z-index: 998;
}
.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* ============================================
   MOBİL — 1024px altı
   ============================================ */
@media (max-width: 1024px) {
    .mobile-toggle { display: flex; }

    /* Top bar sol kısmı mobilde gizle (sadece telefon/teklif kalır) */
    .top-bar-left { display: none !important; }
    .top-bar .container {
        justify-content: center !important;
    }
    .top-bar-right {
        gap: 12px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .top-bar-phone { font-size: 13px; }
    .btn-teklif { padding: 6px 16px !important; font-size: 13px; }

    /* Header inner */
    .header-inner {
        position: relative;
    }

    /* Ana nav - sağdan kayan drawer */
    .main-nav,
    nav.main-nav {
        position: fixed;
        top: 0;
        right: -320px;
        width: 300px;
        max-width: 85vw;
        height: 100vh;
        background: #ffffff;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        flex-direction: column !important;
        align-items: stretch !important;
        justify-content: flex-start !important;
        padding: 80px 0 30px !important;
        gap: 0 !important;
        overflow-y: auto;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        z-index: 999;
    }
    .main-nav.active {
        right: 0;
    }
    .main-nav a {
        display: block !important;
        padding: 14px 25px !important;
        border-bottom: 1px solid #f1f5f9;
        font-size: 15px !important;
        text-align: left !important;
        color: #0f172a !important;
        position: relative;
    }
    .main-nav a::after {
        display: none !important;
    }
    .main-nav a.active,
    .main-nav a:hover {
        background: #f8fafc;
        color: #2563eb !important;
        padding-left: 30px !important;
    }
    .main-nav a.active::before,
    .main-nav a:hover::before {
        content: '';
        position: absolute;
        left: 0; top: 0; bottom: 0;
        width: 3px;
        background: #2563eb;
    }

    /* Dropdown — mobilde direkt aşağı açılır (her zaman görünür kategori) */
    .has-dropdown {
        position: relative;
    }
    .has-dropdown > a {
        cursor: pointer;
    }
    .has-dropdown > a::after {
        content: '▾';
        float: right;
        font-size: 12px;
        margin-left: 8px;
        transition: transform 0.3s ease;
    }
    .has-dropdown.open > a::after {
        transform: rotate(180deg);
    }
    .has-dropdown .dropdown {
        position: static !important;
        display: none;
        background: #f8fafc;
        box-shadow: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    .has-dropdown.open .dropdown {
        display: block !important;
        max-height: 500px;
    }
    .has-dropdown .dropdown a {
        padding: 10px 25px 10px 45px !important;
        font-size: 13px !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }

    /* Hero alanı - mobile stack */
    .hero,
    .hero-section,
    section.hero {
        padding: 30px 0 !important;
    }
    .hero-content,
    .hero-grid {
        grid-template-columns: 1fr !important;
        text-align: left;
    }
    .hero-content h1 {
        font-size: 32px !important;
        line-height: 1.15 !important;
    }
    .hero-content > p {
        font-size: 14px !important;
    }
    .hero-image,
    .hero-visual {
        margin-top: 25px;
    }
    .hero-stats,
    .stats-card {
        margin-top: 20px;
        position: relative !important;
        right: auto !important;
        top: auto !important;
    }
    .hero-buttons {
        flex-wrap: wrap;
        gap: 10px;
    }
    .hero-features {
        flex-wrap: wrap;
        gap: 10px 18px !important;
    }
    .hero-features > * {
        font-size: 12px;
    }

    /* Grid'ler */
    .products-grid,
    .categories-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    .projects-grid,
    .blog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 15px !important;
    }
    .features-grid,
    .why-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }
    .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    /* Footer */
    .footer-grid,
    .footer-cols {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 25px !important;
    }

    /* Container */
    .container {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
}

/* ============================================
   MOBİL — 640px altı
   ============================================ */
@media (max-width: 640px) {
    /* Top bar daha kompakt */
    .top-bar { font-size: 12px; }
    .top-bar-right { gap: 8px; }
    .top-bar-phone { font-size: 12px; }

    /* Hero başlık daha küçük */
    .hero-content h1 { font-size: 26px !important; }
    .hero-content > p { font-size: 13px !important; }

    /* Section başlıklar */
    .section-header h2, h2 { font-size: 18px !important; }

    /* Tek sütun gridler */
    .products-grid,
    .categories-grid {
        grid-template-columns: 1fr !important;
    }
    .projects-grid,
    .blog-grid {
        grid-template-columns: 1fr !important;
    }
    .footer-grid,
    .footer-cols {
        grid-template-columns: 1fr !important;
    }

    /* Stat kartları 1'er */
    .stats-grid {
        grid-template-columns: 1fr !important;
    }

    /* Butonlar tam genişlik */
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Container daha sıkı */
    .container {
        padding-left: 12px !important;
        padding-right: 12px !important;
    }

    /* Logo mobilde */
    .logo img {
        height: 56px !important;
    }

    /* Sticky bottom nav göstereceğiz JS ile ekleyince */
    body.has-bottom-nav { padding-bottom: 65px; }
}

/* Body scroll lock - menü açıkken */
body.menu-open {
    overflow: hidden;
}

/* ============================================
   STICKY BOTTOM NAV (mobil)
   ============================================ */
.bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 1px solid #e2e8f0;
    z-index: 990;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    justify-content: space-around;
    padding: 6px 0 8px;
}
.bottom-nav a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 3px;
    color: #64748b;
    text-decoration: none;
    font-size: 10px;
    font-weight: 600;
    padding: 6px 10px;
    border-radius: 8px;
    flex: 1;
    text-align: center;
    transition: color 0.25s ease;
    position: relative;
}
.bottom-nav a svg {
    width: 22px;
    height: 22px;
}
.bottom-nav a.active,
.bottom-nav a:hover {
    color: #2563eb;
}
.bottom-nav a .bn-badge {
    position: absolute;
    top: 2px;
    right: calc(50% - 18px);
    background: #ef4444;
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    padding: 1px 5px;
    border-radius: 10px;
    line-height: 1.2;
}

@media (max-width: 768px) {
    .bottom-nav { display: flex; }
    body { padding-bottom: 65px; }
}

/* ============================================
   MODAL Sistemi (Custom)
   ============================================ */
.modal-backdrop {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.6);
    backdrop-filter: blur(4px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}
.modal-backdrop.active {
    opacity: 1;
    visibility: visible;
}

.modal {
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    max-width: 700px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    transform: scale(0.92) translateY(20px);
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    position: relative;
}
.modal-backdrop.active .modal {
    transform: scale(1) translateY(0);
}

.modal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
    border-bottom: 1px solid #f1f5f9;
}
.modal-header h3 {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #0f172a;
}
.modal-close {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #f1f5f9;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #475569;
    font-size: 20px;
    line-height: 1;
    transition: all 0.2s ease;
}
.modal-close:hover {
    background: #ef4444;
    color: #ffffff;
}

.modal-body {
    padding: 25px;
}
.modal-footer {
    padding: 18px 25px;
    border-top: 1px solid #f1f5f9;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

@media (max-width: 640px) {
    .modal-backdrop { padding: 10px; }
    .modal { max-height: 95vh; border-radius: 12px; }
    .modal-body { padding: 18px; }
    .modal-header { padding: 15px 18px; }
}

/* Projects slider - kart yazı taşmasın */
.projects-slider .project-card,
.project-card {
    height: auto !important;
    min-height: 320px;
    overflow: visible !important;
    display: flex !important;
    flex-direction: column !important;
}
.projects-slider .project-image,
.project-card .project-image {
    flex-shrink: 0;
    height: 180px;
}
.projects-slider .project-info,
.project-card .project-info {
    flex: 1;
    padding: 16px 18px !important;
    overflow: visible !important;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.projects-slider .project-info h3,
.project-card .project-info h3 {
    font-size: 14px !important;
    line-height: 1.4 !important;
    margin: 0 !important;
    white-space: normal !important;
    overflow: visible !important;
    text-overflow: clip !important;
    display: block !important;
}
.projects-slider .project-cat,
.project-card .project-cat {
    margin-top: auto;
}

/* Slider item taşma kontrolü */
.slider-item {
    overflow: visible !important;
    height: auto !important;
}

/* Slider container - kart yazısı sığsın */
.products-slider,
.projects-slider {
    padding-bottom: 30px !important;
    overflow-x: auto !important;
    overflow-y: visible !important;
}
.products-slider-wrap,
.projects-slider-wrap {
    overflow: visible !important;
}

/* Proje kartları yüksekliği */
.projects-slider .slider-item {
    min-height: 360px !important;
}
.projects-slider .project-card {
    min-height: 340px !important;
    background: #fff !important;
    border-radius: 12px !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}
.projects-slider .project-info {
    padding: 14px 16px 18px !important;
    background: #fff !important;
}
.projects-slider .project-info h3 {
    font-size: 13.5px !important;
    line-height: 1.35 !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    min-height: 38px;
}
.projects-slider .project-cat {
    font-size: 11px !important;
    color: #2563eb !important;
    font-weight: 600;
    text-transform: uppercase;
    margin-top: 6px !important;
}

/* AGRESİF FIX - tüm container'larda overflow visible */
section,
.container,
.projects-slider-wrap,
.projects-slider,
.projects-slider .slider-item {
    overflow: visible !important;
}

/* Sadece slider'ın yatay scroll'u kalsın */
.projects-slider {
    overflow-x: scroll !important;
    overflow-y: visible !important;
    padding-bottom: 40px !important;
    padding-top: 10px !important;
}

/* Proje kartı net boyut */
.projects-slider .project-card {
    height: 280px !important;
    min-height: 280px !important;
    display: block !important;
    position: relative;
    background: #fff !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}
.projects-slider .project-image {
    width: 100%;
    height: 180px !important;
    background-size: cover;
    background-position: center;
}
.projects-slider .project-info {
    height: 100px !important;
    padding: 12px 16px !important;
    background: #fff !important;
    display: block !important;
}
.projects-slider .project-info h3 {
    font-size: 13px !important;
    line-height: 1.3 !important;
    margin: 0 0 6px !important;
    color: #0f172a !important;
    font-weight: 700 !important;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.projects-slider .project-cat {
    font-size: 11px !important;
    color: #2563eb !important;
    font-weight: 600;
}

/* Proje kartı - resmin üzerine başlık binmesini durdur */
.projects-slider .project-card::before,
.projects-slider .project-card::after,
.project-card::before,
.project-card::after {
    display: none !important;
    content: none !important;
}

/* Proje image - sadece görsel, üstte yazı yok */
.projects-slider .project-image {
    position: relative;
}
.projects-slider .project-image::before,
.projects-slider .project-image::after {
    display: none !important;
}

/* Eğer image içinde bir overlay/title varsa o da kapansın */
.projects-slider .project-image > * {
    display: none !important;
}

/* Project image üzerine kesin yazı binmesin */
.projects-slider .project-image {
    background-color: #f1f5f9;
    background-repeat: no-repeat;
}
.projects-slider .project-info {
    background: #fff !important;
    position: relative !important;
    z-index: 10 !important;
    margin-top: 0 !important;
}
/* Tüm pseudo elementleri kapat */
.projects-slider *::before,
.projects-slider *::after {
    content: none !important;
    display: none !important;
}

/* Final fix - project image içindeki her şeyi gizle */
.projects-slider .project-image,
.project-image {
    position: relative;
    height: 180px !important;
    background-size: cover !important;
    background-position: center !important;
    display: block !important;
}
.projects-slider .project-image *,
.project-image * {
    display: none !important;
    visibility: hidden !important;
}
/* Eğer absolute konumlu yazı varsa kaldır */
.project-card > *:not(.project-image):not(.project-info) {
    display: none !important;
}

/* DEBUG: project-info'ya kırmızı kenar */
.projects-slider .project-info {
    border: 2px solid red !important;
    background: yellow !important;
}
.projects-slider .project-image {
    border: 2px solid blue !important;
}

/* DEBUG bordür kaldır */
.projects-slider .project-info {
    border: none !important;
    background: #fff !important;
}
.projects-slider .project-image {
    border: none !important;
}

/* Resmin üstüne dökülen herhangi bir absolute yazıyı kapat */
.projects-slider .project-card > *:not(.project-image):not(.project-info),
.projects-slider .project-image > *,
.projects-slider .project-card .project-overlay,
.projects-slider .project-card h3:not(.project-info h3) {
    display: none !important;
    visibility: hidden !important;
}

/* MUTLAK FINAL FIX */
.projects-slider .slider-item {
    position: relative !important;
    transform: none !important;
    opacity: 1 !important;
    filter: none !important;
    animation: none !important;
}

.projects-slider .project-card {
    position: relative !important;
    transform: none !important;
    opacity: 1 !important;
}

.projects-slider .project-info {
    position: static !important;
    transform: none !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    opacity: 1 !important;
}

.projects-slider .project-info * {
    position: static !important;
    transform: none !important;
    opacity: 1 !important;
}

/* Tüm absolute h3'leri kaldır */
.projects-slider .project-card h3,
.projects-slider .project-card .project-title {
    position: static !important;
    transform: none !important;
}

/* LOGO BÜYÜTME - etrafındaki beyazlık yok */
.logo img {
    height: 140px !important;
    width: auto !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
}
.logo {
    height: auto !important;
    overflow: visible !important;
    padding: 0 !important;
}
.header,
.main-header,
header.site-header {
    height: auto !important;
    min-height: 0 !important;
    max-height: none !important;
    overflow: visible !important;
}
.header-inner,
.header > .container {
    height: auto !important;
    min-height: 0 !important;
    align-items: center;
}

@media (max-width: 768px) {
    .logo img { height: 75px !important; }
}

/* LOGO FINAL - header taşmalı, beyazlık YOK */
.top-bar,
.topbar {
    padding: 6px 0 !important;
    margin: 0 !important;
}

.header,
.main-header,
header.site-header,
.site-header {
    padding: 0 !important;
    margin: 0 !important;
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    overflow: visible !important;
    border: none !important;
    background: #ffffff;
}

.header-inner,
.header-row,
.header > .container,
.main-header > .container,
header.site-header > .container {
    padding: 0 30px !important;
    margin: 0 auto !important;
    height: 70px !important;
    min-height: 70px !important;
    max-height: 70px !important;
    overflow: visible !important;
    display: flex !important;
    align-items: center !important;
}

.logo {
    height: 70px !important;
    display: flex !important;
    align-items: center !important;
    overflow: visible !important;
    padding: 0 !important;
    margin: 0 0 0 20px !important;
    line-height: 0 !important;
}

.logo a,
.logo > a {
    display: flex !important;
    align-items: center !important;
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
}

.logo img {
    height: 130px !important;
    width: auto !important;
    max-height: none !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: block !important;
    object-fit: contain;
}

/* Etrafındaki halka/glow efektleri kapansın */
.logo::before,
.logo::after {
    display: none !important;
    content: none !important;
}

@media (max-width: 768px) {
    .header,
    .header-inner,
    .header > .container { height: 60px !important; min-height: 60px !important; max-height: 60px !important; }
    .logo { height: 60px !important; margin-left: 10px !important; }
    .logo img { height: 90px !important; }
}

/* LOGO ÖN PLAN + DAHA BÜYÜK */
.logo {
    z-index: 100 !important;
    position: relative !important;
}

.logo img {
    height: 170px !important;
    width: auto !important;
    max-height: none !important;
    filter: drop-shadow(0 6px 16px rgba(37, 99, 235, 0.25));
    transition: transform 0.4s ease, filter 0.4s ease;
}

.logo:hover img {
    transform: scale(1.05);
    filter: drop-shadow(0 10px 25px rgba(37, 99, 235, 0.4));
}

/* Header overflow visible, logo taşabilsin */
.header,
.main-header,
header.site-header,
.header-inner,
.header > .container {
    overflow: visible !important;
}

/* Top bar'ın üzerine de taşabilsin */
header.site-header,
.header {
    z-index: 90;
    position: relative;
}

@media (max-width: 768px) {
    .logo img { height: 100px !important; }
}
@media (max-width: 480px) {
    .logo img { height: 80px !important; }
}

/* LOGO HERO ALANINA SARKAN MODERN EFEKT */
.logo {
    position: relative !important;
    z-index: 200 !important;
    overflow: visible !important;
    margin-bottom: -60px !important;  /* aşağı sarkma */
}

.logo img {
    height: 180px !important;
    width: auto !important;
    max-height: none !important;
    position: relative;
    z-index: 200;
    filter: 
        drop-shadow(0 8px 20px rgba(37, 99, 235, 0.35))
        drop-shadow(0 4px 10px rgba(0, 0, 0, 0.15));
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.logo:hover img {
    transform: translateY(-4px) scale(1.04);
}

/* Header taşmayı engellemesin */
.header,
.main-header,
header.site-header,
.header-inner,
.header > .container {
    overflow: visible !important;
}

/* Hero alanı logoyla çakışmasın - üst kısmında biraz boşluk */
.hero,
.hero-section,
section.hero {
    padding-top: 50px !important;
    position: relative;
    z-index: 1;
}

/* Header arka planı logoyu kesmesin */
.header,
header.site-header {
    background: #ffffff !important;
    overflow: visible !important;
}

@media (max-width: 768px) {
    .logo {
        margin-bottom: 0 !important;
    }
    .logo img { height: 90px !important; }
    .hero { padding-top: 60px !important; padding-bottom: 50px !important; }
    .hero-content { padding-top: 10px; }
    .hero-content h1 { margin-top: 0 !important; }
}

/* LOGO ARKAPLAN - okunabilir olsun */
.logo {
    background: #ffffff !important;
    padding: 8px 20px !important;
    border-radius: 14px !important;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.15),
        0 4px 10px rgba(37, 99, 235, 0.1);
    display: inline-flex !important;
    align-items: center !important;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.logo img {
    filter: none !important; /* drop-shadow kaldır, bg var artık */
}

.logo:hover {
    background: #ffffff !important;
    box-shadow: 
        0 15px 40px rgba(37, 99, 235, 0.25),
        0 6px 15px rgba(0, 0, 0, 0.12);
}

@media (max-width: 768px) {
    .logo {
        padding: 6px 14px !important;
        border-radius: 12px !important;
    }
}

/* LOGO HEADER İÇİNDE TAM SIĞSIN */
.logo {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 0 0 30px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    z-index: 100;
    position: relative;
    height: 100% !important;
}

.logo img {
    height: 95px !important;
    max-height: 95px !important;
    width: auto !important;
    filter: drop-shadow(0 3px 6px rgba(37, 99, 235, 0.15));
    transition: transform 0.4s ease;
}

.logo:hover img {
    transform: scale(1.04);
}

/* Header tam logoya göre boyutlanıyor */
.header,
.main-header,
header.site-header {
    padding: 6px 0 !important;
    background: #ffffff !important;
    overflow: hidden !important;
    min-height: 110px !important;
    height: 110px !important;
}

.header > .container,
.header-inner {
    padding: 0 30px !important;
    align-items: center !important;
    height: 100% !important;
}

@media (max-width: 768px) {
    .header { 
        min-height: 70px !important;
        height: 70px !important;
        padding: 4px 0 !important;
    }
    .logo img { 
        height: 58px !important;
        max-height: 58px !important;
    }
    .logo { margin-left: 12px !important; }
}

/* LOGO BÜYÜK, HEADER ONU SARSIN, TAŞMA YOK */
.header,
.main-header,
header.site-header {
    padding: 0 !important;
    background: #ffffff !important;
    overflow: hidden !important;
    min-height: 130px !important;
    height: 130px !important;
}

.header > .container,
.header-inner {
    padding: 0 30px !important;
    align-items: center !important;
    height: 130px !important;
    min-height: 130px !important;
}

.logo {
    background: transparent !important;
    padding: 0 !important;
    border: none !important;
    box-shadow: none !important;
    margin: 0 0 0 30px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    z-index: 100;
    position: relative;
    height: 100% !important;
}

.logo img {
    height: 120px !important;
    max-height: 120px !important;
    width: auto !important;
    filter: drop-shadow(0 4px 10px rgba(37, 99, 235, 0.18));
    transition: transform 0.4s ease;
}

.logo:hover img {
    transform: scale(1.04);
}

@media (max-width: 768px) {
    .header { 
        min-height: 80px !important;
        height: 80px !important;
    }
    .header > .container,
    .header-inner { height: 80px !important; min-height: 80px !important; }
    .logo img { 
        height: 70px !important;
        max-height: 70px !important;
    }
    .logo { margin-left: 12px !important; }
}

/* LOGO TAM OTUR - üst-alt beyazlık 0 */
.header,
.main-header,
header.site-header {
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
    height: 100px !important;
    min-height: 100px !important;
    max-height: 100px !important;
    overflow: hidden !important;
    line-height: 0 !important;
}

.header > .container,
.header-inner,
.header-row {
    padding: 0 30px !important;
    margin: 0 auto !important;
    height: 100px !important;
    min-height: 100px !important;
    max-height: 100px !important;
    align-items: center !important;
    display: flex !important;
    line-height: normal;
}

.logo {
    margin: 0 0 0 30px !important;
    padding: 0 !important;
    height: 100px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    line-height: 0 !important;
}

.logo a,
.logo > a {
    height: 100px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 0 !important;
}

.logo img {
    height: 100px !important;
    max-height: 100px !important;
    width: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    filter: drop-shadow(0 3px 8px rgba(37, 99, 235, 0.15));
}

.logo:hover img {
    transform: scale(1.04);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .header,
    .header > .container,
    .header-inner,
    .logo,
    .logo a { 
        height: 65px !important;
        min-height: 65px !important;
        max-height: 65px !important;
    }
    .logo img { 
        height: 65px !important;
        max-height: 65px !important;
    }
    .logo { margin-left: 12px !important; }
}

/* LOGO FINAL - 684:279 oranlı, kırpılmış ham logo */
.header,
.main-header,
header.site-header {
    padding: 0 !important;
    margin: 0 !important;
    background: #ffffff !important;
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
    overflow: hidden !important;
}

.header > .container,
.header-inner {
    padding: 0 30px !important;
    margin: 0 auto !important;
    height: 80px !important;
    align-items: center !important;
    display: flex !important;
}

.logo {
    margin: 0 0 0 30px !important;
    padding: 0 !important;
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
}

.logo a,
.logo > a {
    height: 80px !important;
    display: flex !important;
    align-items: center !important;
    padding: 0 !important;
    line-height: 0 !important;
}

.logo img {
    height: 80px !important;
    max-height: 80px !important;
    width: auto !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    filter: drop-shadow(0 2px 5px rgba(37, 99, 235, 0.15));
}

.logo:hover img {
    transform: scale(1.04);
    transition: transform 0.3s ease;
}

@media (max-width: 768px) {
    .header,
    .header > .container,
    .header-inner,
    .logo,
    .logo a { 
        height: 55px !important;
        min-height: 55px !important;
        max-height: 55px !important;
    }
    .logo img { 
        height: 55px !important;
        max-height: 55px !important;
    }
    .logo { margin-left: 12px !important; }
}

/* LOGO HAFİF YUKARI KAYDIR - üstteki beyaz alanı kapat, aşağı sark */
.header,
.main-header,
header.site-header {
    overflow: visible !important;
}

.header > .container,
.header-inner {
    overflow: visible !important;
}

.logo {
    overflow: visible !important;
    align-items: flex-start !important;
}

.logo a,
.logo > a {
    overflow: visible !important;
    align-items: flex-start !important;
}

.logo img {
    height: 110px !important;
    max-height: 110px !important;
    margin-top: -15px !important;
    margin-bottom: -15px !important;
    position: relative;
    z-index: 50;
}

@media (max-width: 768px) {
    .logo img { 
        height: 75px !important;
        max-height: 75px !important;
        margin-top: -10px !important;
        margin-bottom: -10px !important;
    }
}

/* LOGO YUKARI KAYDIR - hero'ya taşmasın */
.header,
.header > .container,
.header-inner {
    overflow: hidden !important;
}

.logo {
    align-items: center !important;
    overflow: visible !important;
}

.logo img {
    height: 100px !important;
    max-height: 100px !important;
    margin-top: -10px !important;
    margin-bottom: 0 !important;
    position: relative;
    z-index: 50;
}

@media (max-width: 768px) {
    .logo img { 
        height: 65px !important;
        max-height: 65px !important;
        margin-top: -8px !important;
    }
}

/* LOGO HEADER İÇİNDE ORTALA - taşma yok */
.header,
.main-header,
header.site-header {
    overflow: hidden !important;
    height: 90px !important;
    min-height: 90px !important;
    max-height: 90px !important;
    padding: 0 !important;
}

.header > .container,
.header-inner {
    overflow: hidden !important;
    height: 90px !important;
    align-items: center !important;
}

.logo {
    height: 90px !important;
    align-items: center !important;
    overflow: hidden !important;
}

.logo a {
    height: 90px !important;
    align-items: center !important;
}

.logo img {
    height: 75px !important;
    max-height: 75px !important;
    margin: 0 !important;
    padding: 0 !important;
    position: static !important;
}

@media (max-width: 768px) {
    .header,
    .header > .container,
    .header-inner,
    .logo,
    .logo a { 
        height: 65px !important;
        min-height: 65px !important;
        max-height: 65px !important;
    }
    .logo img { height: 55px !important; max-height: 55px !important; }
}

/* DROPDOWN MENÜ - hero üzerinde görünür */
.has-dropdown {
    position: relative !important;
    z-index: 1000 !important;
}

.has-dropdown .dropdown {
    position: absolute !important;
    top: 100% !important;
    left: 0 !important;
    z-index: 1001 !important;
    background: #ffffff !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15) !important;
    border-radius: 8px !important;
    min-width: 220px !important;
    padding: 8px 0 !important;
    margin-top: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    pointer-events: none;
}

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

.has-dropdown .dropdown a {
    display: block !important;
    padding: 10px 18px !important;
    color: #0f172a !important;
    text-decoration: none !important;
    font-size: 14px !important;
    font-weight: 500;
    border-bottom: 1px solid #f1f5f9;
    transition: background 0.2s ease, color 0.2s ease, padding-left 0.2s ease;
}

.has-dropdown .dropdown a:last-child {
    border-bottom: none;
}

.has-dropdown .dropdown a:hover {
    background: #eff6ff !important;
    color: #2563eb !important;
    padding-left: 24px !important;
}

/* Header z-index hero'dan büyük olsun */
.header,
.main-header,
header.site-header {
    z-index: 100 !important;
    position: relative !important;
    overflow: visible !important;  /* sadece dropdown için */
}

.header > .container,
.header-inner {
    overflow: visible !important;
}

/* Logo taşmayı kontrol et - sadece logo container'ı hidden */
.logo {
    overflow: hidden !important;
}

/* Hero z-index düşük olsun */
.hero,
section.hero {
    position: relative;
    z-index: 1;
}

/* Mobilde dropdown farklı çalışıyor zaten - desktop'ta hover */
@media (max-width: 1024px) {
    .has-dropdown:hover .dropdown {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
    }
    .has-dropdown.open .dropdown {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: #f8fafc !important;
        border-radius: 0 !important;
        margin-top: 0;
        pointer-events: auto !important;
        min-width: 0 !important;
    }
}

/* LOGO ÇERÇEVE KALDIR */
.logo,
.logo a,
.logo > a {
    border: none !important;
    box-shadow: none !important;
    background: transparent !important;
    outline: none !important;
}

.logo img {
    border: none !important;
    box-shadow: none !important;
    outline: none !important;
}

/* Hover focus border'larını da kapat */
.logo:hover,
.logo:focus,
.logo a:hover,
.logo a:focus,
.logo img:hover,
.logo img:focus {
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
}

/* LOGO PSEUDO ELEMENT'LERİ KAPAT - gradient çerçeve giderir */
.logo::before,
.logo::after,
.logo a::before,
.logo a::after,
.logo > a::before,
.logo > a::after {
    display: none !important;
    content: none !important;
    background: none !important;
    border: none !important;
    box-shadow: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    width: 0 !important;
    height: 0 !important;
    position: static !important;
}

/* Logo container'ı tamamen sade */
.logo {
    background: transparent !important;
    border-radius: 0 !important;
    padding: 0 !important;
}

/* Animasyon arka planlarını kapat */
.logo {
    animation: none !important;
}
.logo img {
    animation: none !important;
}

/* LOGO TÜM ARKA PLAN/GRADIENT TEMIZLE */
.logo,
.logo *,
.logo a,
.logo a * {
    background: none !important;
    background-color: transparent !important;
    background-image: none !important;
    background-gradient: none !important;
}

/* Header inner ya da parent'tan gelen background */
.header,
.header-inner,
.header > .container {
    background: #ffffff !important;
    background-image: none !important;
}

/* Logo wrapper'a ait herhangi bir radial/linear gradient */
.logo,
.logo::before,
.logo::after {
    background: transparent !important;
    background-image: none !important;
}

/* Animasyonlu shine efektlerini bitir */
@keyframes logoShine { 0%, 100% { left: -100%; } }
@keyframes logoIntro { 0%, 100% { opacity: 1; transform: none; filter: none; } }
@keyframes brandGlow { 0%, 100% { opacity: 0; } }

/* ===================================================
   FULL MOBILE OVERHAUL - tüm sayfalar
   =================================================== */

/* Touch-friendly butonlar minimum 44px */
@media (max-width: 768px) {
    .btn,
    button,
    input[type="submit"],
    input[type="button"],
    a.btn {
        min-height: 44px;
        padding: 12px 18px !important;
        font-size: 14px !important;
    }
    
    input[type="text"],
    input[type="email"],
    input[type="tel"],
    input[type="password"],
    input[type="number"],
    select,
    textarea {
        font-size: 16px !important;  /* iOS zoom önler */
        padding: 12px 14px !important;
        min-height: 44px;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    /* Tüm form satırları stack */
    .form-row,
    .form-group {
        flex-direction: column !important;
        gap: 12px !important;
    }
    .form-row > *,
    .form-group > * {
        width: 100% !important;
    }
}

/* TABLO -> KART mobilde (admin & user tablolar) */
@media (max-width: 768px) {
    table.mobile-cards,
    .responsive-table {
        display: block;
        width: 100%;
    }
    .responsive-table thead {
        display: none;
    }
    .responsive-table tbody,
    .responsive-table tr {
        display: block;
        width: 100%;
    }
    .responsive-table tr {
        margin-bottom: 12px;
        background: #fff;
        border-radius: 10px;
        padding: 14px;
        box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    }
    .responsive-table td {
        display: flex;
        justify-content: space-between;
        padding: 8px 0;
        border: none !important;
        font-size: 14px;
    }
    .responsive-table td::before {
        content: attr(data-label);
        font-weight: 600;
        color: #64748b;
        margin-right: 12px;
    }
}

/* Ürün/proje/blog sayfa içi grid responsive */
@media (max-width: 1024px) {
    .product-detail,
    .urun-detay {
        grid-template-columns: 1fr !important;
        gap: 25px !important;
    }
    .urun-images,
    .product-gallery {
        max-width: 100% !important;
    }
}

@media (max-width: 768px) {
    /* Hero kart isim/text küçült */
    .hero-content h1 { font-size: 26px !important; line-height: 1.2 !important; }
    .hero-content > p { font-size: 13px !important; }
    .gradient { font-size: inherit !important; }
    
    /* Stat kartları küçük */
    .hero-stats {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        padding: 12px !important;
    }
    .stat-item {
        padding: 8px !important;
    }
    .stat-value { font-size: 16px !important; }
    .stat-label { font-size: 10px !important; }
    .stat-icon { width: 28px !important; height: 28px !important; }
    .stat-icon svg { width: 14px !important; height: 14px !important; }
    
    /* Section padding'ler küçük */
    section {
        padding-top: 30px !important;
        padding-bottom: 30px !important;
    }
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 20px !important;
    }
    .section-header h2 { font-size: 18px !important; }
    .more-link { font-size: 12px !important; }
    
    /* CTA banner stack */
    .cta-banner {
        grid-template-columns: 1fr !important;
        flex-direction: column !important;
    }
    .cta-banner-image {
        height: 180px !important;
        min-height: 180px !important;
        width: 100% !important;
    }
    .cta-banner-content {
        padding: 20px !important;
    }
    .cta-banner-content h2 { font-size: 18px !important; }
    .cta-features-grid {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
    }
    .cta-feature { gap: 10px !important; }
    .cta-feature h4 { font-size: 13px !important; }
    .cta-feature p { font-size: 11px !important; }
    
    /* Why us */
    .why-us h2 { font-size: 18px !important; }
    .why-us-grid {
        grid-template-columns: 1fr !important;
        gap: 15px !important;
    }
    .why-item { padding: 12px !important; }
    .why-item h4 { font-size: 14px !important; }
    .why-item p { font-size: 12px !important; }
    
    /* Footer */
    .footer { padding: 30px 0 15px !important; }
    .footer-grid {
        grid-template-columns: 1fr 1fr !important;
        gap: 20px !important;
    }
    .footer-col { font-size: 12px; }
    .footer-col h4 { font-size: 14px !important; margin-bottom: 10px !important; }
    .footer-col ul li { padding: 4px 0; }
    .footer-col ul a { font-size: 12px !important; }
    .footer-col p { font-size: 12px !important; }
    .footer-about { font-size: 12px !important; }
    .footer-contact-item { font-size: 12px !important; padding: 6px 0; }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 10px;
        font-size: 11px;
    }
    .footer-bottom-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .footer-grid {
        grid-template-columns: 1fr !important;
    }
    .footer-col:first-child img {
        max-width: 140px;
    }
}

/* Floating buttons mobilde küçük + sağ alta */
@media (max-width: 768px) {
    .floating-btns {
        right: 12px !important;
        bottom: 75px !important;  /* bottom-nav için yer */
        gap: 10px !important;
    }
    .float-btn {
        width: 48px !important;
        height: 48px !important;
    }
    .float-btn svg {
        width: 20px !important;
        height: 20px !important;
    }
}

/* Body bottom nav alanı */
@media (max-width: 768px) {
    body {
        padding-bottom: 65px !important;
    }
}

/* Logout/Giris card mobil */
@media (max-width: 480px) {
    .auth-card,
    .login-card,
    .signup-card,
    .register-card {
        margin: 20px 12px !important;
        padding: 20px !important;
    }
}

/* Breadcrumb mobil */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 11px !important;
        padding: 8px 0 !important;
        flex-wrap: wrap;
    }
}

/* ===================================================
   MOBILE FIXES - hamburger görünür + büyük logo
   =================================================== */
@media (max-width: 1024px) {
    /* Hamburger butonu kesinlikle görünür */
    .mobile-toggle,
    button.mobile-toggle,
    #mobileToggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 42px !important;
        height: 42px !important;
        background: #f1f5f9 !important;
        border: 1px solid #cbd5e1 !important;
        border-radius: 10px !important;
        cursor: pointer;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 5px;
        padding: 0;
        margin-left: 8px;
        z-index: 1001 !important;
        position: relative;
    }
    .mobile-toggle span,
    #mobileToggle span {
        display: block !important;
        width: 22px !important;
        height: 2.5px !important;
        background: #0f172a !important;
        border-radius: 2px;
        transition: all 0.3s ease;
    }
    
    /* Header actions sığsın */
    .header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }
    
    /* Logo mobilde daha büyük */
    .logo img {
        height: 75px !important;
        max-height: 75px !important;
    }
    .header,
    .header > .container,
    .header-inner,
    .logo,
    .logo a {
        height: 80px !important;
        min-height: 80px !important;
        max-height: 80px !important;
    }
    .logo { margin-left: 12px !important; }
}

@media (max-width: 480px) {
    .logo img {
        height: 60px !important;
        max-height: 60px !important;
    }
    .header,
    .header > .container,
    .header-inner,
    .logo,
    .logo a {
        height: 65px !important;
        min-height: 65px !important;
        max-height: 65px !important;
    }
    .mobile-toggle { width: 38px !important; height: 38px !important; }
    
    /* Header padding daha küçük */
    .header > .container {
        padding: 0 12px !important;
    }
    
    /* Search/giriş ikonları gizle, sadece hamburger görsün */
    .header-actions .icon-btn {
        width: 36px !important;
        height: 36px !important;
    }
    /* Arama ikonu mobilde menüye taşındı, gizle */
    .header-actions .icon-btn[title="Arama"] {
        display: none !important;
    }
}

/* HAMBURGER ÇİZGİLERİ KESİN GÖRÜNÜR */
.mobile-toggle span,
#mobileToggle span,
button.mobile-toggle span {
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
    width: 22px !important;
    height: 3px !important;
    background: #0f172a !important;
    background-color: #0f172a !important;
    border-radius: 2px !important;
    margin: 2.5px 0 !important;
    position: static !important;
    transform: none !important;
}

/* Active hali için */
.mobile-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg) !important;
}
.mobile-toggle.active span:nth-child(2) {
    opacity: 0 !important;
}
.mobile-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg) !important;
}

/* HAMBURGER ULTRA AGRESİF FIX */
@media (max-width: 1024px) {
    .mobile-toggle,
    #mobileToggle,
    button.mobile-toggle,
    button#mobileToggle {
        display: flex !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;
        max-width: 44px !important;
        background: #2563eb !important;
        background-color: #2563eb !important;
        border: 2px solid #2563eb !important;
        border-radius: 10px !important;
        cursor: pointer !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        gap: 4px !important;
        padding: 9px 10px !important;
        margin-left: 8px !important;
        z-index: 9999 !important;
        position: relative !important;
        box-shadow: 0 2px 8px rgba(37, 99, 235, 0.3) !important;
    }
    
    .mobile-toggle span,
    #mobileToggle span {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        width: 22px !important;
        height: 3px !important;
        min-height: 3px !important;
        max-height: 3px !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        border-radius: 2px !important;
        margin: 0 !important;
        padding: 0 !important;
        position: static !important;
        transform: none !important;
        transition: all 0.3s ease;
    }
}

/* ===================================================
   MOBILE MENU FIX - hamburger sağa yasla, menü tıklanır
   =================================================== */
@media (max-width: 1024px) {
    /* Header inner space-between ile düzgün hizalama */
    .header-inner,
    .header > .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
    }
    
    /* Logo solda */
    .logo {
        margin-right: auto !important;
        flex-shrink: 0;
    }
    
    /* Header actions sağda toplansın */
    .header-actions {
        margin-left: auto !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
        flex-shrink: 0;
    }
    
    /* Hamburger en sağda */
    .mobile-toggle,
    #mobileToggle {
        order: 99 !important;  /* sona at */
        margin-left: 8px !important;
        margin-right: 0 !important;
    }
    
    /* MENÜ AÇIKKEN TIKLANABİLİR OLSUN */
    .main-nav.active,
    nav.main-nav.active {
        position: fixed !important;
        top: 0 !important;
        right: 0 !important;
        width: 300px !important;
        max-width: 85vw !important;
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 9999 !important;  /* en üstte */
        overflow-y: auto !important;
        pointer-events: auto !important;
        padding: 70px 0 30px !important;
        box-shadow: -10px 0 30px rgba(0,0,0,0.2);
        transform: translateX(0) !important;
    }
    
    .main-nav.active a,
    .main-nav.active .has-dropdown {
        pointer-events: auto !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 10000 !important;
    }
    
    /* Overlay'in z-index'i menüden DÜŞÜK olsun */
    .mobile-overlay,
    #mobileOverlay {
        z-index: 998 !important;
    }
    .mobile-overlay.active {
        pointer-events: auto;
    }
}

/* Hamburger button - üstte */
@media (max-width: 1024px) {
    .mobile-toggle,
    #mobileToggle {
        z-index: 10001 !important;
        position: relative !important;
    }
}

/* ===================================================
   ÜST BAR & HEADER - tam sola ve sağa yasla
   =================================================== */
@media (max-width: 1024px) {
    /* TOP BAR (üst) - telefon sola, Teklif Al sağa */
    .top-bar,
    .topbar {
        padding: 6px 0 !important;
    }
    .top-bar > .container,
    .top-bar-inner,
    .topbar > .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 12px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    .top-bar .top-info,
    .top-bar .topbar-left,
    .top-bar > .container > div:first-child {
        margin-right: auto !important;
        flex-shrink: 0;
    }
    .top-bar .top-right,
    .top-bar .topbar-right,
    .top-bar > .container > div:last-child {
        margin-left: auto !important;
        flex-shrink: 0;
    }
    
    /* HEADER - logo sola, ikonlar+hamburger sağa */
    .header > .container,
    .header-inner {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 12px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .logo {
        margin: 0 !important;
        margin-right: auto !important;
        flex-shrink: 0;
    }
    
    .header-actions {
        margin: 0 !important;
        margin-left: auto !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .top-bar > .container,
    .header > .container,
    .header-inner,
    .top-bar-inner {
        padding: 0 10px !important;
    }
}

/* Mobil menü içeriği TAM OPAK */
@media (max-width: 1024px) {
    #mainNav.active,
    .main-nav.active,
    nav.main-nav.active,
    .header nav.main-nav.active {
        background: #ffffff !important;
        background-color: #ffffff !important;
        opacity: 1 !important;
    }
    
    #mainNav.active *,
    .main-nav.active * {
        opacity: 1 !important;
    }
    
    #mainNav.active a {
        color: #0f172a !important;
        opacity: 1 !important;
    }
    
    /* Menü içindeki ul listesi tam opak */
    #mainNav.active ul,
    #mainNav.active .nav-list {
        background: #ffffff !important;
        opacity: 1 !important;
    }
    
    #mainNav.active li {
        background: #ffffff !important;
    }
}

/* MENÜYÜ KESİN OPAK YAP - tüm kuralları ez */
@media (max-width: 1024px) {
    nav.main-nav.active,
    nav#mainNav.active,
    .main-nav.active,
    #mainNav.active {
        background: rgb(255, 255, 255) !important;
        background-color: rgb(255, 255, 255) !important;
        background-image: none !important;
        opacity: 1 !important;
        filter: none !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        mix-blend-mode: normal !important;
        isolation: isolate !important;
    }
    
    /* Menü içindeki linkler net siyah */
    nav.main-nav.active a,
    nav#mainNav.active a,
    #mainNav.active a,
    .main-nav.active a {
        color: rgb(15, 23, 42) !important;
        font-weight: 600 !important;
        opacity: 1 !important;
        text-shadow: none !important;
        filter: none !important;
        background: transparent !important;
    }
    
    /* Menü içeriğine hiçbir yarı-saydam efekt uygulanmasın */
    nav.main-nav.active *,
    #mainNav.active * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        filter: none !important;
        mix-blend-mode: normal !important;
        opacity: 1 !important;
    }
    
    /* Menü panel arkasında düz beyaz katman */
    nav.main-nav.active::before,
    #mainNav.active::before {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        inset: 0 !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        background: #ffffff !important;
        z-index: -1 !important;
        opacity: 1 !important;
    }
}

/* OVERLAY MENÜNÜN ARKASINA, BLUR MENÜYÜ ETKİLEMESİN */
@media (max-width: 1024px) {
    /* Overlay'in z-index'i menüden DÜŞÜK */
    .mobile-overlay,
    #mobileOverlay,
    .mobile-overlay.active {
        z-index: 9990 !important;  /* menüden düşük */
        backdrop-filter: blur(4px) !important;
        -webkit-backdrop-filter: blur(4px) !important;
        background: rgba(15, 23, 42, 0.45) !important;
    }
    
    /* Menü overlay'in ÜSTÜNDE - blur etkilemez */
    nav.main-nav.active,
    #mainNav.active,
    .main-nav.active {
        z-index: 99999 !important;
        background: #ffffff !important;
        background-color: #ffffff !important;
        isolation: isolate;
        will-change: transform;
        /* Backdrop-filter'ı kesinlikle yok */
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
}

/* ===================================================
   MENÜ NETLEŞTIRME - kökten çözüm
   =================================================== */
@media (max-width: 1024px) {
    /* OVERLAY'i tamamen sakin yap - blur YOK */
    .mobile-overlay,
    #mobileOverlay {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        filter: none !important;
        background: rgba(15, 23, 42, 0.55) !important;
        z-index: 9990 !important;
    }
    
    /* MENÜ - kendi başına çalışacak, opak */
    nav.main-nav.active,
    #mainNav.active,
    .main-nav.active {
        background: #ffffff !important;
        background-color: #ffffff !important;
        z-index: 99999 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        filter: none !important;
        opacity: 1 !important;
        isolation: isolate;
        transform: translateZ(0);  /* GPU layer'a al, blur etkilemez */
        -webkit-transform: translateZ(0);
        will-change: transform;
    }
    
    /* MENÜ İÇİNDEKİ HİÇBİR ELEMENT BULUNAMASIN */
    nav.main-nav.active *,
    #mainNav.active * {
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
        filter: none !important;
    }
}

/* MENÜ LİNKLERİ KESİN TIKLANIR */
@media (max-width: 1024px) {
    #mainNav.active a,
    .main-nav.active a {
        pointer-events: auto !important;
        cursor: pointer !important;
        position: relative !important;
        z-index: 100001 !important;
        display: block !important;
        padding: 16px 22px !important;
        min-height: 50px !important;
        text-decoration: none !important;
        touch-action: manipulation !important;
        -webkit-tap-highlight-color: rgba(37, 99, 235, 0.2) !important;
        user-select: none;
        -webkit-user-select: none;
    }
    
    #mainNav.active a:active {
        background: #eff6ff !important;
    }
    
    /* Menü içindeki ul/li hiçbir engel olmasın */
    #mainNav.active ul,
    #mainNav.active li,
    #mainNav.active .nav-list,
    #mainNav.active .nav-list li {
        pointer-events: auto !important;
        display: block !important;
    }
    
    /* Menü panel üst seviye, tıklama ulaşır */
    #mainNav.active,
    .main-nav.active {
        pointer-events: auto !important;
    }
    
    /* MENÜ İÇİNDE HİÇBİR PSEUDO ELEMENT YOK */
    #mainNav.active::before,
    #mainNav.active::after {
        content: none !important;
        display: none !important;
        pointer-events: none !important;
    }
}

/* HAMBURGER MENÜ AÇIKKEN KENDİ YERİNDE KALSIN */
@media (max-width: 1024px) {
    /* Hamburger sadece kendi 44x44 alanında */
    .mobile-toggle,
    #mobileToggle,
    button.mobile-toggle {
        position: relative !important;
        width: 44px !important;
        height: 44px !important;
        max-width: 44px !important;
        max-height: 44px !important;
        flex: none !important;
        z-index: 100000 !important;  /* Menüden BİRAZ daha üstte ki tıklanabilsin */
        pointer-events: auto !important;
    }
    
    /* Menü hamburger'dan AŞAĞIDA başlasın - hamburgere değmesin */
    #mainNav.active,
    .main-nav.active {
        z-index: 99999 !important;
        padding-top: 80px !important;  /* hamburger yüksekliği + boşluk */
    }
    
    /* Menü içindeki linkler hamburger'ın altında, kendi z-index'i ile tıklanır */
    #mainNav.active a,
    #mainNav.active li {
        position: relative !important;
        z-index: 1 !important;  /* hamburger'dan düşük, menü içinde yüksek */
        pointer-events: auto !important;
    }
    
    /* Hamburgerin görünmez bir tıklama alanı yayılması varsa kapat */
    .mobile-toggle::before,
    .mobile-toggle::after,
    #mobileToggle::before,
    #mobileToggle::after {
        display: none !important;
        content: none !important;
        pointer-events: none !important;
    }
}

/* TELEFON SOLA YASLI */
@media (max-width: 1024px) {
    .top-bar > .container,
    .top-bar-inner,
    .topbar > .container {
        justify-content: space-between !important;
    }
    
    .top-bar .top-info,
    .top-bar > .container > div:first-child,
    .topbar > .container > div:first-child {
        margin-right: auto !important;
        margin-left: 0 !important;
        padding-left: 0 !important;
        text-align: left !important;
        justify-content: flex-start !important;
        display: flex !important;
        align-items: center !important;
        gap: 6px !important;
    }
    
    .top-bar a[href^="tel"],
    .topbar a[href^="tel"] {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
}

/* TOP BAR - SOL SAĞ TAM YASLA */
@media (max-width: 1024px) {
    .top-bar,
    .topbar,
    .header-top {
        width: 100% !important;
    }
    
    /* Container hiçbir max-width vermesin */
    .top-bar > *,
    .topbar > *,
    .header-top > * {
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
        padding: 8px 12px !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        box-sizing: border-box !important;
    }
    
    /* Container içindeki direct child'lar */
    .top-bar > .container > *,
    .topbar > .container > *,
    .header-top > .container > * {
        margin: 0 !important;
        flex-shrink: 0;
    }
    
    .top-bar > .container > *:first-child,
    .topbar > .container > *:first-child {
        margin-right: auto !important;
        margin-left: 0 !important;
    }
    
    .top-bar > .container > *:last-child,
    .topbar > .container > *:last-child {
        margin-left: auto !important;
        margin-right: 0 !important;
    }
    
    /* Telefon ve linkler */
    .top-bar a,
    .topbar a {
        margin: 0 !important;
    }
}

/* TOP BAR MOBIL - sol blok gizli, sağ blok TAM SOLA + sağa açılsın */
@media (max-width: 1024px) {
    .top-bar > .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        padding: 0 12px !important;
        max-width: 100% !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    /* Sol blok mobilde gizli */
    .top-bar-left {
        display: none !important;
    }
    
    /* Sağ blok tüm genişliği kullansın */
    .top-bar-right {
        width: 100% !important;
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        gap: 10px !important;
        margin: 0 !important;
    }
    
    /* Telefon en solda */
    .top-bar-right .top-bar-phone,
    .top-bar-right a[href^="tel"] {
        margin-right: auto !important;
        margin-left: 0 !important;
        padding: 6px 0 !important;
        font-size: 13px !important;
        font-weight: 600 !important;
    }
    
    /* Teklif Al en sağda */
    .top-bar-right .btn-teklif {
        margin-left: auto !important;
        margin-right: 0 !important;
        padding: 6px 14px !important;
        font-size: 12px !important;
    }
}

/* MOBILE OVERLAY MENÜNÜN ALTINDA - KESİN */
.mobile-overlay,
#mobileOverlay,
.mobile-overlay.active,
#mobileOverlay.active {
    z-index: 99 !important;  /* MENÜDEN ÇOK ALTTA */
}

@media (max-width: 1024px) {
    .mobile-overlay,
    #mobileOverlay {
        z-index: 99 !important;
    }
    .mobile-overlay.active,
    #mobileOverlay.active {
        z-index: 99 !important;
    }
    
    /* Menü kesin overlay'in üstünde */
    nav.main-nav.active,
    #mainNav.active,
    .main-nav.active {
        z-index: 9999 !important;
    }
    
    /* Hamburger menünün üstünde */
    .mobile-toggle,
    #mobileToggle {
        z-index: 10000 !important;
    }
}

/* DROPDOWN MOBILDE - open class ile açılır */
@media (max-width: 1024px) {
    #mainNav.active .has-dropdown {
        display: block !important;
        position: relative !important;
        z-index: 1 !important;
    }
    
    #mainNav.active .has-dropdown > a {
        position: relative !important;
        padding-right: 50px !important;  /* ok için yer */
        pointer-events: auto !important;
        cursor: pointer !important;
    }
    
    /* Ok ikonu sağda */
    #mainNav.active .has-dropdown > a::after {
        content: '▼' !important;
        position: absolute !important;
        right: 22px !important;
        top: 50% !important;
        transform: translateY(-50%) rotate(0deg);
        font-size: 10px !important;
        color: #2563eb !important;
        transition: transform 0.3s ease;
        display: block !important;
    }
    
    #mainNav.active .has-dropdown.open > a::after {
        transform: translateY(-50%) rotate(180deg) !important;
    }
    
    /* Dropdown KAPALI default */
    #mainNav.active .has-dropdown .dropdown {
        display: none !important;
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        box-shadow: none !important;
        background: #f8fafc !important;
        margin: 0 !important;
        padding: 0 !important;
        min-width: 0 !important;
        border-radius: 0 !important;
    }
    
    /* Dropdown AÇIK */
    #mainNav.active .has-dropdown.open .dropdown {
        display: block !important;
    }
    
    /* Dropdown link stilleri */
    #mainNav.active .has-dropdown .dropdown a {
        padding: 12px 22px 12px 40px !important;
        font-size: 14px !important;
        color: #475569 !important;
        background: #f8fafc !important;
        border-bottom: 1px solid #e2e8f0 !important;
        display: block !important;
        pointer-events: auto !important;
    }
    
    #mainNav.active .has-dropdown .dropdown a:hover,
    #mainNav.active .has-dropdown .dropdown a:active {
        background: #eff6ff !important;
        color: #2563eb !important;
    }
}

/* ===================================================
   MODERN HAMBURGER + MODERN MOBILE MENU
   =================================================== */
@media (max-width: 1024px) {
    /* Modern hamburger button */
    .mobile-toggle,
    #mobileToggle {
        background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
        border: none !important;
        border-radius: 12px !important;
        box-shadow: 0 4px 14px rgba(37, 99, 235, 0.35) !important;
        width: 46px !important;
        height: 46px !important;
        gap: 5px !important;
        padding: 0 !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .mobile-toggle:hover,
    .mobile-toggle:active {
        transform: scale(0.95);
        box-shadow: 0 6px 20px rgba(37, 99, 235, 0.5) !important;
    }
    
    .mobile-toggle span,
    #mobileToggle span {
        width: 22px !important;
        height: 2.5px !important;
        background: #fff !important;
        border-radius: 4px !important;
        margin: 0 !important;
        transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
        transform-origin: center;
    }
    
    /* Hamburger açık (X) durumu */
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(7.5px) rotate(45deg);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-7.5px) rotate(-45deg);
    }
    
    .mobile-toggle.active {
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%) !important;
        box-shadow: 0 4px 14px rgba(239, 68, 68, 0.4) !important;
    }
    
    /* ===== MODERN MENÜ PANELİ ===== */
    nav.main-nav,
    #mainNav {
        position: fixed !important;
        top: 0 !important;
        right: -100% !important;
        width: 320px !important;
        max-width: 88vw !important;
        height: 100vh !important;
        background: #ffffff !important;
        z-index: 9999 !important;
        overflow-y: auto !important;
        padding: 90px 0 100px !important;
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.15) !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1) !important;
        transform: none !important;
        display: block !important;
    }
    
    nav.main-nav.active,
    #mainNav.active {
        right: 0 !important;
    }
    
    /* Menü açıldığında üst panel - gradient header */
    #mainNav.active::before {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 80px !important;
        background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%) !important;
        z-index: 0 !important;
        opacity: 1 !important;
    }
    
    /* Menü items - modern */
    #mainNav.active > a,
    #mainNav.active > .has-dropdown {
        position: relative !important;
        z-index: 1 !important;
        margin: 0 !important;
        animation: slideInRight 0.4s ease backwards;
    }
    
    /* Stagger animation - linkler sırayla gelir */
    #mainNav.active > a:nth-child(1) { animation-delay: 0.05s; }
    #mainNav.active > *:nth-child(2) { animation-delay: 0.1s; }
    #mainNav.active > *:nth-child(3) { animation-delay: 0.15s; }
    #mainNav.active > *:nth-child(4) { animation-delay: 0.2s; }
    #mainNav.active > *:nth-child(5) { animation-delay: 0.25s; }
    #mainNav.active > *:nth-child(6) { animation-delay: 0.3s; }
    #mainNav.active > *:nth-child(7) { animation-delay: 0.35s; }
    
    @keyframes slideInRight {
        from {
            opacity: 0;
            transform: translateX(40px);
        }
        to {
            opacity: 1;
            transform: translateX(0);
        }
    }
    
    /* Link tasarımı */
    #mainNav.active > a,
    #mainNav.active .has-dropdown > a {
        display: flex !important;
        align-items: center !important;
        padding: 16px 24px !important;
        color: #0f172a !important;
        font-size: 15px !important;
        font-weight: 600 !important;
        text-decoration: none !important;
        border-bottom: 1px solid #f1f5f9 !important;
        transition: all 0.25s ease !important;
        background: transparent !important;
        position: relative;
    }
    
    /* Hover/active vurgu - sol kenarda mavi bar */
    #mainNav.active > a::before,
    #mainNav.active .has-dropdown > a::before {
        content: '' !important;
        position: absolute !important;
        left: 0 !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 0 !important;
        background: linear-gradient(180deg, #2563eb, #1e40af) !important;
        transition: width 0.25s ease;
        display: block !important;
    }
    
    #mainNav.active > a:hover::before,
    #mainNav.active > a.active::before,
    #mainNav.active .has-dropdown > a:hover::before,
    #mainNav.active .has-dropdown.open > a::before {
        width: 4px !important;
    }
    
    #mainNav.active > a:hover,
    #mainNav.active > a.active,
    #mainNav.active .has-dropdown > a:hover,
    #mainNav.active .has-dropdown.open > a {
        background: #eff6ff !important;
        color: #2563eb !important;
        padding-left: 30px !important;
    }
    
    /* Ok ikonu daha modern */
    #mainNav.active .has-dropdown > a::after {
        content: '' !important;
        position: absolute !important;
        right: 24px !important;
        top: 50% !important;
        width: 8px !important;
        height: 8px !important;
        border-right: 2px solid #94a3b8 !important;
        border-bottom: 2px solid #94a3b8 !important;
        transform: translateY(-65%) rotate(45deg);
        transition: transform 0.3s ease, border-color 0.3s ease;
        font-size: 0 !important;  /* ▼ icon override */
        color: transparent !important;
        background: none !important;
    }
    
    #mainNav.active .has-dropdown.open > a::after {
        transform: translateY(-30%) rotate(-135deg) !important;
        border-color: #2563eb !important;
    }
    
    /* Alt menü - kayan */
    #mainNav.active .has-dropdown .dropdown {
        background: linear-gradient(to bottom, #f8fafc, #f1f5f9) !important;
        max-height: 0;
        overflow: hidden !important;
        transition: max-height 0.4s ease, padding 0.3s ease;
        padding: 0 !important;
        border-bottom: 1px solid #e2e8f0 !important;
    }
    
    #mainNav.active .has-dropdown.open .dropdown {
        max-height: 500px !important;
        padding: 4px 0 8px !important;
    }
    
    #mainNav.active .has-dropdown .dropdown a {
        padding: 12px 24px 12px 48px !important;
        font-size: 13.5px !important;
        font-weight: 500 !important;
        color: #475569 !important;
        background: transparent !important;
        border-bottom: 1px solid rgba(226, 232, 240, 0.5) !important;
        transition: all 0.2s ease !important;
        position: relative;
    }
    
    /* Alt menü ok */
    #mainNav.active .has-dropdown .dropdown a::before {
        content: '' !important;
        position: absolute !important;
        left: 32px !important;
        top: 50% !important;
        width: 4px !important;
        height: 4px !important;
        background: #cbd5e1 !important;
        border-radius: 50% !important;
        transform: translateY(-50%);
        transition: all 0.2s ease;
    }
    
    #mainNav.active .has-dropdown .dropdown a:hover {
        background: #ffffff !important;
        color: #2563eb !important;
        padding-left: 56px !important;
    }
    
    #mainNav.active .has-dropdown .dropdown a:hover::before {
        background: #2563eb !important;
        width: 8px !important;
        border-radius: 4px;
    }
    
    /* Menü altında footer alanı - sosyal medya / iletişim */
    #mainNav.active::after {
        content: 'İnovia İklim © 2026' !important;
        display: block !important;
        position: absolute !important;
        bottom: 24px !important;
        left: 0 !important;
        right: 0 !important;
        text-align: center !important;
        font-size: 11px !important;
        color: #94a3b8 !important;
        padding: 0 24px !important;
        z-index: 1;
    }
    
    /* Overlay daha şık - blur + dark */
    .mobile-overlay,
    #mobileOverlay {
        background: rgba(15, 23, 42, 0.6) !important;
        backdrop-filter: blur(6px) !important;
        -webkit-backdrop-filter: blur(6px) !important;
        transition: opacity 0.35s ease, visibility 0.35s ease !important;
    }
}

/* ===================================================
   HAMBURGER MİNİMALİST MODERN
   =================================================== */
@media (max-width: 1024px) {
    .mobile-toggle,
    #mobileToggle {
        background: #ffffff !important;
        background-image: none !important;
        border: 1.5px solid #e2e8f0 !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.08) !important;
        width: 46px !important;
        height: 46px !important;
        gap: 6px !important;
        padding: 0 !important;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
        position: relative;
    }
    
    .mobile-toggle:hover {
        border-color: #2563eb !important;
        box-shadow: 0 4px 14px rgba(37, 99, 235, 0.15) !important;
    }
    
    .mobile-toggle:active {
        transform: scale(0.92);
    }
    
    /* İnce, modern çizgiler */
    .mobile-toggle span,
    #mobileToggle span {
        width: 22px !important;
        height: 2px !important;
        background: #0f172a !important;
        border-radius: 2px !important;
        margin: 0 !important;
        transition: all 0.35s cubic-bezier(0.68, -0.55, 0.265, 1.55) !important;
        transform-origin: center;
        display: block !important;
    }
    
    /* Ortadaki çizgi daha kısa - asimetrik modern hava */
    .mobile-toggle span:nth-child(2),
    #mobileToggle span:nth-child(2) {
        width: 16px !important;
        margin-right: 6px !important;
    }
    
    /* Active = X */
    .mobile-toggle.active {
        background: #0f172a !important;
        border-color: #0f172a !important;
        box-shadow: 0 4px 14px rgba(15, 23, 42, 0.25) !important;
    }
    
    .mobile-toggle.active span {
        background: #ffffff !important;
        width: 22px !important;
        margin: 0 !important;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: scaleX(0);
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Mavi vurgu noktası - active olmadığında küçük nokta */
    .mobile-toggle::before {
        content: '' !important;
        position: absolute !important;
        top: 6px !important;
        right: 6px !important;
        width: 6px !important;
        height: 6px !important;
        background: #2563eb !important;
        border-radius: 50% !important;
        display: block !important;
        transition: opacity 0.3s ease;
        z-index: 1;
    }
    
    .mobile-toggle.active::before {
        opacity: 0 !important;
    }
}

/* MENÜ ITEM'LARI DAHA SIK */
@media (max-width: 1024px) {
    #mainNav.active > a,
    #mainNav.active .has-dropdown > a {
        padding: 11px 22px !important;
        font-size: 14px !important;
    }
    
    #mainNav.active > a:hover,
    #mainNav.active > a.active,
    #mainNav.active .has-dropdown > a:hover,
    #mainNav.active .has-dropdown.open > a {
        padding-left: 26px !important;
    }
    
    /* Üst gradient header daha ince */
    #mainNav.active::before {
        height: 60px !important;
    }
    
    /* Menü top padding azalt */
    nav.main-nav,
    #mainNav {
        padding: 70px 0 80px !important;
    }
    
    /* Alt menü item'lar da sık */
    #mainNav.active .has-dropdown .dropdown a {
        padding: 9px 22px 9px 44px !important;
        font-size: 13px !important;
    }
    
    /* Alt menü ok pozisyon */
    #mainNav.active .has-dropdown .dropdown a::before {
        left: 28px !important;
    }
    
    #mainNav.active .has-dropdown .dropdown a:hover {
        padding-left: 50px !important;
    }
}

/* MENÜ LİNKLERİ SAĞDA BOŞLUK YOK */
@media (max-width: 1024px) {
    /* Dropdown linkleri inline-flex, sağda boşluk bırakmadan */
    #mainNav.active .has-dropdown > a {
        display: inline-flex !important;
        align-items: center !important;
        gap: 10px !important;
        width: auto !important;
        padding-right: 22px !important;
        position: relative !important;
    }
    
    /* Ok yazıya yakın olsun, sağda absolute değil */
    #mainNav.active .has-dropdown > a::after {
        position: static !important;
        margin-left: 6px !important;
        transform: rotate(45deg) !important;
        top: auto !important;
        right: auto !important;
        display: inline-block !important;
    }
    
    #mainNav.active .has-dropdown.open > a::after {
        transform: rotate(-135deg) !important;
    }
    
    /* Normal linkler de full genişlik değil */
    #mainNav.active > a {
        display: inline-flex !important;
        align-items: center !important;
        width: auto !important;
    }
    
    /* Aktif çizgi sol kenarda kalsın */
    #mainNav.active .has-dropdown {
        display: block !important;
    }
}

/* GERİ AL - linkleri tek sıra/blok yap */
@media (max-width: 1024px) {
    #mainNav.active > a,
    #mainNav.active .has-dropdown {
        display: block !important;
        width: 100% !important;
    }
    
    #mainNav.active .has-dropdown > a,
    #mainNav.active > a {
        display: flex !important;
        align-items: center !important;
        width: 100% !important;
        justify-content: flex-start !important;
        padding-right: 22px !important;
    }
    
    /* Ok dropdown yazısının hemen yanında (margin-left auto YOK, gap ile) */
    #mainNav.active .has-dropdown > a::after {
        position: static !important;
        margin-left: 8px !important;
        transform: rotate(45deg) !important;
        display: inline-block !important;
    }
    
    #mainNav.active .has-dropdown.open > a::after {
        transform: rotate(-135deg) !important;
    }
}

/* MENÜ ÜST HEADER - ZARİF */
@media (max-width: 1024px) {
    /* Mavi gradient yerine ince beyaz + alt çizgi */
    #mainNav.active::before {
        background: #ffffff !important;
        background-image: none !important;
        height: 64px !important;
        border-bottom: 1px solid #f1f5f9 !important;
        box-shadow: 0 1px 0 rgba(15, 23, 42, 0.03) !important;
    }
    
    /* Menu top padding header'a göre ayarla */
    nav.main-nav,
    #mainNav {
        padding-top: 76px !important;
    }
    
    /* Üstteki header alanına bir başlık ekle */
    #mainNav.active::after {
        content: 'MENÜ' !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        height: 64px !important;
        display: flex !important;
        align-items: center !important;
        padding-left: 24px !important;
        font-size: 11px !important;
        font-weight: 700 !important;
        letter-spacing: 2px !important;
        color: #94a3b8 !important;
        text-align: left !important;
        bottom: auto !important;
        z-index: 2;
        background: transparent !important;
    }
}

/* HAMBURGER ZARIF SADE */
@media (max-width: 1024px) {
    .mobile-toggle,
    #mobileToggle {
        background: #ffffff !important;
        background-image: none !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 10px !important;
        box-shadow: none !important;
        width: 42px !important;
        height: 42px !important;
        gap: 5px !important;
        padding: 0 !important;
        transition: all 0.25s ease !important;
    }
    
    .mobile-toggle:hover {
        border-color: #cbd5e1 !important;
        background: #f8fafc !important;
        box-shadow: none !important;
    }
    
    .mobile-toggle:active {
        transform: scale(0.95);
        background: #f1f5f9 !important;
    }
    
    /* İnce çizgiler */
    .mobile-toggle span,
    #mobileToggle span {
        width: 18px !important;
        height: 1.5px !important;
        background: #475569 !important;
        border-radius: 1px !important;
        margin: 0 !important;
        transition: all 0.3s ease !important;
    }
    
    /* Ortadaki çizgi normal genişlik (asimetri kapalı) */
    .mobile-toggle span:nth-child(2),
    #mobileToggle span:nth-child(2) {
        width: 18px !important;
        margin-right: 0 !important;
    }
    
    /* Active = X (sade) */
    .mobile-toggle.active {
        background: #f1f5f9 !important;
        border-color: #cbd5e1 !important;
        box-shadow: none !important;
    }
    
    .mobile-toggle.active span {
        background: #0f172a !important;
        width: 18px !important;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(6.5px) rotate(45deg);
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-6.5px) rotate(-45deg);
    }
    
    /* Mavi noktayı kaldır */
    .mobile-toggle::before {
        display: none !important;
        content: none !important;
    }
}

/* HAMBURGER - SÜPER ŞIK */
@media (max-width: 1024px) {
    .mobile-toggle,
    #mobileToggle {
        background: transparent !important;
        background-image: none !important;
        border: none !important;
        border-radius: 0 !important;
        box-shadow: none !important;
        width: 40px !important;
        height: 40px !important;
        gap: 7px !important;
        padding: 11px 9px !important;
        transition: all 0.3s ease !important;
        position: relative;
        cursor: pointer;
    }
    
    .mobile-toggle:hover {
        background: transparent !important;
        border: none !important;
    }
    
    .mobile-toggle:active {
        transform: scale(0.92);
    }
    
    /* Asimetrik ince çizgiler - üst uzun, orta orta, alt kısa */
    .mobile-toggle span,
    #mobileToggle span {
        height: 1.8px !important;
        background: #0f172a !important;
        border-radius: 2px !important;
        margin: 0 !important;
        transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1) !important;
        display: block !important;
    }
    
    .mobile-toggle span:nth-child(1),
    #mobileToggle span:nth-child(1) {
        width: 22px !important;
        align-self: flex-end;
    }
    
    .mobile-toggle span:nth-child(2),
    #mobileToggle span:nth-child(2) {
        width: 14px !important;
        align-self: flex-end;
    }
    
    .mobile-toggle span:nth-child(3),
    #mobileToggle span:nth-child(3) {
        width: 22px !important;
        align-self: flex-end;
    }
    
    .mobile-toggle:hover span:nth-child(2) {
        width: 22px !important;
    }
    
    /* Active = X */
    .mobile-toggle.active {
        background: transparent !important;
    }
    
    .mobile-toggle.active span {
        background: #0f172a !important;
        width: 22px !important;
    }
    
    .mobile-toggle.active span:nth-child(1) {
        transform: translateY(9px) rotate(45deg);
        align-self: flex-end;
    }
    .mobile-toggle.active span:nth-child(2) {
        opacity: 0;
        transform: translateX(-20px);
    }
    .mobile-toggle.active span:nth-child(3) {
        transform: translateY(-9px) rotate(-45deg);
        align-self: flex-end;
    }
    
    /* Pseudo elementleri tamamen kapat */
    .mobile-toggle::before,
    .mobile-toggle::after {
        display: none !important;
        content: none !important;
    }
}

/* HAMBURGER - HİÇBİR MAVİ YOK */
@media (max-width: 1024px) {
    .mobile-toggle,
    #mobileToggle,
    button.mobile-toggle {
        background: transparent !important;
        background-image: none !important;
        background-color: transparent !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
        color: transparent !important;
        -webkit-tap-highlight-color: transparent !important;
    }
    
    .mobile-toggle:hover,
    .mobile-toggle:focus,
    .mobile-toggle:active,
    .mobile-toggle.active,
    #mobileToggle:hover,
    #mobileToggle:focus,
    #mobileToggle:active,
    #mobileToggle.active {
        background: transparent !important;
        background-color: transparent !important;
        background-image: none !important;
        border: none !important;
        outline: none !important;
        box-shadow: none !important;
    }
    
    /* Çizgiler her zaman siyah, asla mavi olmasın */
    .mobile-toggle span,
    .mobile-toggle:hover span,
    .mobile-toggle:focus span,
    .mobile-toggle:active span,
    .mobile-toggle.active span,
    #mobileToggle span,
    #mobileToggle:hover span,
    #mobileToggle.active span {
        background: #0f172a !important;
        background-color: #0f172a !important;
        background-image: none !important;
        border: none !important;
        box-shadow: none !important;
    }
    
    /* Pseudo elementler kesin yok */
    .mobile-toggle::before,
    .mobile-toggle::after,
    #mobileToggle::before,
    #mobileToggle::after {
        display: none !important;
        content: none !important;
        background: none !important;
        border: none !important;
        opacity: 0 !important;
    }
}

/* HAMBURGER MUTLAK SADE - ZORLAYICI OVERRIDE */
@media (max-width: 1024px) {
    button.mobile-toggle,
    button#mobileToggle,
    .header button.mobile-toggle,
    .header-actions button.mobile-toggle,
    .header #mobileToggle,
    .header-actions #mobileToggle {
        background: #f1f5f9 !important;
        background-color: #f1f5f9 !important;
        background-image: none !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 10px !important;
        box-shadow: none !important;
    }
    
    button.mobile-toggle:hover,
    button#mobileToggle:hover,
    button.mobile-toggle:focus,
    button#mobileToggle:focus,
    button.mobile-toggle:active,
    button#mobileToggle:active,
    button.mobile-toggle.active,
    button#mobileToggle.active {
        background: #e2e8f0 !important;
        background-color: #e2e8f0 !important;
        background-image: none !important;
        border: 1px solid #cbd5e1 !important;
        box-shadow: none !important;
    }
}

/* MOBILDE LOGO BÜYÜK + HEADER OPTIMIZE */
@media (max-width: 1024px) {
    .header,
    .main-header,
    header.site-header {
        height: 75px !important;
        min-height: 75px !important;
        max-height: 75px !important;
    }
    .header > .container,
    .header-inner {
        height: 75px !important;
        min-height: 75px !important;
        max-height: 75px !important;
        padding: 0 14px !important;
    }
    .logo,
    .logo a {
        height: 75px !important;
        min-height: 75px !important;
        max-height: 75px !important;
    }
    .logo img {
        height: 65px !important;
        max-height: 65px !important;
    }
    .logo { margin-left: 0 !important; }
}

@media (max-width: 480px) {
    .header,
    .header > .container,
    .header-inner,
    .logo,
    .logo a {
        height: 68px !important;
        min-height: 68px !important;
        max-height: 68px !important;
    }
    .logo img {
        height: 58px !important;
        max-height: 58px !important;
    }
    .header > .container { padding: 0 10px !important; }
}

/* MOBILE OVERFLOW + ÜST BAR + LOGO DÜZELTME */
@media (max-width: 1024px) {
    /* Body ve html overflow kontrolü */
    html, body {
        overflow-x: hidden !important;
        max-width: 100% !important;
        width: 100% !important;
        position: relative;
    }
    
    /* Tüm container'lar max-width */
    .container,
    .header > .container,
    .top-bar > .container,
    section > .container {
        max-width: 100% !important;
        overflow-x: hidden !important;
    }
    
    /* Üst bar mobilde sadece telefon + Teklif Al */
    .top-bar-left {
        display: none !important;
    }
    
    .top-bar-right {
        width: 100% !important;
        justify-content: space-between !important;
        display: flex !important;
        gap: 8px !important;
    }
    
    /* Header logo görünür */
    .logo {
        display: flex !important;
        visibility: visible !important;
        flex-shrink: 0 !important;
        margin-left: 0 !important;
    }
    .logo img {
        display: block !important;
        visibility: visible !important;
    }
    
    /* Header inner space-between düzgün */
    .header-inner,
    .header > .container {
        display: flex !important;
        justify-content: space-between !important;
        align-items: center !important;
        flex-wrap: nowrap !important;
        width: 100% !important;
    }
}

@media (max-width: 480px) {
    /* Çok küçük ekranda */
    .top-bar-right .top-bar-phone {
        font-size: 12px !important;
    }
    .top-bar-right .btn-teklif {
        font-size: 11px !important;
        padding: 5px 10px !important;
    }
}

/* MOBILDE TOP-BAR-LEFT KESIN GİZLİ */
@media (max-width: 1024px) {
    .top-bar-left,
    .top-bar .top-bar-left,
    div.top-bar-left {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        width: 0 !important;
        height: 0 !important;
        overflow: hidden !important;
        position: absolute !important;
        left: -9999px !important;
    }
    
    /* top-bar-item da bireysel gizli (her ihtimale karşı) */
    .top-bar-left .top-bar-item,
    .top-bar-item {
        display: none !important;
    }
    
    /* Sadece sağdaki telefon + Teklif Al görünür */
    .top-bar-right,
    .top-bar-right .top-bar-phone,
    .top-bar-right .btn-teklif {
        display: flex !important;
        visibility: visible !important;
    }
    
    .top-bar-right {
        width: 100% !important;
        justify-content: space-between !important;
        align-items: center !important;
    }
}

/* ===================================================
   KATEGORİ KARTLARI MOBIL - MODERN
   =================================================== */
@media (max-width: 1024px) {
    /* Categories section - container daha sıkı */
    .categories,
    .categories-section,
    section.categories {
        padding: 20px 0 !important;
    }
    
    .categories > .container,
    .categories-section > .container {
        padding: 0 12px !important;
        max-width: 100% !important;
    }
    
    /* Grid 2 sütun olsun (1 yerine) */
    .categories-grid,
    .category-grid {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px !important;
        padding: 0 !important;
    }
    
    /* Kategori kartı modern */
    .category-card {
        background: #ffffff !important;
        border: 1px solid #f1f5f9 !important;
        border-radius: 14px !important;
        padding: 16px 12px !important;
        text-align: center !important;
        box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04) !important;
        transition: all 0.3s ease !important;
        position: relative;
        overflow: hidden;
        text-decoration: none !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        min-height: 200px;
        justify-content: space-between;
    }
    
    .category-card:active,
    .category-card:hover {
        transform: translateY(-3px);
        box-shadow: 0 8px 20px rgba(37, 99, 235, 0.15) !important;
        border-color: #2563eb !important;
    }
    
    /* Görsel ortada, küçük */
    .category-card img,
    .category-card .category-image,
    .category-card > svg {
        width: 70px !important;
        height: 70px !important;
        max-width: 70px !important;
        max-height: 70px !important;
        object-fit: contain !important;
        margin: 0 auto 10px !important;
        display: block !important;
    }
    
    /* Başlık */
    .category-card h3,
    .category-card .category-name,
    .category-card .category-title {
        font-size: 12px !important;
        font-weight: 700 !important;
        color: #0f172a !important;
        margin: 8px 0 4px !important;
        line-height: 1.3 !important;
        text-transform: uppercase;
        letter-spacing: 0.3px;
    }
    
    /* Açıklama */
    .category-card p,
    .category-card .category-desc {
        font-size: 10.5px !important;
        color: #64748b !important;
        margin: 0 0 8px !important;
        line-height: 1.4 !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    
    /* İncele linki gizli, kart komple tıklanır */
    .category-card .incele,
    .category-card .read-more,
    .category-card .more-link,
    .category-card a:not(.category-card),
    .category-card .btn {
        display: none !important;
    }
    
    /* Görselin üzerindeki "İncele →" yazısını gizle */
    .category-card .category-image::before,
    .category-card .category-image::after {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .categories-grid,
    .category-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    
    .category-card {
        padding: 14px 10px !important;
        min-height: 175px;
    }
    
    .category-card img,
    .category-card .category-image,
    .category-card > svg {
        width: 60px !important;
        height: 60px !important;
    }
    
    .category-card h3 { font-size: 11px !important; }
    .category-card p { font-size: 10px !important; }
}

/* MARKALAR MOBILDE GRID - carousel değil */
@media (max-width: 1024px) {
    .brands-section {
        padding: 30px 0 !important;
    }
    .brands-section > .container {
        padding: 0 12px !important;
    }
    .brands-section h2 {
        font-size: 14px !important;
        text-align: center !important;
        margin-bottom: 18px !important;
        color: #0f172a !important;
        letter-spacing: 0.5px;
        line-height: 1.4;
    }
    
    /* Carousel yerine grid */
    .brands-stage,
    #brandsStage {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px !important;
        height: auto !important;
        min-height: auto !important;
        overflow: visible !important;
        position: static !important;
    }
    
    .brand-slot {
        position: static !important;
        opacity: 1 !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #ffffff !important;
        border: 1px solid #f1f5f9 !important;
        border-radius: 10px !important;
        padding: 12px 8px !important;
        height: 65px !important;
        min-height: 65px !important;
        transition: all 0.3s ease !important;
        width: 100% !important;
        left: auto !important;
        top: auto !important;
    }
    
    .brand-slot:active {
        border-color: #2563eb !important;
        transform: scale(0.97);
    }
    
    .brand-slot img {
        max-width: 100% !important;
        max-height: 38px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        filter: grayscale(0%);
        opacity: 0.8;
        transition: all 0.3s ease;
    }
    
    .brand-slot:hover img,
    .brand-slot:active img {
        filter: grayscale(0);
        opacity: 1;
    }
    
    .brand-slot .brand-text {
        font-size: 11px !important;
        font-weight: 700 !important;
        color: #475569 !important;
        text-align: center;
        letter-spacing: 0.5px;
    }
}

@media (max-width: 480px) {
    .brands-stage,
    #brandsStage {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
    .brand-slot {
        height: 55px !important;
        min-height: 55px !important;
        padding: 10px 6px !important;
    }
    .brand-slot img {
        max-height: 32px !important;
    }
}

/* MARKALAR MOBILDE - MASK + ANIMATION TAMAMEN KAPAT */
@media (max-width: 1024px) {
    .brands-stage,
    #brandsStage {
        -webkit-mask-image: none !important;
        mask-image: none !important;
        animation: none !important;
    }
    
    .brand-slot {
        animation: none !important;
        position: static !important;
        opacity: 1 !important;
        transform: none !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
    }
    
    /* Carousel JavaScript'ini de bypass et */
    .brand-slot.brand-active,
    .brand-slot:not(.brand-active) {
        opacity: 1 !important;
        position: static !important;
        transform: none !important;
    }
    
    /* brands-stage::after gradient çizgi kapat */
    .brands-stage::after,
    .brands-stage::before {
        display: none !important;
    }
}

/* MARKA ÜSTÜNDEKİ SLIDER İNDİKATÖRLERİ KAPAT */
@media (max-width: 1024px) {
    .brands-section .slider-dots,
    .brands-section .dots,
    .brands-section .pagination,
    .brands-section .swiper-pagination,
    .brands-stage + .dots,
    .brands-stage + .slider-dots,
    .brand-dots,
    .brands-nav {
        display: none !important;
    }
    
    /* Slider stage ÜZERİNDEKİ herhangi bir div'i de kapat */
    .brands-section > .container > div:not(h2):not(.brands-stage):not(#brandsStage) {
        display: none !important;
    }
}

/* SLIDER DOTS - DAHA ŞIK */
.slider-dots,
.dots-container,
.dots,
.slider-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 8px !important;
    margin: 20px 0 !important;
    padding: 0 !important;
    list-style: none !important;
}

.slider-dots .dot,
.slider-dot,
.dots .dot,
.dot {
    width: 8px !important;
    height: 8px !important;
    border-radius: 50% !important;
    background: #cbd5e1 !important;
    border: none !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    padding: 0 !important;
    opacity: 1 !important;
    box-shadow: none !important;
}

.slider-dots .dot.active,
.slider-dot.active,
.dots .dot.active,
.dot.active {
    background: #2563eb !important;
    width: 28px !important;
    border-radius: 4px !important;
}

.slider-dots .dot:hover {
    background: #94a3b8 !important;
}

.slider-dots .dot.active:hover {
    background: #2563eb !important;
}

@media (max-width: 768px) {
    .slider-dots,
    .dots-container {
        margin: 14px 0 !important;
    }
    .slider-dots .dot {
        width: 7px !important;
        height: 7px !important;
    }
    .slider-dots .dot.active {
        width: 22px !important;
    }
}

/* MARKALARI ESKİ CAROUSEL HALİNE GETİR */
@media (max-width: 1024px) {
    .brands-stage,
    #brandsStage {
        display: block !important;
        position: relative !important;
        height: 100px !important;
        min-height: 100px !important;
        overflow: hidden !important;
        grid-template-columns: none !important;
        gap: 0 !important;
        padding: 20px 30px !important;
        -webkit-mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%) !important;
        mask-image: linear-gradient(90deg, transparent 0%, #000 6%, #000 94%, transparent 100%) !important;
    }
    
    .brand-slot {
        position: absolute !important;
        top: 50% !important;
        height: 60px !important;
        width: 130px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        opacity: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        padding: 0 !important;
        min-height: 0 !important;
        box-shadow: none !important;
        left: auto !important;
        transform: translateY(-50%) !important;
        transition: opacity 0.6s ease, left 0.6s ease !important;
    }
    
    .brand-slot.brand-active {
        opacity: 1 !important;
    }
    
    .brand-slot img {
        max-width: 100% !important;
        max-height: 45px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        filter: grayscale(0%);
        opacity: 0.9;
    }
    
    /* Gradient çizgi altta tekrar görünsün */
    .brands-stage::after {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        bottom: 8px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        width: 50px !important;
        height: 3px !important;
        background: linear-gradient(90deg, transparent, #2563eb, transparent) !important;
        border-radius: 2px !important;
        opacity: 0.4 !important;
    }
}

@media (max-width: 480px) {
    .brands-stage,
    #brandsStage {
        height: 85px !important;
        min-height: 85px !important;
        padding: 16px 20px !important;
    }
    
    .brand-slot {
        height: 50px !important;
        width: 110px !important;
    }
    
    .brand-slot img {
        max-height: 38px !important;
    }
}

/* MARKALAR GRID - carousel'i tamamen ez */
@media (max-width: 1024px) {
    .brands-stage,
    #brandsStage {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 10px !important;
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
        overflow: visible !important;
        position: static !important;
        padding: 0 !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
        max-width: 100% !important;
        margin: 0 !important;
    }
    
    .brand-slot,
    .brand-slot.brand-active,
    #brandsStage .brand-slot {
        position: static !important;
        opacity: 1 !important;
        transform: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #ffffff !important;
        border: 1px solid #f1f5f9 !important;
        border-radius: 10px !important;
        padding: 12px 8px !important;
        height: 65px !important;
        min-height: 65px !important;
        width: 100% !important;
        max-width: 100% !important;
        left: auto !important;
        top: auto !important;
        right: auto !important;
        bottom: auto !important;
        animation: none !important;
        transition: all 0.3s ease !important;
        visibility: visible !important;
    }
    
    .brand-slot img {
        max-width: 100% !important;
        max-height: 38px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        filter: grayscale(0%);
        opacity: 0.85;
    }
    
    .brand-slot .brand-text {
        font-size: 12px !important;
        font-weight: 700 !important;
        color: #475569 !important;
        text-align: center;
    }
    
    .brand-slot:active,
    .brand-slot:hover {
        border-color: #2563eb !important;
    }
    .brand-slot:active img,
    .brand-slot:hover img {
        filter: grayscale(0);
        opacity: 1;
    }
    
    /* Mask çizgisi kapansın */
    .brands-stage::after,
    .brands-stage::before {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .brands-stage,
    #brandsStage {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 8px !important;
    }
    .brand-slot {
        height: 55px !important;
        min-height: 55px !important;
        padding: 10px 6px !important;
    }
    .brand-slot img {
        max-height: 32px !important;
    }
}

/* MARKALAR OTOMATIK KAYAN BANT (sonsuz döngü) */
@media (max-width: 1024px) {
    .brands-stage,
    #brandsStage {
        overflow: hidden !important;
        position: relative !important;
        padding: 16px 0 !important;
        margin: 0 !important;
        scroll-snap-type: none !important;
        -webkit-overflow-scrolling: auto !important;
    }
    
    /* İç wrapper'a animasyon uygula - CSS ile içeride track yarat */
    .brands-stage {
        display: flex !important;
        gap: 12px !important;
        animation: brandScroll 30s linear infinite !important;
        width: max-content !important;
    }
    
    .brand-slot {
        flex: 0 0 130px !important;
        animation: none !important;
    }
    
    /* Hover'da animasyon dursun */
    .brands-stage:hover {
        animation-play-state: paused !important;
    }
    
    @keyframes brandScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-130px * 8 - 12px * 8)); }
    }
    
    /* Konteyner kayan içeriği maskele */
    .brands-section > .container {
        overflow: hidden !important;
        padding: 0 !important;
        position: relative;
    }
    
    .brands-section > .container::before,
    .brands-section > .container::after {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 40px !important;
        z-index: 2;
        pointer-events: none;
    }
    .brands-section > .container::before {
        left: 0 !important;
        background: linear-gradient(90deg, #ffffff, transparent) !important;
    }
    .brands-section > .container::after {
        right: 0 !important;
        background: linear-gradient(-90deg, #ffffff, transparent) !important;
    }
    
    .brands-section h2 {
        padding: 0 16px !important;
        margin-bottom: 16px !important;
    }
}

@media (max-width: 480px) {
    .brand-slot {
        flex: 0 0 110px !important;
        height: 60px !important;
        min-height: 60px !important;
    }
    @keyframes brandScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(calc(-110px * 8 - 12px * 8)); }
    }
}

/* MARKALAR OTOMATIK KAYMA - SAĞLAM */
@media (max-width: 1024px) {
    .brands-section > .container {
        overflow: hidden !important;
        padding: 0 !important;
        position: relative !important;
        max-width: 100% !important;
    }
    
    .brands-stage,
    #brandsStage {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 12px !important;
        width: max-content !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 12px 0 !important;
        overflow: visible !important;
        position: relative !important;
        animation: brandMarquee 25s linear infinite !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
        height: auto !important;
        min-height: auto !important;
        scroll-snap-type: none !important;
        background: transparent !important;
        will-change: transform;
    }
    
    .brands-stage:hover {
        animation-play-state: paused !important;
    }
    
    /* Marka kutuları görünür, sabit boyut */
    .brand-slot,
    #brandsStage .brand-slot {
        flex: 0 0 130px !important;
        width: 130px !important;
        min-width: 130px !important;
        max-width: 130px !important;
        height: 65px !important;
        min-height: 65px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: #ffffff !important;
        border: 1px solid #e2e8f0 !important;
        border-radius: 12px !important;
        padding: 10px !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        transform: none !important;
        animation: none !important;
        box-shadow: 0 2px 6px rgba(15, 23, 42, 0.04) !important;
        left: auto !important;
        top: auto !important;
        margin: 0 !important;
    }
    
    .brand-slot img {
        max-width: 100% !important;
        max-height: 40px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        filter: grayscale(0%);
        opacity: 0.9;
    }
    
    .brand-slot .brand-text {
        font-size: 12px !important;
        font-weight: 700 !important;
        color: #475569 !important;
        text-align: center;
    }
    
    /* Animasyon - markalar 2 kez basıldığı için tam yarısı kadar kay */
    @keyframes brandMarquee {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    /* Kenar fade efekti */
    .brands-section > .container::before,
    .brands-section > .container::after {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 40px !important;
        z-index: 5;
        pointer-events: none;
    }
    .brands-section > .container::before {
        left: 0 !important;
        background: linear-gradient(90deg, #ffffff 0%, transparent 100%) !important;
    }
    .brands-section > .container::after {
        right: 0 !important;
        background: linear-gradient(-90deg, #ffffff 0%, transparent 100%) !important;
    }
    
    .brands-section h2 {
        padding: 0 16px !important;
        text-align: center !important;
        margin-bottom: 14px !important;
    }
}

@media (max-width: 480px) {
    .brand-slot,
    #brandsStage .brand-slot {
        flex: 0 0 110px !important;
        width: 110px !important;
        min-width: 110px !important;
        max-width: 110px !important;
        height: 58px !important;
        min-height: 58px !important;
    }
    .brand-slot img {
        max-height: 32px !important;
    }
    .brand-slot .brand-text {
        font-size: 11px !important;
    }
}

/* MARKALAR MODERN MARQUEE - 3D Smooth */
@media (max-width: 1024px) {
    .brands-section {
        padding: 40px 0 !important;
        background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%) !important;
        position: relative;
    }
    
    .brands-section h2 {
        text-align: center !important;
        font-size: 13px !important;
        font-weight: 600 !important;
        letter-spacing: 2px !important;
        color: #64748b !important;
        margin-bottom: 24px !important;
        text-transform: uppercase;
        padding: 0 16px !important;
    }
    
    /* Smooth easing animation */
    .brands-stage,
    #brandsStage {
        display: flex !important;
        flex-wrap: nowrap !important;
        gap: 16px !important;
        width: max-content !important;
        max-width: none !important;
        margin: 0 !important;
        padding: 20px 0 !important;
        animation: brandSmoothScroll 35s linear infinite !important;
        -webkit-mask-image: none !important;
        mask-image: none !important;
        will-change: transform;
        perspective: 1000px;
    }
    
    .brands-stage:hover,
    .brands-stage:active {
        animation-play-state: paused !important;
    }
    
    /* Modern kart - cam efekti + 3D hover */
    .brand-slot,
    #brandsStage .brand-slot {
        flex: 0 0 140px !important;
        width: 140px !important;
        min-width: 140px !important;
        max-width: 140px !important;
        height: 75px !important;
        min-height: 75px !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        background: rgba(255, 255, 255, 0.9) !important;
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(226, 232, 240, 0.6) !important;
        border-radius: 16px !important;
        padding: 14px !important;
        box-shadow: 
            0 4px 20px rgba(15, 23, 42, 0.04),
            0 1px 3px rgba(15, 23, 42, 0.06) !important;
        opacity: 1 !important;
        visibility: visible !important;
        position: static !important;
        transform: scale(0.92) translateZ(0);
        animation: none !important;
        transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1) !important;
        left: auto !important;
        top: auto !important;
        margin: 0 !important;
        cursor: pointer;
    }
    
    .brand-slot:hover,
    .brand-slot:active {
        transform: scale(1.08) translateZ(20px) !important;
        background: #ffffff !important;
        box-shadow: 
            0 20px 40px rgba(37, 99, 235, 0.15),
            0 8px 16px rgba(15, 23, 42, 0.1) !important;
        border-color: #2563eb !important;
        z-index: 2;
    }
    
    .brand-slot img {
        max-width: 100% !important;
        max-height: 42px !important;
        width: auto !important;
        height: auto !important;
        object-fit: contain !important;
        filter: grayscale(0%) brightness(1);
        opacity: 0.7;
        transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1) !important;
    }
    
    .brand-slot:hover img,
    .brand-slot:active img {
        filter: grayscale(0%) brightness(1);
        opacity: 1;
        transform: scale(1.05);
    }
    
    .brand-slot .brand-text {
        font-size: 12px !important;
        font-weight: 700 !important;
        color: #94a3b8 !important;
        letter-spacing: 0.5px;
        text-align: center;
        transition: color 0.4s ease !important;
    }
    
    .brand-slot:hover .brand-text,
    .brand-slot:active .brand-text {
        color: #2563eb !important;
    }
    
    /* Smooth pause-and-go animation */
    @keyframes brandSmoothScroll {
        0% { transform: translateX(0); }
        100% { transform: translateX(-50%); }
    }
    
    /* Kenar fade - daha yumuşak */
    .brands-section > .container {
        overflow: hidden !important;
        padding: 0 !important;
        position: relative !important;
        max-width: 100% !important;
    }
    
    .brands-section > .container::before,
    .brands-section > .container::after {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        bottom: 0 !important;
        width: 60px !important;
        z-index: 5;
        pointer-events: none;
    }
    .brands-section > .container::before {
        left: 0 !important;
        background: linear-gradient(90deg, #f8fafc 0%, rgba(248, 250, 252, 0.8) 50%, transparent 100%) !important;
    }
    .brands-section > .container::after {
        right: 0 !important;
        background: linear-gradient(-90deg, #ffffff 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%) !important;
    }
}

@media (max-width: 480px) {
    .brand-slot,
    #brandsStage .brand-slot {
        flex: 0 0 120px !important;
        width: 120px !important;
        min-width: 120px !important;
        max-width: 120px !important;
        height: 65px !important;
        min-height: 65px !important;
        padding: 10px !important;
    }
    .brand-slot img {
        max-height: 35px !important;
    }
    .brand-slot .brand-text {
        font-size: 11px !important;
    }
    .brands-section > .container::before,
    .brands-section > .container::after {
        width: 40px !important;
    }
}

/* MARKALAR - STEP-BY-STEP MODERN GEÇİŞ */
@media (max-width: 1024px) {
    .brands-stage,
    #brandsStage {
        animation: brandStepScroll 16s cubic-bezier(0.65, 0, 0.35, 1) infinite !important;
    }
    
    /* Step-style: hızlı kayar, biraz durur, tekrar kayar */
    @keyframes brandStepScroll {
        0%, 12% { transform: translateX(0); }
        15%, 27% { transform: translateX(-156px); }
        30%, 42% { transform: translateX(-312px); }
        45%, 57% { transform: translateX(-468px); }
        60%, 72% { transform: translateX(-624px); }
        75%, 87% { transform: translateX(-780px); }
        90%, 100% { transform: translateX(-936px); }
    }
    
    .brands-stage:hover,
    .brands-stage:active {
        animation-play-state: paused !important;
    }
}

@media (max-width: 480px) {
    @keyframes brandStepScroll {
        0%, 12% { transform: translateX(0); }
        15%, 27% { transform: translateX(-136px); }
        30%, 42% { transform: translateX(-272px); }
        45%, 57% { transform: translateX(-408px); }
        60%, 72% { transform: translateX(-544px); }
        75%, 87% { transform: translateX(-680px); }
        90%, 100% { transform: translateX(-816px); }
    }
}

/* MOBILDE BÖLÜMLER ARASINDAKİ BÜYÜK BOŞLUKLARI KAPAT */
@media (max-width: 1024px) {
    section,
    section.products-section,
    section.projects-section,
    section.brands-section,
    section.categories,
    section.blog-section,
    section.why-us {
        padding-top: 24px !important;
        padding-bottom: 24px !important;
        margin: 0 !important;
    }
    
    /* Slider altı çok boşluk vermesin */
    .products-slider,
    .projects-slider {
        padding-bottom: 18px !important;
    }
    
    /* Slider dots margin küçük */
    .slider-dots,
    .dots-container,
    .dots,
    .slider-pagination {
        margin: 10px 0 0 !important;
    }
    
    /* Section header altındaki başlık alt margini */
    .section-header {
        margin-bottom: 14px !important;
    }
    
    /* Brand section iç padding */
    .brands-section {
        padding: 24px 0 !important;
    }
    
    .brands-stage,
    #brandsStage {
        padding: 12px 0 !important;
    }
}

/* MOBILDE BÖLÜM ARASINDA BOŞLUK SIFIR */
@media (max-width: 1024px) {
    section,
    section.products-section,
    section.projects-section,
    section.brands-section,
    section.categories,
    section.blog-section,
    section.why-us {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
        margin: 0 !important;
    }
    
    /* Slider section iç padding daha az */
    .products-slider,
    .projects-slider {
        padding-bottom: 6px !important;
        padding-top: 6px !important;
        margin-bottom: 0 !important;
    }
    
    /* Slider dots minimal margin */
    .slider-dots,
    .dots-container,
    .dots,
    .slider-pagination {
        margin: 6px 0 0 !important;
        padding: 0 !important;
    }
    
    /* Brands section minimal */
    .brands-section {
        padding: 12px 0 !important;
        margin: 0 !important;
    }
    
    .brands-stage,
    #brandsStage {
        padding: 6px 0 !important;
        margin: 0 !important;
    }
    
    .brands-section h2 {
        margin-bottom: 8px !important;
        padding: 0 16px !important;
    }
    
    .section-header {
        margin-bottom: 10px !important;
    }
    
    /* Container margin sıfır */
    .container {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }
}

/* SLIDER KART ALTI BOŞLUK KAPAT */
@media (max-width: 1024px) {
    /* Slider container'ın iç padding'i */
    .products-slider,
    .projects-slider,
    .products-slider-wrap,
    .projects-slider-wrap {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
    
    /* Kart yüksekliği gereksiz fazla olmasın */
    .projects-slider .project-card,
    .projects-slider .slider-item {
        min-height: 240px !important;
        max-height: 260px !important;
        height: auto !important;
    }
    
    /* Dots tam altında, fazla margin yok */
    .projects-slider + .slider-dots,
    .products-slider + .slider-dots,
    .projects-slider-wrap .slider-dots,
    .products-slider-wrap .slider-dots {
        margin: 8px 0 0 !important;
        padding: 0 !important;
    }
    
    /* Section altı padding minimal */
    section.projects-section,
    section.products-section {
        padding-bottom: 8px !important;
    }
    
    /* Section üstü padding minimal */
    section.brands-section {
        padding-top: 8px !important;
    }
}

/* HERO ALTINDAKİ BEYAZ ŞERİT KAPAT */
@media (max-width: 1024px) {
    .hero,
    section.hero,
    .hero-section {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    
    .hero-inner,
    .hero > .container {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }
    
    /* Hero altındaki ilk section üst margin/padding kapat */
    .hero + section,
    section.hero + section {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Body bg sebebiyle olabilir - hero'nun arkaplanı uzasın */
    .hero,
    section.hero {
        position: relative;
    }
    .hero::after {
        content: '' !important;
        display: block !important;
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        bottom: -1px !important;
        height: 2px !important;
        background: #1e3a8a !important;
        z-index: 2;
    }
}

/* HERO İLE SONRAKİ SECTION ARASINDAKİ BEYAZ ŞERİT */
@media (max-width: 1024px) {
    /* Hero alt köşelerini düzleştir */
    .hero,
    section.hero {
        border-radius: 0 !important;
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
        clip-path: none !important;
        -webkit-clip-path: none !important;
        margin-bottom: 0 !important;
        padding-bottom: 30px !important;
    }
    
    .hero-inner {
        border-radius: 0 !important;
    }
    
    /* Hero'nun sonraki section'a yapışsın */
    .hero + * {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }
    
    /* Body arkaplan beyaz değil sayfa arka rengi olsun (geçişte beyaz görünmesin) */
    body {
        background: #0f172a !important;
    }
    
    /* Tüm section'lar kendi arkaplanlarını çizsin */
    main,
    main > *,
    section {
        background: #ffffff;
    }
    
    .hero,
    section.hero {
        background: #0f172a !important;
    }
}

/* HERO ALT KÖŞE YUVARLAK + BEYAZ GERİ ALAN */
@media (max-width: 1024px) {
    /* Tüm body & html arkaplan koyu mavi (geçişte beyaz görünmesin) */
    html, body {
        background: #0f172a !important;
        background-color: #0f172a !important;
    }
    
    /* Hero parent container */
    .hero,
    section.hero,
    .hero-section {
        border: none !important;
        border-radius: 0 !important;
        margin: 0 !important;
        padding-bottom: 30px !important;
        background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%) !important;
    }
    
    .hero > *,
    .hero-inner,
    .hero > .container {
        border-radius: 0 !important;
        border: none !important;
        margin: 0 !important;
    }
    
    /* Hero'dan sonraki section'lar BEYAZ üzerinde olsun */
    .hero + section,
    .hero + main,
    .hero + div,
    main {
        background: #ffffff !important;
        margin-top: 0 !important;
    }
    
    /* Her ihtimale karşı hero içinde rounded hiçbir şey olmasın */
    .hero *,
    section.hero * {
        border-bottom-left-radius: 0 !important;
        border-bottom-right-radius: 0 !important;
    }
    
    /* Hero ::before / ::after dekoratif rounded varsa */
    .hero::before,
    .hero::after,
    section.hero::before,
    section.hero::after {
        border-radius: 0 !important;
    }
}

/* HERO RADIUS GERİ + ARA BEYAZLIK KAPALI */
@media (max-width: 1024px) {
    /* Hero yuvarlak köşeler geri */
    .hero,
    section.hero {
        border-radius: 0 0 24px 24px !important;
        overflow: hidden !important;
        margin: 0 !important;
        padding-bottom: 25px !important;
        background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%) !important;
    }
    
    /* Body arkaplan beyaz yerine açık gri olsun, boşluk olsa bile şık görünür */
    html, body {
        background: #f8fafc !important;
        background-color: #f8fafc !important;
    }
    
    /* Hero'dan sonraki section yapışsın, üst margin yok */
    .hero + section,
    section.hero + section {
        margin-top: 0 !important;
        padding-top: 24px !important;
    }
    
    /* Tüm normal section'lar beyaz arkaplan */
    main section,
    main > section {
        background: #ffffff !important;
    }
    
    /* Brand & categories section gri arkaplan (varyasyon için) */
    section.brands-section,
    section.categories {
        background: #f8fafc !important;
    }
}

/* TEST: KIRMIZI ARKAPLAN - beyaz şeridin nerden geldiğini görelim */
@media (max-width: 1024px) {
    html, body {
        background: red !important;
    }
}

/* HERO ÜST DEKORATİF BEYAZ EĞRİ KAPALI */
@media (max-width: 1024px) {
    /* Hero ::before/::after dekoratif elementler */
    .hero::before,
    .hero::after,
    section.hero::before,
    section.hero::after {
        display: none !important;
        content: none !important;
        background: none !important;
        opacity: 0 !important;
    }
    
    /* Hero içindeki üst dekoratif div'ler */
    .hero > .decoration,
    .hero .hero-shape,
    .hero .hero-decoration,
    .hero-curve,
    .hero-wave,
    .hero-overlay {
        display: none !important;
    }
    
    /* Hero üst kısmı düz olsun */
    .hero,
    section.hero {
        padding-top: 16px !important;
        overflow: hidden !important;
        position: relative;
    }
    
    /* Hero direct child'ları normal akışta */
    .hero > * {
        position: relative;
        z-index: 1;
    }
}

/* HERO ÜSTÜNDEKİ ÖZELLİKLER LİSTESİ - MAVİ ARKAPLAN */
@media (max-width: 1024px) {
    /* Hero features list - mavi arkaplan + beyaz yazı */
    .hero-features,
    .hero-list,
    .features-list,
    .hero .features,
    section.hero .features {
        background: transparent !important;
        color: #ffffff !important;
        padding: 0 !important;
    }
    
    /* Liste item'ları */
    .hero-features li,
    .hero-list li,
    .features-list li,
    .hero .features li,
    .hero .features-item,
    .hero ul li {
        color: #ffffff !important;
        background: transparent !important;
    }
    
    .hero-features li svg,
    .hero-list li svg,
    .features-list li svg,
    .hero .features svg,
    .hero ul li svg {
        color: #60a5fa !important;
        stroke: #60a5fa !important;
    }
    
    /* Hero direct child div arkaplanları kapat */
    .hero > div,
    section.hero > div {
        background: transparent !important;
    }
    
    /* Body hero geçişi koyu mavi */
    html, body {
        background: #0f172a !important;
    }
    
    /* Hero kendisi tam alanı kapsasın */
    .hero,
    section.hero {
        background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%) !important;
        margin: 0 !important;
        padding-top: 0 !important;
    }
}

/* HERO FEATURES MOBIL - mavi alanda kal, beyaz dışına taşma */
@media (max-width: 1024px) {
    /* Hero kapsayıcı taşmayı yutsun */
    .hero,
    section.hero {
        overflow: visible !important;  /* iç içerik tam görünsün */
        padding-bottom: 30px !important;
        background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%) !important;
    }
    
    /* Hero features - mavi arkaplan + beyaz yazı (zaten hero içindeler) */
    .hero-features {
        background: transparent !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
        padding: 16px 0 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }
    
    .hero-feature {
        background: rgba(255, 255, 255, 0.08) !important;
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        border: 1px solid rgba(255, 255, 255, 0.1) !important;
        border-radius: 10px !important;
        padding: 10px 12px !important;
        color: #ffffff !important;
        font-size: 12px !important;
        font-weight: 500 !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
        line-height: 1.3 !important;
    }
    
    .hero-feature svg {
        width: 18px !important;
        height: 18px !important;
        color: #60a5fa !important;
        stroke: #60a5fa !important;
        flex-shrink: 0;
    }
    
    /* Hero inner içerik kontaynırı taşmasın */
    .hero-inner,
    .hero > .container,
    .hero-content {
        overflow: visible !important;
    }
    
    /* Hero-image (sağdaki ürün görseli) mobilde tam genişlik */
    .hero-image {
        margin: 20px -16px 0 !important;
        border-radius: 16px !important;
        overflow: hidden !important;
    }
    .hero-image img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
    }
    
    /* Body koyu mavi - hero bittiğinde beyaz görünmesin */
    html, body {
        background: #0f172a !important;
    }
    
    /* Hero sonrası section beyaz arka plan */
    .hero + section,
    .hero + main,
    main section {
        background: #ffffff !important;
    }
}

/* HERO IMAGE ÜSTÜNDEKİ İNCE BEYAZ ŞERİT KAPALI */
@media (max-width: 1024px) {
    .hero-image {
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        overflow: hidden !important;
        background: transparent !important;
    }
    
    .hero-image img {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        vertical-align: top !important;  /* alt çizgi boşluğu kapatır */
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Hero-content altındaki margin de yok */
    .hero-content {
        margin-bottom: 0 !important;
        padding-bottom: 16px !important;
    }
    
    /* Hero-inner ve container içindeki itemlar arasında boşluk yok */
    .hero-inner {
        gap: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }
    
    /* Hero direct child'lar üst üste yapışsın */
    .hero > * > * {
        margin-bottom: 0 !important;
    }
}

/* HERO İÇİNDEKİ HER ŞEY MAVİ - BEYAZ YOK */
@media (max-width: 1024px) {
    .hero,
    .hero *,
    section.hero,
    section.hero *,
    .hero > *,
    .hero-inner,
    .hero-inner > *,
    .hero > .container,
    .hero > .container > *,
    .hero-content,
    .hero-content > *,
    .hero-image,
    .hero-image > *,
    .hero-buttons,
    .hero-features {
        background-color: transparent !important;
        background-image: none !important;
        background: transparent !important;
    }
    
    /* Sadece hero kendisi mavi gradient */
    .hero,
    section.hero {
        background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%) !important;
        background-image: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%) !important;
    }
    
    /* Hero görseli kendi rengini korusun ama padding/margin/border yok */
    .hero-image img {
        background: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        display: block !important;
        vertical-align: top !important;
        width: 100% !important;
    }
    
    /* Hero-image div kutusu transparent */
    .hero-image {
        background: transparent !important;
        margin: 0 !important;
        padding: 0 !important;
        border: none !important;
        border-radius: 0 !important;
        overflow: hidden !important;
        line-height: 0 !important;
        font-size: 0 !important;
    }
    
    /* Hero altındaki direct hijacked rules */
    .hero > div::before,
    .hero > div::after,
    .hero-inner::before,
    .hero-inner::after {
        display: none !important;
        content: none !important;
        background: none !important;
    }
}

/* Top bar sosyal medya - Madde 21 */
@media (max-width: 768px) {
    .top-social { display: none !important; }
}

/* Dil seçici mobilde - Madde 16 */
@media (max-width: 768px) {
    .lang-pill-group { display: none !important; }
}


/* Projeler section padding daha kompakt */
section:has(.projects-slider-wrap) {
    padding: 40px 0 !important;
}


/* Projeler section'ı kompakt */
section:has(.projects-slider-wrap) {
    padding: 30px 0 0 0 !important;
    margin-bottom: 0 !important;
}


/* Tüm sectionlar arası genel boşluğu da azalt */


/* Markalar section - üst boşluğunu sıfırla */
.brands-section {
    padding-top: 30px !important;
    padding-bottom: 40px !important;
    margin-top: 0 !important;
}
.brands-section h2 {
    margin-top: 0 !important;
    margin-bottom: 25px !important;
}

/* WhatsApp baloncuk - tüm extra efektleri sil */
.wa-float, .wa-float-bubble {
    filter: none !important;
    -webkit-filter: none !important;
}
.wa-float::before, .wa-float::after,
.wa-float-bubble::before, .wa-float-bubble::after {
    display: none !important;
    content: none !important;
    box-shadow: none !important;
    background: none !important;
}

/* WhatsApp baloncuk - tüm animasyon ve pulse'ları kapat */
.wa-float, .wa-float-bubble, .whatsapp-float {
    animation: none !important;
    -webkit-animation: none !important;
}
.wa-float::before, .wa-float::after,
.wa-float-bubble::before, .wa-float-bubble::after {
    display: none !important;
    content: none !important;
}

/* ===== MODERN BRANDS MARQUEE (override - 2026-06-03) ===== */
.brands-section {
    padding: 60px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
    overflow: hidden;
    position: relative;
}
.brands-section h2 {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    color: #1e3a8a;
    letter-spacing: 0.5px;
    margin-bottom: 40px;
    text-transform: uppercase;
}
.brands-section .container {
    position: relative;
}
/* Konteynır - kenarlarda gradient fade */
.brands-stage {
    display: flex;
    gap: 60px;
    width: max-content;
    animation: brandsFlow 35s linear infinite;
    align-items: center;
    will-change: transform;
}
.brands-section .container::before,
.brands-section .container::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}
.brands-section .container::before {
    left: 0;
    background: linear-gradient(90deg, #f8fafc 0%, rgba(248,250,252,0) 100%);
}
.brands-section .container::after {
    right: 0;
    background: linear-gradient(270deg, #f8fafc 0%, rgba(248,250,252,0) 100%);
}
/* Hover'da yavaşla */
.brands-stage:hover {
    animation-play-state: paused;
}
/* Sonsuz akış animasyonu */
@keyframes brandsFlow {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
/* Brand kart */
.brand-slot {
    flex: 0 0 auto;
    width: 160px;
    height: 90px;
    display: flex !important;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 16px;
    padding: 18px 22px;
    box-shadow: 0 2px 8px rgba(15, 23, 42, 0.04);
    border: 1px solid rgba(15, 23, 42, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    filter: none !important;
}
.brand-slot:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(30, 58, 138, 0.12);
    border-color: rgba(30, 58, 138, 0.15);
}
.brand-slot img {
    max-width: 100%;
    max-height: 60px;
    object-fit: contain;
    filter: none !important;
    opacity: 1 !important;
    transition: transform 0.4s ease;
}
.brand-slot:hover img {
    transform: scale(1.06);
}
.brand-slot .brand-text {
    font-weight: 700;
    color: #1e3a8a;
    font-size: 16px;
    letter-spacing: 1px;
}
/* Mobil */
@media (max-width: 768px) {
    .brands-section { padding: 40px 0; }
    .brands-section h2 { font-size: 17px; margin-bottom: 25px; }
    .brands-stage { gap: 35px; animation-duration: 25s; }
    .brand-slot {
        width: 120px;
        height: 70px;
        padding: 12px 16px;
        border-radius: 12px;
    }
    .brand-slot img { max-height: 45px; }
    .brands-section .container::before,
    .brands-section .container::after { width: 60px; }
}
/* ===== END MODERN BRANDS MARQUEE ===== */
