/* ==============================================================================
 * Esenyurt Manlift Kiralama & Teknik Hizmetler
 * Premium Frontend Özel CSS (Endüstriyel Apple / JLG Lüks Standardı)
 * Tasarım & Yazılım: XBT Yazılım Hizmetleri
 * ============================================================================== */

:root {
    --bg-dark: #070a11;
    --bg-surface: #0f1626;
    --bg-card: #151f33;
    --bg-card-hover: #1c2a45;
    --border-color: rgba(255, 255, 255, 0.08);
    --border-accent: rgba(245, 158, 11, 0.3);
    
    --primary: #f59e0b;
    --primary-light: #fbbf24;
    --primary-dark: #d97706;
    --primary-glow: rgba(245, 158, 11, 0.25);

    --accent-blue: #2563eb;
    --accent-cyan: #0ea5e9;
    --accent-emerald: #10b981;

    --text-white: #ffffff;
    --text-muted: #cbd5e1;
    --text-dim: #94a3b8;

    --font-heading: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Inter', system-ui, -apple-system, sans-serif;
}

/* Koyu Tema ve Tarayıcı Varsayılanlarını Kilitler */
html {
    background-color: #070a11 !important;
    color-scheme: dark;
}

/* Genel Sıfırlama ve Gövde */
body {
    background-color: #070a11 !important;
    color: #ffffff;
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Okunabilirlik ve Yüksek Kontrast Standartları (WCAG AAA) */
p {
    color: #cbd5e1;
}
.text-white {
    color: #ffffff !important;
}
.text-muted {
    color: #cbd5e1 !important;
}
.text-dim {
    color: #94a3b8 !important;
}

h1, h2, h3, h4, h5, h6,
.display-1, .display-2, .display-3, .display-4, .display-5, .display-6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: #ffffff !important;
}

/* Arka Plan Mesh Gradient Efektleri (Arka plan rengini ASLA silmez) */
.bg-mesh {
    background-color: #070a11 !important;
    background-image: 
        radial-gradient(circle at 10% 20%, rgba(245, 158, 11, 0.08) 0%, transparent 45%),
        radial-gradient(circle at 90% 80%, rgba(37, 99, 235, 0.09) 0%, transparent 45%),
        radial-gradient(circle at 50% 50%, rgba(15, 22, 38, 0.6) 0%, transparent 100%);
    background-attachment: fixed;
}

/* Üst Bildirim Şeridi (Acil Çekici / Teslimat Barı) */
.top-notice-bar {
    background: linear-gradient(90deg, #b45309 0%, #f59e0b 50%, #d97706 100%);
    color: #000;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 6px 0;
    box-shadow: 0 2px 10px rgba(245, 158, 11, 0.3);
}

/* Cam Efektli Navbar (Glassmorphism) */
.navbar-premium {
    background: rgba(11, 16, 27, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-color);
    transition: all 0.3s ease;
    padding: 16px 0;
}
.navbar-premium.scrolled {
    padding: 10px 0;
    background: rgba(7, 10, 17, 0.95);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: var(--text-white);
}
.brand-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #000;
    font-size: 1.4rem;
    box-shadow: 0 0 20px var(--primary-glow);
}
.brand-text h1, .brand-text span.brand-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin: 0;
    line-height: 1.1;
    color: #fff;
    letter-spacing: -0.03em;
}
.brand-text small {
    font-size: 0.72rem;
    color: var(--primary-light);
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.nav-link-custom {
    color: #cbd5e1 !important;
    font-weight: 600;
    font-size: 0.92rem;
    padding: 8px 12px !important;
    transition: all 0.2s ease;
    border-radius: 8px;
    white-space: nowrap;
}
.nav-link-custom:hover, .nav-link-custom.active {
    color: #ffffff !important;
    background: rgba(255, 255, 255, 0.08);
}

/* Navbar Özel Butonları (Tam Eşit Yükseklik ve Sıkı Orantı) */
.btn-nav-whatsapp {
    background: #10b981;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 0.88rem;
    height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.25);
    transition: all 0.25s ease;
}
.btn-nav-whatsapp:hover {
    background: #059669;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.4);
}

.btn-nav-gold {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    color: #000000 !important;
    font-weight: 800;
    font-size: 0.88rem;
    height: 42px;
    padding: 0 18px;
    border-radius: 10px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.3);
    transition: all 0.25s ease;
}
.btn-nav-gold:hover {
    background: linear-gradient(135deg, #fcd34d 0%, #fbbf24 50%, #f59e0b 100%);
    color: #000000 !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(245, 158, 11, 0.45);
}

/* Genel Buton Standartları */
.btn-gold {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    color: #000000 !important;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    box-shadow: 0 4px 20px var(--primary-glow);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}
.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245, 158, 11, 0.45);
    color: #000000 !important;
}

.btn-glass {
    background: rgba(15, 23, 42, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff !important;
    font-weight: 600;
    border-radius: 12px;
    padding: 10px 22px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
}
.btn-glass:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fbbf24;
    color: #fbbf24 !important;
    transform: translateY(-2px);
}
.btn-glass.active,
.btn-glass:active,
.fleet-filter-btn.active {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%) !important;
    color: #000000 !important;
    border-color: #f59e0b !important;
    font-weight: 800 !important;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.45) !important;
    transform: translateY(-1px);
}

.btn-whatsapp-hero {
    background: #10b981;
    color: #ffffff !important;
    font-weight: 700;
    border: none;
    border-radius: 10px;
    padding: 12px 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.3);
    transition: all 0.25s ease;
}
.btn-whatsapp-hero:hover {
    background: #059669;
    transform: translateY(-2px);
}

/* Hero Eylem Butonları (Lüks degradesi ve hover efektleri) */
.btn-hero-gold {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 50%, var(--primary-dark) 100%);
    color: #000000 !important;
    font-weight: 800;
    border: none;
    border-radius: 12px;
    padding: 13px 26px;
    box-shadow: 0 4px 20px var(--primary-glow);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    text-decoration: none;
    font-size: 0.96rem;
}
.btn-hero-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.55);
    color: #000000 !important;
}

.btn-hero-whatsapp {
    background: #10b981;
    color: #ffffff !important;
    font-weight: 700;
    border: none;
    border-radius: 12px;
    padding: 13px 22px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.3);
    transition: all 0.25s ease;
    text-decoration: none;
    font-size: 0.94rem;
}
.btn-hero-whatsapp:hover {
    background: #059669;
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(16, 185, 129, 0.45);
    color: #ffffff !important;
}

.btn-hero-phone {
    background: rgba(15, 22, 38, 0.85);
    border: 1.5px solid rgba(255, 255, 255, 0.25);
    color: #ffffff !important;
    font-weight: 700;
    border-radius: 12px;
    padding: 13px 22px;
    backdrop-filter: blur(10px);
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    white-space: nowrap;
    text-decoration: none;
    font-size: 0.94rem;
}
.btn-hero-phone:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fbbf24;
    transform: translateY(-2px);
    color: #fbbf24 !important;
}


/* ==============================================================================
 * ULTIMATE HERO SLIDER & VİDEO YÖNETİMİ
 * ============================================================================== */
.ultimate-hero-slider {
    position: relative;
    min-height: 85vh;
    width: 100%;
    overflow: hidden;
    background-color: #06090f;
}

.hero-slide-item {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.45s ease-in-out, visibility 0.45s ease-in-out;
    z-index: 1;
}

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

/* Medya Arka Planları (Fotoğraf / Video) */
.hero-media-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-media-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    transition: transform 7s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero-slide-item.active .hero-media-bg {
    transform: scale(1.1);
}

.hero-video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Katman Karartması (Overlay Gradient) */
.hero-overlay-gradient {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(
        180deg,
        rgba(7, 10, 17, 0.8) 0%,
        rgba(7, 10, 17, 0.55) 45%,
        rgba(7, 10, 17, 0.95) 100%
    );
}

.hero-overlay-radial {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: radial-gradient(circle at 30% 40%, transparent 0%, rgba(7, 10, 17, 0.7) 100%);
}

/* Hero İçerik Hizalama */
.hero-content-layer {
    position: relative;
    z-index: 3;
    padding-top: 150px;
    padding-bottom: 90px;
    min-height: 85vh;
    display: flex;
    align-items: center;
}

/* Slider Navigasyon Butonları & Göstergeleri */
.hero-slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(15, 22, 38, 0.65);
    border: 1px solid rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
    z-index: 10;
    transition: all 0.3s ease;
}
.hero-slider-nav-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #000;
    box-shadow: 0 0 25px var(--primary-glow);
    transform: translateY(-50%) scale(1.1);
}
.hero-slider-nav-btn.prev-btn { left: 24px; }
.hero-slider-nav-btn.next-btn { right: 24px; }

/* Alt İlerleme Çubukları / Göstergeler */
.hero-slider-pagination {
    position: absolute;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 10;
}

.hero-pagination-bullet {
    width: 38px;
    height: 6px;
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.hero-pagination-bullet.active {
    width: 60px;
    background: var(--primary);
    box-shadow: 0 0 15px var(--primary-glow);
}

/* Hero Badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(245, 158, 11, 0.15);
    border: 1px solid var(--border-accent);
    color: var(--primary-light);
    padding: 6px 18px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    margin-bottom: 22px;
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.15);
}
.hero-badge i {
    animation: pulseGlow 2s infinite;
}
@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 0.9; }
    50% { transform: scale(1.2); opacity: 1; color: #fff; }
    100% { transform: scale(1); opacity: 0.9; }
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.12;
    font-weight: 900;
    margin-bottom: 22px;
    letter-spacing: -0.03em;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.8);
}
.text-gradient-gold {
    background: linear-gradient(135deg, #ffffff 15%, #fde68a 50%, var(--primary) 85%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.hero-desc {
    font-size: 1.15rem;
    color: #cbd5e1;
    margin-bottom: 35px;
    max-width: 620px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.8);
}

/* Hero İstatistik Kutucukları (Simetrik ve Yüksek Kontrastlı) */
.hero-stat-card {
    background: rgba(15, 22, 38, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 14px;
    padding: 14px 10px;
    text-align: center;
    backdrop-filter: blur(12px);
    transition: all 0.25s ease;
}
.hero-stat-card:hover {
    border-color: rgba(245, 158, 11, 0.5);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}
.hero-stat-num {
    font-size: 1.85rem;
    font-weight: 900;
    color: #fbbf24;
    line-height: 1.1;
    margin-bottom: 3px;
    letter-spacing: -0.02em;
}
.hero-stat-label {
    font-size: 0.8rem;
    color: #ffffff !important;
    font-weight: 600;
    line-height: 1.25;
    margin-bottom: 0;
}

/* Hero İnteraktif Akıllı Makine Seçici Widget (Kusursuz Görsel & Kontrast) */
.hero-wizard-box {
    background: rgba(11, 16, 27, 0.95);
    border: 1.5px solid rgba(245, 158, 11, 0.4);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.7), 0 0 30px rgba(245, 158, 11, 0.12);
    position: relative;
    backdrop-filter: blur(16px);
}
.wizard-header {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 12px;
    margin-bottom: 18px;
}
.wizard-step-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    color: #fde68a !important;
    font-weight: 800;
    letter-spacing: 0.05em;
    display: inline-block;
    margin-bottom: 2px;
}
.wizard-field-title {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #f8fafc !important;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    display: block;
}
.wizard-select-btn {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: #f8fafc;
    padding: 9px 4px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.84rem;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    width: 100%;
}
.wizard-select-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(255, 255, 255, 0.28);
    color: #ffffff;
}
.wizard-select-btn.active {
    background: #f59e0b !important;
    color: #000000 !important;
    border-color: #f59e0b !important;
    font-weight: 800;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.4);
}
.wizard-result-box {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 10px;
    padding: 10px 14px;
}
.wizard-result-text {
    color: #ffffff !important;
    font-size: 0.88rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-wizard-submit {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    color: #000000 !important;
    font-weight: 800;
    font-size: 0.92rem;
    height: 46px;
    border-radius: 10px;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-shadow: 0 4px 18px rgba(245, 158, 11, 0.35);
    text-decoration: none;
    transition: all 0.25s ease;
}
.btn-wizard-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 22px rgba(245, 158, 11, 0.5);
    color: #000000 !important;
}

/* Özel 70x50 cm Kompakt Dar Alan & Asansör Makinesi Vitrini (Derin Lüks & Yüksek Kontrast) */
.compact-elevator-showcase {
    background: #0b111e;
    border: 1.5px solid rgba(245, 158, 11, 0.45);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.7), 0 0 35px rgba(245, 158, 11, 0.1);
    position: relative;
    overflow: hidden;
}
.elevator-badge-glow {
    background: #f59e0b;
    color: #000000;
    font-weight: 800;
    font-size: 0.85rem;
    padding: 6px 18px;
    border-radius: 100px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.3);
}
.compact-lead-desc {
    color: #e2e8f0 !important;
    font-size: 1.05rem;
    line-height: 1.65;
}
.feature-check-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.09);
    border-radius: 10px;
    padding: 10px 14px;
    color: #ffffff !important;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}
.dimension-blueprint {
    background: rgba(6, 9, 15, 0.85);
    border: 1.5px dashed rgba(245, 158, 11, 0.6);
    border-radius: 14px;
    padding: 18px 22px;
}
.dimension-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: #fbbf24;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

/* Ana Sayfa Bölüm Koyu Zeminleri & Net Kontrast */
#filomuz {
    background-color: #070a11 !important;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
#dar-alan-manlift {
    background: linear-gradient(180deg, #06090f 0%, #0a0f1d 100%) !important;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
#hizmetler {
    background: linear-gradient(180deg, #070a11 0%, #0a0f1d 100%) !important;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
#referanslar {
    background: #070a11 !important;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
#yorumlar {
    background: linear-gradient(180deg, #070a11 0%, #0b111e 100%) !important;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
#teklif-al {
    background: #070a11 !important;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

/* Makine Kartları (Simetrik, Orantılı ve Kusursuz Grid) */
.machine-card {
    background: #0b111e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}
.machine-card:hover {
    transform: translateY(-6px);
    border-color: rgba(245, 158, 11, 0.45);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 25px rgba(245, 158, 11, 0.15);
}
.machine-img-box {
    height: 220px;
    background: #06090f;
    position: relative;
    overflow: hidden;
}
.machine-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.machine-card:hover .machine-img-box img {
    transform: scale(1.08);
}
.machine-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 10, 17, 0.1) 0%, rgba(11, 17, 30, 0.8) 100%);
    pointer-events: none;
}
.machine-height-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(11, 16, 27, 0.9);
    border: 1px solid rgba(245, 158, 11, 0.5);
    color: #fbbf24;
    padding: 4px 12px;
    border-radius: 6px;
    font-weight: 800;
    font-size: 0.82rem;
    backdrop-filter: blur(8px);
    z-index: 2;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.5);
}
.machine-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.machine-title {
    font-size: 1.12rem;
    font-weight: 800;
    margin-bottom: 8px;
    color: #ffffff;
    line-height: 1.3;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.machine-desc {
    color: #cbd5e1 !important;
    font-size: 0.84rem;
    line-height: 1.45;
    height: 38px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    margin-bottom: 14px;
}

/* 2x2 Kesilmeyen, Taşmayan Eşit Çipler */
.machine-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    margin-bottom: 18px;
}
.spec-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 7px 10px;
    min-width: 0;
}
.spec-label {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    letter-spacing: 0.03em;
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.spec-val {
    font-size: 0.85rem;
    font-weight: 700;
    color: #ffffff;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Symmetrical Action Buttons */
.machine-card-actions {
    display: flex;
    gap: 8px;
    margin-top: auto;
}
.btn-card-inspect {
    flex: 1;
    height: 38px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.85rem;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-card-inspect:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: #ffffff;
    color: #ffffff !important;
}
.btn-card-quote {
    flex: 1;
    height: 38px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000000 !important;
    font-weight: 700;
    font-size: 0.85rem;
    border-radius: 8px;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.btn-card-quote:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #000000 !important;
}

/* Hizmet Kartları */
.service-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.service-card:hover {
    border-color: rgba(245, 158, 11, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.5), 0 0 25px rgba(245, 158, 11, 0.12);
}
.service-img-wrap {
    height: 190px;
    position: relative;
    overflow: hidden;
}
.service-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.service-card:hover .service-img-wrap img {
    transform: scale(1.08);
}
.service-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 20%, rgba(15, 22, 38, 0.95) 100%);
    pointer-events: none;
}
.service-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}
.service-icon-floating {
    position: absolute;
    bottom: -20px;
    left: 24px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: #000;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 4px 15px var(--primary-glow);
    z-index: 2;
}

/* Referanslar & Kurumsal Logo Kartları (Simetrik ve Orantılı) */
.ref-card {
    background: #0b111e;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.ref-card:hover {
    transform: translateY(-4px);
    border-color: rgba(245, 158, 11, 0.5);
    background: #0f182b;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(245, 158, 11, 0.12);
}
.ref-logo-wrap {
    height: 64px;
    background: rgba(6, 9, 15, 0.75);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    margin-bottom: 12px;
    overflow: hidden;
}
.ref-logo-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}
.ref-card:hover .ref-logo-wrap img {
    transform: scale(1.05);
}
.ref-logo-placeholder {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(245, 158, 11, 0.12);
    color: #f59e0b;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}
.ref-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    min-width: 0;
}
.ref-company-name {
    font-size: 0.92rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ref-cat-badge {
    font-size: 0.74rem;
    color: #94a3b8;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.ref-status-badge {
    font-size: 0.7rem;
    color: #fbbf24;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 2px 7px;
    border-radius: 4px;
    font-weight: 600;
    white-space: nowrap;
}

/* Google Yorumlar */
.review-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 26px;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.review-stars {
    color: #f59e0b;
    font-size: 1.1rem;
    margin-bottom: 12px;
}

/* Güven & İSG Belge Kartı */
.isg-banner {
    background: linear-gradient(90deg, #0f172a 0%, #1e293b 100%);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 24px;
    padding: 35px 40px;
}

/* ==============================================================================
 * Hızlı Fiyat Teklifi Alanı (Simetrik, Dengeli & Ultimate Tasarım)
 * ============================================================================== */
.quote-section-box {
    background: linear-gradient(145deg, rgba(15, 23, 42, 0.95) 0%, rgba(10, 15, 26, 0.98) 100%);
    border: 1px solid rgba(245, 158, 11, 0.25);
    border-radius: 24px;
    padding: 44px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.6), 0 0 35px rgba(245, 158, 11, 0.06);
}
.quote-section-box::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -20%;
    width: 450px;
    height: 450px;
    background: radial-gradient(circle, rgba(245, 158, 11, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Sol Kolon Güven & Hizmet Kartları */
.quote-trust-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 13px 16px;
    transition: all 0.25s ease;
}
.quote-trust-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(245, 158, 11, 0.35);
    transform: translateX(4px);
}
.quote-trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #fbbf24;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    flex-shrink: 0;
}

/* Sol Kolon Acil Canlı Destek & Çağrı Kutusu */
.quote-direct-card {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1) 0%, rgba(245, 158, 11, 0.03) 100%);
    border: 1px solid rgba(245, 158, 11, 0.3);
    border-radius: 14px;
    padding: 18px 20px;
    margin-top: auto;
}
.pulse-dot-green {
    width: 10px;
    height: 10px;
    background: #10b981;
    border-radius: 50%;
    display: inline-block;
    box-shadow: 0 0 0 rgba(16, 185, 129, 0.6);
    animation: pulseGreen 2s infinite;
}
@keyframes pulseGreen {
    0% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.7);
    }
    70% {
        box-shadow: 0 0 0 8px rgba(16, 185, 129, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(16, 185, 129, 0);
    }
}

/* Sağ Kolon Form Kutusu & Kontroller */
.quote-form-wrapper {
    background: rgba(10, 16, 28, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    padding: 24px;
}
.form-control-custom,
.form-select-custom {
    background: rgba(15, 22, 38, 0.85) !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 10px !important;
    color: #ffffff !important;
    font-size: 0.92rem;
    padding: 12px 16px;
    transition: all 0.25s ease;
}
.form-control-custom:focus,
.form-select-custom:focus {
    background: rgba(18, 27, 47, 0.95) !important;
    border-color: #f59e0b !important;
    box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.2) !important;
    color: #ffffff !important;
    outline: none;
}
.form-control-custom::placeholder {
    color: #94a3b8 !important;
    opacity: 0.85;
}
.form-select-custom option {
    background: #0f172a;
    color: #ffffff;
}

/* Özel Seçilebilir Checkbox Kartları */
.quote-check-card {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 13px 15px;
    cursor: pointer;
    transition: all 0.25s ease;
    user-select: none;
    height: 100%;
    margin-bottom: 0;
}
.quote-check-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(245, 158, 11, 0.35);
}
.quote-check-card:has(input:checked) {
    background: rgba(245, 158, 11, 0.09);
    border-color: rgba(245, 158, 11, 0.55);
    box-shadow: 0 0 15px rgba(245, 158, 11, 0.12);
}
.quote-check-input {
    width: 1.2rem;
    height: 1.2rem;
    margin-top: 2px;
    accent-color: #f59e0b;
    border-color: rgba(255, 255, 255, 0.3);
    flex-shrink: 0;
}
.quote-check-title {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.9rem;
    line-height: 1.3;
}
.quote-check-desc {
    color: #94a3b8;
    font-size: 0.78rem;
    margin-top: 3px;
}

/* Teklif Gönder Butonu */
.btn-quote-submit {
    height: 52px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #000000 !important;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.3px;
    border: none;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 6px 20px rgba(245, 158, 11, 0.3);
}
.btn-quote-submit:hover {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245, 158, 11, 0.45);
    color: #000000 !important;
}

/* ==============================================================================
 * SSS (Sıkça Sorulan Sorular) Ultimate Accordion Tasarımı
 * ============================================================================== */
.faq-section {
    position: relative;
    background: linear-gradient(180deg, rgba(8, 13, 23, 0) 0%, rgba(10, 16, 28, 0.85) 50%, rgba(8, 13, 23, 0) 100%);
}
.custom-faq-accordion .accordion-item {
    background: rgba(15, 23, 42, 0.75) !important;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08) !important;
    border-radius: 14px !important;
    margin-bottom: 14px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.custom-faq-accordion .accordion-item:hover {
    border-color: rgba(245, 158, 11, 0.35) !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
    transform: translateY(-2px);
}
.custom-faq-accordion .accordion-header {
    margin: 0;
}
.custom-faq-accordion .accordion-button {
    background: transparent !important;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.05rem;
    padding: 20px 24px;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    gap: 14px;
}
.custom-faq-accordion .accordion-button:not(.collapsed) {
    background: rgba(245, 158, 11, 0.06) !important;
    color: #fbbf24 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.custom-faq-accordion .faq-q-badge {
    width: 34px;
    height: 34px;
    border-radius: 8px;
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    color: #fbbf24;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
    flex-shrink: 0;
    transition: all 0.25s ease;
}
.custom-faq-accordion .accordion-button:not(.collapsed) .faq-q-badge {
    background: #f59e0b;
    color: #000000;
    border-color: #f59e0b;
}
.custom-faq-accordion .accordion-button::after {
    filter: invert(1) brightness(1.5);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    margin-left: auto;
}
.custom-faq-accordion .accordion-button:not(.collapsed)::after {
    filter: invert(65%) sepia(85%) saturate(750%) hue-rotate(360deg);
}
.custom-faq-accordion .accordion-body {
    padding: 20px 24px 24px 72px;
    color: #cbd5e1 !important;
    font-size: 0.98rem;
    line-height: 1.75;
}

/* SSS Alt Destek Kutusu */
.faq-cta-box {
    background: linear-gradient(135deg, rgba(15, 23, 42, 0.9) 0%, rgba(20, 30, 50, 0.95) 100%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

/* ==============================================================================
 * SABİT YÜZEN WHATSAPP BUTONU (DESKTOP & TABLET FAB)
 * ============================================================================== */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #ffffff !important;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45), 0 0 0 1px rgba(255, 255, 255, 0.25);
    z-index: 9998;
    text-decoration: none !important;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.floating-whatsapp:hover {
    transform: scale(1.1) translateY(-4px);
    box-shadow: 0 14px 35px rgba(37, 211, 102, 0.65), 0 0 0 2px rgba(255, 255, 255, 0.4);
    color: #ffffff !important;
}
.floating-whatsapp-pulse {
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 2px solid #25D366;
    opacity: 0.8;
    animation: whatsappPulse 2.2s infinite ease-out;
    pointer-events: none;
}
@keyframes whatsappPulse {
    0% {
        transform: scale(0.9);
        opacity: 0.9;
    }
    70% {
        transform: scale(1.4);
        opacity: 0;
    }
    100% {
        transform: scale(1.5);
        opacity: 0;
    }
}
.floating-whatsapp-tooltip {
    position: absolute;
    right: 74px;
    background: rgba(10, 15, 26, 0.95);
    color: #ffffff;
    font-size: 0.82rem;
    font-weight: 700;
    white-space: nowrap;
    padding: 6px 14px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.25s ease;
    pointer-events: none;
}
.floating-whatsapp:hover .floating-whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* Mobil Sabit Alt Bar (Masaüstünde ASLA ve KESİNLİKLE görünmez) */
.mobile-bottom-bar {
    display: none !important;
}

/* ==============================================================================
 * ENTERPRISE RESPONSIVE & MOBİL OPTİMİZASYON (Kusursuz Simetri & Orantı)
 * ============================================================================== */

@media (max-width: 991px) {
    /* 1. Üst Bildirim Şeridi */
    .top-notice-bar {
        font-size: 0.76rem;
        padding: 6px 12px;
        line-height: 1.35;
        text-align: center;
    }

    /* 2. Navbar & Logo & Toggler Kusursuz Hizalama */
    .navbar-premium {
        padding: 10px 0;
    }
    .navbar-premium .container {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        flex-wrap: wrap !important;
    }
    .brand-logo {
        flex: 1 1 auto;
        min-width: 0;
        max-width: calc(100% - 56px);
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
    }
    .brand-icon {
        width: 38px !important;
        height: 38px !important;
        font-size: 1.15rem !important;
        border-radius: 10px !important;
        flex-shrink: 0 !important;
    }
    .brand-text {
        min-width: 0;
        overflow: hidden;
        display: flex;
        flex-direction: column;
    }
    .brand-text span.brand-title {
        font-size: 1.05rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
        line-height: 1.2 !important;
    }
    .brand-text small {
        font-size: 0.65rem !important;
        white-space: nowrap !important;
        overflow: hidden !important;
        text-overflow: ellipsis !important;
        display: block !important;
        color: var(--primary-light) !important;
    }
    .navbar-toggler {
        flex-shrink: 0 !important;
        width: 42px !important;
        height: 42px !important;
        padding: 0 !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-left: auto !important;
        border: 1px solid rgba(245, 158, 11, 0.35) !important;
        background: rgba(255, 255, 255, 0.05) !important;
        border-radius: 10px !important;
        color: var(--primary) !important;
        outline: none !important;
    }
    .navbar-toggler:focus {
        box-shadow: 0 0 0 3px rgba(245, 158, 11, 0.25) !important;
    }
    .navbar-toggler i {
        font-size: 1.7rem !important;
        line-height: 1 !important;
        color: var(--primary) !important;
    }
    .navbar-collapse {
        width: 100% !important;
        margin-top: 12px;
        background: rgba(7, 10, 17, 0.98);
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 16px;
        padding: 16px;
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6);
    }

    /* 3. Ultimate Hero Slider & Video - Mobilde Tam Görünürlük & Simetri */
    .ultimate-hero-slider {
        min-height: auto !important;
        height: auto !important;
        overflow: hidden;
        position: relative;
    }
    .hero-slide-item {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transition: opacity 0.4s ease-in-out;
    }
    .hero-slide-item.active {
        position: relative !important;
        inset: auto !important;
        height: auto !important;
        opacity: 1 !important;
        visibility: visible !important;
        pointer-events: auto !important;
    }
    .hero-content-layer {
        padding-top: 36px !important;
        padding-bottom: 50px !important;
        min-height: auto !important;
        display: block !important;
    }
    .hero-badge {
        font-size: 0.74rem !important;
        padding: 5px 12px !important;
        margin-bottom: 12px !important;
        letter-spacing: 0.02em !important;
    }
    .hero-title {
        font-size: 1.85rem !important;
        line-height: 1.22 !important;
        margin-bottom: 14px !important;
        letter-spacing: -0.02em !important;
    }
    .hero-desc {
        font-size: 0.92rem !important;
        line-height: 1.5 !important;
        margin-bottom: 20px !important;
        color: #cbd5e1 !important;
        max-width: 100% !important;
    }

    /* Hero CTA Butonları Mobilde Eşit & Kusursuz Dengeli */
    .hero-actions-group {
        display: flex !important;
        flex-wrap: wrap !important;
        gap: 8px !important;
        margin-bottom: 24px !important;
    }
    .btn-hero-gold {
        width: 100% !important;
        height: 48px !important;
        font-size: 0.95rem !important;
        justify-content: center !important;
        padding: 0 16px !important;
    }
    .btn-hero-whatsapp, .btn-hero-phone {
        flex: 1 1 calc(50% - 4px) !important;
        min-width: 130px !important;
        height: 44px !important;
        font-size: 0.86rem !important;
        justify-content: center !important;
        white-space: nowrap !important;
        padding: 0 10px !important;
    }

    /* İstatistik Kutucukları 2x2 Simetrik Grid */
    .hero-stat-card {
        padding: 10px 4px !important;
        border-radius: 12px !important;
    }
    .hero-stat-num {
        font-size: 1.4rem !important;
        margin-bottom: 2px !important;
    }
    .hero-stat-label {
        font-size: 0.72rem !important;
        line-height: 1.2 !important;
    }

    /* Akıllı Makine Seçici Widget */
    .hero-wizard-box {
        margin-top: 24px !important;
        padding: 18px 14px !important;
        border-radius: 16px !important;
    }
    .wizard-select-btn {
        padding: 8px 2px !important;
        font-size: 0.8rem !important;
    }

    /* Mobilde Metni Kapatan Yan Navigasyon Oklarını Gizle */
    .hero-slider-nav-btn {
        display: none !important;
    }
    .hero-slider-pagination {
        bottom: 12px !important;
    }
    .hero-pagination-bullet {
        width: 24px !important;
        height: 4px !important;
    }
    .hero-pagination-bullet.active {
        width: 44px !important;
    }
}

@media (max-width: 768px) {
    .quote-section-box {
        padding: 24px 18px;
        border-radius: 18px;
    }
    .quote-form-wrapper {
        padding: 16px 12px;
    }
    .custom-faq-accordion .accordion-button {
        padding: 16px 18px;
        font-size: 0.95rem;
    }
    .custom-faq-accordion .accordion-body {
        padding: 16px 18px 20px 18px;
        font-size: 0.92rem;
    }

    /* Mobilde çift WhatsApp butonunu engelle; alt bar aktifken yüzen balonu gizle */
    .floating-whatsapp {
        display: none !important;
    }
    .mobile-bottom-bar {
        display: flex !important;
        position: fixed !important;
        bottom: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
        height: 64px !important;
        background: rgba(10, 15, 26, 0.96) !important;
        backdrop-filter: blur(16px) !important;
        -webkit-backdrop-filter: blur(16px) !important;
        border-top: 1px solid rgba(255, 255, 255, 0.12) !important;
        box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.6) !important;
        padding: 10px 14px !important;
        padding-bottom: max(10px, env(safe-area-inset-bottom)) !important;
        gap: 10px !important;
        align-items: center !important;
        justify-content: center !important;
        z-index: 9999 !important;
    }
    .mobile-bottom-bar .btn-mobile-call {
        background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%) !important;
        color: #000000 !important;
        font-weight: 800 !important;
        font-size: 0.92rem !important;
        height: 44px !important;
        border-radius: 12px !important;
        border: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 15px var(--primary-glow) !important;
        text-decoration: none !important;
    }
    .mobile-bottom-bar .btn-mobile-wa {
        background: linear-gradient(135deg, #10b981 0%, #059669 100%) !important;
        color: #ffffff !important;
        font-weight: 800 !important;
        font-size: 0.92rem !important;
        height: 44px !important;
        border-radius: 12px !important;
        border: none !important;
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        box-shadow: 0 4px 15px rgba(16, 185, 129, 0.35) !important;
        text-decoration: none !important;
    }
    body {
        padding-bottom: 72px !important;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 1.65rem !important;
        line-height: 1.25 !important;
    }
    .btn-hero-gold {
        font-size: 0.92rem !important;
        height: 46px !important;
    }
    .btn-hero-whatsapp, .btn-hero-phone {
        font-size: 0.82rem !important;
        height: 42px !important;
    }
    .hero-stat-num {
        font-size: 1.25rem !important;
    }
    .hero-stat-label {
        font-size: 0.68rem !important;
    }
}

/* Footer */
.footer-premium {
    background: #04060a;
    border-top: 1px solid var(--border-color);
    padding: 70px 0 30px;
    font-size: 0.95rem;
}
.footer-heading {
    font-size: 1.15rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 22px;
}
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-links li {
    margin-bottom: 12px;
}
.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}
.footer-links a:hover {
    color: var(--primary-light);
}
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 25px;
    margin-top: 50px;
    font-size: 0.85rem;
    color: var(--text-dim);
}
.developer-badge {
    color: var(--primary-light);
    font-weight: 700;
    text-decoration: none;
}
.developer-badge:hover {
    color: #fff;
}
