/* ===================================
   MEGATEK GUVENLIK - ANA STIL DOSYASI
   v11 — CLS & LCP Optimized + Tilt Effect
   =================================== */

/* ===== CSS-ONLY HOVER TILT EFFECT (Performans Optimizasyonu) ===== */
.service-card,
.product-card,
.campaign-card {
    transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1), box-shadow 0.3s ease;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.service-card:hover,
.product-card:hover,
.campaign-card:hover {
    transform: translateY(-8px) rotateX(2deg) rotateY(-2deg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 62, 77, 0.08);
}

/* Mobil'de tilt efekti devre dışı (performans ve kullanılabilirlik) */
@media (max-width: 768px) {

    .service-card:hover,
    .product-card:hover,
    .campaign-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    }
}

/* ===== PERFORMANS & CLS ÖNLEYİCİ KURALLAR ===== */

/* Tüm img elementleri için aspect-ratio koruması — CLS önler */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Logo görseli için sabit boyut — LCP & CLS */
.logo img {
    width: auto;
    height: 72px;
    object-fit: contain;
}

/* Tablet logo */
@media (max-width: 1100px) {
    .logo img {
        height: 64px;
    }
}

/* Mobil logo — navbar'a sığacak şekilde */
@media (max-width: 768px) {
    .logo img {
        width: auto;
        height: 52px;
    }
}

/* Section header başlangıçta görünür — CLS önler */
.section-header {
    opacity: 1;
    transform: none;
}

/* Font yüklenmeden önce fallback font boyutu farkını minimize et */
body {
    font-synthesis: none;
    -webkit-font-smoothing: antialiased;
}

/* CSS VARIABLES */
:root {
    --black: #050505;
    --black-light: #0d0d0d;
    --black-card: #121212;
    --black-border: rgba(255, 255, 255, 0.08);
    --red: #ff3e4d;
    --red-dark: #d90429;
    --red-light: #ff6b6b;
    --white: #ffffff;
    --white-80: rgba(255, 255, 255, 0.85);
    --white-60: rgba(255, 255, 255, 0.75);
    --white-20: rgba(255, 255, 255, 0.2);
    --white-10: rgba(255, 255, 255, 0.1);
    --white-05: rgba(255, 255, 255, 0.05);
    --gray: #94a3b8;

    --font: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    --radius: 16px;
    --radius-lg: 24px;
    --radius-sm: 8px;
    --shadow: 0 20px 40px rgba(0, 0, 0, 0.6);
    --shadow-red: 0 10px 30px rgba(255, 62, 77, 0.25);
    --transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    --transition-slow: all 0.8s cubic-bezier(0.23, 1, 0.32, 1);
}

/* RESET & BASE */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body {
    font-family: var(--font);
    background-color: var(--black);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

/* ERİŞİLEBİLİRLİK: İçerik linkleri sadece renkle değil, underline ile de ayırt edilsin */
/* Nav, buton, footer linkleri hariç — sadece içerik alanındaki metin linkleri */
main a:not(.btn):not(.nav-link):not(.btn-nav):not(.service-link):not(.whatsapp-float):not(.scroll-top):not(.shortcut-item):not(.social-links a):not(.footer-col a):not(.footer-bottom a):not(.breadcrumb a):not(.product-actions a) {
    text-decoration: underline;
    text-underline-offset: 3px;
}

main a:not(.btn):not(.nav-link):not(.btn-nav):not(.service-link):not(.whatsapp-float):not(.scroll-top):not(.shortcut-item):not(.social-links a):not(.footer-col a):not(.footer-bottom a):not(.breadcrumb a):not(.product-actions a):hover {
    text-decoration: underline;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Ürün kartı görsel alanı */
.product-image {
    overflow: hidden;
    position: relative;
    background: var(--black-card);
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: var(--font);
}

input,
textarea,
select {
    font-family: var(--font);
}

/* CONTAINER */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: 700;
    line-height: 1.2;
}

h1 {
    font-size: clamp(2rem, 5vw, 3.5rem);
}

h2 {
    font-size: clamp(1.6rem, 3.5vw, 2.5rem);
}

h3 {
    font-size: clamp(1.2rem, 2.5vw, 1.5rem);
}

.text-red {
    color: var(--red);
}

/* SECTION HEADER */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header p {
    color: var(--white-60);
    max-width: 600px;
    margin: 16px auto 0;
    font-size: 1.05rem;
}

.section-badge {
    display: inline-block;
    background: rgba(230, 57, 70, 0.15);
    color: var(--red);
    border: 1px solid rgba(230, 57, 70, 0.3);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

/* BUTTONS */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: var(--radius);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    cursor: pointer;
    border: 2px solid transparent;
    white-space: nowrap;
}

.btn-primary {
    background: var(--red-dark);
    color: var(--white);
    border-color: var(--red-dark);
}

.btn-primary:hover {
    background: #b8001f;
    border-color: #b8001f;
    transform: translateY(-2px);
    box-shadow: var(--shadow-red);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--white-20);
}

.btn-outline:hover {
    background: var(--white-10);
    border-color: var(--white-60);
    transform: translateY(-2px);
}

.btn-whatsapp {
    background: var(--whatsapp);
    color: var(--white);
    border-color: var(--whatsapp);
}

.btn-whatsapp:hover {
    background: var(--whatsapp-dark);
    border-color: var(--whatsapp-dark);
    transform: translateY(-2px);
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ===================================
   NAVBAR
   =================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: var(--transition);
    background: transparent;
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 10px 0;
    border-bottom: 1px solid var(--black-border);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* LOGO */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-icon {
    width: 44px;
    height: 44px;
    background: var(--red);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white);
    flex-shrink: 0;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.logo-main {
    font-size: 1.2rem;
    font-weight: 900;
    color: var(--white);
    letter-spacing: 2px;
}

.logo-sub {
    font-size: 0.65rem;
    font-weight: 500;
    color: var(--red);
    letter-spacing: 3px;
}

/* NAV MENU */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
    color: var(--white-80);
    transition: var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--white);
    background: rgba(255, 62, 77, 0.08);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 20px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
    transform: translateX(-50%) scaleX(1);
}

.btn-nav {
    background: var(--red-dark) !important;
    color: var(--white) !important;
    padding: 10px 20px !important;
    border-radius: var(--radius) !important;
    font-weight: 600 !important;
    margin-left: 8px;
}

.btn-nav:hover {
    background: var(--red-dark) !important;
    transform: translateY(-1px);
    box-shadow: var(--shadow-red);
}

.btn-nav::after {
    display: none !important;
}

/* ===================================
   MOBİL NAV MENU — HAMBURGER AÇILIR MENÜ
   JS: navMenu.classList.toggle('open')
   =================================== */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(5, 5, 5, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 8px;
        z-index: 999;
        padding: 80px 20px 40px;
        overflow-y: auto;
    }

    .nav-menu.open {
        display: flex;
    }

    .nav-menu li {
        width: 100%;
        text-align: center;
    }

    .nav-menu .nav-link {
        display: block;
        padding: 16px 24px;
        font-size: 1.1rem;
        font-weight: 600;
        border-radius: var(--radius);
        border: 1px solid var(--black-border);
        width: 100%;
    }

    .nav-menu .nav-link:hover,
    .nav-menu .nav-link.active {
        background: rgba(255, 62, 77, 0.12);
        border-color: rgba(255, 62, 77, 0.3);
        color: var(--white);
    }

    .nav-menu .btn-nav {
        margin-left: 0 !important;
        margin-top: 8px;
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}

/* NAVBAR SEARCH */
.nav-search {
    position: relative;
    display: flex;
    align-items: center;
    margin-left: 16px;
}

.nav-search input {
    background: var(--white-05);
    border: 1px solid var(--black-border);
    border-radius: 50px;
    padding: 8px 36px 8px 16px;
    color: var(--white);
    font-size: 0.85rem;
    width: 180px;
    outline: none;
    transition: var(--transition);
}

.nav-search input::placeholder {
    color: var(--white-60);
}

.nav-search input:focus {
    border-color: var(--red);
    background: var(--white-10);
    width: 240px;
}

.nav-search button {
    position: absolute;
    right: 6px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    color: var(--white-60);
    cursor: pointer;
    padding: 4px 8px;
    font-size: 0.9rem;
}

.nav-search button:hover {
    color: var(--red);
}

@media (max-width: 1100px) {
    .nav-search input {
        width: 140px;
        padding: 6px 32px 6px 12px;
        font-size: 0.8rem;
    }

    .nav-search input:focus {
        width: 180px;
    }
}

@media (max-width: 768px) {
    .nav-search {
        margin-left: auto;
        margin-right: 12px;
    }

    .nav-search input {
        width: 120px;
        font-size: 0.8rem;
    }

    .nav-search input:focus {
        width: 160px;
    }
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    z-index: 1001;
    position: relative;
}

.hamburger:hover {
    background: var(--white-10);
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* ===================================
   HERO SLIDER
   =================================== */
/* CLS FIX: 100vh yerine sabit yükseklik — viewport değişimi layout shift yaratmaz */
.hero-slider {
    position: relative;
    height: 600px;
    overflow: hidden;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.8s ease;
    display: flex;
    align-items: center;
}

.slide.active {
    opacity: 1;
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    background-size: 60px 60px;
    background-image:
        linear-gradient(rgba(230, 57, 70, 0.3) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 57, 70, 0.3) 1px, transparent 1px);
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 80px;
}

.slide-content .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 0 20px;
}

/* CLS FIX: slideInLeft animasyonu kaldırıldı — her slide geçişinde layout shift yapıyordu */

.slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(230, 57, 70, 0.15);
    color: var(--red);
    border: 1px solid rgba(230, 57, 70, 0.3);
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 24px;
}

.slide-text h1 {
    margin-bottom: 20px;
    font-weight: 900;
}

.slide-text p {
    color: var(--white-60);
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 480px;
}

.slide-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* HERO VISUALS */
.slide-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-icon-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hero-icon-item {
    background: var(--white-05);
    border: 1px solid var(--white-10);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.hero-icon-item:hover {
    background: rgba(230, 57, 70, 0.1);
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateY(-4px);
}

.hero-icon-item i {
    font-size: 2.5rem;
    color: var(--red);
    margin-bottom: 12px;
    display: block;
}

.hero-icon-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--white-80);
}

/* CAMERA SHOWCASE */
.camera-showcase {
    text-align: center;
}

.camera-ring {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 3px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
    position: relative;
    animation: pulse-ring 2s ease-in-out infinite;
    box-shadow: 0 0 40px rgba(230, 57, 70, 0.3);
}

.camera-ring::before {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 1px solid rgba(230, 57, 70, 0.2);
}

.camera-ring i {
    font-size: 4rem;
    color: var(--red);
}

.camera-stats {
    display: flex;
    gap: 30px;
    justify-content: center;
}

.camera-stats .stat {
    text-align: center;
}

.camera-stats .stat span {
    display: block;
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--red);
}

.camera-stats .stat small {
    font-size: 0.75rem;
    color: var(--white-60);
}

/* SMART HOME VISUAL */
.smart-home-visual {
    position: relative;
    width: 280px;
    height: 280px;
    margin: 0 auto;
}

.sh-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: rgba(230, 57, 70, 0.15);
    border: 2px solid var(--red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: var(--red);
    z-index: 2;
}

.sh-item {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--white-05);
    border: 1px solid var(--white-20);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--white-80);
    animation: orbit-float 3s ease-in-out infinite;
}

.sh-1 {
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 0s;
}

.sh-2 {
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    animation-delay: 0.5s;
}

.sh-3 {
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 1s;
}

.sh-4 {
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    animation-delay: 1.5s;
}

/* SLIDER CONTROLS */
.slider-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.slider-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--white-10);
    border: 1px solid var(--white-20);
    color: var(--white);
    font-size: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: var(--red);
    border-color: var(--red);
}

.slider-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--white-20);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--red);
    width: 24px;
    border-radius: 4px;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    right: 40px;
    z-index: 10;
}

.hero-scroll a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 1px solid var(--white-20);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-60);
    animation: bounce 2s ease-in-out infinite;
    transition: var(--transition);
}

.hero-scroll a:hover {
    border-color: var(--red);
    color: var(--red);
}

/* ===================================
   STATS BAR
   =================================== */
.stats-bar {
    background: var(--black-card);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
    padding: 40px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.stat-item {
    text-align: center;
    padding: 20px;
    position: relative;
    transition: var(--transition);
}

.stat-item:hover {
    transform: translateY(-8px);
}

.stat-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: var(--black-border);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
}

.stat-plus {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--red);
}

.stat-label {
    display: block;
    font-size: 0.85rem;
    color: var(--white-60);
    margin-top: 8px;
    font-weight: 500;
}

/* ===================================
   SERVICES
   =================================== */
.services {
    padding: 100px 0;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.service-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transition: var(--transition);
}

.service-card:hover {
    border-color: rgba(255, 62, 77, 0.4);
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6), 0 0 20px rgba(255, 62, 77, 0.1);
    background: rgba(255, 255, 255, 0.03);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card.featured {
    border-color: rgba(230, 57, 70, 0.4);
    background: linear-gradient(135deg, var(--black-card) 0%, rgba(230, 57, 70, 0.05) 100%);
}

.service-card.featured::before {
    transform: scaleX(1);
}

.featured-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.service-icon {
    width: 64px;
    height: 64px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--red);
    margin-bottom: 24px;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--red);
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    margin-bottom: 12px;
    font-size: 1.15rem;
}

.service-card>p {
    color: var(--white-60);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.7;
}

.service-features {
    margin-bottom: 24px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: var(--white-80);
    padding: 4px 0;
}

.service-features li i {
    color: var(--red);
    font-size: 0.75rem;
    flex-shrink: 0;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--red);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition);
}

.service-link:hover {
    gap: 12px;
}

/* ===================================
   WHY US
   =================================== */
.why-us {
    padding: 100px 0;
    background: var(--black-card);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
}

.why-us-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.why-us-content .section-badge {
    margin-bottom: 16px;
}

.why-us-content h2 {
    margin-bottom: 16px;
}

.why-us-content>p {
    color: var(--white-60);
    margin-bottom: 40px;
    font-size: 1.05rem;
}

.why-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.why-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.why-icon {
    width: 48px;
    height: 48px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--red);
    flex-shrink: 0;
    transition: var(--transition);
}

.why-feature:hover .why-icon {
    background: var(--red);
    color: var(--white);
}

.why-feature h3 {
    font-size: 1rem;
    margin-bottom: 4px;
}

.why-feature p {
    font-size: 0.875rem;
    color: var(--white-60);
}

/* SHIELD VISUAL */
.why-us-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.shield-visual {
    position: relative;
    width: 320px;
    height: 320px;
}

.shield-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    background: rgba(230, 57, 70, 0.1);
    border: 2px solid rgba(230, 57, 70, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: pulse-shield 3s ease-in-out infinite;
}

.shield-inner {
    text-align: center;
    color: var(--red);
}

.shield-inner i {
    font-size: 3rem;
    display: block;
    margin-bottom: 4px;
}

.shield-inner span {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 2px;
    display: block;
}

.shield-inner small {
    font-size: 0.55rem;
    color: var(--white-60);
    letter-spacing: 2px;
}

.shield-orbit {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 280px;
    height: 280px;
    margin: -140px 0 0 -140px;
    border-radius: 50%;
    border: 1px dashed rgba(230, 57, 70, 0.2);
}

.orbit-1 {
    animation: orbit 8s linear infinite;
}

.orbit-2 {
    animation: orbit 12s linear infinite reverse;
    width: 240px;
    height: 240px;
    margin: -120px 0 0 -120px;
}

.orbit-3 {
    animation: orbit 16s linear infinite;
    width: 320px;
    height: 320px;
    margin: -160px 0 0 -160px;
}

.orbit-icon {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: var(--black-card);
    border: 1px solid rgba(230, 57, 70, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--red);
}

/* ===================================
   KEŞİF FORMU
   =================================== */
.kesif-section {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--black) 0%, rgba(230, 57, 70, 0.03) 50%, var(--black) 100%);
}

.kesif-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.kesif-content h2 {
    margin-bottom: 16px;
}

.kesif-content>p {
    color: var(--white-60);
    margin-bottom: 32px;
    font-size: 1.05rem;
    line-height: 1.8;
}

.kesif-benefits {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--white-80);
}

.benefit i {
    color: var(--red);
    font-size: 1rem;
}

/* FORM */
.kesif-form-wrapper {
    background: rgba(18, 18, 18, 0.8);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.kesif-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--white-80);
}

.form-group input,
.form-group select,
.form-group textarea {
    background: var(--black);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    color: var(--white);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--gray);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--red);
    box-shadow: 0 0 0 3px rgba(230, 57, 70, 0.1);
}

.form-group select option {
    background: var(--black-card);
    color: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.form-note {
    text-align: center;
    font-size: 0.8rem;
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

/* ===================================
   CAMPAIGN BANNER
   =================================== */
.campaign-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(230, 57, 70, 0.05) 100%);
    border-top: 1px solid rgba(230, 57, 70, 0.2);
    border-bottom: 1px solid rgba(230, 57, 70, 0.2);
}

.campaign-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}

.campaign-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--red-dark);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.campaign-text h2 {
    margin-bottom: 8px;
}

.campaign-text p {
    color: var(--white-60);
}

.campaign-action {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    flex-shrink: 0;
}

/* ===================================
   BRANDS
   =================================== */
.brands {
    padding: 80px 0;
}

.brands-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.brand-item {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    padding: 24px 16px;
    text-align: center;
    transition: var(--transition);
}

.brand-item:hover {
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateY(-3px);
}

.brand-item span {
    font-size: 1rem;
    font-weight: 700;
    color: var(--white-60);
    letter-spacing: 1px;
    transition: var(--transition);
}

.brand-item:hover span {
    color: var(--white);
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--black-card);
    border-top: 1px solid var(--black-border);
}

.footer-top {
    padding: 80px 0 60px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 60px;
}

.footer-brand .logo {
    margin-bottom: 20px;
}

.footer-brand>p {
    color: var(--white-60);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: var(--white-05);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-60);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-col h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 24px;
    color: var(--white);
    position: relative;
    padding-bottom: 12px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--red);
    border-radius: 2px;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--white-80);
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.footer-col ul li a i {
    font-size: 0.7rem;
    color: var(--red);
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9rem;
}

.contact-item i {
    color: var(--red);
    font-size: 1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item span,
.contact-item a {
    color: var(--white-80);
    transition: var(--transition);
}

.contact-item a:hover {
    color: var(--white);
}

.footer-bottom {
    border-top: 1px solid var(--black-border);
    padding: 24px 0;
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: 0.85rem;
    color: var(--white-80);
}

.footer-bottom a {
    color: var(--red);
}

/* ===================================
   WHATSAPP FLOAT
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    width: 60px;
    height: 60px;
    background: var(--whatsapp);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--white);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: whatsapp-pulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: var(--black-card);
    color: var(--white);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
    border: 1px solid var(--black-border);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right: none;
    border-left-color: var(--black-border);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
}

/* SCROLL TO TOP */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 999;
    width: 44px;
    height: 44px;
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white-60);
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px);
}

.scroll-top.visible {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

/* ===================================
   PAGE HERO (İç Sayfalar)
   =================================== */
.page-hero {
    padding: 140px 0 80px;
    background: linear-gradient(135deg, var(--black) 0%, rgba(230, 57, 70, 0.05) 50%, var(--black) 100%);
    border-bottom: 1px solid var(--black-border);
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        linear-gradient(rgba(230, 57, 70, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(230, 57, 70, 0.05) 1px, transparent 1px);
    background-size: 60px 60px;
}

.page-hero .container {
    position: relative;
    z-index: 1;
}

.page-hero-content {
    text-align: center;
}

.page-hero-content h1 {
    margin-bottom: 16px;
}

.page-hero-content p {
    color: var(--white-60);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 0.85rem;
    color: var(--white-60);
}

.breadcrumb a {
    color: var(--white-60);
    transition: var(--transition);
}

.breadcrumb a:hover {
    color: var(--red);
}

.breadcrumb i {
    font-size: 0.7rem;
    color: var(--red);
}

/* ===================================
   PRODUCT CARDS
   =================================== */
.product-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.product-card:hover {
    border-color: rgba(255, 62, 77, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.6);
    background: rgba(255, 255, 255, 0.03);
}

.product-image {
    height: 200px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.05);
}

.product-image i {
    font-size: 5rem;
    color: rgba(230, 57, 70, 0.2);
    transition: var(--transition);
}

.product-card:hover .product-image i {
    color: rgba(230, 57, 70, 0.4);
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--red);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 50px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.product-info {
    padding: 24px;
}

.product-category {
    font-size: 0.75rem;
    color: var(--red);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.product-info h3 {
    font-size: 1.05rem;
    margin-bottom: 8px;
}

.product-info p {
    font-size: 0.875rem;
    color: var(--white-60);
    margin-bottom: 16px;
    line-height: 1.6;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 20px;
}

.product-feature-tag {
    background: var(--white-05);
    border: 1px solid var(--black-border);
    color: var(--white-60);
    font-size: 0.75rem;
    padding: 4px 10px;
    border-radius: 50px;
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    justify-content: center;
    padding: 10px 16px;
    font-size: 0.85rem;
}

/* ===================================
   FILTER BAR
   =================================== */
.filter-bar {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}

.filter-btn {
    padding: 8px 20px;
    border-radius: 50px;
    border: 1px solid var(--black-border);
    background: var(--black-card);
    color: var(--white-60);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--red);
    border-color: var(--red);
    color: var(--white);
}

.search-bar {
    margin-left: auto;
    position: relative;
}

.search-bar input {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 50px;
    padding: 10px 20px 10px 44px;
    color: var(--white);
    font-size: 0.875rem;
    width: 260px;
    outline: none;
    transition: var(--transition);
}

.search-bar input:focus {
    border-color: var(--red);
    width: 300px;
}

.search-bar input::placeholder {
    color: var(--gray);
}

.search-bar i {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 0.9rem;
}

/* ===================================
   TEAM CARDS
   =================================== */
.team-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    transition: var(--transition);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.team-card:hover {
    border-color: rgba(230, 57, 70, 0.3);
    transform: translateY(-4px);
}

.team-avatar {
    width: 80px;
    height: 80px;
    background: rgba(230, 57, 70, 0.1);
    border: 2px solid rgba(230, 57, 70, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--red);
    margin: 0 auto 20px;
}

.team-card h3 {
    margin-bottom: 4px;
}

.team-card .role {
    color: var(--red);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    color: var(--white-60);
    font-size: 0.875rem;
}

/* ===================================
   TIMELINE
   =================================== */
.timeline {
    position: relative;
    padding-left: 40px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--red), transparent);
}

.timeline-item {
    position: relative;
    padding-bottom: 40px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -44px;
    top: 4px;
    width: 10px;
    height: 10px;
    background: var(--red);
    border-radius: 50%;
    border: 2px solid var(--black);
    box-shadow: 0 0 0 4px rgba(230, 57, 70, 0.2);
}

.timeline-year {
    font-size: 0.8rem;
    color: var(--red);
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.timeline-item h4 {
    margin-bottom: 6px;
}

.timeline-item p {
    color: var(--white-60);
    font-size: 0.9rem;
}

/* ===================================
   CONTACT PAGE
   =================================== */
.shortcuts-section {
    padding: 40px 0;
    background: var(--black-card);
    border-bottom: 1px solid var(--black-border);
}

.shortcut-item {
    background: var(--black);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    transition: var(--transition);
    text-decoration: none;
}

.shortcut-icon {
    width: 48px;
    height: 48px;
    background: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.shortcut-item.whatsapp .shortcut-icon {
    background: rgba(37, 211, 102, 0.1);
    color: #25D366;
}

.shortcut-text .label {
    font-size: 0.75rem;
    color: var(--white-60);
    margin-bottom: 2px;
}

.shortcut-text .value {
    font-weight: 700;
    font-size: 0.95rem;
    word-break: break-all;
}

.discovery-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.08) 0%, var(--black) 100%);
    border-top: 1px solid rgba(230, 57, 70, 0.15);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid var(--black-border);
}

.contact-info-item:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: var(--red);
    flex-shrink: 0;
}

.contact-info-text h4 {
    font-size: 0.9rem;
    margin-bottom: 4px;
}

.contact-info-text p,
.contact-info-text a {
    color: var(--white-60);
    font-size: 0.9rem;
    transition: var(--transition);
    word-break: break-word;
    overflow-wrap: anywhere;
}

.contact-info-text a:hover {
    color: var(--red);
}

.contact-form-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form-card h3 {
    margin-bottom: 30px;
}

/* ===================================
   CAMPAIGN CARDS
   =================================== */
.campaign-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.campaign-card:hover {
    border-color: rgba(230, 57, 70, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.campaign-card-header {
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.2) 0%, rgba(230, 57, 70, 0.05) 100%);
    padding: 40px 32px;
    text-align: center;
    border-bottom: 1px solid rgba(230, 57, 70, 0.2);
    position: relative;
}

.campaign-discount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--red);
    line-height: 1;
    margin-bottom: 8px;
}

.campaign-card-header h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.campaign-card-header p {
    color: var(--white-60);
    font-size: 0.875rem;
}

.campaign-card-body {
    padding: 28px 32px;
}

.campaign-features {
    margin-bottom: 24px;
}

.campaign-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.9rem;
    color: var(--white-80);
    border-bottom: 1px solid var(--black-border);
}

.campaign-features li:last-child {
    border-bottom: none;
}

.campaign-features li i {
    color: var(--red);
    font-size: 0.8rem;
}

.campaign-validity {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--gray);
    margin-bottom: 20px;
}

.campaign-validity i {
    color: var(--red);
}

/* ===================================
   MAP SECTION
   =================================== */
.map-section {
    padding: 80px 0;
    background: var(--black-card);
    border-top: 1px solid var(--black-border);
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--black-border);
    height: 400px;
    background: var(--black);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.map-placeholder {
    text-align: center;
    color: var(--white-60);
}

.map-placeholder i {
    font-size: 4rem;
    color: var(--red);
    margin-bottom: 16px;
    display: block;
}

.map-placeholder h3 {
    margin-bottom: 8px;
}

.map-placeholder p {
    font-size: 0.9rem;
}

/* ===================================
   ABOUT PAGE
   =================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-main-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: var(--radius-lg);
    padding: 60px 40px;
    text-align: center;
}

.about-main-card i {
    font-size: 6rem;
    color: var(--red);
    margin-bottom: 24px;
    display: block;
}

.about-main-card h3 {
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.about-main-card p {
    color: var(--white-60);
}

.about-stats-mini {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 20px;
}

.about-stat-mini {
    background: var(--black);
    border: 1px solid var(--black-border);
    border-radius: var(--radius);
    padding: 20px;
    text-align: center;
}

.about-stat-mini .num {
    font-size: 2rem;
    font-weight: 900;
    color: var(--red);
    display: block;
}

.about-stat-mini .lbl {
    font-size: 0.8rem;
    color: var(--white-60);
}

/* ===================================
   İLETİŞİM SAYFASI - MOBİL UYUMLULUK
   =================================== */

/* Hızlı iletişim butonları - 4 kolon grid */
.contact-shortcuts {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* Form 2 kolon grid */
.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Keşif bölümü 2 kolon grid */
.discovery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Harita alt bilgi 3 kolon grid */
.map-info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 24px;
}

/* ===================================
   İLETİŞİM SAYFASI - TABLET (900px)
   =================================== */
@media (max-width: 900px) {
    .contact-shortcuts {
        grid-template-columns: repeat(2, 1fr);
    }

    .discovery-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .map-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ===================================
   İLETİŞİM SAYFASI - MOBİL (768px)
   =================================== */
@media (max-width: 768px) {
    .contact-shortcuts {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-shortcuts a,
    .contact-shortcuts div {
        padding: 15px !important;
        gap: 10px !important;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 24px !important;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .discovery-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .map-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
}

/* ===================================
   İLETİŞİM SAYFASI - KÜÇÜK MOBİL (480px)
   =================================== */
@media (max-width: 480px) {
    .contact-shortcuts {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .discovery-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .map-info-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
}

/* ===================================
   RESPONSIVE — TAM MOBİL UYUMLULUK
   Tüm sayfalar: index, hakkimizda, 
   iletisim, kampanyalar, urunler
   =================================== */

/* ===================================
   ÜRÜN GRID — TAM RESPONSIVE
   =================================== */
.products-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
    align-items: stretch;
}

/* Kart yüksekliği eşit olsun */
.products-grid .product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.products-grid .product-card .product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.products-grid .product-card .product-actions {
    margin-top: auto;
    padding-top: 16px;
}

@media (max-width: 1100px) {
    .products-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .products-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .products-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* ── 1100px: TABLET YATAY ─────── */
@media (max-width: 1100px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .brands-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* ── 900px: TABLET DİKEY ─────── */
@media (max-width: 900px) {

    /* Hero slider */
    .hero-slider {
        height: 480px;
    }

    .slide-content .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .slide-visual {
        display: none;
    }

    .slide-buttons {
        justify-content: center;
    }

    .slide-text p {
        margin-left: auto;
        margin-right: auto;
    }

    /* Why us */
    .why-us-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .why-us-visual {
        display: none;
    }

    /* Keşif formu */
    .kesif-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    /* İletişim */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    /* Hakkımızda */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-main-card {
        padding: 40px 24px;
    }

    /* İstatistik */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .stat-item {
        padding: 16px;
        background: rgba(255, 255, 255, 0.03);
        border: 1px solid rgba(255, 255, 255, 0.05);
        border-radius: 12px;
    }

    .stat-item::after {
        display: none !important;
    }

    /* Section padding küçült */
    .services,
    .why-us,
    .kesif-section {
        padding: 70px 0;
    }

    .brands {
        padding: 50px 0;
    }

    /* Hakkımızda: Misyon/Vizyon/Değerler */
    .mission-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Hakkımızda: Tarihçe/Sertifikalar */
    .history-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    /* Hakkımızda: Ekip / Avantajlar */
    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }

    .advantages-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    /* Page hero */
    .page-hero {
        padding: 100px 0 50px;
    }

    .page-hero-content h1 {
        font-size: clamp(1.8rem, 6vw, 3rem);
    }
}

/* ── 768px: MOBİL ─────── */
@media (max-width: 768px) {

    /* Genel taşma önleme */
    html,
    body {
        overflow-x: hidden;
    }

    /* Hero slider — mobil yükseklik */
    .hero-slider {
        height: 500px;
    }

    /* Slider kontrolleri */
    .slider-controls {
        bottom: 20px;
    }

    /* Hamburger menü — css/style.css'de sadece yedek, asıl kural index.html inline'da */
    .hamburger {
        display: flex;
    }

    /* Grid düzenleri */
    .services-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Kampanya banner */
    .campaign-inner {
        flex-direction: column;
        text-align: center;
    }

    .campaign-action {
        justify-content: center;
        width: 100%;
    }

    .campaign-action .btn {
        flex: 1;
        justify-content: center;
        min-width: 140px;
    }

    /* Keşif formu */
    .kesif-form-wrapper {
        padding: 24px;
    }

    /* Footer bottom */
    .footer-bottom .container {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom p {
        word-break: break-word;
        font-size: 0.8rem;
        line-height: 1.6;
    }

    .footer-top {
        padding: 50px 0 40px;
    }

    /* Scroll ve WhatsApp butonları */
    .hero-scroll {
        display: none;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .scroll-top {
        bottom: 80px;
        right: 20px;
        width: 40px;
        height: 40px;
    }

    /* Section padding küçült */
    .services,
    .why-us,
    .kesif-section {
        padding: 60px 0;
    }

    .brands {
        padding: 40px 0;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .section-header p {
        font-size: 0.95rem;
    }

    /* İstatistik */
    .stat-item {
        padding: 20px 10px;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-plus {
        font-size: 1.2rem;
    }

    .stat-label {
        font-size: 0.78rem;
    }

    /* Hakkımızda kartı */
    .about-grid {
        gap: 36px !important;
    }

    .about-main-card {
        padding: 32px 20px;
    }

    .about-stat-mini .num {
        font-size: 1.5rem;
    }

    .about-stat-mini .lbl {
        font-size: 0.72rem;
    }

    /* Hakkımızda inline bölümler */
    .mission-grid {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .history-grid {
        grid-template-columns: 1fr !important;
        gap: 40px !important;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 14px !important;
    }

    /* Hakkımızda section padding */
    section[style*="padding: 100px 0"],
    section[style*="padding: 80px 0"] {
        padding: 50px 0 !important;
    }

    /* Page hero */
    .page-hero {
        padding: 80px 0 40px;
    }

    .page-hero-content h1 {
        font-size: clamp(1.6rem, 7vw, 2.5rem);
    }

    .page-hero-content p {
        font-size: 0.95rem;
        padding: 0 8px;
    }

    /* Timeline */
    .timeline {
        padding-left: 28px;
    }

    .timeline-item::before {
        left: -32px;
    }

    /* İletişim sayfası */
    .contact-shortcuts {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .contact-shortcuts a,
    .contact-shortcuts div {
        padding: 15px !important;
        gap: 10px !important;
    }

    .contact-info-card,
    .contact-form-card {
        padding: 24px !important;
    }

    .form-grid-2 {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .discovery-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .map-info-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    /* Contact item metin wrap */
    .contact-item span,
    .contact-item a {
        word-break: break-word;
        overflow-wrap: anywhere;
    }

    /* Ürün sayfası */
    .product-actions {
        flex-direction: column;
    }

    .product-actions .btn {
        width: 100%;
    }
}

/* ── 480px: KÜÇÜK MOBİL ─────── */
@media (max-width: 480px) {

    /* İstatistik */
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .stat-plus {
        font-size: 1rem;
    }

    .stat-label {
        font-size: 0.72rem;
        margin-top: 4px;
    }

    .stat-item {
        padding: 16px 8px;
    }

    /* Hero butonlar */
    .slide-buttons {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .slide-buttons .btn {
        width: 100%;
        justify-content: center;
    }

    /* Marka grid */
    .brands-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Filtre çubuğu */
    .filter-bar {
        flex-direction: column;
        align-items: stretch;
    }

    .search-bar {
        margin-left: 0;
    }

    .search-bar input {
        width: 100%;
    }

    .search-bar input:focus {
        width: 100%;
    }

    /* Hakkımızda kartı */
    .about-main-card {
        padding: 24px 14px;
    }

    .about-stats-mini {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .about-stat-mini {
        padding: 12px 8px;
    }

    .about-stat-mini .num {
        font-size: 1.3rem;
    }

    .about-stat-mini .lbl {
        font-size: 0.68rem;
    }

    /* Hakkımızda inline bölümler */
    .team-grid {
        grid-template-columns: 1fr 1fr !important;
    }

    .mission-grid {
        grid-template-columns: 1fr !important;
    }

    /* Ekip kartları */
    .team-card {
        padding: 20px 14px;
    }

    .team-avatar {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
        margin-bottom: 14px;
    }

    /* Page hero */
    .page-hero {
        padding: 70px 0 30px;
    }

    .page-hero-content h1 {
        font-size: clamp(1.4rem, 8vw, 2rem);
    }

    .breadcrumb {
        font-size: 0.75rem;
    }

    /* Kampanya butonları tam genişlik */
    .campaign-action {
        flex-direction: column;
        width: 100%;
    }

    .campaign-action .btn {
        width: 100%;
        justify-content: center;
    }

    /* İletişim kısayol */
    .shortcut-text .value {
        font-size: 0.82rem;
        word-break: break-all;
    }

    /* Footer */
    .footer-bottom p {
        font-size: 0.75rem;
    }

    /* Butonlar */
    .btn {
        padding: 12px 20px;
        font-size: 0.88rem;
    }

    /* Service card padding */
    .service-card {
        padding: 28px 20px;
    }

    /* Slider kontrol */
    .slider-controls {
        bottom: 16px;
        gap: 12px;
    }

    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }
}

/* ── 360px: ÇOK KÜÇÜK EKRAN ─────── */
@media (max-width: 360px) {
    .container {
        padding: 0 14px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .stat-label {
        font-size: 0.65rem;
    }

    .about-main-card {
        padding: 20px 12px;
    }

    .about-stat-mini .num {
        font-size: 1.1rem;
    }

    .about-stat-mini .lbl {
        font-size: 0.6rem;
    }

    .team-grid {
        grid-template-columns: 1fr !important;
    }

    .footer-col h3 {
        font-size: 0.9rem;
    }

    h1 {
        font-size: clamp(1.3rem, 7vw, 1.8rem) !important;
    }
}

/* ===================================
   KAPSAMLI MOBİL DÜZELTMELER v6
   Tüm inline grid/padding sorunları,
   kampanya kartları, countdown, 
   stat-bar eşitsizlik düzeltmeleri
   =================================== */

/* ── KAMPANYA KARTLARI GRID MOBİL ─── */
/* Kampanyalar sayfasındaki inline grid override */
@media (max-width: 1100px) {

    /* 3 kolon → 2 kolon */
    section>.container>div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 20px !important;
    }
}

@media (max-width: 768px) {

    /* 2 kolon → 1 kolon */
    section>.container>div[style*="grid-template-columns: repeat(3"] {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
}

/* ── STAT-BAR DİKEY ÇİZGİ EŞİTSİZLİK ─── */
@media (max-width: 900px) {
    .stat-item:nth-child(even)::after {
        display: none !important;
    }
}

/* ── INLINE SECTION PADDING MOBİL ─── */
/* Inline style'lı section padding'leri class-bazlı override */
@media (max-width: 768px) {

    /* Hakkımızda, Kampanyalar vb. sayfalarındaki büyük padding'ler */
    .about-grid,
    .about-content,
    .about-visual {
        text-align: left;
    }

    /* Misyon/Vizyon/Değerler kartları inline padding override */
    .mission-grid>div {
        padding: 28px 20px !important;
    }

    /* Tarihçe gap override */
    .history-grid {
        gap: 32px !important;
    }

    /* Avantajlar kartları inline padding override */
    .advantages-grid>div {
        padding: 24px 20px !important;
    }

    /* Sertifika kartları inline padding override */
    .history-grid>div>div[style*="flex-direction:column"]>div {
        padding: 16px 18px !important;
    }

    /* Kampanya sayaç banner mobil */
    #countdown>div {
        padding: 6px 10px !important;
        min-width: 48px !important;
    }

    #countdown>div>div:first-child {
        font-size: 1.2rem !important;
    }

    #countdown>div>div:last-child {
        font-size: 0.6rem !important;
    }

    /* Kampanya kartı header/body padding */
    .campaign-card-header {
        padding: 28px 20px !important;
    }

    .campaign-card-body {
        padding: 24px 20px !important;
    }

    /* Keşif bölümü padding (iletişim sayfası) */
    .discovery-cta-section div[style*="padding:40px"] {
        padding: 28px 20px !important;
    }

    /* SSS bölümü mobil */
    .faq-btn {
        padding: 16px 18px !important;
        font-size: 0.9rem !important;
    }
}

@media (max-width: 480px) {

    /* Misyon kartları daha küçük padding */
    .mission-grid>div {
        padding: 22px 16px !important;
    }

    /* Avantajlar kartları */
    .advantages-grid>div {
        padding: 20px 16px !important;
    }

    /* Tarihçe gap */
    .history-grid {
        gap: 24px !important;
    }

    /* Kampanya sayaç daha da küçük */
    #countdown>div {
        padding: 4px 8px !important;
        min-width: 42px !important;
    }

    #countdown>div>div:first-child {
        font-size: 1rem !important;
    }

    /* Ekip grid → 1 kolon (480px altı) */
    .team-grid {
        grid-template-columns: 1fr !important;
    }
}

/* ── ABOUT STAT-MINI YÜKSEKLİK EŞİTSİZLİĞİ ─── */
.about-stat-mini {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 90px;
}

@media (max-width: 480px) {
    .about-stat-mini {
        min-height: 75px;
    }

    .about-stat-mini .lbl {
        line-height: 1.3;
        text-align: center;
    }
}

@media (max-width: 360px) {
    .about-stat-mini {
        min-height: 65px;
    }
}

/* ── GENEL TAŞMA ÖNLEMLERİ ─── */
@media (max-width: 768px) {

    /* Tüm görsellerin taşmaması */
    img {
        max-width: 100% !important;
    }

    /* Inline style'lı flex container'lar wrap olsun */
    div[style*="display:flex"][style*="gap"] {
        flex-wrap: wrap !important;
    }

    /* Harita yüksekliği mobil */
    .map-wrapper {
        height: 280px;
    }

    /* İletişim shortcuts section padding */
    .shortcuts-section {
        padding: 24px 0;
    }

    /* Contact grid tek kolon */
    .contact-grid {
        grid-template-columns: 1fr !important;
        gap: 32px !important;
    }

    /* Contact info card */
    .contact-info-card {
        padding: 20px !important;
    }

    /* Contact form card */
    .contact-form-card {
        padding: 24px !important;
    }
}

/* ── FONKSİYONEL DÜZELTMELER ─── */
/* Sayfa hero'da breadcrumb taşma önleme */
.breadcrumb {
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Campaign card responsive genişlik */
.campaign-card {
    min-width: 0;
    overflow: hidden;
}

/* FAQ buton metin taşma önleme */
.faq-btn {
    word-break: break-word;
    text-align: left;
}

/* Footer contact item metin taşma */
.footer-contact .contact-item {
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* Shortcut value metin taşma */
.shortcut-text .value {
    word-break: break-word;
    overflow-wrap: anywhere;
}

/* ===================================
   LIVE SEARCH DROPDOWN
   =================================== */
.search-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 420px;
    max-width: 90vw;
    background: rgba(20, 20, 20, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 0 1px rgba(230, 57, 70, 0.1);
    z-index: 1001;
    overflow: hidden;
    opacity: 0;
    transform: translateY(-8px) scale(0.97);
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.search-dropdown.active {
    opacity: 1;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.search-dropdown-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.4);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.search-dropdown-list {
    max-height: 420px;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(230, 57, 70, 0.3) transparent;
}

.search-dropdown-list::-webkit-scrollbar {
    width: 4px;
}

.search-dropdown-list::-webkit-scrollbar-thumb {
    background: rgba(230, 57, 70, 0.3);
    border-radius: 4px;
}

.search-dropdown-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    text-decoration: none;
    color: #fff;
    border-bottom: 1px solid rgba(255, 255, 255, 0.04);
    transition: background 0.15s ease;
    cursor: pointer;
}

.search-dropdown-item:hover,
.search-dropdown-item.focused {
    background: rgba(230, 57, 70, 0.1);
}

.search-dropdown-item .search-item-img {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    object-fit: cover;
    flex-shrink: 0;
    background: rgba(255, 255, 255, 0.05);
}

.search-dropdown-item .search-item-icon {
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: rgba(230, 57, 70, 0.1);
    border: 1px solid rgba(230, 57, 70, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #e63946;
    font-size: 1rem;
}

.search-dropdown-item .search-item-body {
    flex: 1;
    min-width: 0;
}

.search-dropdown-item .search-item-title {
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-dropdown-item .search-item-desc {
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.5);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.search-dropdown-item .search-item-badge {
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 50px;
    background: #e63946;
    color: #fff;
    flex-shrink: 0;
}

.search-dropdown-item .search-item-type {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    flex-shrink: 0;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.search-dropdown-empty {
    padding: 40px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}

.search-dropdown-empty i {
    font-size: 2.5rem;
    color: rgba(230, 57, 70, 0.2);
    margin-bottom: 12px;
    display: block;
}

.search-dropdown-loading {
    padding: 32px 20px;
    text-align: center;
    color: rgba(255, 255, 255, 0.4);
}

.search-dropdown-loading .spinner {
    width: 28px;
    height: 28px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-top-color: #e63946;
    border-radius: 50%;
    animation: search-spin 0.8s linear infinite;
    margin: 0 auto 12px;
}

@keyframes search-spin {
    to {
        transform: rotate(360deg);
    }
}

.search-dropdown-footer {
    padding: 10px 16px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

.search-highlight {
    color: #e63946;
    font-weight: 700;
}

/* Nav-search pozisyon ayarı (dropdown için relative) */
.nav-search {
    position: relative;
}

/* Mobil live search */
@media (max-width: 768px) {
    .search-dropdown {
        position: fixed;
        top: 70px;
        left: 16px;
        right: 16px;
        width: auto;
        max-height: calc(100vh - 100px);
    }

    .search-dropdown-list {
        max-height: calc(100vh - 180px);
    }
}