/* =========================================================
   İVA PROJE PAZARLAMA — style.css
   Light theme · Glassmorphism · 3D Coverflow
   ========================================================= */

:root {
    --navy: #1e293b;
    --navy-soft: #334155;
    --gold: #d4af37;
    --gold-soft: #e6c869;
    --ink: #0f172a;
    --muted: #64748b;
    --line: rgba(255, 255, 255, 0.55);
    --glass-bg: rgba(255, 255, 255, 0.55);
    --glass-bg-strong: rgba(255, 255, 255, 0.72);
    --shadow: 0 20px 45px -20px rgba(30, 41, 59, 0.35);
    --radius: 22px;
    --nav-h: 74px;

    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 16px); }

body {
    color: var(--ink);
    line-height: 1.6;
    background:
        radial-gradient(1200px 600px at 15% -10%, #eaf2ff 0%, transparent 55%),
        radial-gradient(1000px 620px at 100% 0%, #f2f6ff 0%, transparent 50%),
        linear-gradient(180deg, #f7fafc 0%, #eef3fb 45%, #f6f9ff 100%);
    background-attachment: fixed;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; }

/* ---------- Marka / Logo (dikey) ---------- */
.brand {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    line-height: 0.82;
    user-select: none;
}
.brand-name {
    font-size: 30px;
    font-weight: 800;
    letter-spacing: 1px;
    color: var(--navy);
}
.brand-infinity {
    font-size: 30px;
    font-weight: 700;
    color: var(--gold);
    margin-top: 2px;
    line-height: 0.6;
    text-shadow: 0 1px 0 rgba(212, 175, 55, 0.3);
}
/* Gerçek marka logosu (mavi kurdele sembol — geniş oran ~2:1) */
.brand-logo { height: 44px; width: auto; display: block; }
.side-brand .brand-logo { height: 42px; }
.footer-brand .brand-logo { height: 40px; }

/* =========================================================
   NAVBAR
   ========================================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--nav-h);
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(14px) saturate(160%);
    -webkit-backdrop-filter: blur(14px) saturate(160%);
    border-bottom: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 0 8px 30px -18px rgba(30, 41, 59, 0.35);
    transition: box-shadow 0.3s ease, background 0.3s ease;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 10px 34px -16px rgba(30, 41, 59, 0.45);
}
.nav-inner {
    max-width: 1240px;
    height: 100%;
    margin: 0 auto;
    padding: 0 22px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}

/* Hamburger */
.hamburger {
    justify-self: start;
    width: 48px;
    height: 48px;
    border: 1px solid rgba(30, 41, 59, 0.12);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hamburger:hover { transform: translateY(-1px); box-shadow: var(--shadow); }
.hamburger span {
    width: 22px;
    height: 2px;
    background: var(--navy);
    border-radius: 2px;
    transition: 0.3s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.brand.side-brand, .navbar .brand { justify-self: center; }

.nav-cta {
    justify-self: end;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 10px 16px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 14px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    transition: 0.25s;
}
.nav-cta i { color: var(--gold); }
.nav-cta:hover { background: var(--navy); color: #fff; }
.nav-cta:hover i { color: var(--gold-soft); }

/* =========================================================
   SOL AÇILIR MENÜ
   ========================================================= */
.side-overlay {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.35);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s;
    z-index: 150;
}
.side-overlay.open { opacity: 1; visibility: visible; }

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: min(340px, 82vw);
    height: 100%;
    z-index: 160;
    padding: 26px 24px;
    display: flex;
    flex-direction: column;
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
    border-right: 1px solid rgba(255, 255, 255, 0.7);
    box-shadow: 30px 0 60px -30px rgba(30, 41, 59, 0.5);
    transform: translateX(-108%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.side-menu.open { transform: translateX(0); }

.side-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(30, 41, 59, 0.1);
}
.side-close {
    width: 42px; height: 42px;
    border-radius: 12px;
    border: 1px solid rgba(30, 41, 59, 0.12);
    background: rgba(255, 255, 255, 0.6);
    color: var(--navy);
    font-size: 18px;
    cursor: pointer;
    transition: 0.2s;
}
.side-close:hover { background: var(--navy); color: #fff; }

.side-links { list-style: none; margin-top: 24px; flex: 1; }
.side-links li { margin-bottom: 8px; }
.side-links a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 16px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 600;
    color: var(--navy);
    transition: 0.25s;
}
.side-links a i { color: var(--gold); width: 22px; text-align: center; }
.side-links a:hover {
    background: rgba(255, 255, 255, 0.75);
    transform: translateX(4px);
    box-shadow: var(--shadow);
}

.side-foot { padding-top: 20px; border-top: 1px solid rgba(30, 41, 59, 0.1); }
.side-foot p { font-size: 13px; color: var(--muted); margin-bottom: 14px; }
.side-social { display: flex; gap: 10px; }
.side-social a, .ci-social a, .footer-social a {
    width: 38px; height: 38px;
    display: grid; place-items: center;
    border-radius: 50%;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.7);
    transition: 0.25s;
}
.side-social a:hover, .ci-social a:hover, .footer-social a:hover {
    background: var(--gold); color: #fff; transform: translateY(-3px);
}

/* =========================================================
   HERO — "AKTİF KART = AKTİF SAHNE"
   Premium luxury real estate + PropTech · dinamik sahne
   ========================================================= */
.hero {
    --accent: #7c6cff;
    --accent-2: #4f7fe0;
    position: relative;
    isolation: isolate;
    overflow: hidden;
    padding: 46px 20px 150px;
    min-height: 92vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    color: #fff;
}
/* Sahne temaları — aktif servise göre vurgu rengi (mor marka rengi baskın değil) */
.hero.is-scene-0 { --accent: #7c6cff; --accent-2: #4f7fe0; }
.hero.is-scene-1 { --accent: #22d3ee; --accent-2: #3b82f6; }
.hero.is-scene-2 { --accent: #b06cf7; --accent-2: #6366f1; }
.hero.is-scene-3 { --accent: #2ece77; --accent-2: #14b8a6; }
.hero.is-scene-4 { --accent: #e3b23c; --accent-2: #6486c4; }
.hero.is-scene-5 { --accent: #8b5cf6; --accent-2: #22d3ee; }

/* ---------- Sahne arka planları (crossfade) ---------- */
.hero-scenes { position: absolute; inset: 0; z-index: 0; }
.hero-scene {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(1.06);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* opacity: crossfade · transform: yavaş "ken-burns" yakınlaşma */
    transition: opacity 0.9s cubic-bezier(0.4, 0, 0.2, 1),
                transform 6s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}
.hero-scene.is-active { opacity: 1; transform: scale(1); }

/* Her sahne: aktif hizmeti çağrıştıran fotoğraf + koyu okunabilirlik veil'i +
   temaya özel radial ışıklar. Görsel yüklenemezse gradient katmanlar zemin olur. */
.scene-0 {
    background-color: #0c1026;
    background-image:
        radial-gradient(60% 55% at 22% 18%, rgba(124, 108, 255, 0.34), transparent 60%),
        radial-gradient(55% 60% at 82% 26%, rgba(79, 127, 224, 0.30), transparent 58%),
        linear-gradient(180deg, rgba(11, 15, 34, 0.82) 0%, rgba(13, 17, 40, 0.40) 42%, rgba(10, 13, 30, 0.58) 72%, rgba(8, 10, 24, 0.92) 100%),
        url('../img/scenes/scene-0.jpg');
}
.scene-1 {
    background-color: #05131f;
    background-image:
        radial-gradient(58% 55% at 20% 20%, rgba(34, 211, 238, 0.32), transparent 60%),
        radial-gradient(55% 60% at 84% 26%, rgba(59, 130, 246, 0.30), transparent 58%),
        linear-gradient(180deg, rgba(6, 18, 30, 0.82) 0%, rgba(8, 24, 40, 0.38) 42%, rgba(6, 18, 30, 0.58) 72%, rgba(4, 12, 20, 0.92) 100%),
        url('../img/scenes/scene-1.jpg');
}
.scene-2 {
    background-color: #120c26;
    background-image:
        radial-gradient(58% 55% at 22% 20%, rgba(176, 108, 247, 0.34), transparent 60%),
        radial-gradient(55% 60% at 82% 26%, rgba(99, 102, 241, 0.30), transparent 58%),
        linear-gradient(180deg, rgba(20, 14, 40, 0.82) 0%, rgba(28, 18, 52, 0.40) 42%, rgba(18, 12, 36, 0.58) 72%, rgba(14, 9, 28, 0.92) 100%),
        url('../img/scenes/scene-2.jpg');
}
.scene-3 {
    background-color: #041b15;
    background-image:
        radial-gradient(58% 55% at 22% 20%, rgba(46, 206, 119, 0.34), transparent 60%),
        radial-gradient(55% 60% at 82% 26%, rgba(20, 184, 166, 0.30), transparent 58%),
        linear-gradient(180deg, rgba(6, 26, 20, 0.82) 0%, rgba(9, 40, 30, 0.38) 42%, rgba(6, 26, 20, 0.58) 72%, rgba(4, 18, 14, 0.92) 100%),
        url('../img/scenes/scene-3.jpg');
}
.scene-4 {
    background-color: #0b1226;
    background-image:
        radial-gradient(58% 55% at 22% 20%, rgba(227, 178, 60, 0.30), transparent 60%),
        radial-gradient(55% 60% at 82% 26%, rgba(100, 134, 196, 0.30), transparent 58%),
        linear-gradient(180deg, rgba(14, 20, 40, 0.80) 0%, rgba(20, 28, 52, 0.36) 42%, rgba(14, 20, 40, 0.56) 72%, rgba(9, 13, 28, 0.92) 100%),
        url('../img/scenes/scene-4.jpg');
}
.scene-5 {
    background-color: #0a0720;
    background-image:
        radial-gradient(58% 55% at 22% 20%, rgba(139, 92, 246, 0.34), transparent 60%),
        radial-gradient(55% 60% at 82% 26%, rgba(34, 211, 238, 0.30), transparent 58%),
        linear-gradient(180deg, rgba(15, 11, 40, 0.82) 0%, rgba(22, 16, 52, 0.40) 42%, rgba(15, 11, 36, 0.58) 72%, rgba(10, 7, 28, 0.92) 100%),
        url('../img/scenes/scene-5.jpg');
}

/* İnce "blueprint" ızgara — kurumsal / mimari doku */
.hero-grid {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);
    background-size: 64px 64px;
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 30%, transparent 78%);
            mask-image: radial-gradient(ellipse 80% 70% at 50% 35%, #000 30%, transparent 78%);
}
/* Yüzen ışık küreleri (sahneler arası süreklilik, temaya göre renk alır) */
.hero-orb {
    position: absolute; z-index: 1;
    border-radius: 50%;
    background: var(--accent);
    opacity: 0.22;
    filter: blur(70px);
    pointer-events: none;
    transition: background 0.9s ease;
    will-change: transform;
}
.orb-1 { width: 420px; height: 420px; top: 6%; left: -6%; animation: orbFloatA 18s ease-in-out infinite; }
.orb-2 { width: 360px; height: 360px; top: 12%; right: -5%; background: var(--accent-2); animation: orbFloatB 22s ease-in-out infinite; }
@keyframes orbFloatA { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(40px, 30px, 0); } }
@keyframes orbFloatB { 0%, 100% { transform: translate3d(0, 0, 0); } 50% { transform: translate3d(-36px, 26px, 0); } }

/* Alt kenarda aydınlık siteye yumuşak geçiş */
.hero::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 150px;
    z-index: 1;
    background: linear-gradient(to top, #f6f9ff 0%, rgba(246, 249, 255, 0) 100%);
    pointer-events: none;
}

.hero-inner {
    position: relative;
    z-index: 3;
    max-width: 1240px;
    width: 100%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* ---------- HERO METİN (başlık / açıklama / ticker) ---------- */
/* width:100% -> flex kolonunda başlığın max-content'e büyüyüp taşmasını engeller */
.hero-copy { width: 100%; max-width: 860px; }
.hero-title {
    font-size: clamp(30px, 5.6vw, 62px);
    font-weight: 800;
    line-height: 1.04;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 10px 40px rgba(0, 0, 0, 0.35);
}
.hero-desc {
    margin: 16px auto 0;
    max-width: 620px;
    font-size: clamp(15px, 2vw, 20px);
    font-weight: 400;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.82);
}

/* İçerik giriş animasyonu (fade + translate + blur) */
@keyframes copyIn {
    from { opacity: 0; transform: translateY(16px); filter: blur(8px); }
    to   { opacity: 1; transform: translateY(0);    filter: blur(0); }
}
.hero-title.play { animation: copyIn 0.8s cubic-bezier(0.16, 1, 0.3, 1) both; }
.hero-desc.play  { animation: copyIn 0.8s 0.12s cubic-bezier(0.16, 1, 0.3, 1) both; }

/* Akan ticker (STRATEJİ • ANALİZ • ...) */
.hero-ticker {
    position: relative;
    margin: 22px auto 0;
    max-width: 560px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
            mask-image: linear-gradient(90deg, transparent, #000 14%, #000 86%, transparent);
}
.hero-ticker-track {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
    animation: tickerScroll 26s linear infinite;
}
.hero-ticker-track span {
    padding: 0 8px;
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}
.hero-ticker-track i {
    color: var(--accent);
    font-size: 5px;
    vertical-align: middle;
    transition: color 0.6s ease;
}
@keyframes tickerScroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- SAHNE: aktif hizmet görselinin göründüğü bant ---------- */
.hero-stage {
    position: relative;
    width: 100%;
    max-width: 920px;
    margin-top: 22px;
    height: 120px;
}

/* Yüzen etiketler — aktif (ortadaki) kartın köşelerinde belirir.
   slider-wrap içinde konumlanır; sağ/sol calc ile merkez karta göre hizalanır. */
.hero-tags { position: absolute; inset: 0; z-index: 6; pointer-events: none; }
.hero-tag {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 14px;
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.3px;
    color: rgba(255, 255, 255, 0.92);
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.20);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 12px 30px -14px rgba(0, 0, 0, 0.6);
    white-space: nowrap;
    opacity: 0;
    transform-origin: top center;   /* üstten sarkma ekseni (sallanma için) */
    animation: tagIn 0.7s cubic-bezier(0.16, 1, 0.3, 1) forwards,
               tagSway 3.8s ease-in-out infinite;
}
.hero-tag::before {
    content: '';
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 10px var(--accent);
}
/* Aktif kartın ÜST köşelerinde, fotoğraf bandında yay biçiminde:
   iç çift (2,3) alçak & merkeze yakın, dış çift (1,4) yüksek & dışarıda */
.hero-tag:nth-child(1) { top: -58px; right: calc(50% + 220px); animation-delay: 0.14s, -0.2s; }
.hero-tag:nth-child(2) { top: -14px; right: calc(50% + 120px); animation-delay: 0.30s, -1.5s; }
.hero-tag:nth-child(3) { top: -14px; left:  calc(50% + 120px); animation-delay: 0.22s, -0.9s; }
.hero-tag:nth-child(4) { top: -58px; left:  calc(50% + 220px); animation-delay: 0.38s, -2.1s; }
@keyframes tagIn { from { opacity: 0; filter: blur(8px); } to { opacity: 1; filter: blur(0); } }
/* Yukarıdan sarkıp sallanır (pendulum) */
@keyframes tagSway { 0% { transform: rotate(-4.5deg); } 50% { transform: rotate(4.5deg); } 100% { transform: rotate(-4.5deg); } }

/* =========================================================
   HİZMET KARTLARI (cam kapsül slider)
   ========================================================= */
.slider-wrap {
    position: relative;
    z-index: 4;
    width: 100%;
    margin-top: -28px;
}
.serviceSwiper {
    max-width: 1180px;
    margin: 0 auto;
    padding: 40px 10px 18px;
    overflow: visible;
}
.serviceSwiper .swiper-slide {
    width: 300px;
    height: 430px;
    transition: opacity 0.6s ease;
}

/* Kart — yarı saydam premium cam kapsül */
.service-card {
    position: relative;
    height: 100%;
    display: flex;
    border-radius: 20px;
    overflow: hidden;
    color: #fff;
    background: linear-gradient(160deg, rgba(255, 255, 255, 0.14) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px) saturate(140%);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: 0 30px 60px -30px rgba(0, 0, 0, 0.6),
                inset 0 1px 0 rgba(255, 255, 255, 0.25);
    transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1),
                box-shadow 0.7s ease, border-color 0.7s ease, opacity 0.6s ease;
}
/* İnce kenar ışıltısı — sadece aktif kartta yumuşakça gezer (abartısız) */
.service-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(115deg,
        transparent 34%,
        rgba(255, 255, 255, 0.55) 47%,
        var(--accent) 50%,
        rgba(255, 255, 255, 0.55) 53%,
        transparent 66%);
    background-size: 280% 280%;
    -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
            mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
    -webkit-mask-composite: xor;
            mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
/* Aktif olmayan kartlar soluklaşır ve TEMEL (eski) görünüme döner (aynı hizada) */
.serviceSwiper .swiper-slide:not(.swiper-slide-active) .service-card {
    opacity: 0.66;
    transform: none;
}
/* AKTİF KART: geçişte hafif yukarı çıkar, az büyür, parlar, öne gelir */
.serviceSwiper .swiper-slide-active .service-card {
    transform: translateY(-8px) scale(1.03);
    border-color: rgba(255, 255, 255, 0.5);
    box-shadow: 0 44px 88px -34px rgba(0, 0, 0, 0.7),
                inset 0 1px 0 rgba(255, 255, 255, 0.4),
                0 18px 60px -28px var(--accent);
}
.serviceSwiper .swiper-slide-active .service-card::after {
    opacity: 0.6;
    animation: edgeShimmer 5s ease-in-out infinite alternate;
}
@keyframes edgeShimmer {
    0%   { background-position: 0% 0%; }
    100% { background-position: 100% 100%; }
}

/* Sol dikey (döndürülmüş) başlık etiketi */
.card-side {
    flex: none;
    width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
}
.card-side span {
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.78);
    white-space: nowrap;
}

/* Kart içeriği — ikon, metin ve buton ortalı */
.card-content {
    flex: 1;
    padding: 26px 22px 24px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    min-width: 0;
}
.card-icon {
    width: 56px; height: 56px;
    border-radius: 16px;
    display: grid; place-items: center;
    font-size: 23px;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    border: 1px solid rgba(255, 255, 255, 0.2);
    box-shadow: inset 0 0 18px -6px var(--accent);
    margin-bottom: 18px;
    transition: box-shadow 0.6s ease;
}
.swiper-slide-active .card-icon {
    box-shadow: inset 0 0 22px -4px var(--accent), 0 0 24px -8px var(--accent);
}
/* LivingOS app-icon logosu (4. kart) */
.card-logo {
    width: 64px; height: 64px;
    border-radius: 16px;
    margin-bottom: 16px;
    box-shadow: 0 12px 26px -12px rgba(0, 0, 0, 0.7);
}
.card-content h3 {
    font-size: 17px;
    font-weight: 800;
    line-height: 1.25;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #fff;
}
.card-content p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.72);
    margin-top: 12px;
    line-height: 1.55;
}
.card-content > p:last-of-type { flex: 1; }
.card-btn2 {
    align-self: center;
    margin-top: 20px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.28);
    transition: 0.25s;
}
.card-btn2 i { font-size: 11px; transition: transform 0.25s; }
.card-btn2:hover { background: #fff; color: #0f172a; border-color: #fff; }
.card-btn2:hover i { transform: translateX(4px); }
.card-featured { border-color: rgba(255, 255, 255, 0.4); }

/* Aktif kart alt parıltısı (temaya göre renk alır) */
.card-glow {
    position: absolute;
    bottom: 8px; left: 50%;
    width: 60%; height: 16px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, var(--accent) 0%, transparent 70%);
    filter: blur(8px);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}
.swiper-slide-active .card-glow { opacity: 0.8; animation: glowPulse 3s ease-in-out infinite; }
@keyframes glowPulse {
    0%, 100% { opacity: 0.5; width: 52%; }
    50%      { opacity: 0.9; width: 64%; }
}

/* ---------- Minimal kontroller: ok + çizgi pagination ---------- */
.hero-controls {
    position: relative;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 22px;
    margin-top: 8px;
}
.hero-nav {
    width: 44px; height: 44px;
    display: grid; place-items: center;
    border-radius: 50%;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.85);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.25);
    font-size: 15px;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, background 0.3s ease;
}
.hero-nav:hover {
    color: #fff;
    border-color: var(--accent);
    box-shadow: 0 0 22px -4px var(--accent);
    background: rgba(255, 255, 255, 0.06);
}
.hero-nav:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }
.hero-nav.swiper-button-disabled { opacity: 0.35; cursor: default; }

.slider-dots {
    display: flex;
    align-items: center;
    gap: 9px;
}
.slider-dots button {
    width: 22px; height: 3px;
    padding: 0;
    border: none;
    border-radius: 3px;
    background: rgba(255, 255, 255, 0.28);
    cursor: pointer;
    transition: width 0.4s cubic-bezier(0.16, 1, 0.3, 1), background 0.4s ease;
}
.slider-dots button:hover { background: rgba(255, 255, 255, 0.5); }
.slider-dots button.active { width: 40px; background: var(--accent); }

/* =========================================================
   3'LÜ GRID
   ========================================================= */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(16px) saturate(160%);
    -webkit-backdrop-filter: blur(16px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.75);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 30px 28px;
}
.info-grid { padding: 40px 20px 60px; }
.info-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
    align-items: stretch;   /* 3 panel eşit yükseklikte */
}
.info-inner .glass-panel { height: 100%; }
.panel-tag {
    display: inline-block;
    font-size: 11px; font-weight: 700; letter-spacing: 2px;
    padding: 6px 12px;
    border-radius: 30px;
    color: var(--navy);
    background: rgba(30, 41, 59, 0.08);
    margin-bottom: 14px;
}
.panel-tag.gold { color: #8a6d0f; background: rgba(212, 175, 55, 0.18); }
.glass-panel h2 { font-size: 24px; color: var(--navy); margin-bottom: 12px; }
.glass-panel .lead { font-size: 16px; color: var(--navy-soft); font-style: italic; }
.signature { margin-top: 8px; font-weight: 700; color: var(--gold); }

.channel-list { list-style: none; margin-top: 20px; display: grid; gap: 14px; }
.channel-list li { display: flex; gap: 14px; align-items: flex-start; }
.channel-list li i {
    flex: none;
    width: 42px; height: 42px;
    display: grid; place-items: center;
    border-radius: 12px;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.12);
    font-size: 16px;
}
.channel-list b { display: block; color: var(--navy); font-size: 15px; }
.channel-list span { font-size: 13px; color: var(--muted); }

/* Haberler */
.news-media {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 16px;
    aspect-ratio: 16 / 10;
    box-shadow: 0 12px 26px -14px rgba(30, 41, 59, 0.4);
}
.news-media img { width: 100%; height: 100%; object-fit: cover; }
.news-placeholder {
    display: none;
    position: absolute; inset: 0;
    flex-direction: column; align-items: center; justify-content: center;
    gap: 8px;
    color: var(--muted);
    background: linear-gradient(135deg, #e2e8f0, #f1f5f9);
}
.news-placeholder i { font-size: 40px; opacity: 0.6; }
.news-headline { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.glass-panel p { font-size: 14.5px; color: var(--muted); }
.text-link {
    display: inline-flex; align-items: center; gap: 8px;
    margin-top: 14px; font-weight: 600; color: var(--gold);
}
.text-link i { transition: transform 0.25s; }
.text-link:hover i { transform: translateX(4px); }

/* İletişim bilgileri */
.contact-list { list-style: none; display: grid; gap: 20px; margin-bottom: 22px; }
.contact-list li { display: flex; gap: 14px; }
/* Yüksek özgüllük: .contact-list span kuralını ezip ikonu görünür kılar */
.contact-list li .ci-icon {
    flex: none;
    width: 46px; height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    color: var(--gold);
    background: rgba(212, 175, 55, 0.15);
    font-size: 17px;
}
.contact-list li .ci-icon i { color: var(--gold); }
.contact-list b { display: block; color: var(--navy); font-size: 14px; margin-bottom: 4px; }
.contact-list a, .contact-list span { display: block; font-size: 14.5px; color: var(--navy-soft); transition: 0.2s; }
.contact-list a:hover { color: var(--gold); }
.ci-social { display: flex; gap: 10px; }

/* =========================================================
   HARİTA + FORM
   ========================================================= */
.map-form { padding: 20px 20px 70px; }
.mf-inner {
    max-width: 1240px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 26px;
    align-items: stretch;
}
.map-box { padding: 10px; overflow: hidden; }
.map-box iframe {
    width: 100%;
    height: 100%;
    min-height: 420px;
    border: 0;
    border-radius: 16px;
    filter: grayscale(0.15) contrast(1.05);
}
.form-lead { color: var(--muted); margin-bottom: 20px; font-size: 15px; }

.field { position: relative; margin-bottom: 16px; }
.field > i {
    position: absolute; left: 16px; top: 17px;
    color: var(--gold); font-size: 15px;
}
.field textarea + i { top: 17px; }
.field input, .field textarea {
    width: 100%;
    padding: 14px 16px 14px 44px;
    border-radius: 14px;
    border: 1px solid rgba(30, 41, 59, 0.14);
    background: rgba(255, 255, 255, 0.7);
    font-family: inherit;
    font-size: 15px;
    color: var(--ink);
    outline: none;
    transition: 0.25s;
    resize: vertical;
}
.field textarea { min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #94a3b8; }
.field input:focus, .field textarea:focus {
    border-color: var(--gold);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.15);
}

.submit-btn {
    width: 100%;
    margin-top: 6px;
    padding: 15px;
    border: none;
    border-radius: 40px;
    cursor: pointer;
    font-family: inherit;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    background: linear-gradient(135deg, var(--navy) 0%, #0f172a 100%);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: 0.3s;
}
.submit-btn i { transition: transform 0.3s; }
.submit-btn:hover { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-soft) 100%); }
.submit-btn:hover i { transform: translateX(5px) rotate(8deg); }
.form-status { margin-top: 14px; font-size: 14px; font-weight: 600; min-height: 20px; }
.form-status.ok { color: #16a34a; }
.form-status.err { color: #dc2626; }

/* =========================================================
   FOOTER
   ========================================================= */
.footer {
    background: rgba(255, 255, 255, 0.55);
    backdrop-filter: blur(14px);
    border-top: 1px solid rgba(255, 255, 255, 0.7);
    padding: 40px 20px 34px;
}
.footer-inner {
    max-width: 1240px; margin: 0 auto;
    display: flex; flex-direction: column; align-items: center; gap: 18px;
    text-align: center;
}
.footer-brand .brand-name, .footer-brand .brand-infinity { font-size: 26px; }
.footer-social { display: flex; gap: 12px; }
.footer-copy { font-size: 13px; color: var(--muted); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 980px) {
    .info-inner { grid-template-columns: 1fr; }
    .mf-inner { grid-template-columns: 1fr; }
    .nav-cta { display: none; }
    .map-box iframe { min-height: 320px; }
}

/* ---------- HERO tablet ---------- */
@media (max-width: 860px) {
    .hero { padding: 36px 16px 130px; min-height: auto; }
    .hero-stage { height: 110px; margin-top: 18px; }
    .slider-wrap { margin-top: -24px; }
    /* Kalabalığı azalt: iç çift gizlenir, dış (köşe) etiketler kalır (simetrik) */
    .hero-tag:nth-child(2), .hero-tag:nth-child(3) { display: none; }
    .hero::after { height: 130px; }
}

/* ---------- HERO mobil ---------- */
@media (max-width: 600px) {
    .hero { padding: 28px 12px 110px; }
    .hero-title { font-size: clamp(25px, 8vw, 34px); }
    .hero-desc { font-size: 15px; }
    .hero-stage { height: 80px; margin-top: 12px; }
    .hero-tags { display: none; }          /* mobilde temiz kompozisyon */
    .hero-grid { background-size: 44px 44px; }
    .orb-1, .orb-2 { filter: blur(52px); opacity: 0.26; }
    .hero::after { height: 110px; }
    .slider-wrap { margin-top: -18px; }
    .serviceSwiper { padding: 26px 10px 14px; }
    .serviceSwiper .swiper-slide { width: 268px; height: 412px; }
    .hero-nav { display: none; }            /* mobilde yatay swipe */
    .glass-panel { padding: 24px 20px; }
    .brand-logo { height: 38px; }
}

/* Erişilebilirlik: hareket azaltma */
@media (prefers-reduced-motion: reduce) {
    * { animation: none !important; transition: none !important; scroll-behavior: auto; }
}

/* =========================================================
   DİL SEÇİCİ (navbar + yan menü) — i18n
   ========================================================= */
.nav-right {
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 10px;
}
.lang-switch { position: relative; }
.lang-btn {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 10px 14px;
    border-radius: 40px;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(8px);
    cursor: pointer;
    transition: 0.25s;
    font-family: inherit;
}
.lang-btn i { color: var(--gold); font-size: 13px; }
.lang-btn .lang-caret { color: var(--muted); font-size: 10px; transition: transform 0.25s; }
.lang-btn:hover { background: var(--navy); color: #fff; }
.lang-btn:hover i { color: var(--gold-soft); }
.lang-switch.open .lang-caret { transform: rotate(180deg); }
.lang-menu {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    min-width: 168px;
    padding: 8px;
    margin: 0;
    list-style: none;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px) saturate(160%);
    -webkit-backdrop-filter: blur(18px) saturate(160%);
    border: 1px solid rgba(255, 255, 255, 0.8);
    box-shadow: 0 18px 44px -18px rgba(30, 41, 59, 0.45);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px);
    transition: 0.25s;
    z-index: 210;
}
.lang-switch.open .lang-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-menu a {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border-radius: 10px;
    font-size: 14px;
    color: var(--ink);
    transition: 0.2s;
}
.lang-menu a b {
    font-size: 11px;
    letter-spacing: 1px;
    color: var(--muted);
    width: 22px;
}
.lang-menu a:hover { background: rgba(30, 41, 59, 0.06); }
.lang-menu a.is-active { background: rgba(212, 175, 55, 0.14); }
.lang-menu a.is-active b { color: var(--gold); }

/* Yan menü dil pastilleri */
.side-langs {
    display: flex;
    gap: 8px;
    margin: 18px 0 6px;
}
.side-langs a {
    flex: 1;
    text-align: center;
    padding: 9px 0;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.75);
    transition: 0.2s;
}
.side-langs a:hover { background: var(--navy); color: #fff; }
.side-langs a.is-active {
    background: rgba(212, 175, 55, 0.18);
    border-color: rgba(212, 175, 55, 0.45);
    color: var(--navy);
}

@media (max-width: 980px) {
    .lang-btn { padding: 9px 12px; }
    .lang-btn span { display: none; }   /* mobilde yalnız küre ikonu + ok */
}

/* =========================================================
   RTL (Arapça) düzeltmeleri — html[dir="rtl"]
   Flex/grid yerleşimleri yönü kendiliğinden çevirir; yalnızca
   mutlak konumlu ikonlar ve fiziksel padding'ler elle düzeltilir.
   ========================================================= */
[dir="rtl"] .field > i { left: auto; right: 16px; }
[dir="rtl"] .field input,
[dir="rtl"] .field textarea { padding: 14px 44px 14px 16px; }
[dir="rtl"] .field .select-arrow { right: auto; left: 16px; }
[dir="rtl"] .lang-menu { right: auto; left: 0; }
[dir="rtl"] .card-side {
    border-right: 0;
    border-left: 1px solid rgba(255, 255, 255, 0.14);
}
[dir="rtl"] .text-link i,
[dir="rtl"] .card-btn2 i,
[dir="rtl"] .btn-gold i { transform: scaleX(-1); }
[dir="rtl"] .ph-crumbs .fa-angle-right { transform: scaleX(-1); }
/* RTL'de telefon numaraları LTR kalmalı (rakam sırası bozulmasın) */
[dir="rtl"] a[href^="tel:"],
[dir="rtl"] a[href^="tel:"] span { direction: ltr; unicode-bidi: embed; }
