/* Frontend Stiller - beIN Connect / Digitürk TV */

:root {
    --primary-color: #e30613;
    --secondary-color: #c10510;
    --accent-color: #ff9800;
    --dark-bg: #1a1a1a;
    --darker-bg: #0d0d0d;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-white: #ffffff;
    --bg-light: #f8f8f8;
    --border-color: #e0e0e0;
    --shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    --shadow-hover: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    /* padding-top: JS tarafından dinamik olarak ayarlanır (initHeaderSystem) */
    padding-top: 128px; /* topbar(44px) + header(84px) — JS devreye girmeden önce default */
}

body.topbar-closed,
body.topbar-hidden,
body.no-topbar {
    /* JS padding-top'u override eder; bu kurallar fallback */
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
}

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

a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s;
}

a:hover {
    color: var(--secondary-color);
}

/* Top Bar - Mor Duyuru */
.topbar {
    background: rgb(92, 45, 145);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px 30px;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
    gap: 20px;
    transform: translateY(0);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}

/* Scroll ile gizlenince: smooth yukarı kayar */
.topbar.scroll-hidden {
    transform: translateY(-100%);
    pointer-events: none;
    /* transition: base .topbar kuralındaki 0.35s değerini kullanır */
}

.topbar.hidden {
    display: none;
    pointer-events: none;
}

.topbar-text {
    flex: 1;
    text-align: center;
}

.topbar-text-description {
    color: white;
    font-size: 15px;
    font-weight: 500;
}

.topbar-text-description p {
    margin: 0;
    display: inline;
}

.topbar-text-description a {
    color: white;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s;
}

.topbar-text-description a:hover {
    opacity: 0.8;
}

.topbar-closeIcon {
    display: flex;
    align-items: center;
}

.topbar-closeIcon .close-banner {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 18px;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 4px;
    transition: all 0.3s;
    font-weight: bold;
}

.topbar-closeIcon .close-banner:hover {
    background: rgba(255, 255, 255, 0.25);
}

/* ─── Header — Sabit Konumlandırma ─── */
header {
    position: fixed;
    top: 0;     /* JS ilk yüklenmeden önce default; initHeaderSystem hemen override eder */
    left: 0;
    right: 0;
    z-index: 999;
    background: var(--dark-bg);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    /* transition: JS tarafından dinamik set edilir */
}

/* topbar.scroll-hidden olunca CSS de header'a top:0 ver (JS backup) */
body.topbar-scroll-hidden header {
    top: 0;
}

.header-3d-wrapper {
    background: var(--dark-bg);
    /* border-top kaldırıldı: topbar açıkken çift mor çubuk görünüyordu */
}

/* ===== NAVBAR ===== */
.navbar {
    max-width: 100%;
    margin: 0 auto;
    padding: 0 30px;
    height: 84px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.logo {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.logo a { display: flex; align-items: center; }

.logo img {
    height: 44px;
    width: auto;
    object-fit: contain;
}

/* ---- Desktop Nav ---- */
.desktop-nav {
    display: flex;
    align-items: center;
    gap: 2px;
    list-style: none;
    flex: 1;
    justify-content: flex-end;
}

.nav-item { position: relative; }

.nav-link,
.nav-trigger {
    color: rgba(255,255,255,0.88);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 14.5px;
    padding: 10px 16px;
    border-radius: 6px;
    transition: all 0.25s;
    display: flex;
    align-items: center;
    gap: 5px;
    white-space: nowrap;
    cursor: pointer;
    text-decoration: none;
    background: none;
    border: none;
}

.nav-link:hover,
.nav-trigger:hover,
.nav-item:hover > .nav-link,
.nav-item:hover > .nav-trigger {
    color: #ffffff;
    background: rgba(255,255,255,0.10);
}

.nav-trigger .nav-arrow {
    width: 10px;
    height: 10px;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-2px);
    transition: transform 0.25s;
    flex-shrink: 0;
    margin-top: 1px;
}

.nav-item:hover > .nav-trigger .nav-arrow {
    transform: rotate(-135deg) translateY(1px);
}

/* ---- Dropdown ---- */
.nav-dropdown {
    position: absolute;
    top: calc(100% + 6px);
    left: 50%;
    min-width: 220px;
    background: #1a1a2e;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0,0,0,0.55);
    padding: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-50%) translateY(-8px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s;
    z-index: 1100;
    pointer-events: none;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 10px;
}

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

.nav-dropdown a {
    display: block;
    color: rgba(255,255,255,0.82);
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 500;
    padding: 10px 14px;
    border-radius: 7px;
    transition: all 0.2s;
    text-decoration: none;
    white-space: nowrap;
}

.nav-dropdown a:hover {
    color: #ffffff;
    background: var(--primary-color);
    transform: translateX(3px);
}

/* ---- Fiyat gösteren menü öğeleri (paket_data) ---- */
.nav-price-item {
    display: block;
    padding: 8px 14px;
    border-radius: 7px;
    cursor: pointer;
    transition: all 0.2s;
    text-decoration: none;
}
.nav-price-item:hover {
    background: rgba(99,102,241,0.15);
    transform: translateX(3px);
}
.nav-price-item .npi-title {
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    font-size: 13.5px;
    font-weight: 600;
    margin-bottom: 2px;
}
.nav-price-item .npi-prices {
    display: flex;
    align-items: center;
    gap: 4px;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
}
.nav-price-item .npi-monthly {
    color: #34d399;
    font-weight: 700;
}
.nav-price-item .npi-yearly {
    color: #f59e0b;
    font-weight: 700;
}
.nav-price-item .npi-sep {
    color: rgba(255,255,255,0.25);
    font-size: 14px;
}
.nav-price-item small {
    font-weight: 400;
    font-size: 10px;
    opacity: 0.7;
}
/* Mobil fiyat öğeleri */
.mobile-nav-sub.nav-price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 20px;
    background: rgba(255,255,255,0.03);
    border-left: 3px solid rgba(52,211,153,0.3);
}
.mobile-nav-sub.nav-price-item:hover {
    background: rgba(99,102,241,0.1);
}
.mobile-nav-sub.nav-price-item .npi-prices {
    gap: 3px;
    font-size: 11px;
}
.mobile-nav-sub.nav-price-item .npi-monthly { font-size: 13px; }
.mobile-nav-sub.nav-price-item .npi-yearly  { font-size: 12px; }

/* "Hemen Başvur" butonu */
.nav-btn {
    background: var(--primary-color) !important;
    color: #ffffff !important;
    border-radius: 8px !important;
    padding: 10px 20px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px;
    border: none;
    margin-left: 8px;
}

.nav-btn:hover {
    background: #b80411 !important;
    box-shadow: 0 4px 16px rgba(227,6,19,0.45);
    transform: translateY(-1px);
}

/* ---- Hamburger ---- */
.hamburger-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    background: rgba(255,255,255,0.08);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    padding: 10px 8px;
    transition: background 0.3s;
}

.hamburger-btn:hover { background: rgba(255,255,255,0.15); }

.hamburger-btn span {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-btn.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger-btn.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Mobile Menu ---- */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #0d0d0d;
    z-index: 9000;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    overflow-y: auto;
}

.mobile-menu.open { transform: translateX(0); }

.mobile-menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 8999;
    backdrop-filter: blur(3px);
}

.mobile-menu-overlay.open { display: block; }

.mobile-menu-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.mobile-menu-logo { height: 36px; width: auto; }

.mobile-menu-close {
    background: rgba(255,255,255,0.1);
    border: none;
    color: white;
    font-size: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mobile-menu-close:hover { background: var(--primary-color); }

.mobile-nav { display: flex; flex-direction: column; padding: 10px 0; flex: 1; }

.mobile-nav-link {
    color: rgba(255,255,255,0.85);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 17px;
    padding: 18px 28px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    transition: all 0.25s;
    display: block;
}

.mobile-nav-link:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.05);
    padding-left: 34px;
}

.mobile-nav-section {
    padding: 12px 28px 4px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255,255,255,0.35);
    font-family: 'Montserrat', sans-serif;
}

.mobile-nav-sub {
    color: rgba(255,255,255,0.65);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
    font-size: 15px;
    padding: 13px 28px 13px 44px;
    text-decoration: none;
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: all 0.25s;
    display: block;
}

.mobile-nav-sub::before { content: '› '; color: var(--primary-color); font-weight: 700; }

.mobile-nav-sub:hover {
    color: #ffffff;
    background: rgba(255,255,255,0.04);
}

.mobile-nav-btn {
    margin: 20px 24px;
    display: block;
    background: var(--primary-color);
    color: #fff;
    text-align: center;
    padding: 16px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: background 0.25s;
}

.mobile-nav-btn:hover { background: var(--secondary-color); color: #fff; }

/* intermediate screen responsive nav */
@media (min-width: 1201px) and (max-width: 1366px) {
    .navbar {
        padding: 0 15px !important;
    }
    .desktop-nav {
        gap: 0px !important;
    }
    .nav-link,
    .nav-trigger {
        font-size: 13px !important;
        padding: 8px 10px !important;
    }
}

@media (max-width: 1200px) {
    .desktop-nav { display: none; }
    .hamburger-btn { display: flex; }
    .mobile-menu { display: flex; }
}

/* Banner */
.banner {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 14px 20px;
    text-align: center;
    box-shadow: inset 0 -2px 4px rgba(0, 0, 0, 0.2);
}

.banner-content {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.banner-text {
    flex: 1;
    font-weight: 600;
    font-size: 15px;
    font-family: 'Montserrat', sans-serif;
}

.close-banner {
    background: rgba(255, 255, 255, 0.15);
    border: none;
    color: white;
    font-size: 22px;
    cursor: pointer;
    padding: 4px 12px;
    opacity: 0.9;
    transition: all 0.3s;
    border-radius: 4px;
}

.close-banner:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.25);
}

.banner.hidden {
    display: none;
}

/* ============================================================
   Slider — Basit ve Sorunsuz
   MASAÜSTÜ : 1920 × 600 px (yatay banner)
   MOBİL    : 780 × 1170 px (dikey banner)
   ============================================================ */

/* --- Yatay scroll engeli (mobilde sağa-sola kayma YOK) --- */
html {
    overflow-x: hidden;
}

.slider {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}

/* Mobil slider — masaüstünde GİZLİ */
.slider-mobile {
    display: none;
}

/* --- Slider Container --- */
.slider-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #000;
}

/* Masaüstü: 1920/500 standart banner oranı */
.slider-desktop .slider-container {
    width: 100%;
    aspect-ratio: 1920 / 500;
}

/* --- Slider Wrapper (flex satır) --- */
.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- Her bir slide --- */
.slide {
    min-width: 100%;
    width: 100%;
    position: relative;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Masaüstü slide: container yüksekliğini doldur */
.slider-desktop .slide {
    height: 100%;
}

/* Masaüstü görsel: 100% sığacak şekilde, kesilmeden tam gösterim */
.slider-desktop .slide img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center center;
    display: block;
    image-rendering: auto;
}

/* Masaüstü link wrapper */
.slider-desktop .slide a {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    display: block;
    z-index: 2;
}

/* --- MOBİL SLIDER --- */
.slider-mobile .slide img {
    width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
    image-rendering: auto;
}

/* Mobil link wrapper */
.slider-mobile .slide a {
    display: block;
    width: 100%;
}

/* --- Gradient overlay (sadece masaüstü) --- */
.slider-desktop .slide::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 25%;
    background: linear-gradient(to top, rgba(0,0,0,0.3) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

/* --- Navigasyon Noktaları --- */
.slider-nav {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 8px;
    z-index: 10;
}

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

.slider-dot.active {
    background: var(--primary-color);
    transform: scale(1.3);
    border-color: var(--primary-color);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.85);
}

/* --- Responsive Slider Görünürlüğü --- */
@media (min-width: 769px) {
    .slider-mobile  { display: none !important; }
    .slider-desktop { display: block !important; }
}

@media (max-width: 768px) {
    .slider-desktop { display: none !important; }
    .slider-mobile  { display: block !important; }
}


/* Hero Section */
.hero {
    max-width: 1400px;
    margin: 50px auto;
    padding: 60px 30px;
    text-align: center;
    background: linear-gradient(135deg, var(--dark-bg) 0%, var(--darker-bg) 100%);
    border-radius: 12px;
    box-shadow: var(--shadow-hover);
}

.hero h1 {
    font-size: 42px;
    color: #ffffff;
    margin-bottom: 20px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}

.hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.85);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Nasıl Başlanır - 3 Adım */
.how-to-start {
    width: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #2d1b3d 60%, #32204a 100%);
    padding: 80px 0 0;
}

.how-to-start-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

.how-to-start-title {
    text-align: center;
    margin-bottom: 60px;
}

.how-to-start-title h2 {
    font-size: 42px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.3;
}

.how-to-start-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.step-card {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(255, 255, 255, 0.1);
    border-radius: 16px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.4s;
    position: relative;
    overflow: hidden;
}

.step-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.step-card:hover::before {
    transform: scaleX(1);
}

.step-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    border-color: var(--primary-color);
    box-shadow: 0 15px 40px rgba(227, 6, 19, 0.3);
}

.step-card-content h3 {
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.step-card-content p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.6;
    margin: 0;
}

/* Digiturk'te Bu Ay - Video Section */
.beinContentSecond {
    width: 100%;
    background: linear-gradient(180deg, #32204a 0%, #2d1b3d 40%, #1a1a1a 100%);
    padding: 80px 0;
    margin: 0;
}

.beinContentSecond-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
}

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

.beinContentSecond-wrapper-title {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.beinContentSecond-wrapper-subtitle {
    display: block;
    font-size: 20px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
}

.content-list {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.beinContentSecond-wrapper-video {
    width: 100%;
    aspect-ratio: 16/9;
    background: #000;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    position: relative;
}

.video-poster,
.video-iframe,
.video-player {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.video-iframe {
    border: none;
}

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

.beinContentSecond-wrapper-videoPosters-poster {
    background: rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    border: 2px solid rgba(255, 255, 255, 0.1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.beinContentSecond-wrapper-videoPosters-poster:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(227, 6, 19, 0.4);
    border-color: var(--primary-color);
}

.beinContentSecond-wrapper-videoPosters-poster-img {
    width: 100%;
    flex: 1;
    overflow: hidden;
    position: relative;
}

.beinContentSecond-wrapper-videoPosters-poster-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.beinContentSecond-wrapper-videoPosters-poster:hover .beinContentSecond-wrapper-videoPosters-poster-img img {
    transform: scale(1.1);
}

.beinContentSecond-wrapper-videoPosters-poster-title {
    position: absolute;
    bottom: 35px;
    left: 10px;
    right: 10px;
    color: white;
    font-size: 13px;
    font-weight: 700;
    text-align: left;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
    font-family: 'Montserrat', sans-serif;
    z-index: 2;
}

.beinContentSecond-wrapper-videoPosters-poster-badge {
    position: absolute;
    bottom: 10px;
    left: 10px;
    background: var(--primary-color);
    color: white;
    padding: 4px 10px;
    border-radius: 15px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 2;
}

.beinContentSecond-wrapper-videoPosters-poster-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
    pointer-events: none;
}

.beinContentSecond-wrapper-bottomText {
    display: block;
    color: rgba(255, 255, 255, 0.7);
    font-size: 15px;
    margin-top: 30px;
}

.beinContentSecond-wrapper-bottomText p {
    margin: 0;
}

.beinContentSecond-wrapper-bottomText a {
    color: #00afab;
    text-decoration: underline;
    font-weight: 600;
    transition: opacity 0.3s;
}

.beinContentSecond-wrapper-bottomText a:hover {
    opacity: 0.8;
}

/* Paketler - Yeni Tasarım */
.packages {
    max-width: 1400px;
    margin: 60px auto;
    padding: 0 30px;
}

.packages-container {
    width: 100%;
}

.packages-wrapper-main {
    text-align: center;
    margin-bottom: 50px;
}

.packages-wrapper-main-title {
    display: block;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 15px;
    font-family: 'Montserrat', sans-serif;
}

.packages-wrapper-main-subtitle {
    display: block;
    font-size: 38px;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
}

.packages-wrapper-main-subtitle-colorful {
    color: var(--primary-color);
}

.packages-wrapper-main-description {
    display: block;
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.6;
}

.packages-wrapper-main-description p {
    margin: 0;
}

.packages-cards {
    margin: 40px 0;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 1100px;
    margin: 0 auto;
}

@media (max-width: 992px) {
    .packages-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
    .packages-grid { grid-template-columns: 1fr; }
}

.package-card {
    background: var(--bg-white);
    border: 2px solid var(--border-color);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s;
    box-shadow: var(--shadow);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary-color);
}

.package-card-content {
    flex: 1;
    padding: 0;
}

.package-card-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: var(--bg-light);
}

.package-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.package-card:hover .package-card-image img {
    transform: scale(1.1);
}

.package-card-title {
    display: block;
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    padding: 20px 20px 10px;
    font-family: 'Montserrat', sans-serif;
}

.package-card-price {
    padding: 0 20px 15px;
}

.price-amount {
    font-size: 32px;
    color: var(--primary-color);
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
}

.package-card-description {
    padding: 0 20px 20px;
}

.package-card-description p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

.package-card-details {
    padding: 0 20px 15px;
}

.package-card-details ul {
    margin: 0;
    padding-left: 20px;
    list-style: disc;
}

.package-card-details li {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 5px 0;
}

.package-card-button {
    padding: 20px;
    border-top: 1px solid var(--border-color);
}

.package-btn {
    display: block;
    background: var(--primary-color);
    color: white;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 700;
    font-size: 15px;
    transition: all 0.3s;
    width: 100%;
    text-align: center;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.package-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* Bu Ay Bölümü - 3D Carousel */
.bu-ay-discover {
    width: 100%;
    margin: 80px 0 0 0;
}

.bu-ay-discover-bg {
    width: 100%;
    padding: 80px 0;
    background-size: cover;
    background-position: center;
    position: relative;
}

.bu-ay-discover-container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.bu-ay-discover-wrapper {
    position: relative;
}

.bu-ay-discover-titles {
    text-align: center;
    margin-bottom: 60px;
}

.bu-ay-discover-maintitle {
    display: block;
    font-size: 52px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 8px;
    text-transform: uppercase;
    margin-bottom: 15px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.bu-ay-discover-subtitle {
    display: block;
    font-size: 24px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.bu-ay-discover-content {
    position: relative;
    padding: 0 60px;
}

.buAySwiper {
    width: 100%;
    padding: 40px 0 60px;
}

.buAySwiper .swiper-slide {
    width: 350px;
    position: relative;
    transition: all 0.3s;
}

.buAySwiper .swiper-slide-active {
    transform: scale(1.15);
    z-index: 10;
}

.bu-ay-slide-image {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.6);
    position: relative;
}

.bu-ay-slide-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, transparent 100%);
}

.bu-ay-slide-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.swiper-slide-active .bu-ay-slide-image img {
    transform: scale(1.05);
}

.bu-ay-slide-info {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    z-index: 10;
    color: white;
}

.bu-ay-slide-info h3 {
    font-size: 22px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.bu-ay-slide-kategori {
    display: inline-block;
    background: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.bu-ay-discover-content .swiper-button-next,
.bu-ay-discover-content .swiper-button-prev {
    color: white;
    background: rgba(255, 255, 255, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.bu-ay-discover-content .swiper-button-next:hover,
.bu-ay-discover-content .swiper-button-prev:hover {
    background: var(--primary-color);
    transform: scale(1.1);
}

.bu-ay-discover-content .swiper-button-next::after,
.bu-ay-discover-content .swiper-button-prev::after {
    font-size: 24px;
}

.buAySwiper .swiper-pagination {
    bottom: 20px;
}

.buAySwiper .swiper-pagination-bullet {
    background: white;
    opacity: 0.5;
    width: 12px;
    height: 12px;
}

.buAySwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: var(--primary-color);
    transform: scale(1.3);
}

.bu-ay-discover-footer {
    text-align: center;
    margin-top: 50px;
}

.bu-ay-discover-footer-title {
    display: block;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    margin-bottom: 20px;
}

.bu-ay-discover-footer-link {
    display: inline-block;
    color: white;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    padding: 15px 40px;
    border: 2px solid white;
    border-radius: 50px;
    transition: all 0.3s;
    font-family: 'Montserrat', sans-serif;
}

.bu-ay-discover-footer-link:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(255, 255, 255, 0.3);
}

/* Footer - Yeni Tasarım */
footer {
    background: var(--darker-bg);
    color: white;
    margin-top: 0;
    border-top: 3px solid var(--primary-color);
}

.footer-main {
    padding: 50px 30px 30px;
}

.footer-main-inner {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
    gap: 40px;
}

.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    max-width: 180px;
    height: auto;
}

.footer-app-buttons {
    display: flex;
    gap: 10px;
}

.footer-app-buttons a img {
    height: 38px;
    width: auto;
    transition: opacity 0.3s;
}

.footer-app-buttons a:hover img {
    opacity: 0.8;
}

.footer-col h5 {
    font-size: 16px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 18px;
    font-family: 'Montserrat', sans-serif;
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: var(--primary-color);
    padding-left: 4px;
}

/* Footer Horizontal Legal Links Bar (Menüler ile Çizgi Arasında) */
.footer-horizontal-legal-links {
    max-width: 1400px;
    margin: 0 auto;
    padding: 15px 30px;
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-horizontal-legal-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 8px 14px;
    font-size: 13.5px;
}

.footer-horizontal-legal-inner a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.25s;
}

.footer-horizontal-legal-inner a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.footer-horizontal-legal-inner .legal-sep {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.footer-company-info-box {
    margin: 15px auto;
    padding: 16px 22px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 12px;
    font-size: 12.5px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    text-align: center;
    max-width: 1100px;
}

.footer-company-info-box p {
    margin-bottom: 6px;
}

.footer-company-info-box p:last-child {
    margin-bottom: 0;
}

.footer-payment-notice {
    color: #34d399 !important;
    font-weight: 600;
    margin-top: 6px !important;
}

.footer-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 30px;
}

.footer-legal {
    max-width: 1400px;
    margin: 0 auto;
    padding: 25px 30px 30px;
    text-align: center;
}

.footer-disclaimer {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.7;
    margin-bottom: 12px;
}

.footer-contact {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 8px;
}

.footer-copyright {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

/* Step Numbers */
.step-number {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 22px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 15px rgba(227, 6, 19, 0.4);
}

.how-to-start-subtitle {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

/* Hızlı Başvuru Popup Butonu */
.quick-apply-btn {
    position: fixed;
    bottom: 30px;
    left: 25px;
    background: linear-gradient(135deg, var(--primary-color), #ff4444);
    color: white;
    padding: 14px 22px;
    border-radius: 50px;
    cursor: pointer;
    z-index: 101;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 25px rgba(227, 6, 19, 0.5);
    transition: all 0.3s;
    animation: pulseBtn 2s infinite;
    white-space: nowrap;
}

.quick-apply-btn:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(227, 6, 19, 0.6);
}

@keyframes pulseBtn {
    0%, 100% { box-shadow: 0 6px 25px rgba(227, 6, 19, 0.5); }
    50% { box-shadow: 0 6px 35px rgba(227, 6, 19, 0.8); }
}

.quick-apply-icon {
    font-size: 20px;
}

.quick-apply-text {
    font-weight: 700;
    font-size: 14px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ─── Modal — Sayfanın Ortasında ─── */
.quick-apply-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    align-items: center;
    justify-content: center;
}

.quick-apply-modal.active {
    display: flex;
}

.quick-apply-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.quick-apply-content {
    position: relative;
    width: 90%;
    max-width: 520px;
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    animation: modalFadeIn 0.3s cubic-bezier(0.34,1.56,0.64,1);
    max-height: 92vh;
    overflow-y: auto;
    box-shadow: 0 30px 80px rgba(0,0,0,0.4);
}

@keyframes modalFadeIn {
    from { transform: scale(0.85) translateY(30px); opacity: 0; }
    to   { transform: scale(1) translateY(0);        opacity: 1; }
}

.quick-apply-header {
    background: var(--primary-color);
    color: white;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.quick-apply-header h3 {
    margin: 0;
    font-size: 18px;
    font-family: 'Montserrat', sans-serif;
}

.quick-apply-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
}

.quick-apply-close:hover {
    background: rgba(255, 255, 255, 0.35);
}

.quick-apply-form {
    padding: 25px;
}

.quick-apply-form .form-group {
    margin-bottom: 18px;
}

.quick-apply-form label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 6px;
    font-family: 'Montserrat', sans-serif;
}

.quick-apply-form input,
.quick-apply-form select,
.quick-apply-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 15px;
    font-family: 'Roboto', sans-serif;
    transition: border-color 0.3s;
    background: var(--bg-light);
}

.quick-apply-form input:focus,
.quick-apply-form select:focus,
.quick-apply-form textarea:focus {
    border-color: var(--primary-color);
    outline: none;
}

/* ─── Gönder Butonu ─── */
.btn-submit {
    width: 100%;
    padding: 14px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
    transition: all 0.3s;
    margin-top: 6px;
}

.btn-submit:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
}

/* ─── Telefon wrapper ─── */
.phone-input-wrapper:focus-within {
    border-color: var(--primary-color) !important;
}

/* ─── Form hedef butonları ─── */
.submit-channel-btns {
    display: flex;
    gap: 10px;
    margin-top: 4px;
}
.channel-btn {
    flex: 1;
    padding: 13px 10px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #f8f8f8;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.25s;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}
.channel-btn:hover, .channel-btn.active {
    border-color: var(--primary-color);
    background: var(--primary-color);
    color: #fff;
}
.channel-btn.wa:hover, .channel-btn.wa.active   { border-color:#25d366; background:#25d366; }
.channel-btn.tg:hover, .channel-btn.tg.active   { border-color:#2aabee; background:#2aabee; }
.channel-btn.ml:hover, .channel-btn.ml.active   { border-color:#e30613; background:#e30613; }

/* ─── KVKK onay ─── */
.kvkk-check {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin: 14px 0;
    font-size: 13px;
    color: #555;
    line-height: 1.5;
}
.kvkk-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary-color);
    cursor: pointer;
}
.kvkk-check a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 600;
}

/* ─── SSS Accordion ─── */
.faq-section {
    max-width: 860px;
    margin: 0 auto;
    padding: 60px 20px;
}

.faq-section h1 {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
    margin-bottom: 12px;
}

.faq-section .faq-subtitle {
    text-align: center;
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    margin-bottom: 48px;
}

.faq-category {
    margin-bottom: 40px;
}

.faq-category-title {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 16px;
    font-family: 'Montserrat', sans-serif;
    padding-left: 4px;
    border-left: 3px solid var(--primary-color);
    padding-left: 12px;
}

.faq-item {
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.04);
    overflow: hidden;
    transition: background 0.25s;
}

.faq-item.open {
    background: rgba(255,255,255,0.07);
    border-color: rgba(227,6,19,0.3);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: #fff;
    text-align: left;
    padding: 18px 20px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    font-family: 'Montserrat', sans-serif;
    line-height: 1.4;
    transition: color 0.25s;
}

.faq-question:hover { color: #f9a8d4; }
.faq-item.open .faq-question { color: #fca5a5; }

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    transition: transform 0.3s, background 0.3s;
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
    background: var(--primary-color);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4,0,0.2,1);
}

.faq-answer-inner {
    padding: 0 20px 20px;
    color: rgba(255,255,255,0.75);
    font-size: 15px;
    line-height: 1.7;
    border-top: 1px solid rgba(255,255,255,0.06);
    margin: 0 20px;
    padding-top: 16px;
}

.faq-answer-inner a {
    color: var(--primary-color);
    text-decoration: underline;
}



/* Responsive */
@media (max-width: 1024px) {
    .navbar {
        padding: 15px 20px;
    }

    .slider,
    .paketler,
    .bu-ay {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero h1 {
        font-size: 36px;
    }

    .paketler h2,
    .bu-ay h2 {
        font-size: 32px;
    }
}

/* ==========================================
   İç Sayfa Şablonu
   ========================================== */

.page-body {
    padding-top: 128px;
}

.desktop-nav a.active {
    color: #ffffff;
    background: var(--primary-color);
}

.page-hero {
    position: relative;
    width: 100%;
    min-height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, var(--dark-bg) 0%, #2d1b3d 50%, var(--darker-bg) 100%);
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: blur(2px) brightness(0.4);
    transform: scale(1.1);
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 30px;
    max-width: 900px;
}

.page-hero-content h1 {
    font-size: 48px;
    font-weight: 800;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: -0.5px;
    text-shadow: 0 4px 20px rgba(0,0,0,0.5);
    margin: 0;
}

.page-content-section {
    background: var(--bg-white);
    padding: 60px 0 80px;
}

.page-content-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 30px;
}

.page-article {
    font-size: 17px;
    line-height: 1.9;
    color: var(--text-dark);
}

.page-article h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 40px 0 16px;
    font-family: 'Montserrat', sans-serif;
    padding-bottom: 10px;
    border-bottom: 3px solid var(--primary-color);
    display: inline-block;
}

.page-article h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 30px 0 12px;
    font-family: 'Montserrat', sans-serif;
}

.page-article p {
    margin: 12px 0;
    color: #444;
}

.page-article img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 20px 0;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.page-article ul,
.page-article ol {
    padding-left: 28px;
    margin: 16px 0;
}

.page-article li {
    margin: 8px 0;
    color: #555;
}

.page-article blockquote {
    border-left: 4px solid var(--primary-color);
    margin: 24px 0;
    padding: 16px 24px;
    background: var(--bg-light);
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.page-article a {
    color: var(--primary-color);
    text-decoration: underline;
    font-weight: 500;
}

.page-article a:hover {
    color: var(--secondary-color);
}

.page-article table {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
}

.page-article table th,
.page-article table td {
    padding: 12px 16px;
    border: 1px solid var(--border-color);
    text-align: left;
}

.page-article table th {
    background: var(--dark-bg);
    color: white;
    font-weight: 600;
}

@media (max-width: 768px) {
    /* Header Mobile */
    .desktop-nav {
        display: none;
    }

    .hamburger-btn {
        display: flex;
    }

    .mobile-menu {
        display: flex;
    }

    .navbar {
        padding: 12px 20px;
    }

    .topbar {
        padding: 10px 15px;
        flex-direction: row;
        gap: 10px;
    }

    .topbar-text-description {
        font-size: 13px;
    }

    .topbar-closeIcon .close-banner {
        padding: 4px 10px;
        font-size: 16px;
    }

    header {
        top: 40px;
    }

    .topbar.hidden + header {
        top: 0;
    }

    .navbar {
        padding: 12px 20px;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .logo {
        font-size: 22px;
        flex-shrink: 0;
    }

    .logo img {
        height: 42px;
    }

    nav a {
        font-size: 13px;
        padding: 10px 16px;
    }

    .hero {
        padding: 40px 20px;
        margin: 30px auto;
    }

    .hero h1 {
        font-size: 28px;
    }

    .hero p {
        font-size: 16px;
    }

    .how-to-start {
        padding: 50px 0;
    }

    .how-to-start-container {
        padding: 0 20px;
    }

    .how-to-start-title h2 {
        font-size: 32px;
    }

    .how-to-start-steps {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .step-card {
        padding: 30px 20px;
    }

    .step-card-content h3 {
        font-size: 20px;
    }

    .step-card-content p {
        font-size: 14px;
    }

    .beinContentSecond {
        padding: 50px 0;
    }

    .beinContentSecond-container {
        padding: 0 20px;
    }

    .beinContentSecond-wrapper-title {
        font-size: 36px;
    }

    .beinContentSecond-wrapper-subtitle {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .content-list {
        gap: 20px;
    }

    .beinContentSecond-wrapper-videoPosters {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }

    .beinContentSecond-wrapper-videoPosters-poster-title {
        font-size: 12px;
        bottom: 30px;
    }

    .beinContentSecond-wrapper-videoPosters-poster-badge {
        font-size: 9px;
    }

    .packages {
        padding: 0 20px;
    }

    .packages-wrapper-main-title {
        font-size: 14px;
        letter-spacing: 2px;
    }

    .packages-wrapper-main-subtitle {
        font-size: 28px;
    }

    .packages-wrapper-main-description {
        font-size: 14px;
    }

    .bu-ay-discover-bg {
        padding: 50px 0;
    }

    .bu-ay-discover-container {
        padding: 0 20px;
    }

    .bu-ay-discover-maintitle {
        font-size: 36px;
        letter-spacing: 4px;
    }

    .bu-ay-discover-subtitle {
        font-size: 18px;
    }

    .bu-ay-discover-content {
        padding: 0 40px;
    }

    .buAySwiper .swiper-slide {
        width: 280px;
    }

    .bu-ay-slide-image {
        height: 400px;
    }

    .bu-ay-discover-content .swiper-button-next,
    .bu-ay-discover-content .swiper-button-prev {
        width: 40px;
        height: 40px;
    }

    .paketler-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }

    .bu-ay-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
    }

    /* Mobil slider boyutu — clamp ile zaten otomatik ayarlanıyor */
    .slide {
        height: clamp(220px, 50vw, 500px);
    }

    .slider-nav {
        bottom: 20px;
    }

    .slider-dot {
        width: 12px;
        height: 12px;
    }

    .banner-content {
        flex-direction: column;
        gap: 10px;
    }

    .banner-text {
        font-size: 14px;
    }

    /* Mobilde tam daire - sadece ikon */
    .quick-apply-btn {
        bottom: 30px;
        left: 20px;
        width: 56px;
        height: 56px;
        padding: 0;
        border-radius: 50%;
        justify-content: center;
        gap: 0;
    }

    .quick-apply-btn:hover {
        transform: translateY(-3px) scale(1.05);
    }

    .quick-apply-icon {
        font-size: 24px;
    }

    .quick-apply-text {
        display: none;
    }
}

@media (max-width: 480px) {
    .topbar {
        padding: 8px 10px;
    }

    .topbar-text-description {
        font-size: 12px;
    }

    .topbar-closeIcon .close-banner {
        padding: 3px 8px;
        font-size: 14px;
    }

    header {
        top: 36px;
    }

    .navbar {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 0;
        padding: 10px 12px;
    }

    .logo {
        font-size: 20px;
        flex-shrink: 0;
    }

    .logo img {
        height: 36px;
    }

    /* 480px ve altı için slider */
    .slide {
        height: clamp(180px, 55vw, 360px);
    }

    .slider-nav {
        bottom: 15px;
        gap: 8px;
    }

    .slider-dot {
        width: 10px;
        height: 10px;
    }

    .hero {
        padding: 30px 15px;
        margin: 20px 15px;
    }

    .hero h1 {
        font-size: 24px;
    }

    .hero p {
        font-size: 14px;
    }

    .paketler,
    .bu-ay {
        padding: 30px 15px;
    }

    .how-to-start {
        padding: 40px 0;
    }

    .how-to-start-title h2 {
        font-size: 24px;
    }

    .step-card {
        padding: 25px 20px;
    }

    .step-card-content h3 {
        font-size: 18px;
    }

    .step-card-content p {
        font-size: 13px;
    }

    .beinContentSecond {
        padding: 40px 0;
    }

    .beinContentSecond-wrapper-title {
        font-size: 28px;
    }

    .beinContentSecond-wrapper-subtitle {
        font-size: 14px;
    }

    .beinContentSecond-wrapper-videoPosters {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .beinContentSecond-wrapper-videoPosters-poster-title {
        font-size: 11px;
        bottom: 25px;
    }

    .packages-wrapper-main-subtitle {
        font-size: 24px;
    }

    .packages-wrapper-main-description {
        font-size: 13px;
    }

    .package-card-image {
        height: 180px;
    }

    .package-card-title {
        font-size: 18px;
    }

    .price-amount {
        font-size: 26px;
    }

    .bu-ay-discover-bg {
        padding: 40px 0;
    }

    .bu-ay-discover-maintitle {
        font-size: 28px;
        letter-spacing: 2px;
    }

    .bu-ay-discover-subtitle {
        font-size: 16px;
    }

    .bu-ay-discover-titles {
        margin-bottom: 40px;
    }

    .bu-ay-discover-content {
        padding: 0 30px;
    }

    .buAySwiper .swiper-slide {
        width: 240px;
    }

    .bu-ay-slide-image {
        height: 350px;
    }

    .bu-ay-slide-info h3 {
        font-size: 18px;
    }

    .bu-ay-discover-content .swiper-button-next,
    .bu-ay-discover-content .swiper-button-prev {
        width: 35px;
        height: 35px;
    }

    .bu-ay-discover-content .swiper-button-next::after,
    .bu-ay-discover-content .swiper-button-prev::after {
        font-size: 18px;
    }

    .bu-ay-discover-footer-link {
        font-size: 15px;
        padding: 12px 30px;
    }

    .paketler-grid,
    .bu-ay-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .paket-info h3 {
        font-size: 20px;
    }

    .paket-price {
        font-size: 28px;
    }

    .bu-ay-item img {
        height: 280px;
    }

    .footer-main-inner {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }

    .footer-brand {
        grid-column: 1 / -1;
        align-items: center;
        text-align: center;
    }

    .quick-apply-btn {
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        padding: 14px 28px;
        border-radius: 50px;
        box-shadow: 0 4px 20px rgba(227, 6, 19, 0.5);
        white-space: nowrap;
    }

    .quick-apply-btn:hover {
        transform: translateX(-50%) translateY(-3px) scale(1.05);
    }

    .quick-apply-icon {
        font-size: 18px;
    }

    .quick-apply-text {
        font-size: 13px;
        letter-spacing: 0.5px;
    }
}

/* =====================================================
   PAKET DETAY SAYFASI (pd-*)
   ===================================================== */
.pd-hero { position:relative; min-height:480px; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.pd-hero-bg { position:absolute; inset:0; background-size:cover; background-position:center; }
.pd-hero-overlay { position:absolute; inset:0; background:linear-gradient(to right, rgba(0,0,0,.85) 40%, rgba(0,0,0,.4) 100%); }
.pd-hero-inner { position:relative; z-index:2; padding:60px 40px; max-width:900px; }
.pd-hero-badge { display:inline-block; background:var(--primary-color); color:#fff; font-size:11px; font-weight:700; letter-spacing:2px; padding:5px 14px; border-radius:20px; margin-bottom:16px; font-family:'Montserrat',sans-serif; }
.pd-hero-title { font-size:48px; font-weight:900; color:#fff; font-family:'Montserrat',sans-serif; margin:0 0 12px; line-height:1.1; }
.pd-hero-sub { font-size:17px; color:rgba(255,255,255,.8); margin:0 0 28px; }
.pd-price-block { display:flex; gap:16px; flex-wrap:wrap; margin-bottom:28px; }
.pd-price-option { background:rgba(255,255,255,.1); backdrop-filter:blur(8px); border:1px solid rgba(255,255,255,.2); border-radius:14px; padding:16px 22px; }
.pd-price-option--featured { background:rgba(22,163,74,.2); border-color:#16a34a; }
.pd-price-label { display:block; font-size:12px; color:rgba(255,255,255,.7); font-family:'Montserrat',sans-serif; margin-bottom:4px; }
.pd-price-val { font-size:30px; font-weight:900; color:#fff; font-family:'Montserrat',sans-serif; }
.pd-price-per { font-size:14px; color:rgba(255,255,255,.7); margin-left:4px; }
.pd-save-badge { background:#16a34a; color:#fff; font-size:10px; padding:2px 8px; border-radius:10px; margin-left:6px; font-weight:700; }
.pd-buy-btn { background:var(--primary-color); color:#fff; border:none; padding:16px 36px; border-radius:50px; font-family:'Montserrat',sans-serif; font-weight:700; font-size:15px; cursor:pointer; transition:all .3s; box-shadow:0 4px 20px rgba(227,6,19,.5); }
.pd-buy-btn:hover { background:var(--secondary-color); transform:translateY(-2px); }

/* Detay İçerik */
.pd-content { max-width:1200px; margin:0 auto; padding:60px 30px; }
.pd-content-inner { display:grid; grid-template-columns:1fr 340px; gap:40px; align-items:start; }
.pd-features-box, .pd-how-box { background:#f8fafc; border-radius:16px; padding:28px; margin-bottom:24px; }
.pd-features-box h2, .pd-how-box h2 { font-size:20px; font-family:'Montserrat',sans-serif; font-weight:700; margin:0 0 20px; color:#1e293b; }
.pd-feature-list { list-style:none; padding:0; }
.pd-feature-list li { display:flex; gap:10px; align-items:flex-start; padding:8px 0; border-bottom:1px solid #e2e8f0; font-size:15px; color:#374151; }
.pd-feature-list li:last-child { border:none; }
.pd-check { color:#16a34a; font-weight:700; flex-shrink:0; }
.pd-steps-mini { display:flex; flex-direction:column; gap:12px; }
.pd-step-mini { display:flex; gap:12px; align-items:center; }
.pd-step-mini span { background:var(--primary-color); color:#fff; width:28px; height:28px; border-radius:50%; display:flex; align-items:center; justify-content:center; font-size:13px; font-weight:700; flex-shrink:0; }
.pd-step-mini p { margin:0; color:#374151; font-size:14px; }

/* Satın Al Kutusu */
.pd-buy-col { position:sticky; top:100px; }
.pd-buy-box { background:#fff; border-radius:16px; padding:28px; box-shadow:0 8px 30px rgba(0,0,0,.1); border:2px solid #f1f5f9; }
.pd-buy-box h3 { font-size:18px; font-family:'Montserrat',sans-serif; font-weight:700; margin:0 0 8px; color:#1e293b; }
.pd-buy-box p { color:#64748b; font-size:14px; margin:0 0 16px; }
.pd-buy-price { display:flex; justify-content:space-between; align-items:center; padding:10px 0; border-bottom:1px solid #f1f5f9; font-size:14px; color:#64748b; }
.pd-buy-price--green strong { color:#16a34a; }
.pd-buy-btn-full { display:block; width:100%; background:var(--primary-color); color:#fff; border:none; padding:16px; border-radius:12px; font-family:'Montserrat',sans-serif; font-weight:700; font-size:15px; cursor:pointer; margin-top:20px; transition:all .3s; }
.pd-buy-btn-full:hover { background:var(--secondary-color); transform:translateY(-1px); }
.pd-buy-note { text-align:center; color:#94a3b8; font-size:12px; margin-top:10px; }
.pd-extra-content { margin-top:40px; padding:30px; background:#f8fafc; border-radius:16px; }
@media(max-width:900px) { .pd-content-inner { grid-template-columns:1fr; } .pd-buy-col { position:static; } .pd-hero-title { font-size:32px; } }

/* =====================================================
   BASVURU POPUP MODAL
   ===================================================== */
.modal-overlay { position:fixed; inset:0; background:rgba(0,0,0,.7); backdrop-filter:blur(6px); z-index:99999; display:flex; align-items:center; justify-content:center; padding:20px; }
.modal-box { background:#fff; border-radius:24px; width:100%; max-width:520px; max-height:90vh; overflow-y:auto; position:relative; box-shadow:0 30px 80px rgba(0,0,0,.4); animation:modalIn .3s cubic-bezier(.4,0,.2,1); }
@keyframes modalIn { from { opacity:0; transform:translateY(30px) scale(.95); } to { opacity:1; transform:none; } }
.modal-close { position:absolute; top:16px; right:16px; background:rgba(0,0,0,.08); border:none; width:34px; height:34px; border-radius:50%; cursor:pointer; font-size:16px; display:flex; align-items:center; justify-content:center; transition:background .2s; z-index:1; }
.modal-close:hover { background:rgba(0,0,0,.15); }
.modal-step { padding:32px; }
.modal-step-badge { display:inline-block; background:#e30613; color:#fff; font-size:11px; font-weight:700; letter-spacing:1.5px; padding:4px 12px; border-radius:20px; margin-bottom:12px; font-family:'Montserrat',sans-serif; }
.modal-header h2 { font-size:22px; font-family:'Montserrat',sans-serif; font-weight:800; color:#1e293b; margin:0 0 6px; }
.modal-desc { color:#64748b; font-size:14px; margin:0 0 24px; line-height:1.6; }
.odeme-secenekler { display:grid; grid-template-columns:1fr 1fr; gap:12px; margin-bottom:20px; }
.odeme-option { cursor:pointer; border:2px solid #e2e8f0; border-radius:14px; transition:all .2s; display:block; }
.odeme-option input { display:none; }
.odeme-option.selected, .odeme-option:has(input:checked) { border-color:var(--primary-color); background:#fff5f5; }
.odeme-option-inner { padding:16px; text-align:center; }
.odeme-title { display:block; font-size:13px; font-weight:700; color:#1e293b; margin-bottom:6px; font-family:'Montserrat',sans-serif; }
.odeme-price { display:block; font-size:22px; font-weight:900; color:var(--primary-color); font-family:'Montserrat',sans-serif; margin-bottom:4px; }
.odeme-note { display:block; font-size:11px; color:#94a3b8; }
.save-tag { background:#16a34a; color:#fff; font-size:10px; padding:2px 7px; border-radius:10px; margin-left:4px; }
.modal-summary { background:#f8fafc; border-radius:10px; padding:12px 16px; font-size:14px; color:#374151; margin-bottom:20px; font-weight:600; border-left:3px solid var(--primary-color); }
.modal-paket-info { background:#fff5f5; border:1px solid #fecaca; border-radius:10px; padding:12px 16px; font-size:14px; color:#374151; margin-bottom:20px; }
.modal-btn { display:block; width:100%; background:var(--primary-color); color:#fff; border:none; padding:14px; border-radius:12px; font-family:'Montserrat',sans-serif; font-weight:700; font-size:15px; cursor:pointer; transition:all .3s; }
.modal-btn:hover { background:var(--secondary-color); transform:translateY(-1px); }
.modal-btn-back { background:#f1f5f9; color:#475569; border:none; padding:14px 20px; border-radius:12px; font-family:'Montserrat',sans-serif; font-weight:600; font-size:14px; cursor:pointer; transition:all .2s; white-space:nowrap; }
.modal-btn-back:hover { background:#e2e8f0; }
.modal-form-row { display:grid; grid-template-columns:1fr 1fr; gap:12px; }
.modal-form-group { margin-bottom:14px; }
.modal-form-group label { display:block; font-size:13px; font-weight:600; color:#374151; margin-bottom:6px; }
.modal-form-group input { width:100%; box-sizing:border-box; border:2px solid #e2e8f0; border-radius:10px; padding:11px 14px; font-size:14px; transition:border-color .2s; outline:none; }
.modal-form-group input:focus { border-color:var(--primary-color); }
.kvkk-check { display:flex; align-items:flex-start; gap:10px; font-size:12px; color:#64748b; line-height:1.5; cursor:pointer; margin-bottom:4px; }
.kvkk-check input { margin-top:3px; flex-shrink:0; }
.kvkk-check a { color:var(--primary-color); }
.modal-error { background:#fee2e2; border:1px solid #fecaca; border-radius:8px; padding:10px 14px; font-size:13px; color:#dc2626; margin-bottom:8px; }
@media(max-width:480px) { .odeme-secenekler { grid-template-columns:1fr; } .modal-form-row { grid-template-columns:1fr; } }


/* ----- Hero ----- */
.sp-hero {
    position: relative;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0a0a1a 0%, #1a0a2e 40%, #0d1a3a 70%, #1a1a1a 100%);
}

.sp-hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

/* Floating particles */
.sp-particle {
    position: absolute;
    border-radius: 50%;
    background: rgba(227,6,19,0.15);
    animation: sp-float linear infinite;
}

.sp-particle:nth-child(1)  { width:8px; height:8px;  top:20%; left:10%; animation-duration:8s; }
.sp-particle:nth-child(2)  { width:5px; height:5px;  top:70%; left:20%; animation-duration:10s; animation-delay:1s; }
.sp-particle:nth-child(3)  { width:12px;height:12px; top:40%; left:80%; animation-duration:7s;  animation-delay:2s; background:rgba(255,152,0,0.2);}
.sp-particle:nth-child(4)  { width:6px; height:6px;  top:80%; left:60%; animation-duration:9s;  animation-delay:0.5s;}
.sp-particle:nth-child(5)  { width:10px;height:10px; top:30%; left:45%; animation-duration:11s; animation-delay:3s; }
.sp-particle:nth-child(6)  { width:4px; height:4px;  top:60%; left:90%; animation-duration:6s;  animation-delay:1.5s;}
.sp-particle:nth-child(7)  { width:8px; height:8px;  top:15%; left:70%; animation-duration:8s;  animation-delay:2.5s;background:rgba(26,111,196,0.2);}
.sp-particle:nth-child(8)  { width:6px; height:6px;  top:85%; left:35%; animation-duration:12s; animation-delay:4s; }
.sp-particle:nth-child(9)  { width:9px; height:9px;  top:50%; left:5%;  animation-duration:9s;  animation-delay:1s; }
.sp-particle:nth-child(10) { width:5px; height:5px;  top:25%; left:55%; animation-duration:7s;  animation-delay:3.5s;background:rgba(255,152,0,0.15);}
.sp-particle:nth-child(11) { width:7px; height:7px;  top:90%; left:15%; animation-duration:10s; animation-delay:2s; }
.sp-particle:nth-child(12) { width:11px;height:11px; top:10%; left:30%; animation-duration:8s;  animation-delay:0.8s;}

@keyframes sp-float {
    0%   { transform: translateY(0) rotate(0deg); opacity:0; }
    10%  { opacity:1; }
    90%  { opacity:1; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity:0; }
}

.sp-hero-deco {
    position: absolute;
    font-size: 100px;
    opacity: 0.04;
    pointer-events: none;
}
.sp-deco-1 { top: -20px; left: -30px; transform: rotate(-15deg); }
.sp-deco-2 { bottom: -10px; right: 5%; transform: rotate(20deg); font-size: 140px; opacity:0.03; }
.sp-deco-3 { top: 50%; right: -20px; transform: rotate(10deg); }

.sp-hero-inner {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 30px;
    max-width: 900px;
    margin: 0 auto;
}

.sp-hero-badge {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2.5px;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    text-transform: uppercase;
}

.sp-hero-title {
    font-size: 56px;
    font-weight: 900;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 16px;
    letter-spacing: -1px;
    line-height: 1.1;
    background: linear-gradient(135deg, #ffffff 0%, rgba(255,255,255,0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.sp-hero-sub {
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 40px;
    font-family: 'Montserrat', sans-serif;
}

.sp-hero-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 20px 40px;
    backdrop-filter: blur(10px);
    display: inline-flex;
}

.sp-stat { text-align: center; padding: 0 30px; }
.sp-stat-num {
    display: block;
    font-size: 32px;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}
.sp-stat-label {
    display: block;
    font-size: 12px;
    color: rgba(255,255,255,0.6);
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    margin-top: 4px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.sp-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.15);
}

/* ----- Packages Section ----- */
.sp-packages {
    padding: 80px 0;
    background: #f4f6f9;
}

.sp-packages-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

.sp-section-header {
    text-align: center;
    margin-bottom: 60px;
}

.sp-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 12px;
}

.sp-section-title {
    font-size: 40px;
    font-weight: 800;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}

.sp-section-desc {
    font-size: 16px;
    color: var(--text-light);
    max-width: 500px;
    margin: 0 auto;
}

/* ----- Card Grid ----- */
.sp-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.sp-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 2px solid transparent;
}

.sp-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.15);
    border-color: var(--primary-color);
}

.sp-card-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    color: white;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    z-index: 10;
    font-family: 'Montserrat', sans-serif;
}

.sp-card-img-wrap {
    position: relative;
    height: 200px;
    overflow: hidden;
}

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

.sp-card:hover .sp-card-img {
    transform: scale(1.08);
}

.sp-card-img-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #1a1a2e, #2d1b3d);
    display: flex;
    align-items: center;
    justify-content: center;
}

.sp-card-icon { font-size: 60px; }

.sp-card-img-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 60%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    pointer-events: none;
}

.sp-card-body {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.sp-card-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 16px;
}

.sp-card-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}
.sp-card-title a:hover { color: var(--primary-color); }

.sp-card-features {
    list-style: none;
    margin-bottom: 20px;
    flex: 1;
}

.sp-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13.5px;
    color: #555;
    margin-bottom: 8px;
    line-height: 1.4;
}

.sp-check {
    color: #22c55e;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
    margin-top: 1px;
}

.sp-card-price {
    margin-bottom: 20px;
    padding: 14px;
    background: #f8f8f8;
    border-radius: 10px;
    border-left: 3px solid var(--primary-color);
}

.sp-price-amount {
    display: block;
    font-size: 26px;
    font-weight: 900;
    color: var(--primary-color);
    font-family: 'Montserrat', sans-serif;
    line-height: 1;
}

.sp-price-note {
    display: block;
    font-size: 11px;
    color: #888;
    margin-top: 4px;
}

.sp-card-actions {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.sp-btn {
    display: block;
    text-align: center;
    padding: 12px 16px;
    border-radius: 10px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 12.5px;
    letter-spacing: 0.5px;
    text-decoration: none;
    transition: all 0.25s;
}

.sp-btn-primary {
    background: var(--primary-color);
    color: white;
}
.sp-btn-primary:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(227,6,19,0.4);
}

.sp-btn-outline {
    border: 2px solid #e0e0e0;
    color: var(--text-dark);
    background: transparent;
}
.sp-btn-outline:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

/* ----- How To Section ----- */
.sp-howto {
    padding: 80px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d1b3d 50%, #1a1a1a 100%);
}

.sp-howto-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 30px;
}

.sp-section-header--light .sp-section-title {
    color: #ffffff;
}

.sp-steps {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 50px;
}

.sp-step {
    flex: 1;
    text-align: center;
    padding: 40px 30px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    transition: all 0.3s;
    position: relative;
}

.sp-step:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-6px);
}

.sp-step-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    width: 28px;
    height: 28px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Montserrat', sans-serif;
}

.sp-step-icon {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.sp-step-title {
    font-size: 17px;
    font-weight: 700;
    color: #ffffff;
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
}

.sp-step-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
    margin: 0;
}

.sp-step-arrow {
    font-size: 28px;
    color: rgba(255,255,255,0.3);
    flex-shrink: 0;
}

.sp-howto-cta {
    text-align: center;
    margin-top: 50px;
}

.sp-cta-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 16px 50px;
    border-radius: 50px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(227,6,19,0.4);
}

.sp-cta-btn:hover {
    background: var(--secondary-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(227,6,19,0.5);
}

/* Extra content section */
.sp-extra-content {
    padding: 60px 0;
    background: #fff;
}

/* ----- Responsive ----- */
@media (max-width: 1024px) {
    .sp-cards-grid { grid-template-columns: repeat(2, 1fr); }
    .sp-hero-title  { font-size: 42px; }
}

@media (max-width: 768px) {
    .sp-hero-title  { font-size: 32px; }
    .sp-hero-stats  { flex-direction: column; gap: 16px; padding: 20px; }
    .sp-stat-divider { width: 40px; height: 1px; }
    .sp-cards-grid  { grid-template-columns: 1fr; }
    .sp-steps       { flex-direction: column; }
    .sp-step-arrow  { transform: rotate(90deg); }
    .sp-section-title { font-size: 28px; }
}

/* ================================================
   SSS — FAQ Accordion
   ================================================ */
.faq-section { max-width: 860px; margin: 0 auto; padding: 60px 20px; }
.faq-section h1 { font-size: clamp(26px, 4vw, 38px); font-weight: 800; color: #fff; font-family: 'Montserrat',sans-serif; text-align: center; margin-bottom: 12px; }
.faq-subtitle { text-align: center; color: rgba(255,255,255,.65); font-size: 16px; margin-bottom: 48px; }
.faq-category { margin-bottom: 40px; }
.faq-category-title { font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: var(--primary-color); margin-bottom: 16px; font-family: 'Montserrat',sans-serif; border-left: 3px solid var(--primary-color); padding-left: 12px; }
.faq-item { border: 1px solid rgba(255,255,255,.08); border-radius: 12px; margin-bottom: 10px; background: rgba(255,255,255,.04); overflow: hidden; transition: background .25s, border-color .25s; }
.faq-item.open { background: rgba(255,255,255,.07); border-color: rgba(227,6,19,.3); }
.faq-question { width: 100%; background: none; border: none; color: #fff; text-align: left; padding: 18px 20px; font-size: 15px; font-weight: 600; cursor: pointer; display: flex; justify-content: space-between; align-items: center; gap: 12px; font-family: 'Montserrat',sans-serif; line-height: 1.4; transition: color .25s; }
.faq-question:hover, .faq-item.open .faq-question { color: #fca5a5; }
.faq-icon { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; background: rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 18px; font-weight: 300; transition: transform .35s cubic-bezier(.34,1.56,.64,1), background .3s; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--primary-color); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height .4s cubic-bezier(.4,0,.2,1); }
.faq-answer-inner { margin: 0 20px; padding: 16px 0 20px; color: rgba(255,255,255,.75); font-size: 15px; line-height: 1.75; border-top: 1px solid rgba(255,255,255,.07); }
.faq-answer-inner a { color: var(--primary-color); text-decoration: underline; }

/* ================================================
   Telefon — ülke kodu wrapper
   ================================================ */
.phone-input-wrapper:focus-within { border-color: var(--primary-color) !important; box-shadow: 0 0 0 3px rgba(227,6,19,.1); }
.phone-code-select { background: transparent; border: none; outline: none; font-size: 14px; cursor: pointer; padding: 10px 8px; min-width: 88px; font-family: inherit; }

/* ================================================
   Form gönderim kanalları
   ================================================ */
.submit-channel-btns { display: flex; gap: 10px; flex-wrap: wrap; margin-top: 4px; }
.channel-btn { flex: 1; min-width: 90px; padding: 12px 10px; border: 2px solid #e0e0e0; border-radius: 8px; background: #f8f8f8; font-size: 13px; font-weight: 700; cursor: pointer; transition: all .25s; font-family: 'Montserrat',sans-serif; display: flex; align-items: center; justify-content: center; gap: 6px; color: #333; }
.channel-btn:hover { transform: translateY(-2px); box-shadow: 0 4px 12px rgba(0,0,0,.15); }
.channel-btn.wa:hover, .channel-btn.wa.active { border-color:#25d366; background:#25d366; color:#fff; }
.channel-btn.tg:hover, .channel-btn.tg.active { border-color:#2aabee; background:#2aabee; color:#fff; }
.channel-btn.ml:hover, .channel-btn.ml.active { border-color:#e30613; background:#e30613; color:#fff; }

/* ================================================
   KVKK onay kutusu
   ================================================ */
.kvkk-check { display: flex; align-items: flex-start; gap: 10px; margin: 14px 0; font-size: 13px; color: #555; line-height: 1.5; cursor: pointer; }
.kvkk-check input[type="checkbox"] { width: 17px; height: 17px; margin-top: 2px; flex-shrink: 0; accent-color: var(--primary-color); cursor: pointer; }
.kvkk-check a { color: var(--primary-color); text-decoration: underline; font-weight: 600; }

/* ─── Tek gönder butonu ─── */
.btn-basvuru-gonder {
    display: block;
    width: 100%;
    margin-top: 16px;
    padding: 14px 20px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.2s;
    box-shadow: 0 4px 14px rgba(227,6,19,0.25);
}
.btn-basvuru-gonder:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(227,6,19,0.35);
}
.btn-basvuru-gonder:active {
    transform: translateY(0);
}

/* ================================================
   MULTI-STEP MODAL (Hızlı Başvuru)
   ================================================ */
.multi-step-modal { max-width: 500px; padding: 24px; }
.qa-step-title { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 4px; color: #111; text-align: center; }
.qa-step-subtitle { text-align: center; font-size: 14px; color: #666; margin-bottom: 20px; font-weight: 500; }
.qa-step-back { font-size: 13px; color: var(--primary-color); cursor: pointer; font-weight: 600; display: inline-block; margin-bottom: 16px; transition: color 0.2s; }
.qa-step-back:hover { color: var(--secondary-color); text-decoration: underline; }

.qa-packages-grid { display: flex; flex-direction: column; gap: 12px; max-height: 60vh; overflow-y: auto; padding-right: 4px; }
.qa-packages-grid::-webkit-scrollbar { width: 4px; }
.qa-packages-grid::-webkit-scrollbar-thumb { background: #ccc; border-radius: 4px; }

.qa-package-card {
    display: flex; align-items: center; justify-content: space-between; gap: 16px;
    padding: 12px 16px; border: 2px solid #eee; border-radius: 12px;
    background: #fafafa; cursor: pointer; transition: all 0.25s ease;
}
.qa-package-card:hover { border-color: var(--primary-color); background: #fff; box-shadow: 0 4px 12px rgba(227,6,19,0.1); transform: translateY(-2px); }
.qa-package-card.qa-highlighted { border-color: rgba(227,6,19,0.3); background: #fef2f2; }
.qa-package-card img { width: 44px; height: 44px; object-fit: contain; flex-shrink: 0; }
.qa-package-card h5 { flex: 1; font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 600; color: #222; margin: 0; line-height: 1.3; }
.qa-package-card .qa-package-price { font-size: 15px; font-weight: 700; color: #111; white-space: nowrap; text-align: right; }
.qa-package-card .qa-old-price { text-decoration: line-through; color: #999; font-size: 12px; display: block; margin-bottom: -2px; font-weight: 500; }

.qa-selected-package-header { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 24px; padding-bottom: 16px; border-bottom: 1px solid #eee; }
.qa-selected-package-header img { width: 48px; height: 48px; object-fit: contain; }
.qa-selected-package-header h4 { margin: 0; font-family: 'Montserrat', sans-serif; font-size: 18px; font-weight: 700; color: #111; }

.qa-payment-options { display: flex; flex-direction: column; gap: 16px; }
.qa-payment-card {
    position: relative; border: 2px solid #eee; border-radius: 12px; padding: 20px;
    background: #fafafa; cursor: pointer; transition: all 0.25s ease; text-align: center;
}
.qa-payment-card:hover { border-color: #ddd; background: #fff; box-shadow: 0 4px 12px rgba(0,0,0,0.05); transform: translateY(-2px); }
.qa-payment-card.highlighted { border-color: var(--primary-color); background: #fef2f2; }
.qa-payment-card.highlighted:hover { box-shadow: 0 4px 16px rgba(227,6,19,0.15); }
.qa-payment-card .badge {
    position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
    background: var(--primary-color); color: #fff; font-size: 11px; font-weight: 700;
    padding: 4px 12px; border-radius: 20px; white-space: nowrap; font-family: 'Montserrat', sans-serif;
}
.qa-payment-card h5 { margin: 0 0 8px; font-size: 16px; font-weight: 700; color: #333; font-family: 'Montserrat', sans-serif; }
.qa-payment-card .price { font-size: 24px; font-weight: 800; color: var(--primary-color); margin-bottom: 8px; }
.qa-payment-card .total-price { font-size: 13px; font-weight: 700; color: #444; margin-bottom: 8px; }
.qa-payment-card p { font-size: 13px; color: #666; line-height: 1.5; margin: 0 0 16px; }
.qa-payment-card .btn-devam {
    background: #111; color: #fff; border: none; padding: 10px 24px; border-radius: 8px;
    font-size: 14px; font-weight: 600; font-family: 'Montserrat', sans-serif; cursor: pointer; transition: background 0.2s;
}
.qa-payment-card.highlighted .btn-devam { background: var(--primary-color); }
.qa-payment-card:hover .btn-devam { background: #333; }
.qa-payment-card.highlighted:hover .btn-devam { background: var(--secondary-color); }

.qa-summary-box { background: #f4f6f8; border-radius: 10px; padding: 16px; margin-bottom: 20px; border-left: 4px solid var(--primary-color); }
.qa-summary-box h4 { margin: 0 0 8px; font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: #111; }
.qa-summary-box p { margin: 0; font-size: 13px; color: #555; line-height: 1.5; }

/* ================================================
   ZENGİN PAKET DETAY SAYFASI (pd-v2)
   ================================================ */
.pd-hero-v2 {
    position: relative;
    background: #0b0f19;
    color: #fff;
    padding: 60px 0 80px;
    overflow: hidden;
}
.pd-hero-v2 .pd-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0.25;
    filter: blur(8px);
}
.pd-hero-v2 .pd-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(11,15,25,0.7) 0%, #0b0f19 100%);
}
.pd-hero-inner.container {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.pd-hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
    align-items: center;
}
@media (max-width: 991px) {
    .pd-hero-grid { grid-template-columns: 1fr; gap: 30px; }
}
.pd-hero-badge-wrap { display: flex; gap: 10px; flex-wrap: wrap; margin-bottom: 16px; }
.pd-hero-badge {
    background: rgba(227,6,19,0.15);
    color: #ff4d4d;
    border: 1px solid rgba(227,6,19,0.3);
    padding: 6px 14px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.5px;
    font-family: 'Montserrat', sans-serif;
}
.pd-hero-badge--green {
    background: rgba(16,185,129,0.15);
    color: #34d399;
    border-color: rgba(16,185,129,0.3);
}
.pd-hero-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 38px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
    color: #ffffff;
}
@media (max-width: 768px) { .pd-hero-title { font-size: 28px; } }
.pd-hero-sub {
    font-size: 16px;
    color: #94a3b8;
    line-height: 1.6;
    margin-bottom: 24px;
}
.pd-hero-tags { display: flex; flex-wrap: wrap; gap: 12px; margin-bottom: 30px; }
.pd-tag {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    gap: 8px;
}
.pd-tag span { color: #34d399; font-weight: 800; }

.pd-hero-cta-box { display: flex; flex-direction: column; gap: 10px; }
.pd-hero-apply-btn {
    background: linear-gradient(135deg, #e30613 0%, #ff2a38 100%);
    color: #fff;
    border: none;
    padding: 18px 36px;
    border-radius: 12px;
    font-size: 17px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(227,6,19,0.4);
    transition: all 0.3s ease;
    text-align: center;
    width: 100%;
}
.pd-hero-apply-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(227,6,19,0.6);
}
.pd-hero-cta-note { font-size: 12px; color: #64748b; text-align: center; font-weight: 500; }

/* Fiyat Kartı */
.pd-hero-price-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 28px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}
.pd-price-card-header h3 { font-family: 'Montserrat', sans-serif; font-size: 20px; font-weight: 800; margin: 0 0 4px; color: #fff; }
.pd-price-card-header p { font-size: 13px; color: #94a3b8; margin: 0 0 20px; }

.pd-pcard-option {
    background: rgba(15, 23, 42, 0.6);
    border: 1.5px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 16px;
    margin-bottom: 14px;
    position: relative;
    transition: all 0.25s ease;
}
.pd-pcard-option--popular {
    border-color: rgba(227, 6, 19, 0.5);
    background: rgba(227, 6, 19, 0.08);
}
.pd-pcard-badge {
    position: absolute;
    top: -11px;
    right: 16px;
    background: #e30613;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    padding: 2px 10px;
    border-radius: 20px;
    font-family: 'Montserrat', sans-serif;
    letter-spacing: 0.5px;
}
.pd-pcard-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 6px; }
.pd-pcard-type { font-size: 14px; font-weight: 700; color: #f1f5f9; font-family: 'Montserrat', sans-serif; }
.pd-pcard-tag { font-size: 11px; font-weight: 700; color: #94a3b8; background: rgba(255,255,255,0.08); padding: 2px 8px; border-radius: 6px; }
.pd-pcard-tag.green { color: #34d399; background: rgba(52,211,153,0.15); }

.pd-pcard-amount { display: flex; align-items: baseline; gap: 4px; color: #fff; margin-bottom: 6px; }
.pd-pcard-amount.green { color: #34d399; }
.pd-pcard-amount .currency { font-size: 20px; font-weight: 700; }
.pd-pcard-amount .val { font-size: 32px; font-weight: 900; font-family: 'Montserrat', sans-serif; line-height: 1; }
.pd-pcard-amount .period { font-size: 13px; color: #94a3b8; font-weight: 600; }
.pd-pcard-desc { font-size: 12px; color: #94a3b8; margin: 0; line-height: 1.4; }

.pd-pcard-btn {
    width: 100%;
    background: #fff;
    color: #0f172a;
    border: none;
    padding: 14px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 800;
    font-family: 'Montserrat', sans-serif;
    cursor: pointer;
    transition: all 0.25s ease;
    margin-top: 10px;
}
.pd-pcard-btn:hover { background: #e30613; color: #fff; }

/* Main Section Content */
.pd-main-section { background: #f8fafc; color: #1e293b; padding: 60px 0; }
.pd-main-section .container { max-width: 1140px; margin: 0 auto; padding: 0 20px; }

.pd-section-header { text-align: center; margin-bottom: 40px; }
.pd-section-header h2 { font-family: 'Montserrat', sans-serif; font-size: 28px; font-weight: 800; color: #0f172a; margin-bottom: 8px; }
.pd-section-header p { font-size: 15px; color: #64748b; margin: 0; }

.pd-channels-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-bottom: 50px;
}
.pd-channel-card {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    padding: 24px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.03);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.pd-channel-card:hover { transform: translateY(-4px); box-shadow: 0 10px 25px rgba(0,0,0,0.08); border-color: rgba(227,6,19,0.3); }
.pd-channel-icon { font-size: 36px; margin-bottom: 12px; }
.pd-channel-card h3 { font-family: 'Montserrat', sans-serif; font-size: 17px; font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.pd-channel-card p { font-size: 13px; color: #64748b; line-height: 1.5; margin: 0; }

/* Workflow Box */
.pd-workflow-box {
    background: #0f172a;
    color: #fff;
    border-radius: 20px;
    padding: 40px 30px;
    margin-bottom: 50px;
    text-align: center;
}
.pd-workflow-box h3 { font-family: 'Montserrat', sans-serif; font-size: 24px; font-weight: 800; margin-bottom: 30px; }
.pd-workflow-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 24px; }
.pd-wf-step { background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1); border-radius: 14px; padding: 24px; text-align: center; }
.pd-wf-num {
    width: 44px; height: 44px; background: #e30613; color: #fff; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 20px; font-weight: 800; font-family: 'Montserrat', sans-serif; margin: 0 auto 16px;
}
.pd-wf-step h4 { font-family: 'Montserrat', sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.pd-wf-step p { font-size: 13px; color: #94a3b8; margin: 0; line-height: 1.5; }

/* FAQ & Terms */
.pd-faq-wrap { margin-bottom: 40px; }
.pd-faq-wrap h3 { font-family: 'Montserrat', sans-serif; font-size: 22px; font-weight: 800; margin-bottom: 20px; color: #0f172a; }
.pd-faq-list { display: flex; flex-direction: column; gap: 12px; }
.pd-faq-item { background: #fff; border: 1px solid #e2e8f0; border-radius: 12px; padding: 16px 20px; cursor: pointer; }
.pd-faq-item summary { font-family: 'Montserrat', sans-serif; font-size: 15px; font-weight: 700; color: #1e293b; outline: none; }
.pd-faq-item p { margin-top: 10px; font-size: 14px; color: #64748b; line-height: 1.6; }

.pd-terms-box { background: #e2e8f0; border-radius: 12px; padding: 20px; font-size: 12px; color: #475569; line-height: 1.6; }
.pd-terms-box h4 { font-family: 'Montserrat', sans-serif; font-size: 13px; font-weight: 700; margin-bottom: 6px; color: #1e293b; }

/* ================================================
   SOL ALT YÜZEN "HEMEN ARA" BUTONU (DESKTOP & MOBİL)
   ================================================ */
.quick-apply-btn {
    display: none !important;
}

.floating-call-btn, .mobile-call-btn {
    display: flex !important;
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    height: 52px;
    padding: 0 26px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    color: #ffffff !important;
    align-items: center;
    justify-content: center;
    gap: 10px;
    box-shadow: 0 8px 30px rgba(239, 68, 68, 0.45);
    z-index: 9999;
    text-decoration: none !important;
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    animation: pulseRed 2.5s infinite;
}

.floating-call-btn:hover, .mobile-call-btn:hover {
    transform: translateX(-50%) translateY(-3px) scale(1.04);
    box-shadow: 0 12px 35px rgba(239, 68, 68, 0.65);
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
}

.floating-call-btn svg, .mobile-call-btn svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
    flex-shrink: 0;
}

.floating-call-text {
    display: inline-flex;
    align-items: center;
    white-space: nowrap;
}

.call-btn-label {
    font-weight: 800;
    letter-spacing: 0.6px;
}

@media (max-width: 768px) {
    .floating-call-btn, .mobile-call-btn {
        bottom: 18px;
        left: 50%;
        transform: translateX(-50%);
        width: auto;
        height: 50px;
        padding: 0 24px;
        border-radius: 50px;
        gap: 8px;
        box-shadow: 0 8px 25px rgba(239, 68, 68, 0.55);
    }
    .floating-call-text {
        display: inline-flex !important;
        font-size: 14px;
    }
    .floating-call-btn svg, .mobile-call-btn svg {
        width: 22px;
        height: 22px;
    }
}

@media (max-width: 480px) {
    .floating-call-btn, .mobile-call-btn {
        bottom: 14px;
        left: 50%;
        transform: translateX(-50%);
        height: 46px;
        padding: 0 20px;
        gap: 6px;
    }
    .floating-call-text {
        font-size: 13.5px;
    }
}

@keyframes pulseRed {
    0%, 100% { box-shadow: 0 6px 25px rgba(239, 68, 68, 0.5); }
    50% { box-shadow: 0 6px 35px rgba(239, 68, 68, 0.85); }
}

/* ===== HEADER INFO STRIP ===== */
.header-info-strip {
    background: #0d0d1a;
    border-bottom: 1.5px solid rgba(227, 6, 19, 0.22);
    padding: 8px 30px;
    font-family: 'Montserrat', sans-serif;
    font-size: 11.5px;
    font-weight: 600;
    color: #94a3b8;
}
.header-info-strip-inner {
    max-width: 100%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}
.header-info-strip .dealer-code {
    color: #e30613;
    font-weight: 800;
    white-space: nowrap;
    background: rgba(227, 6, 19, 0.08);
    padding: 3px 10px;
    border-radius: 6px;
    border: 1px solid rgba(227, 6, 19, 0.25);
    letter-spacing: 0.5px;
}
@media (max-width: 768px) {
    .header-info-strip-inner {
        flex-direction: column;
        text-align: center;
        gap: 6px;
    }
    .header-info-strip {
        padding: 8px 15px;
        font-size: 11px;
    }
}

/* ===== AED Disclaimer Banner under Slider ===== */
.aed-resmi-site-degil-uyari {
    background: #f8fafc;
    border-top: 1px solid #e2e8f0;
    border-bottom: 1px solid #e2e8f0;
    padding: 24px 20px;
    font-family: 'Montserrat', sans-serif;
    text-align: center;
}
.aed-resmi-site-degil-container {
    max-width: 1000px;
    margin: 0 auto;
}
.aed-resmi-site-degil-title {
    font-size: 16px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}
.aed-resmi-site-degil-desc {
    font-size: 13.5px;
    line-height: 1.7;
    color: #475569;
    margin: 0;
}
@media (max-width: 768px) {
    .aed-resmi-site-degil-uyari {
        padding: 20px 15px;
    }
    .aed-resmi-site-degil-title {
        font-size: 14px;
    }
    .aed-resmi-site-degil-desc {
        font-size: 12.5px;
    }
}
