/*
 * İzmir Usta Yapı Teknik - Aydınlık & Mimari Lüks Tema (v3.0)
 * Modern İç Mimarlık & Tadilat Portalı Stili
 * Domain: izmirusta.tr | Tel: 0552 114 88 14
 */

:root {
    /* Aydınlık & Lüks Renk Paleti */
    --bg-white: #ffffff;
    --bg-warm-light: #faf9f6; /* Lüks mimari taş/kireçtaşı açık ton */
    --bg-slate-50: #f8fafc;
    --bg-slate-100: #f1f5f9;
    --bg-slate-200: #e2e8f0;
    
    /* Prestijli Marka Tonları */
    --brand-dark: #0f172a;       /* Asil antrasit/grafit */
    --brand-navy: #1e3a8a;       /* Derin mimari lacivert */
    --brand-blue: #2563eb;       /* Canlı Ege mavisi */
    --brand-blue-hover: #1d4ed8;
    --brand-blue-subtle: #eff6ff;
    
    /* Lüks Pirinç & Altın Detaylar */
    --accent-gold: #d97706;      /* Sıcak mimari pirinç/altın */
    --accent-gold-light: #fef3c7;
    --accent-amber: #b45309;
    
    /* Tipografi & Kontrast */
    --text-main: #0f172a;
    --text-muted: #475569;
    --text-light: #64748b;
    --border-color: #e2e8f0;
    --border-light: rgba(15, 23, 42, 0.06);
    
    /* Yumuşak Gölgeler */
    --shadow-soft: 0 4px 20px -2px rgba(15, 23, 42, 0.05);
    --shadow-card: 0 10px 30px -5px rgba(15, 23, 42, 0.06), 0 4px 6px -2px rgba(15, 23, 42, 0.02);
    --shadow-float: 0 25px 50px -12px rgba(15, 23, 42, 0.12);
    --shadow-gold: 0 10px 25px -5px rgba(217, 119, 6, 0.25);
    --shadow-blue: 0 10px 25px -5px rgba(37, 99, 235, 0.25);
    
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 20px;
    --radius-full: 9999px;
}

/* Reset & Global */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    font-family: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    background-color: var(--bg-white);
    color: var(--text-main);
    line-height: 1.65;
    overflow-x: hidden;
    padding-bottom: 0; /* Mobilde alt çubuk için dinamik ayarlanacak */
}

.container {
    max-width: 1260px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Tipografi */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Sora', sans-serif;
    color: var(--brand-dark);
    font-weight: 700;
    line-height: 1.25;
}

p {
    color: var(--text-muted);
}

a {
    color: var(--brand-blue);
    text-decoration: none;
    transition: all 0.2s ease;
}

a:hover {
    color: var(--brand-blue-hover);
}

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

/* Buton Stilleri */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    padding: 13px 26px;
    border-radius: var(--radius-md);
    cursor: pointer;
    border: none;
    text-decoration: none;
    gap: 8px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn-primary {
    background-color: var(--brand-dark);
    color: #ffffff !important;
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
}

.btn-primary:hover {
    background-color: var(--brand-navy);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(15, 23, 42, 0.25);
}

.btn-blue {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    color: #ffffff !important;
    box-shadow: var(--shadow-blue);
}

.btn-blue:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(37, 99, 235, 0.35);
}

.btn-gold {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: #ffffff !important;
    box-shadow: var(--shadow-gold);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(217, 119, 6, 0.35);
}

.btn-outline {
    background: #ffffff;
    color: var(--brand-dark) !important;
    border: 1.5px solid var(--border-color);
}

.btn-outline:hover {
    border-color: var(--brand-dark);
    background-color: var(--bg-slate-50);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 8px 16px;
    font-size: 0.85rem;
    border-radius: var(--radius-sm);
}

.btn-lg {
    padding: 16px 32px;
    font-size: 1.05rem;
    border-radius: var(--radius-md);
}

/* Bölüm Başlıkları */
.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-warm-light);
    border: 1px solid rgba(217, 119, 6, 0.2);
    color: var(--accent-gold);
    font-family: 'Sora', sans-serif;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
}

.section-tag i {
    font-size: 0.85rem;
}

.section-title {
    font-size: 2.5rem;
    color: var(--brand-dark);
    letter-spacing: -0.5px;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 1.15rem;
    color: var(--text-muted);
    max-width: 680px;
    margin: 0 auto;
}

.section-padding {
    padding: 90px 0;
}

.bg-warm {
    background-color: var(--bg-warm-light);
}

.bg-slate {
    background-color: var(--bg-slate-50);
}

/* ==========================================================================
   ÜST BİLGİ ŞERİDİ & MEGA MENÜ NAVİGASYON
   ========================================================================== */
.top-header-bar {
    background-color: var(--brand-dark);
    color: #ffffff;
    font-size: 0.85rem;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.top-header-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
}

.top-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.85);
}

.top-item i {
    color: var(--accent-gold);
}

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

.badge-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background-color: rgba(16, 185, 129, 0.15);
    color: #34d399;
    padding: 3px 10px;
    border-radius: var(--radius-full);
    font-size: 0.75rem;
    font-weight: 600;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: #34d399;
    border-radius: 50%;
    animation: pulse 1.8s infinite;
}

@keyframes pulse {
    0% { transform: scale(0.9); opacity: 1; }
    50% { transform: scale(1.4); opacity: 0.4; }
    100% { transform: scale(0.9); opacity: 1; }
}

/* Ana Navigasyon */
.site-navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border-light);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.site-navbar.scrolled {
    box-shadow: var(--shadow-soft);
    background: #ffffff;
}

.site-navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
    position: relative; /* Mega menünün tam konteynere göre hizalanması için */
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-symbol {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-navy) 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    box-shadow: 0 4px 10px rgba(15, 23, 42, 0.15);
}

.logo-text-wrap {
    display: flex;
    flex-direction: column;
}

.logo-name {
    font-family: 'Sora', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--brand-dark);
    letter-spacing: -0.5px;
    line-height: 1.1;
}

.logo-sub {
    font-family: 'Sora', sans-serif;
    font-size: 0.65rem;
    font-weight: 700;
    color: var(--accent-gold);
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Menü Bağlantıları & Mega Menü */
.main-navigation {
    display: flex;
    align-items: center;
    gap: 28px;
    list-style: none;
}

.nav-item {
    position: relative;
}

/* Mega menü içeren nav-item konteynere göre konumlansın */
.nav-item:has(.mega-menu) {
    position: static;
}

.nav-link {
    font-family: 'Sora', sans-serif;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--brand-dark);
    padding: 28px 4px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    text-decoration: none;
    transition: color 0.2s ease;
    position: relative;
    white-space: nowrap;
}

/* Hover alt çizgisi */
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--brand-blue), var(--accent-gold));
    border-radius: 2px;
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-item.active .nav-link::after {
    width: 100%;
}

.nav-link:hover,
.nav-item.active .nav-link {
    color: var(--brand-blue);
}

.nav-link i {
    font-size: 0.65rem;
    transition: transform 0.2s ease;
}

.nav-item:hover .nav-link i {
    transform: rotate(180deg);
}

/* Mega Menü Açılır Kutusu */
.mega-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    width: min(1100px, calc(100vw - 48px));
    background: #ffffff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-float);
    border: 1px solid var(--border-color);
    padding: 28px;
    visibility: hidden;
    opacity: 0;
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s;
    z-index: 1000;
    pointer-events: none;
}

/* Hover köprüsü: nav link ile mega menü arasındaki boşluğu kapatır */
.nav-item:has(.mega-menu)::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 8px;
    background: transparent;
    z-index: 999;
}

.nav-item:has(.mega-menu):hover::after {
    height: 8px;
}

.nav-item:has(.mega-menu):hover .mega-menu,
.nav-item:hover .mega-menu {
    visibility: visible;
    opacity: 1;
    transform: translateX(-50%) translateY(0);
    pointer-events: auto;
}

.mega-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.mega-category {
    display: flex;
    flex-direction: column;
    padding: 12px;
    border-radius: var(--radius-md);
    transition: background-color 0.2s ease;
}

.mega-category:hover {
    background-color: var(--bg-slate-50);
}

.mega-cat-header {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Sora', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--brand-dark);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--bg-slate-100);
}

.mega-cat-header i {
    color: var(--brand-blue);
    font-size: 1.05rem;
    width: 20px;
    text-align: center;
}

.mega-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mega-links li a {
    font-size: 0.84rem;
    color: var(--text-muted);
    text-decoration: none;
    display: block;
    padding: 5px 8px;
    border-radius: var(--radius-sm);
    transition: all 0.2s ease;
}

.mega-links li a:hover {
    color: var(--brand-blue);
    background-color: var(--brand-blue-subtle);
    transform: translateX(4px);
}

.mega-footer {
    grid-column: 1 / -1;
    margin-top: 12px;
    padding-top: 14px;
    border-top: 1px solid var(--border-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-warm-light);
    padding: 12px 20px;
    border-radius: var(--radius-md);
}

.mega-footer-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.mega-footer-link {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-dark);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* Nav Aksiyonları */
.nav-actions {
    display: flex;
    align-items: center;
    gap: 16px;
}

.nav-phone-direct {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-decoration: none;
}

.nav-phone-label {
    font-size: 0.7rem;
    color: var(--text-light);
    text-transform: uppercase;
    font-weight: 600;
}

.nav-phone-number {
    font-family: 'Sora', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--brand-dark);
}

/* Mobil Menü Butonu */
.mobile-toggle-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    font-size: 1.5rem;
    color: var(--brand-dark);
}

/* ==========================================================================
   HERO BÖLÜMÜ (AYDINLIK & MİMARİ LÜKS)
   ========================================================================== */
.hero-luminous {
    position: relative;
    padding: 80px 0 100px 0;
    background: radial-gradient(circle at 100% 0%, rgba(217, 119, 6, 0.05) 0%, transparent 40%),
                radial-gradient(circle at 0% 50%, rgba(37, 99, 235, 0.04) 0%, transparent 40%),
                var(--bg-white);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.hero-left {
    display: flex;
    flex-direction: column;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background-color: var(--bg-slate-100);
    border: 1px solid var(--border-color);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-dark);
    margin-bottom: 24px;
    width: fit-content;
}

.hero-badge i {
    color: var(--accent-gold);
}

.hero-title {
    font-size: 3.4rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--brand-dark);
    margin-bottom: 24px;
}

.hero-title .highlight-blue {
    color: var(--brand-blue);
    position: relative;
    display: inline-block;
}

.hero-title .highlight-gold {
    color: var(--accent-gold);
}

.hero-description {
    font-size: 1.2rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 580px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

/* Güven Rozetleri */
.hero-trust-row {
    display: flex;
    gap: 32px;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 24px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-item i {
    color: var(--accent-gold);
    font-size: 1.2rem;
}

.trust-item span {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-muted);
}

/* Hero Sağ Görsel Kartı */
.hero-right {
    position: relative;
}

.hero-visual-card {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-float);
    border: 4px solid #ffffff;
}

.hero-visual-card img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.hero-visual-card:hover img {
    transform: scale(1.03);
}

/* Hero Slider */
.hero-slider {
    position: relative;
    width: 100%;
    height: 480px;
    overflow: hidden;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.hero-slide.active {
    opacity: 1;
}

.hero-slider-dots {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 5;
}

.slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dot.active {
    background: #fff;
    transform: scale(1.3);
}

/* Görsel Üzerindeki Yüzen Kartlar */
.hero-info-cards {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.floating-badge-static {
    flex: 1;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 14px 16px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 12px;
}

.floating-badge {
    position: absolute;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-card);
    border: 1px solid rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 14px;
    z-index: 10;
}

.floating-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
}

.floating-icon.gold {
    background-color: var(--accent-gold-light);
    color: var(--accent-gold);
}

.floating-icon.blue {
    background-color: var(--brand-blue-subtle);
    color: var(--brand-blue);
}

.floating-text h4 {
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.floating-text p {
    font-size: 0.78rem;
    color: var(--text-light);
    margin: 0;
}

/* ==========================================================================
   HİZMETLER BÖLÜMÜ (AYRINTILI & AYRI SAYFALARA YÖNLENDİREN BENTO-GRID)
   ========================================================================== */
.services-section {
    padding: 100px 0;
    background-color: var(--bg-white);
}

/* Kategori Sekmeleri */
.services-tabs-nav {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 40px 0 50px 0;
    flex-wrap: wrap;
}

.tab-btn {
    background: var(--bg-slate-50);
    border: 1px solid var(--border-color);
    padding: 12px 20px;
    border-radius: var(--radius-full);
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.tab-btn:hover {
    color: var(--brand-dark);
    border-color: var(--brand-dark);
}

.tab-btn.active {
    background-color: var(--brand-dark);
    color: #ffffff;
    border-color: var(--brand-dark);
    box-shadow: 0 4px 15px rgba(15, 23, 42, 0.15);
}

/* Hizmet Kartları Izgarası */
.services-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.service-card-item {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-item:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card);
    border-color: var(--brand-blue);
}

.service-thumb {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

.service-card-item:hover .service-thumb img {
    transform: scale(1.06);
}

.service-badge-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    color: #ffffff;
    font-family: 'Sora', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: var(--radius-full);
}

.service-body {
    padding: 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.service-body h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    line-height: 1.35;
}

.service-body h3 a {
    color: var(--brand-dark);
    text-decoration: none;
}

.service-body h3 a:hover {
    color: var(--brand-blue);
}

.service-body p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin-bottom: 20px;
    flex: 1;
}

/* Dahil Olan Hizmet Maddeleri */
.included-list {
    list-style: none;
    margin-bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.included-list li {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.included-list li i {
    color: #10b981;
    font-size: 0.8rem;
}

.service-footer-action {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--border-color);
    padding-top: 20px;
    margin-top: auto;
}

.service-detail-link {
    font-family: 'Sora', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--brand-blue);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.service-detail-link:hover {
    gap: 10px;
}

/* ==========================================================================
   ÖNCESİ / SONRASI SLIDER (MİMARİ DÖNÜŞÜM)
   ========================================================================== */
.before-after-section {
    padding: 90px 0;
    background-color: var(--bg-slate-50);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.ba-wrapper-luxe {
    max-width: 960px;
    margin: 40px auto 0 auto;
}

.ba-frame {
    position: relative;
    width: 100%;
    height: 520px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-float);
    border: 4px solid #ffffff;
    user-select: none;
}

.ba-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.ba-slide.after-slide {
    z-index: 2;
    border-right: 3px solid #ffffff;
}

.ba-tag {
    position: absolute;
    top: 24px;
    padding: 8px 16px;
    border-radius: var(--radius-md);
    font-family: 'Sora', sans-serif;
    font-weight: 700;
    font-size: 0.8rem;
    color: #ffffff;
    z-index: 5;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
}

.tag-before {
    left: 24px;
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
}

.tag-after {
    right: 24px;
    background-color: rgba(37, 99, 235, 0.9);
    backdrop-filter: blur(8px);
}

/* Slider Kolu */
.ba-divider-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 3px;
    height: 100%;
    background: #ffffff;
    z-index: 3;
    cursor: ew-resize;
    transform: translateX(-50%);
}

.ba-handle-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 4px 15px rgba(0,0,0,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--brand-dark);
    font-size: 1.1rem;
    border: 2px solid var(--brand-blue);
    pointer-events: none;
}

.ba-range-control {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    z-index: 4;
    cursor: ew-resize;
}

/* ==========================================================================
   BENTO GRID (NEDEN BİZ? & GÜVENİLİRLİK)
   ========================================================================== */
.why-us-bento {
    padding: 100px 0;
    background-color: var(--bg-white);
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: minmax(240px, auto);
    gap: 24px;
    margin-top: 48px;
}

.bento-item {
    background: var(--bg-slate-50);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.3s ease;
}

.bento-item:hover {
    border-color: var(--brand-dark);
    box-shadow: var(--shadow-card);
    transform: translateY(-4px);
}

.bento-item.featured {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--brand-dark) 0%, var(--brand-navy) 100%);
    color: #ffffff;
}

.bento-item.featured h3 {
    color: #ffffff;
    font-size: 1.8rem;
    margin-bottom: 12px;
}

.bento-item.featured p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.05rem;
}

.bento-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: #ffffff;
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    box-shadow: var(--shadow-soft);
    margin-bottom: 24px;
}

.bento-item h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.bento-item p {
    font-size: 0.95rem;
    color: var(--text-muted);
}

/* ==========================================================================
   İZMİR HİZMET BÖLGELERİ HARİTASI & ROZETLERİ
   ========================================================================== */
.districts-section {
    padding: 80px 0;
    background-color: var(--bg-warm-light);
    border-top: 1px solid var(--border-color);
}

.districts-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    margin-top: 36px;
}

.district-badge {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    padding: 10px 20px;
    border-radius: var(--radius-full);
    font-family: 'Sora', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--brand-dark);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-soft);
    transition: all 0.2s ease;
}

.district-badge i {
    color: var(--brand-blue);
    font-size: 0.85rem;
}

.district-badge:hover {
    border-color: var(--brand-blue);
    background-color: var(--brand-blue-subtle);
    transform: translateY(-2px);
}

/* ==========================================================================
   TEKLİF ALMA & İLETİŞİM FORMU (AYDINLIK & LÜKS)
   ========================================================================== */
.quote-section-luxe {
    padding: 100px 0;
    background-color: var(--bg-white);
    border-top: 1px solid var(--border-color);
    overflow: hidden;
    overflow-x: clip;
}

.quote-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
}

.quote-left-info h2 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.quote-left-info .desc {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 36px;
}

.direct-contact-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.contact-card-link {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    border-radius: var(--radius-md);
    background: var(--bg-slate-50);
    border: 1px solid var(--border-color);
    text-decoration: none;
    transition: all 0.25s ease;
    overflow: hidden;
}

.contact-card-link:hover {
    background: #ffffff;
    border-color: var(--brand-blue);
    box-shadow: var(--shadow-card);
    transform: translateY(-2px);
}

.contact-card-icon {
    width: 50px;
    height: 50px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
}

.contact-card-icon.phone {
    background: var(--brand-blue-subtle);
    color: var(--brand-blue);
}

.contact-card-icon.whatsapp {
    background: rgba(37, 211, 102, 0.15);
    color: #25d366;
}

.contact-card-text h4 {
    font-size: 1rem;
    color: var(--brand-dark);
    margin-bottom: 4px;
}

.contact-card-text p {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin: 0;
    word-break: break-word;
    overflow-wrap: break-word;
}

/* Teklif Form Kutusu */
.quote-form-container {
    background: #ffffff;
    border: 1.5px solid var(--border-color);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card);
    padding: 44px;
}

.quote-form-container h3 {
    font-size: 1.6rem;
    margin-bottom: 24px;
}

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

.form-group-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 18px;
}

.form-group-item label {
    font-family: 'Sora', sans-serif;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--brand-dark);
}

.form-group-item input,
.form-group-item select,
.form-group-item textarea {
    padding: 13px 16px;
    border-radius: var(--radius-sm);
    border: 1.5px solid var(--border-color);
    background-color: var(--bg-slate-50);
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.95rem;
    color: var(--brand-dark);
    outline: none;
    transition: all 0.2s ease;
    max-width: 100%;
    box-sizing: border-box;
}

.form-group-item input:focus,
.form-group-item select:focus,
.form-group-item textarea:focus {
    border-color: var(--brand-blue);
    background: #ffffff;
    box-shadow: 0 0 0 4px rgba(37, 99, 235, 0.1);
}

.file-drop-zone {
    border: 2px dashed var(--border-color);
    border-radius: var(--radius-sm);
    padding: 20px;
    text-align: center;
    background: var(--bg-slate-50);
    cursor: pointer;
    transition: all 0.2s;
}

.file-drop-zone:hover {
    border-color: var(--brand-blue);
    background: #ffffff;
}

.file-drop-zone i {
    font-size: 1.8rem;
    color: var(--brand-blue);
    margin-bottom: 8px;
}

.file-drop-zone span {
    font-size: 0.85rem;
    color: var(--text-muted);
    display: block;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.site-footer {
    background-color: var(--brand-dark);
    color: #ffffff;
    padding: 80px 0 30px 0;
    font-size: 0.92rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr repeat(2, 1fr) 1.2fr;
    gap: 48px;
    margin-bottom: 60px;
}

.footer-brand .logo-symbol {
    background: #ffffff;
    color: var(--brand-dark);
}

.footer-brand .logo-name {
    color: #ffffff;
}

.footer-desc {
    color: rgba(255, 255, 255, 0.7);
    margin: 20px 0;
    line-height: 1.7;
    font-size: 0.9rem;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 1.1rem;
    margin-bottom: 24px;
}

.footer-links-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links-list a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.2s ease;
}

.footer-links-list a:hover {
    color: var(--accent-gold);
    padding-left: 6px;
}

.footer-contact-list p {
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 14px;
}

.footer-contact-list i {
    color: var(--accent-gold);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.footer-legal-links {
    display: flex;
    gap: 16px;
}

.footer-legal-links a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
    text-decoration: none;
}

.footer-legal-links a:hover {
    color: #ffffff;
}

/* ==========================================================================
   YÜZEN WHATSAPP ASİSTANI
   ========================================================================== */
.floating-whatsapp-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.wa-speech-bubble {
    background: #ffffff;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow-float);
    border-radius: var(--radius-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    max-width: 260px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
    pointer-events: none;
}

.wa-speech-bubble.active {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}

.wa-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background-color: var(--bg-warm-light);
    color: var(--brand-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.wa-text h5 {
    font-size: 0.85rem;
    margin-bottom: 2px;
}

.wa-text p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--text-light);
}

.wa-icon-btn {
    width: 62px;
    height: 62px;
    border-radius: 50%;
    background-color: #25d366;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    text-decoration: none;
    transition: all 0.3s ease;
}

.wa-icon-btn:hover {
    background-color: #128c7e;
    transform: scale(1.08);
}

/* ==========================================================================
   MOBİL ALT SABİT BAR (site.md Kuralı: [Ara] [WhatsApp] [Teklif Al])
   ========================================================================== */
.mobile-bottom-bar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    box-sizing: border-box;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-top: 1px solid var(--border-color);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.08);
    z-index: 1000;
    padding: 6px 6px;
}

.mobile-bottom-bar-inner {
    display: flex;
    gap: 6px;
    align-items: center;
    width: 100%;
}

.bottom-action-btn {
    width: calc(33.333% - 4px);
    flex: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 2px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    font-size: 0.65rem;
    font-weight: 700;
    font-family: 'Sora', sans-serif;
    gap: 3px;
    text-align: center;
    overflow: hidden;
    box-sizing: border-box;
}

.bottom-action-btn.call-btn {
    background: var(--bg-slate-100);
    color: var(--brand-dark);
}

.bottom-action-btn.wa-btn {
    background: rgba(37, 211, 102, 0.15);
    color: #16a34a;
}

.bottom-action-btn.quote-btn {
    background: var(--brand-dark);
    color: #ffffff;
    flex-direction: column;
    gap: 3px;
}

.bottom-action-btn i {
    font-size: 1.1rem;
}

/* ==========================================================================
   MOBİL YAN MENÜ AÇILIR PANELİ
   ========================================================================== */
.mobile-drawer {
    position: fixed;
    top: 0;
    right: -100%;
    width: 85%;
    max-width: 360px;
    height: 100%;
    background: #ffffff;
    z-index: 1002;
    box-shadow: var(--shadow-float);
    display: flex;
    flex-direction: column;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.mobile-drawer.open {
    right: 0;
}

.drawer-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px;
    border-bottom: 1px solid var(--border-color);
}

.drawer-close {
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--brand-dark);
    cursor: pointer;
}

.drawer-menu-list {
    list-style: none;
    padding: 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.drawer-item a {
    font-family: 'Sora', sans-serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--brand-dark);
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-decoration: none;
}

.drawer-submenu {
    list-style: none;
    padding-left: 0;
    margin-top: 0;
    display: flex;
    flex-direction: column;
    gap: 0;
    border-left: 2px solid var(--bg-slate-200);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, margin-top 0.35s ease, padding-left 0.35s ease;
}

.drawer-submenu.open {
    max-height: 600px;
    margin-top: 8px;
    padding-left: 16px;
    gap: 8px;
}

.drawer-submenu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-muted);
}

.drawer-parent-link i {
    transition: transform 0.3s ease;
}

.drawer-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 23, 42, 0.5);
    backdrop-filter: blur(4px);
    z-index: 1001;
    display: none;
}

.drawer-overlay.open {
    display: block;
}

/* ==========================================================================
   RESPONSIVE UYUM (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1180px) {
    .main-navigation { display: none; }
    .mobile-toggle-btn { display: block; }
    .nav-phone-direct { display: none; }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .hero-title { font-size: 2.8rem; }
    
    .services-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .bento-item.featured {
        grid-column: span 2;
    }
    
    .quote-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    body {
        padding-bottom: 70px;
        overflow-x: hidden;
    }
    
    .top-header-bar { display: none; }
    
    .site-navbar .container {
        height: 64px;
    }

    main {
        overflow-x: hidden;
    }
    
    .logo-name { font-size: 1.15rem; }
    .logo-symbol { width: 38px; height: 38px; font-size: 1.1rem; }
    
    .mobile-toggle-btn {
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .btn-sm {
        padding: 10px 16px;
        font-size: 0.85rem;
        min-height: 44px;
    }

    .tab-btn {
        padding: 10px 18px;
        min-height: 44px;
    }
    
    .hero-luminous {
        padding: 40px 0 60px 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }

    .hero-slider {
        height: 280px;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
    }

    .hero-info-cards {
        flex-direction: column;
        gap: 8px;
    }

    .floating-badge-static {
        padding: 10px 12px;
        gap: 10px;
    }

    .floating-icon {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }

    .floating-text h4 {
        font-size: 0.78rem;
    }

    .floating-text p {
        font-size: 0.65rem;
    }
    
    .hero-trust-row {
        flex-direction: column;
        gap: 16px;
        align-items: flex-start;
    }
    
    .services-cards-grid {
        grid-template-columns: 1fr;
    }

    .service-thumb {
        height: 180px;
    }

    .service-body {
        padding: 20px;
    }
    
    .services-tabs-nav {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        padding-bottom: 8px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }
    
    .services-tabs-nav::-webkit-scrollbar {
        display: none;
    }
    
    .tab-btn {
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .ba-frame {
        height: 300px;
    }
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-item {
        padding: 24px;
    }

    .bento-item.featured h3 {
        font-size: 1.4rem;
    }
    
    .bento-item.featured {
        grid-column: span 1;
    }
    
    .districts-wrap {
        gap: 8px;
    }
    
    .district-badge {
        padding: 10px 16px;
        font-size: 0.8rem;
        min-height: 44px;
        display: inline-flex;
        align-items: center;
    }

    .quote-left-info h2 {
        font-size: 1.6rem;
    }

    .contact-card-link {
        padding: 14px 16px;
    }

    .quote-layout {
        gap: 24px;
    }

    .quote-form-container {
        padding: 24px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .services-checkbox-grid {
        grid-template-columns: 1fr;
    }
    
    .room-options {
        gap: 8px;
    }
    
    .room-btn {
        padding: 8px 14px;
        font-size: 0.82rem;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .mobile-bottom-bar {
        display: block;
    }

    .bottom-action-btn {
        padding: 10px 4px;
        font-size: 0.75rem;
        min-height: 44px;
    }
    
    .floating-whatsapp-widget {
        bottom: 80px;
        right: 16px;
    }
    
    .wa-icon-btn {
        width: 56px;
        height: 56px;
        font-size: 1.7rem;
    }
    
    .mobile-drawer {
        width: 88%;
        max-width: 340px;
    }

    .drawer-close {
        padding: 12px;
        min-width: 44px;
        min-height: 44px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    .section-padding {
        padding: 48px 0;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.5rem;
    }

    .hero-slider {
        height: 220px;
    }

    .floating-badge-static {
        padding: 8px 10px;
        gap: 8px;
        flex-direction: column;
        text-align: center;
    }

    .floating-icon {
        width: 28px;
        height: 28px;
        font-size: 0.85rem;
    }

    .floating-text h4 {
        font-size: 0.7rem;
    }

    .floating-text p {
        font-size: 0.6rem;
    }

    .quote-left-info h2 {
        font-size: 1.4rem;
    }

    .section-title {
        font-size: 1.4rem;
    }

    .bento-item {
        padding: 20px;
    }

    .bento-item.featured h3 {
        font-size: 1.25rem;
    }

    .quote-form-container {
        padding: 18px;
    }

    .mobile-drawer {
        width: 92%;
    }
}
