/* =================================================================
   YÜCEL SPOT — Beyaz & Mavi Kurumsal Spot Teması
   Palet: Beyaz zemin, Mavi aksiyon, Antrasit/Siyah nötr
   Tipografi: Poppins (başlık) + Inter (gövde)
================================================================= */

:root {
    --white: #FFFFFF;
    --bg-soft: #F7F8FA;
    --bg-soft-2: #F1F3F6;

    --ink: #15181D;
    --text: #586173;
    --text-dim: #8A93A3;

    --accent: #2563EB;
    --accent-hover: #1D4ED8;
    --accent-light: rgba(37, 99, 235, 0.07);
    --accent-line: rgba(37, 99, 235, 0.25);

    --green-wa: #25D366;
    --green-hover: #1EBE5A;

    --border: rgba(15, 23, 42, 0.09);
    --border-strong: rgba(15, 23, 42, 0.16);

    --font-display: 'Poppins', 'Inter', sans-serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 22px;
    --r-xl: 30px;

    --shadow-soft: 0 20px 50px -20px rgba(15, 23, 42, 0.16), 0 2px 8px rgba(15, 23, 42, 0.04);
    --shadow-hover: 0 26px 55px -18px rgba(15, 23, 42, 0.2);
    --shadow-accent: 0 14px 30px -8px rgba(37, 99, 235, 0.35);

    --ease: 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 118px;
    scrollbar-gutter: stable;
    -webkit-text-size-adjust: 100%;
}

section[id] { scroll-margin-top: 118px; }

body {
    font-family: var(--font-body);
    font-size: 15.5px;
    line-height: 1.65;
    color: var(--text);
    background-color: var(--white);
    overflow-x: hidden;
    scrollbar-gutter: stable;
    -webkit-font-smoothing: antialiased;
}

body.no-scroll { overflow: hidden; }

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

h1, h2, h3, h4, h5 {
    font-family: var(--font-display);
    color: var(--ink);
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.015em;
}

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

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

.text-center { text-align: center; }

/* ── Reveal on scroll ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    font-family: var(--font-body);
    font-size: 14.5px;
    font-weight: 700;
    border-radius: var(--r-sm);
    border: 1px solid transparent;
    cursor: pointer;
    transition: all var(--ease);
    white-space: nowrap;
}

.btn-accent {
    background-color: var(--accent);
    color: var(--white);
    box-shadow: var(--shadow-accent);
}
.btn-accent:hover { background-color: var(--accent-hover); transform: translateY(-2px); }

.btn-ghost {
    background-color: var(--white);
    color: var(--ink);
    border-color: var(--border-strong);
}
.btn-ghost:hover { background-color: var(--ink); color: var(--white); border-color: var(--ink); transform: translateY(-2px); }

.btn-whatsapp {
    background-color: var(--green-wa);
    color: #072b13;
}
.btn-whatsapp:hover { background-color: var(--green-hover); transform: translateY(-2px); }

.btn-solid-white {
    background-color: var(--white);
    color: var(--accent);
    box-shadow: 0 10px 26px rgba(0,0,0,0.25);
}
.btn-solid-white:hover { background-color: var(--accent); color: var(--white); transform: translateY(-2px); }

.btn-call {
    background-color: var(--ink);
    color: var(--white);
    box-shadow: 0 14px 30px -8px rgba(21, 24, 29, 0.35);
}
.btn-call:hover { background-color: var(--accent); box-shadow: var(--shadow-accent); transform: translateY(-2px); }

.btn-lg { padding: 17px 36px; font-size: 15.5px; }
.btn-full { width: 100%; }

/* ── Section headings ── */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11.5px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 18px;
}
.eyebrow::before {
    content: '';
    width: 22px;
    height: 2px;
    background-color: var(--accent);
}

.sec-title {
    font-size: clamp(28px, 3.6vw, 44px);
    margin-bottom: 18px;
}

.sec-desc {
    font-size: 16px;
    color: var(--text);
    max-width: 620px;
}

.sec-head { margin-bottom: 56px; }
.sec-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.sec-head.center .sec-desc { margin-left: auto; margin-right: auto; }
.sec-head.center .eyebrow::before { display: none; }

section { position: relative; }

/* =================================================================
   HEADER
================================================================= */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    box-shadow: 0 4px 18px rgba(15, 23, 42, 0.07);
    transition: all var(--ease);
}

.site-header.scrolled {
    background-color: rgba(255, 255, 255, 0.98);
    box-shadow: 0 8px 28px rgba(15, 23, 42, 0.12);
}

.header-container {
    height: 94px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.header-logo { display: flex; align-items: center; transition: transform var(--ease); }
.header-logo:hover { transform: scale(1.04); }
.header-logo img { height: 74px; width: auto; }

.header-nav {
    display: flex;
    align-items: center;
    gap: 34px;
}

.nav-link {
    position: relative;
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: var(--text);
    padding: 8px 0;
    transition: color var(--ease);
}
.nav-link::after {
    content: '';
    position: absolute;
    left: 0; right: 0; bottom: 2px;
    height: 2px;
    border-radius: 2px;
    background-color: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
.nav-link:hover, .nav-link.active { color: var(--ink); }
.nav-link:hover::after, .nav-link.active::after { transform: scaleX(1); }

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

.phone-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    padding: 6px 20px 6px 6px;
    border-radius: var(--r-sm);
    background: linear-gradient(135deg, rgba(37,99,235,0.12), rgba(37,99,235,0.05));
    border: 1.5px solid var(--accent-line);
    box-shadow: 0 4px 14px rgba(37,99,235,0.08);
    transition: all var(--ease);
}
.phone-link-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(37,99,235,0.35);
    transition: all var(--ease);
}
.phone-link:hover { background: var(--accent); border-color: var(--accent); color: var(--white); box-shadow: var(--shadow-accent); }
.phone-link:hover .phone-link-icon { background-color: var(--white); color: var(--accent); }

.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background-color: var(--bg-soft);
    border: 1px solid var(--border-strong);
    border-radius: var(--r-sm);
    cursor: pointer;
    z-index: 1010;
}
.menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    margin: 0 auto;
    background-color: var(--ink);
    border-radius: 2px;
    transition: all var(--ease);
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--ease), visibility var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}
.mobile-menu.open { opacity: 1; visibility: visible; }

.mobile-menu-wrapper {
    width: 100%;
    max-width: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 36px;
}

.mobile-menu-logo {
    height: 58px;
    width: auto;
    opacity: 0;
    transform: translateY(-10px);
    transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.mobile-menu.open .mobile-menu-logo { opacity: 1; transform: translateY(0); }

.mobile-nav { display: flex; flex-direction: column; align-items: center; gap: 10px; width: 100%; }

.mobile-link {
    font-family: var(--font-display);
    font-size: 24px;
    font-weight: 700;
    color: var(--ink);
    padding: 10px 24px;
    border-radius: 100px;
    opacity: 0;
    transform: translateY(16px);
    transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
    text-align: center;
    width: 100%;
}
.mobile-menu.open .mobile-link { opacity: 1; transform: translateY(0); }
.mobile-menu.open .mobile-link:nth-child(1) { transition-delay: .05s; }
.mobile-menu.open .mobile-link:nth-child(2) { transition-delay: .1s; }
.mobile-menu.open .mobile-link:nth-child(3) { transition-delay: .15s; }
.mobile-menu.open .mobile-link:nth-child(4) { transition-delay: .2s; }
.mobile-menu.open .mobile-link:nth-child(5) { transition-delay: .25s; }
.mobile-link:hover, .mobile-link:active { color: var(--accent); background-color: var(--accent-light); }

.mobile-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

/* =================================================================
   PAGE HERO (iç sayfalar için küçük banner)
================================================================= */
.page-hero {
    padding: 174px 0 64px;
    background-color: var(--white);
    background-image:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: 100% 100%, 42px 42px, 42px 42px;
    text-align: center;
    border-bottom: 1px solid var(--border);
}
.page-hero-crumb {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dim);
    margin-bottom: 16px;
}
.page-hero-crumb a { color: var(--accent); }
.page-hero-crumb a:hover { color: var(--accent-hover); }
.page-hero .eyebrow { justify-content: center; }
.page-hero .eyebrow::before { display: none; }
.page-hero h1 {
    font-size: clamp(30px, 4.2vw, 46px);
    margin-bottom: 16px;
}
.page-hero p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
}

/* =================================================================
   HERO
================================================================= */
.hero {
    padding-top: 162px;
    padding-bottom: 100px;
    background-color: var(--white);
    background-image:
        radial-gradient(circle at top right, rgba(37, 99, 235, 0.05) 0%, transparent 50%),
        linear-gradient(rgba(15, 23, 42, 0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 23, 42, 0.035) 1px, transparent 1px);
    background-size: 100% 100%, 42px 42px, 42px 42px;
    overflow: hidden;
}

.hero-container {
    display: grid;
    grid-template-columns: 1.25fr 0.75fr;
    gap: 40px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 9px 18px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: 100px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 26px;
    box-shadow: 0 6px 16px rgba(15, 23, 42, 0.04);
}
.live-dot {
    width: 8px; height: 8px;
    background-color: var(--green-wa);
    border-radius: 50%;
    position: relative;
}
.live-dot::after {
    content: ''; position: absolute; inset: -4px;
    border: 2px solid var(--green-wa); border-radius: 50%;
    animation: ring 2s infinite;
}
@keyframes ring { 0% { transform: scale(0.7); opacity: 0.9; } 100% { transform: scale(2.4); opacity: 0; } }

.hero-title {
    font-size: clamp(32px, 4.6vw, 52px);
    margin-bottom: 22px;
    max-width: 680px;
}
.hero-title .accent { color: var(--accent); }

.hero-sub {
    font-size: 16.5px;
    line-height: 1.7;
    color: var(--text);
    max-width: 540px;
    margin-bottom: 32px;
}

.hero-points { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 40px; }
.point-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px 8px 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--ink);
    background-color: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 100px;
    transition: all var(--ease);
}
.point-item:hover {
    background-color: var(--white);
    border-color: var(--accent-line);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}
.point-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(37,99,235,0.28);
}

.hero-buttons { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.hero-buttons .btn { padding: 14px 22px; font-size: 13.5px; }

/* Hero video card */
.hero-video-pane { display: flex; justify-content: center; }
.hero-media-wrapper {
    position: relative;
    padding: 20px;
    width: 100%;
    max-width: 440px;
}
.video-card {
    width: 100%;
    aspect-ratio: 3 / 4;
    border-radius: var(--r-xl);
    overflow: hidden;
    position: relative;
    border: 9px solid var(--white);
    box-shadow: var(--shadow-soft), 0 0 0 1px var(--border);
}
.video-card video { width: 100%; height: 100%; object-fit: cover; }

.sound-toggle-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background-color: rgba(21,24,29,0.55);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.25);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all var(--ease);
}
.sound-toggle-btn:hover { background-color: var(--accent); border-color: var(--accent); transform: scale(1.06); }

.video-badge-floating {
    position: absolute;
    top: 20px; left: 20px;
    padding: 8px 16px;
    background-color: rgba(255,255,255,0.92);
    backdrop-filter: blur(10px);
    border-radius: 99px;
    font-size: 11px;
    font-weight: 800;
    color: var(--ink);
    display: flex; align-items: center; gap: 8px;
    box-shadow: 0 4px 14px rgba(15,23,42,0.08);
    z-index: 5;
}

.floating-badge {
    position: absolute;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: var(--shadow-soft);
    z-index: 10;
    width: 240px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.floating-badge:hover { transform: translateY(-4px) scale(1.02); box-shadow: var(--shadow-hover); }

.badge-icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(37,99,235,0.28);
}
.badge-text-col { display: flex; flex-direction: column; }
.badge-title { font-size: 12px; font-weight: 800; color: var(--ink); line-height: 1.2; }
.badge-sub { font-size: 10px; font-weight: 600; color: var(--text-dim); line-height: 1.2; margin-top: 2px; }

.badge-top-left { top: 6%; left: -30px; animation: float-badge 6s ease-in-out infinite; }
.badge-mid-right { top: 45%; right: -30px; animation: float-badge 6s ease-in-out infinite 1.5s; }
.badge-bottom-left { bottom: 6%; left: -30px; animation: float-badge 6s ease-in-out infinite 3s; }
@keyframes float-badge { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* =================================================================
   TICKER
================================================================= */
.ticker {
    background-color: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 22px 0;
    overflow: hidden;
}
.ticker-track { display: flex; }
.ticker-content {
    display: flex;
    align-items: center;
    white-space: nowrap;
    animation: scroll-x 20s linear infinite;
}
.ticker-content span {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--text-dim);
    padding: 0 22px;
}
.ticker-content .dot { color: var(--accent); }
.ticker-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 28px;
}
.ticker-logo img {
    height: 32px;
    width: auto;
    max-width: 130px;
    object-fit: contain;
}
.ticker-logo-shaded {
    background: linear-gradient(135deg, #1B3A63, #2C5A94);
    border-radius: var(--r-md);
    padding: 10px 22px;
    box-shadow: 0 6px 16px rgba(27,58,99,0.25);
}
@keyframes scroll-x { 0% { transform: translate3d(0,0,0); } 100% { transform: translate3d(-33.3333%,0,0); } }

/* =================================================================
   TWO-WAY SECTION
================================================================= */
.twoway { padding: 110px 0; }
.twoway-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}
.twoway-panel {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    padding: 52px 44px;
    min-height: 460px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
}
.twoway-panel img {
    position: absolute;
    inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    z-index: -2;
}
.twoway-panel::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
}
.twoway-panel.sell::before {
    background: linear-gradient(0deg, rgba(21,24,29,0.95) 15%, rgba(37,99,235,0.3) 100%), linear-gradient(180deg, rgba(21,24,29,0.35), rgba(21,24,29,0.7));
}
.twoway-panel.buy::before {
    background: linear-gradient(0deg, rgba(21,24,29,0.95) 15%, rgba(21,24,29,0.55) 100%), linear-gradient(180deg, rgba(21,24,29,0.35), rgba(21,24,29,0.7));
}
.twoway-tag {
    display: inline-flex;
    align-self: flex-start;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 0.12em;
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}
.twoway-panel.sell .twoway-tag { background-color: rgba(37,99,235,0.2); color: #93C5FD; }
.twoway-panel.buy .twoway-tag { background-color: rgba(255,255,255,0.15); color: var(--white); }

.twoway-panel h3 { color: var(--white); font-size: clamp(24px, 2.6vw, 32px); margin-bottom: 14px; }
.twoway-panel p { color: rgba(255,255,255,0.75); font-size: 15px; margin-bottom: 24px; max-width: 420px; }

.twoway-list { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 30px; }
.twoway-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; font-weight: 600; color: var(--white); }
.twoway-panel.sell .twoway-list li::before { content: '✓'; color: #93C5FD; font-weight: 800; }
.twoway-panel.buy .twoway-list li::before { content: '✓'; color: var(--white); font-weight: 800; }

/* =================================================================
   CATEGORY GRID
================================================================= */
.categories { padding: 110px 0; background-color: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.cat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.cat-card {
    position: relative;
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 4 / 3.4;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: transform var(--ease), box-shadow var(--ease);
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.cat-card img {
    position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.7s var(--ease);
}
.cat-card:hover img { transform: scale(1.08); }
.cat-card::after {
    content: '';
    position: absolute; inset: 0;
    z-index: 1;
    background: linear-gradient(0deg, rgba(15,17,20,0.72) 0%, rgba(15,17,20,0.5) 30%, rgba(15,17,20,0) 68%);
}
.cat-card-body {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 26px;
    z-index: 2;
}
.cat-card h3 { color: var(--white); font-size: 19px; margin-bottom: 8px; text-shadow: 0 2px 10px rgba(0,0,0,0.7); }
.cat-card p { font-size: 13.5px; color: rgba(255,255,255,0.85); text-shadow: 0 1px 8px rgba(0,0,0,0.7); }

/* =================================================================
   ABOUT
================================================================= */
.about { padding: 110px 0; }
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}
.about-media { position: relative; }
.about-media-frame {
    border-radius: var(--r-xl);
    overflow: hidden;
    aspect-ratio: 4 / 3.3;
    border: 1px solid var(--border-strong);
    box-shadow: var(--shadow-soft);
}
.about-media-frame img { width: 100%; height: 100%; object-fit: cover; }
.about-exp-badge {
    position: absolute;
    bottom: -24px; left: -24px;
    background-color: var(--ink);
    color: var(--white);
    padding: 22px 26px;
    border-radius: var(--r-md);
    box-shadow: 0 20px 40px rgba(15,23,42,0.22);
    max-width: 200px;
}
.exp-num { font-family: var(--font-display); font-size: 38px; font-weight: 700; line-height: 1; display: block; margin-bottom: 4px; color: var(--accent); }
.exp-label { font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.05em; opacity: 0.85; }

.about-copy p { margin-bottom: 18px; font-size: 15.5px; line-height: 1.75; }
.about-copy strong { color: var(--ink); }

.about-ticks { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 28px 0 36px; }
.about-tick {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    background-color: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: var(--r-md);
    transition: all var(--ease);
}
.about-tick:hover {
    background-color: var(--white);
    border-color: var(--accent-line);
    box-shadow: var(--shadow-soft);
    transform: translateY(-2px);
}
.tick-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 14px rgba(37, 99, 235, 0.25);
}
.tick-text { font-size: 13.5px; font-weight: 700; color: var(--ink); }

/* =================================================================
   SEVKİYAT AĞI / TÜRKİYE HARİTASI
================================================================= */
.reach-map { padding: 100px 0; }
.reach-map-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-soft);
    padding: 40px 32px 28px;
}
.turkey-map { width: 100%; height: auto; overflow: visible; }

.tr-provinces path {
    fill: #DBE0E7;
    stroke: #FFFFFF;
    stroke-width: 1;
}
.tr-denizli { fill: var(--accent); stroke: var(--white); stroke-width: 1.2; }

.route-line {
    fill: none;
    stroke: var(--ink);
    stroke-width: 1.4;
    stroke-linecap: round;
    stroke-dasharray: 5 4;
    opacity: 0.55;
    color: var(--ink);
    animation: route-flow 2.4s linear infinite;
}
@keyframes route-flow { to { stroke-dashoffset: -18; } }

.city-dot { fill: var(--ink); stroke: var(--white); stroke-width: 1.5; }

.tr-denizli-pin { fill: var(--accent); stroke: var(--white); stroke-width: 2; }
.tr-denizli-pin-pulse {
    fill: none;
    stroke: var(--accent);
    stroke-width: 2;
    opacity: 0.6;
    transform-origin: center;
    transform-box: fill-box;
    animation: pin-pulse 2.2s ease-out infinite;
}
@keyframes pin-pulse {
    0% { transform: scale(1); opacity: 0.6; }
    100% { transform: scale(2.4); opacity: 0; }
}
.tr-denizli-label {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 700;
    fill: var(--accent);
}

.reach-map-legend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
    margin-top: 20px;
    flex-wrap: wrap;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--text);
}
.reach-map-legend span.legend-dot {
    display: inline-block;
    width: 10px; height: 10px;
    border-radius: 50%;
    margin-right: 8px;
    vertical-align: middle;
}
.legend-dot-origin { background-color: var(--accent); }
.legend-dot-city { background-color: var(--ink); }

/* =================================================================
   GALLERY / VİTRİN
================================================================= */
.gallery { padding: 110px 0; background-color: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }

.gallery-shelf {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-xl);
    box-shadow: var(--shadow-soft);
    padding: 36px 36px 44px;
}

.filter-tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: var(--bg-soft);
    border: 1px solid var(--border);
    padding: 6px;
    border-radius: 100px;
    gap: 4px;
    margin: 0 auto 36px;
    width: fit-content;
}
.filter-btn {
    padding: 10px 20px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    background: none;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all var(--ease);
    white-space: nowrap;
}
.filter-btn:hover { color: var(--ink); }
.filter-btn.active { background-color: var(--accent); color: var(--white); box-shadow: 0 8px 16px rgba(37,99,235,0.25); }

.bento-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 200px;
    gap: 18px;
}
.bento-item {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    border: 1px solid var(--border);
    background-color: var(--bg-soft);
    transition: transform var(--ease), box-shadow var(--ease), border-color var(--ease);
}
.bento-item:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); border-color: var(--accent-line); z-index: 3; }
.bento-item.tall { grid-row: span 2; }
.bento-item img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform 0.6s var(--ease);
}
.bento-item:hover img { transform: scale(1.08); }
.bento-item::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(0deg, rgba(21,24,29,0.85) 0%, transparent 45%);
    opacity: 0.7;
    transition: opacity var(--ease);
}
.bento-item:hover::after { opacity: 0.95; }
.bento-zoom {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%) scale(0.6);
    width: 44px; height: 44px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.18);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.5);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    opacity: 0;
    transition: all var(--ease);
}
.bento-item:hover .bento-zoom { opacity: 1; transform: translate(-50%, -50%) scale(1); }
.bento-tag {
    position: absolute;
    left: 14px; bottom: 12px;
    z-index: 2;
    font-size: 11px;
    font-weight: 700;
    color: var(--white);
    background-color: rgba(255,255,255,0.15);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 5px 11px;
    border-radius: 100px;
}
.bento-stock {
    position: absolute;
    top: 12px; right: 12px;
    z-index: 2;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.05em;
    color: var(--white);
    background-color: var(--ink);
    padding: 5px 10px;
    border-radius: 6px;
}

.gallery-more { text-align: center; margin-top: 48px; }

/* =================================================================
   DEPOT
================================================================= */
.depot {
    padding: 110px 0;
    background-color: var(--bg-soft);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}
.depot-grid {
    display: grid;
    grid-template-columns: 0.9fr 1.1fr;
    gap: 64px;
    align-items: center;
}
.depot-checks { display: flex; flex-direction: column; gap: 18px; margin-top: 8px; }
.depot-check-item { display: flex; align-items: center; gap: 14px; color: var(--ink); font-size: 15px; font-weight: 600; }
.depot-check-icon {
    width: 26px; height: 26px;
    background-color: var(--accent-light);
    color: var(--accent);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; font-weight: 800;
    flex-shrink: 0;
    border: 1px solid var(--accent-line);
}
.depot-video-card {
    position: relative;
    aspect-ratio: 16 / 9.5;
    border-radius: var(--r-xl);
    overflow: hidden;
    background-color: #000;
    box-shadow: var(--shadow-soft);
    border: 6px solid var(--white);
}
.depot-video-card video { width: 100%; height: 100%; object-fit: cover; }
.depot-video-card.playing video { object-fit: contain; }
.play-btn {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 76px; height: 76px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--white);
    border: none;
    cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-accent);
    transition: transform var(--ease), background-color var(--ease);
}
.play-btn:hover { background-color: var(--accent-hover); transform: translate(-50%,-50%) scale(1.08); }
.play-btn svg { margin-left: 3px; }

/* =================================================================
   FEATURES / STATS
================================================================= */
.features { padding: 100px 0; }
.features-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.feature-card {
    padding: 40px 30px;
    border-radius: var(--r-lg);
    background-color: var(--white);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-soft);
    transition: all var(--ease);
    text-align: center;
}
.feature-card:hover { border-color: var(--accent-line); transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.feature-num {
    font-family: var(--font-display);
    font-size: 42px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 6px;
}
.feature-card h4 { font-size: 15px; color: var(--ink); margin-bottom: 10px; }
.feature-card p { font-size: 13px; color: var(--text); }

.value-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background-color: var(--accent);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
    box-shadow: 0 8px 20px rgba(37, 99, 235, 0.28);
}

/* =================================================================
   FAQ
================================================================= */
.faq { padding: 100px 0; background-color: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.faq-list { max-width: 760px; margin: 0 auto; display: flex; flex-direction: column; gap: 14px; }
.faq-item {
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    padding: 4px 26px;
    box-shadow: var(--shadow-soft);
    transition: border-color var(--ease);
}
.faq-item[open] { border-color: var(--accent-line); }
.faq-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 0;
    font-weight: 700;
    color: var(--ink);
    font-size: 15.5px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background-color: var(--accent-light);
    color: var(--accent);
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform var(--ease);
}
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-item p { padding-bottom: 22px; color: var(--text); font-size: 14.5px; line-height: 1.7; }

/* =================================================================
   STEPS
================================================================= */
.steps { padding: 110px 0; background-color: var(--bg-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.steps-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: stretch; }
.steps-track { display: flex; flex-direction: column; gap: 20px; position: relative; }
.steps-track::before {
    content: '';
    position: absolute;
    left: 52px;
    top: 52px;
    bottom: 52px;
    width: 2px;
    background-image: linear-gradient(var(--border-strong) 60%, transparent 40%);
    background-size: 2px 10px;
    z-index: 1;
}
.step-row {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 22px;
    padding: 26px;
    background-color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-soft);
    transition: all var(--ease);
}
.step-row:hover { border-color: var(--accent); transform: translateY(-3px); box-shadow: var(--shadow-hover); }
.step-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), #1E40AF);
    color: var(--white);
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    flex-shrink: 0;
    box-shadow: 0 8px 20px rgba(37,99,235,0.3);
    transition: transform var(--ease);
}
.step-row:hover .step-num { transform: scale(1.08); }
.step-row h4 { font-size: 17px; margin-bottom: 6px; }
.step-row p { font-size: 14px; color: var(--text); }

.steps-video-card {
    position: relative;
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-soft);
    background-color: #000;
    min-height: 320px;
}
.steps-video-card video { width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0; }
.steps-video-caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    z-index: 2;
    padding: 22px;
    background: linear-gradient(0deg, rgba(0,0,0,0.75), transparent);
}
.steps-video-caption span { display: flex; align-items: center; gap: 8px; font-size: 12.5px; font-weight: 700; color: var(--white); }

/* =================================================================
   CONTACT
================================================================= */
.contact { padding: 110px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.contact-cta-card {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent) 0%, #1E3A8A 100%);
    border-radius: var(--r-xl);
    padding: 40px;
    margin-bottom: 28px;
    box-shadow: var(--shadow-accent);
}
.cta-watermark {
    position: absolute;
    top: -20px;
    right: -20px;
    color: rgba(255,255,255,0.08);
    pointer-events: none;
}
.cta-live-tag {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    background-color: rgba(255,255,255,0.14);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 7px 16px;
    border-radius: 100px;
    margin-bottom: 18px;
}
.contact-cta-card h3 { position: relative; color: var(--white); font-size: 23px; margin-bottom: 10px; }
.contact-cta-card p { position: relative; color: rgba(255,255,255,0.85); font-size: 14.5px; margin-bottom: 26px; }
.contact-cta-buttons { position: relative; display: flex; gap: 12px; flex-wrap: wrap; }

.contact-info-list { display: flex; flex-direction: column; gap: 20px; }
.contact-info-row { display: flex; align-items: flex-start; gap: 16px; }
.contact-info-icon {
    width: 46px; height: 46px;
    border-radius: var(--r-md);
    background-color: var(--bg-soft);
    border: 1px solid var(--border);
    color: var(--accent);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.contact-info-row h5 { font-size: 14px; color: var(--ink); margin-bottom: 4px; }
.contact-info-row p { font-size: 14px; color: var(--text); }
.contact-info-row a { color: var(--accent); font-weight: 700; }
.contact-info-row a:hover { color: var(--accent-hover); }

.contact-map {
    border-radius: var(--r-xl);
    overflow: hidden;
    border: 6px solid var(--white);
    box-shadow: var(--shadow-soft);
    min-height: 440px;
    height: 100%;
}
.contact-map iframe { display: block; width: 100%; height: 100%; }

/* =================================================================
   FOOTER
================================================================= */
.site-footer { background-color: var(--ink); padding: 64px 0 28px; }
.footer-top { display: flex; justify-content: space-between; gap: 40px; flex-wrap: wrap; margin-bottom: 40px; }
.footer-brand img { height: 50px; margin-bottom: 14px; }
.footer-brand p { font-size: 13.5px; color: rgba(255,255,255,0.55); max-width: 280px; }
.footer-links { display: flex; gap: 60px; flex-wrap: wrap; }
.footer-col h5 { font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white); margin-bottom: 16px; }
.footer-col a { display: block; font-size: 14px; color: rgba(255,255,255,0.6); margin-bottom: 10px; }
.footer-col a:hover { color: var(--accent); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.4);
}

/* =================================================================
   FLOATING / MOBILE STICKY BAR
================================================================= */
.floating-whatsapp {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 58px; height: 58px;
    background-color: var(--green-wa);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 10px 26px rgba(37, 211, 102, 0.4);
    z-index: 900;
    animation: wa-pulse 3s infinite;
}
@keyframes wa-pulse {
    0%, 100% { box-shadow: 0 10px 26px rgba(37,211,102,0.4); }
    50% { box-shadow: 0 10px 30px rgba(37,211,102,0.55), 0 0 0 12px rgba(37,211,102,0.12); }
}
.floating-whatsapp:hover { background-color: var(--green-hover); }
.floating-whatsapp svg { color: #072b13; }

.mobile-fab {
    display: none;
    position: fixed;
    bottom: max(20px, env(safe-area-inset-bottom));
    width: 56px;
    height: 56px;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    z-index: 950;
}
.mobile-fab-whatsapp {
    left: 18px;
    background-color: var(--green-wa);
    color: #072b13;
    box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
}
.mobile-fab-whatsapp .fab-ripple { border-color: var(--green-wa); }
.mobile-fab-call {
    right: 18px;
    background-color: var(--accent);
    color: var(--white);
    box-shadow: 0 10px 24px rgba(37, 99, 235, 0.4);
}
.mobile-fab-call .fab-ripple { border-color: var(--accent); }
.fab-ripple {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid currentColor;
    animation: fab-ripple-anim 2s ease-out infinite;
}
.fab-ripple-delay { animation-delay: 1s; }
@keyframes fab-ripple-anim {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(1.9); opacity: 0; }
}

/* =================================================================
   GLIGHTBOX TWEAK
================================================================= */
.gslide-description { font-family: var(--font-body) !important; }

/* =================================================================
   RESPONSIVE
================================================================= */
@media (max-width: 1200px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .bento-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1080px) {
    .header-nav, .header-actions { display: none; }
    .menu-toggle { display: flex; }
    .header-container { position: relative; justify-content: flex-end; }
    .header-logo { position: absolute; left: 50%; top: 50%; transform: translate(-50%, -50%); }
    .header-logo:hover { transform: translate(-50%, -50%) scale(1.04); }
}

@media (max-width: 480px) {
    .header-container { height: 76px; }
    .header-logo img { height: 48px; }
}

@media (max-width: 992px) {
    .hero-container { grid-template-columns: 1fr; gap: 40px; }
    .hero-text-pane { text-align: center; }
    .hero-badge { margin-left: auto; margin-right: auto; }
    .hero-title { margin-left: auto; margin-right: auto; }
    .hero-sub { margin-left: auto; margin-right: auto; }
    .hero-points { align-items: center; }
    .hero-buttons { justify-content: center; }
    .twoway-grid, .cat-grid { grid-template-columns: 1fr; }
    .cat-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 56px; }
    .about-media-frame { max-width: 560px; margin: 0 auto; }
    .about-exp-badge { left: 50%; transform: translateX(-50%); bottom: -20px; }
    .depot-grid, .contact-grid, .steps-grid { grid-template-columns: 1fr; }
    .steps-video-card { min-height: 240px; }
    .filter-tabs { flex-wrap: wrap; }
    .bento-grid { grid-template-columns: repeat(2, 1fr); }
    .gallery-shelf { padding: 24px 20px 32px; }
}

@media (max-width: 768px) {
    .hero { padding-top: 100px; padding-bottom: 60px; }
    .page-hero { padding: 120px 0 48px; }
    .hero-buttons { flex-direction: column; align-items: stretch; }
    .hero-buttons .btn { width: 100%; }
    .floating-badge { display: none; }
    .hero-media-wrapper { padding: 0; }
    .hero-points { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; }
    .point-item { width: 100%; white-space: normal; font-size: 12px; padding: 10px 12px 10px 8px; }
    .point-icon { width: 26px; height: 26px; }
    .twoway, .categories, .about, .gallery, .depot, .features, .steps, .contact, .reach-map { padding: 64px 0; }
    .cat-grid { grid-template-columns: 1fr; }
    .features-grid { grid-template-columns: 1fr 1fr; }
    .about-ticks { grid-template-columns: 1fr; }
    .footer-top { flex-direction: column; gap: 32px; }
    .footer-links { gap: 32px; }
    .contact-map { min-height: 280px; }
    .floating-whatsapp { display: none; }
    .mobile-fab { display: flex; }
    body { padding-bottom: 90px; }
    .reach-map-wrapper { padding: 28px 16px 20px; }
    .tr-denizli-label { display: none; }
    .reach-map-legend { gap: 16px; font-size: 11.5px; }
}
