/* Ege Tech - Minimal Kurumsal Tasarım */
:root {
    --primary: #0a1628;
    --primary-light: #1a2d4a;
    --secondary: #1e3a5f;
    --accent: #3b82f6;
    --accent-light: #60a5fa;
    --purple: #8b5cf6;
    --cta: #f97316;
    --success: #10b981;
    --white: #ffffff;
    --gray-50: #f8fafc;
    --gray-100: #f1f5f9;
    --gray-200: #e2e8f0;
    --gray-300: #cbd5e1;
    --gray-400: #94a3b8;
    --gray-500: #64748b;
    --gray-600: #475569;
    --gray-700: #334155;
    --gradient: linear-gradient(135deg, var(--accent) 0%, var(--purple) 100%);
    --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
    --radius: 6px;
    --radius-lg: 12px;
    --transition: all 0.2s ease;
    --font: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    font-size: 15px;
}

body {
    font-family: var(--font);
    line-height: 1.5;
    color: var(--gray-600);
    background: var(--white);
}

.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

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

.gradient-text {
    background: var(--gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-lg {
    padding: 12px 24px;
    font-size: 14px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-primary {
    background: var(--gradient);
    color: var(--white);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(59, 130, 246, 0.3);
}

.btn-glass {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(8px);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-white {
    background: var(--white);
    color: var(--primary);
}

.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 1px solid var(--gray-200);
}

.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
}


/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 12px 0;
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 8px;
}

.logo-icon {
    width: 32px;
    height: 32px;
}

.logo-icon svg {
    width: 100%;
    height: 100%;
}

.logo-text {
    font-size: 18px;
    font-weight: 700;
    color: var(--white);
}

.logo-text span {
    color: var(--accent-light);
}

.header.scrolled .logo-text {
    color: var(--primary);
}

.header.scrolled .logo-text span {
    color: var(--accent);
}

.nav-menu ul {
    display: flex;
    gap: 24px;
}

.nav-menu a {
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
}

.header.scrolled .nav-menu a {
    color: var(--gray-600);
}

.nav-menu a:hover {
    color: var(--accent-light);
}

.header.scrolled .nav-menu a:hover {
    color: var(--accent);
}

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

.header-phone {
    display: flex;
    align-items: center;
    gap: 8px;
}

.phone-icon {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
}

.header.scrolled .phone-icon {
    background: var(--gray-100);
    color: var(--accent);
}

.phone-text span {
    display: block;
    font-size: 10px;
    color: rgba(255, 255, 255, 0.6);
}

.phone-text strong {
    font-size: 13px;
    color: var(--white);
}

.header.scrolled .phone-text span {
    color: var(--gray-400);
}

.header.scrolled .phone-text strong {
    color: var(--primary);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    z-index: 100;
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: var(--transition);
}

.header.scrolled .mobile-toggle span {
    background: var(--primary);
}

/* Mobile Header Buttons */
.mobile-header-btns {
    display: none;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.mobile-header-btns .nav-btn {
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 700;
    white-space: nowrap;
}

@media (max-width: 900px) {

    .nav-menu,
    .header-actions,
    .mega-nav {
        display: none !important;
    }

    .mobile-toggle {
        display: flex !important;
    }

    .mobile-header-btns {
        display: flex !important;
    }

    .header .container {
        padding: 0 10px;
    }

    .logo {
        flex: 0 0 auto;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .logo-text {
        font-size: 15px;
    }

    .mobile-header-btns {
        flex: 1;
        justify-content: flex-end;
        margin-right: 10px;
    }
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    max-width: 320px;
    height: 100vh;
    background: var(--white);
    z-index: 2000;
    transition: right 0.3s ease;
    box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    border-bottom: 1px solid var(--gray-200);
}

.mobile-menu-header .logo-text {
    color: var(--primary);
}

.mobile-menu-header .logo-text span {
    color: var(--accent);
}

.mobile-menu-close {
    width: 36px;
    height: 36px;
    background: var(--gray-100);
    border: none;
    border-radius: var(--radius);
    color: var(--gray-600);
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

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

.mobile-menu-content {
    padding: 20px;
}

.mobile-menu-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.mobile-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 16px;
    font-size: 13px;
    font-weight: 700;
    color: #fff;
    border-radius: var(--radius);
    text-align: center;
}

.mobile-btn-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
}

.mobile-btn-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 20px;
}

.mobile-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 500;
    color: var(--gray-700);
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.mobile-nav-item i {
    font-size: 18px;
    color: var(--accent);
    width: 24px;
}

.mobile-nav-item:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.mobile-nav-live {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}

.mobile-nav-live i {
    color: #ef4444;
    animation: pulse 1.5s infinite;
}

.mobile-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 16px;
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    background: var(--gradient);
    border-radius: var(--radius);
}

/* Mobile Menu Overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.mobile-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Hamburger Animation */
.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}


/* Mega Navigation */
.mega-nav {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    border-radius: var(--radius);
    transition: var(--transition);
    white-space: nowrap;
}

.nav-btn-outline {
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-btn-outline:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.header.scrolled .nav-btn-outline {
    background: var(--gray-100);
    color: var(--gray-600);
    border-color: var(--gray-200);
}

.header.scrolled .nav-btn-outline:hover {
    background: var(--gray-200);
    color: var(--primary);
}

.nav-btn-orange {
    background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(249, 115, 22, 0.3);
}

.nav-btn-orange:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(249, 115, 22, 0.4);
}

.nav-btn-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    color: #fff;
    box-shadow: 0 2px 8px rgba(139, 92, 246, 0.3);
}

.nav-btn-purple:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(139, 92, 246, 0.4);
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    background: transparent;
    color: rgba(255, 255, 255, 0.9);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.nav-dropdown-btn i {
    font-size: 10px;
    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-btn i {
    transform: rotate(180deg);
}

.header.scrolled .nav-dropdown-btn {
    color: var(--gray-600);
}

.header.scrolled .nav-dropdown-btn:hover {
    color: var(--primary);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    min-width: 680px;
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    padding: 24px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1000;
}

.nav-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.dropdown-menu-sm {
    min-width: 200px;
    padding: 12px 0;
}

.dropdown-menu-sm ul li a {
    display: block;
    padding: 10px 20px;
    font-size: 13px;
    color: var(--gray-600);
    transition: var(--transition);
}

.dropdown-menu-sm ul li a:hover {
    background: var(--gray-50);
    color: var(--accent);
}

.dropdown-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.dropdown-col .dropdown-header {
    height: 80px;
    border-radius: var(--radius);
    overflow: hidden;
    margin-bottom: 12px;
}

.dropdown-col .dropdown-header img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dropdown-col h4 {
    font-size: 13px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--accent);
}

.dropdown-col ul li {
    margin-bottom: 6px;
}

.dropdown-col ul li a {
    font-size: 12px;
    color: var(--gray-600);
    transition: var(--transition);
    display: block;
    padding: 4px 0;
}

.dropdown-col ul li a:hover {
    color: var(--accent);
    padding-left: 6px;
}

.dropdown-col ul li a.highlight {
    color: var(--cta);
    font-weight: 600;
}

.dropdown-footer {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-200);
    text-align: center;
}

.dropdown-footer a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    color: var(--accent);
}

.dropdown-footer a:hover {
    gap: 10px;
}

/* Header Live Button */
.header-live {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    font-size: 12px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(239, 68, 68, 0.2);
    border-radius: var(--radius);
    transition: var(--transition);
}

.header-live i {
    color: #ef4444;
    animation: pulse 1.5s infinite;
}

.header-live:hover {
    background: rgba(239, 68, 68, 0.3);
}

.header.scrolled .header-live {
    background: rgba(239, 68, 68, 0.1);
    color: #ef4444;
}


/* Hero Section - Maç Slider */
.hero-section {
    position: relative;
    height: 80vh;
    min-height: 550px;
    max-height: 700px;
}

.heroSwiper {
    width: 100%;
    height: 100%;
}

.heroSwiper .swiper-slide {
    position: relative;
    overflow: hidden;
}

/* Arka Plan Renkleri */
.slide-bg-color {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
}

.slide-bg-color::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1489944440615-453fc2b6a9a9?w=1920&q=80') center/cover no-repeat;
    opacity: 0.15;
}

.slide-bg-color.bg-fbgs {
    background: linear-gradient(135deg, #0a1628 0%, #1a2d4a 100%);
}

.slide-bg-color.bg-bjkts {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
}

.slide-bg-color.bg-campaign {
    background: linear-gradient(135deg, #1e3a5f 0%, #0a1628 100%);
}

/* Neon Kampanya Slide */
.slide-bg-color.bg-campaign-neon {
    background: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
}

.slide-bg-color.bg-campaign-neon::after {
    background: none;
}

.hero-campaign-neon {
    position: relative;
    z-index: 10;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    align-items: center;
    padding: 80px 40px;
    gap: 30px;
    overflow: hidden;
}

/* Parçacık Efekti */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particles span {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(139, 92, 246, 0.6);
    border-radius: 50%;
    animation: float-particle 8s infinite;
}

.particles span:nth-child(1) {
    left: 10%;
    top: 20%;
    animation-delay: 0s;
}

.particles span:nth-child(2) {
    left: 30%;
    top: 60%;
    animation-delay: 1s;
    width: 4px;
    height: 4px;
}

.particles span:nth-child(3) {
    left: 50%;
    top: 30%;
    animation-delay: 2s;
}

.particles span:nth-child(4) {
    left: 70%;
    top: 70%;
    animation-delay: 3s;
    width: 8px;
    height: 8px;
}

.particles span:nth-child(5) {
    left: 85%;
    top: 40%;
    animation-delay: 4s;
}

.particles span:nth-child(6) {
    left: 20%;
    top: 80%;
    animation-delay: 5s;
    width: 5px;
    height: 5px;
}

@keyframes float-particle {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-30px) scale(1.2);
        opacity: 1;
    }
}

/* Sol Taraf - Neon */
.neon-left {
    color: #fff;
}

.neon-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
    animation: pulse-glow 2s infinite;
}

.neon-badge i {
    font-size: 16px;
    animation: flash 1s infinite;
}

.neon-badge span {
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

@keyframes flash {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

@keyframes pulse-glow {

    0%,
    100% {
        box-shadow: 0 0 20px rgba(249, 115, 22, 0.5);
    }

    50% {
        box-shadow: 0 0 40px rgba(249, 115, 22, 0.8);
    }
}

.neon-title {
    font-size: 48px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 30px;
}

.neon-glow {
    background: linear-gradient(90deg, #00d4ff, #8b5cf6, #f97316);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: gradient-shift 3s ease infinite;
    text-shadow: 0 0 30px rgba(139, 92, 246, 0.5);
}

@keyframes gradient-shift {
    0% {
        background-position: 0% center;
    }

    50% {
        background-position: 100% center;
    }

    100% {
        background-position: 0% center;
    }
}

.neon-price-box {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 30px;
}

.price-glow {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid rgba(139, 92, 246, 0.5);
    border-radius: 16px;
    padding: 20px 30px;
    position: relative;
    box-shadow: 0 0 30px rgba(139, 92, 246, 0.3), inset 0 0 30px rgba(139, 92, 246, 0.1);
}

.price-glow .old {
    display: block;
    font-size: 16px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    margin-bottom: 4px;
}

.price-glow .current {
    display: flex;
    align-items: baseline;
}

.price-glow .currency {
    font-size: 24px;
    font-weight: 700;
    color: #00d4ff;
}

.price-glow .amount {
    font-size: 64px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    animation: price-pulse 2s infinite;
}

.price-glow .period {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.6);
    margin-left: 4px;
}

@keyframes price-pulse {

    0%,
    100% {
        text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
    }

    50% {
        text-shadow: 0 0 40px rgba(0, 212, 255, 0.8), 0 0 60px rgba(0, 212, 255, 0.4);
    }
}

.guarantee-badge {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: rotate-badge 10s linear infinite;
    box-shadow: 0 0 30px rgba(249, 115, 22, 0.5);
}

.badge-inner {
    text-align: center;
    color: #fff;
}

.badge-inner .num {
    display: block;
    font-size: 28px;
    font-weight: 900;
    line-height: 1;
}

.badge-inner .text {
    font-size: 10px;
    font-weight: 700;
    line-height: 1.2;
}

@keyframes rotate-badge {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.btn-neon {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #00d4ff, #8b5cf6);
    color: #fff;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 16px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    box-shadow: 0 0 30px rgba(0, 212, 255, 0.5);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-neon::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shine 2s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }

    50%,
    100% {
        left: 100%;
    }
}

.btn-neon:hover {
    transform: translateY(-3px);
    box-shadow: 0 0 50px rgba(0, 212, 255, 0.7);
}

.btn-neon i {
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-neon:hover i {
    transform: translateX(5px);
}

/* Mobil Kampanya Info Banner */
.mobile-campaign-info {
    display: none;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 16px;
}

.mci-item {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 6px 12px;
    border-radius: 20px;
    color: #fff;
    font-size: 11px;
    font-weight: 600;
}

.mci-item i {
    font-size: 12px;
    color: #00d4ff;
}

.mci-item:nth-child(1) i {
    color: #f97316;
}

.mci-item:nth-child(2) i {
    color: #10b981;
}

.mci-item:nth-child(3) i {
    color: #8b5cf6;
}

/* Orta Kısım - Kampanya Yazısı */
.neon-center {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.center-content {
    text-align: center;
    padding: 40px;
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(139, 92, 246, 0.4);
    border-radius: 24px;
    backdrop-filter: blur(10px);
    box-shadow: 0 0 40px rgba(139, 92, 246, 0.2);
}

.center-tag {
    display: inline-block;
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    color: #fff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
    box-shadow: 0 0 20px rgba(139, 92, 246, 0.5);
}

.center-title {
    font-size: 42px;
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 16px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.center-title span {
    color: #00d4ff;
    text-shadow: 0 0 30px rgba(0, 212, 255, 0.7);
}

.center-desc {
    font-size: 16px;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
}

.center-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.cf-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
}

.cf-item i {
    color: #10b981;
    font-size: 20px;
    filter: drop-shadow(0 0 8px rgba(16, 185, 129, 0.6));
}

/* Sağ Taraf - Floating Elements */
.neon-right {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.meter-ring {
    width: 220px;
    height: 220px;
    position: relative;
}

.meter-ring svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.ring-bg {
    fill: none;
    stroke: rgba(255, 255, 255, 0.1);
    stroke-width: 8;
}

.ring-progress {
    fill: none;
    stroke: url(#neonGradient);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 70;
    animation: progress-fill 2s ease-out forwards;
    filter: drop-shadow(0 0 10px rgba(0, 212, 255, 0.8));
}

@keyframes progress-fill {
    0% {
        stroke-dashoffset: 283;
    }

    100% {
        stroke-dashoffset: 70;
    }
}

.meter-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.meter-value .speed {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: #fff;
    line-height: 1;
    text-shadow: 0 0 20px rgba(0, 212, 255, 0.5);
}

.meter-value .unit {
    font-size: 16px;
    color: #00d4ff;
    font-weight: 700;
}

.meter-label {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 600;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 12px 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    animation: float-card 4s ease-in-out infinite;
}

.float-card i {
    font-size: 20px;
    color: #00d4ff;
}

.card-wifi {
    top: 15%;
    right: 10%;
    animation-delay: 0s;
}

.card-router {
    bottom: 25%;
    right: 5%;
    animation-delay: 1s;
}

.card-router i {
    color: #f97316;
}

.card-support {
    bottom: 15%;
    left: 10%;
    animation-delay: 2s;
}

.card-support i {
    color: #8b5cf6;
}

@keyframes float-card {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Neon Kampanya Responsive */
@media (max-width: 900px) {
    .hero-campaign-neon {
        grid-template-columns: 1fr;
        padding: 70px 20px 90px;
        gap: 16px;
        text-align: center;
        min-height: auto;
        height: 100%;
    }

    .neon-left {
        order: 1;
    }

    .neon-badge {
        padding: 6px 12px;
        margin-bottom: 10px;
    }

    .neon-badge i {
        font-size: 12px;
    }

    .neon-badge span {
        font-size: 10px;
    }

    .neon-title {
        font-size: 24px;
        margin-bottom: 14px;
    }

    .neon-price-box {
        justify-content: center;
        flex-wrap: wrap;
        gap: 10px;
        margin-bottom: 14px;
    }

    .price-glow {
        padding: 10px 16px;
    }

    .price-glow .old {
        font-size: 12px;
    }

    .price-glow .currency {
        font-size: 16px;
    }

    .price-glow .amount {
        font-size: 34px;
    }

    .price-glow .period {
        font-size: 12px;
    }

    .guarantee-badge {
        width: 55px;
        height: 55px;
    }

    .badge-inner .num {
        font-size: 16px;
    }

    .badge-inner .text {
        font-size: 7px;
    }

    /* Mobil kampanya info görünsün */
    .mobile-campaign-info {
        display: flex;
    }

    .btn-neon {
        padding: 10px 20px;
        font-size: 11px;
    }

    .neon-center {
        display: none;
    }

    .neon-right {
        display: none;
    }

    .particles span {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 500px) {
    .hero-campaign-neon {
        padding: 65px 16px 70px;
        gap: 12px;
    }

    .neon-title {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .price-glow {
        padding: 8px 14px;
    }

    .price-glow .amount {
        font-size: 28px;
    }

    .guarantee-badge {
        width: 50px;
        height: 50px;
    }

    .badge-inner .num {
        font-size: 14px;
    }

    .btn-neon {
        padding: 8px 16px;
        font-size: 10px;
    }

    .mci-item {
        padding: 5px 10px;
        font-size: 10px;
    }

    .mci-item i {
        font-size: 10px;
    }
}

/* 3 Sütunlu Layout */
.hero-match-layout {
    position: relative;
    z-index: 10;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr minmax(300px, 450px) 1fr;
    align-items: center;
    padding-top: 0;
}

/* Futbolcu Resimleri */
.match-player {
    height: 100%;
    display: flex;
    align-items: flex-end;
    justify-content: center;
}

.match-player img {
    height: 550px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.player-left {
    justify-content: flex-end;
    padding-right: 20px;
}

.player-right {
    justify-content: flex-start;
    padding-left: 20px;
}

/* Orta İçerik */
.match-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    text-align: center;
    padding: 100px 20px 20px;
    height: 100%;
}

.match-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Takımlar VS */
.match-versus {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.team-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.team-badge img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.3));
}

.team-badge span {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
}

.vs-info {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.vs-date {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 4px;
}

.vs-time {
    font-size: 36px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.vs-text {
    font-size: 14px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 4px;
}

/* Fiyat Teklifi */
.match-offer {
    background: rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    padding: 16px 30px;
    margin-bottom: 20px;
    text-align: center;
}

.offer-title {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: #fbbf24;
    margin-bottom: 2px;
}

.offer-subtitle {
    display: block;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 6px;
}

.offer-price {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
}

/* Satın Al Butonu */
.btn-match {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    background: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    color: #fff;
    padding: 14px 50px;
    border-radius: 8px;
    font-size: 18px;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(22, 163, 74, 0.4);
    transition: all 0.3s ease;
}

.btn-match small {
    font-size: 11px;
    font-weight: 600;
    opacity: 0.9;
}

.btn-match:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(22, 163, 74, 0.5);
}

/* Swiper Pagination */
.heroSwiper .swiper-pagination {
    bottom: 100px;
}

/* Kampanya Slide Layout - Digiturk Tarzı */
.hero-campaign-layout {
    position: relative;
    z-index: 10;
    height: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    padding: 80px 60px;
    gap: 40px;
}

.campaign-left {
    color: #fff;
}

.campaign-headline {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 30px;
}

.campaign-headline span {
    color: #f97316;
}

.campaign-offer-box {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 24px;
}

.offer-tag {
    background: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
}

.offer-badge {
    background: linear-gradient(135deg, #ec4899 0%, #be185d 100%);
    color: #fff;
    padding: 16px 20px;
    border-radius: 50%;
    text-align: center;
    width: 100px;
    height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.badge-text {
    font-size: 18px;
    font-weight: 800;
    display: block;
}

.badge-sub {
    font-size: 11px;
    line-height: 1.2;
}

.campaign-price-box {
    display: flex;
    align-items: baseline;
    gap: 12px;
}

.price-label {
    font-size: 18px;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
}

.price-amount {
    font-size: 56px;
    font-weight: 800;
    color: #f97316;
}

.campaign-right {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    height: 100%;
    position: relative;
}

.campaign-right::before {
    content: '';
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(249, 115, 22, 0.4) 0%, transparent 70%);
    border-radius: 50%;
    z-index: -1;
}

.campaign-right::after {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    top: 20%;
    right: 10%;
    z-index: -1;
}

.campaign-right img {
    max-height: 500px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.5));
    border-radius: 20px;
    mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, black 80%, transparent 100%);
}

/* Kampanya Slide Responsive */
@media (max-width: 900px) {
    .hero-campaign-layout {
        grid-template-columns: 1fr;
        padding: 70px 20px;
        gap: 20px;
        text-align: center;
    }

    .campaign-headline {
        font-size: 26px;
        margin-bottom: 20px;
    }

    .campaign-offer-box {
        justify-content: center;
        flex-wrap: wrap;
        gap: 12px;
        margin-bottom: 16px;
    }

    .offer-tag {
        font-size: 11px;
        padding: 10px 14px;
    }

    .offer-badge {
        width: 80px;
        height: 80px;
        padding: 12px;
    }

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

    .badge-sub {
        font-size: 9px;
    }

    .campaign-price-box {
        justify-content: center;
    }

    .price-label {
        font-size: 14px;
    }

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

    .campaign-right {
        display: none;
    }
}

.heroSwiper .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.4);
    opacity: 1;
}

.heroSwiper .swiper-pagination-bullet-active {
    background: #fff;
    width: 28px;
    border-radius: 5px;
}

/* Kampanya İkon Bar */
.hero-promo-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 50;
    display: flex;
    justify-content: center;
    gap: 0;
    background: rgba(0, 0, 0, 0.7);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 32px;
    border-right: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s ease;
}

.promo-item:last-child {
    border-right: none;
}

.promo-item:hover {
    background: rgba(255, 255, 255, 0.15);
}

.promo-item.highlight {
    background: rgba(139, 92, 246, 0.5);
}

.promo-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, #f97316, #ea580c);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(249, 115, 22, 0.4);
}

.promo-item.highlight .promo-icon {
    background: linear-gradient(135deg, #8b5cf6, #7c3aed);
    box-shadow: 0 4px 15px rgba(139, 92, 246, 0.4);
}

.promo-icon i {
    font-size: 22px;
    color: #fff;
}

.promo-item span {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.4;
}

.promo-item span strong {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
}

/* Responsive */
@media (max-width: 900px) {
    .hero-section {
        height: auto;
        min-height: 520px;
    }

    .heroSwiper,
    .heroSwiper .swiper-slide {
        height: auto !important;
        min-height: 520px;
    }

    .hero-match-layout {
        grid-template-columns: 1fr 1.2fr 1fr;
        align-items: end;
        min-height: 520px;
        padding-bottom: 70px;
    }

    .match-player {
        align-items: flex-end;
        padding-bottom: 0;
    }

    .match-player img {
        height: 320px;
    }

    .match-center {
        padding: 80px 8px 20px;
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .match-tag {
        font-size: 9px;
        padding: 4px 10px;
        margin-bottom: 10px;
    }

    .match-versus {
        gap: 10px;
        margin-bottom: 12px;
    }

    .team-badge img {
        width: 38px;
        height: 38px;
    }

    .team-badge span {
        font-size: 9px;
    }

    .vs-time {
        font-size: 20px;
    }

    .vs-date {
        font-size: 8px;
    }

    .match-offer {
        padding: 8px 12px;
        margin-bottom: 10px;
    }

    .offer-title {
        font-size: 9px;
    }

    .offer-subtitle {
        font-size: 7px;
    }

    .offer-price {
        font-size: 18px;
    }

    .btn-match {
        padding: 8px 18px;
        font-size: 11px;
    }

    .btn-match small {
        font-size: 7px;
    }

    .player-left {
        padding-right: 5px;
    }

    .player-right {
        padding-left: 5px;
    }

    .hero-promo-bar {
        padding: 0;
    }

    .promo-item {
        padding: 8px 10px;
        gap: 6px;
    }

    .promo-icon {
        width: 28px;
        height: 28px;
        border-radius: 6px;
    }

    .promo-icon i {
        font-size: 12px;
    }

    .promo-item span {
        font-size: 8px;
    }

    .promo-item span strong {
        font-size: 9px;
    }

    .heroSwiper .swiper-pagination {
        bottom: 60px;
    }
}

@media (max-width: 500px) {
    .hero-section {
        min-height: 500px;
    }

    .heroSwiper,
    .heroSwiper .swiper-slide {
        min-height: 500px;
    }

    .hero-match-layout {
        grid-template-columns: 1fr 1.3fr 1fr;
        min-height: 500px;
        padding-bottom: 60px;
    }

    .match-player img {
        height: 300px;
    }

    .match-center {
        padding: 70px 5px 20px;
    }

    .match-tag {
        font-size: 8px;
        padding: 3px 8px;
        margin-bottom: 8px;
    }

    .match-versus {
        gap: 8px;
        margin-bottom: 10px;
    }

    .team-badge img {
        width: 32px;
        height: 32px;
    }

    .team-badge span {
        font-size: 8px;
    }

    .vs-time {
        font-size: 18px;
    }

    .vs-date {
        font-size: 7px;
    }

    .vs-text {
        font-size: 9px;
    }

    .match-offer {
        padding: 6px 10px;
        margin-bottom: 8px;
    }

    .offer-title {
        font-size: 8px;
    }

    .offer-subtitle {
        display: none;
    }

    .offer-price {
        font-size: 16px;
    }

    .btn-match {
        padding: 6px 14px;
        font-size: 10px;
        border-radius: 5px;
    }

    .btn-match small {
        font-size: 6px;
    }

    .promo-item {
        padding: 6px 6px;
        gap: 4px;
    }

    .promo-icon {
        width: 24px;
        height: 24px;
        border-radius: 5px;
    }

    .promo-icon i {
        font-size: 10px;
    }

    .promo-item span {
        font-size: 7px;
        line-height: 1.2;
    }

    .promo-item span strong {
        font-size: 7px;
    }

    .heroSwiper .swiper-pagination {
        bottom: 55px;
    }
}

@media (max-width: 380px) {
    .hero-section {
        min-height: 480px;
    }

    .heroSwiper,
    .heroSwiper .swiper-slide {
        min-height: 480px;
    }

    .hero-match-layout {
        min-height: 480px;
        padding-bottom: 55px;
    }

    .match-player img {
        height: 260px;
    }

    .match-center {
        padding: 65px 4px 15px;
    }

    .team-badge img {
        width: 28px;
        height: 28px;
    }

    .team-badge span {
        font-size: 7px;
    }

    .vs-time {
        font-size: 16px;
    }

    .offer-price {
        font-size: 14px;
    }

    .btn-match {
        padding: 5px 12px;
        font-size: 9px;
    }

    .heroSwiper .swiper-pagination {
        bottom: 52px;
    }
}


/* Floating Features - Fantastik Style */
/* Kaldırıldı */

/* Section Styles */
.section-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
}

.section-badge.light {
    color: var(--accent-light);
}

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

.section-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title.light {
    color: var(--white);
}

.section-desc {
    font-size: 14px;
    color: var(--gray-500);
    max-width: 450px;
    margin: 0 auto;
}

/* Packages Section - Kompakt */
.packages-section {
    padding: 60px 0;
    background: var(--gray-50);
}

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

.package-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.package-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.package-card.featured {
    border: 2px solid var(--accent);
    transform: scale(1.02);
}

.package-card.featured:hover {
    transform: scale(1.02) translateY(-4px);
}

.package-ribbon {
    position: absolute;
    top: -1px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient);
    color: var(--white);
    padding: 4px 14px;
    border-radius: 0 0 var(--radius) var(--radius);
    font-size: 10px;
    font-weight: 700;
}

.package-card {
    position: relative;
}

.package-header {
    text-align: center;
    margin-bottom: 16px;
}

.package-icon {
    width: 44px;
    height: 44px;
    background: var(--gray-100);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
}

.package-icon i {
    font-size: 18px;
    color: var(--accent);
}

.package-icon.premium {
    background: var(--gradient);
}

.package-icon.premium i {
    color: var(--white);
}

.package-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.package-header p {
    font-size: 12px;
    color: var(--gray-400);
}

.package-price {
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
}

.package-price .currency {
    font-size: 16px;
    font-weight: 600;
    color: var(--primary);
    vertical-align: top;
}

.package-price .amount {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.package-price .period {
    font-size: 13px;
    color: var(--gray-400);
}

.package-features {
    margin-bottom: 20px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 0;
    font-size: 12px;
    color: var(--gray-600);
    border-bottom: 1px solid var(--gray-100);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    font-size: 14px;
}

.package-features li.included i {
    color: var(--success);
}

.package-features li.excluded {
    color: var(--gray-400);
}

.package-features li.excluded i {
    color: var(--gray-300);
}

.packages-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 32px;
    padding: 16px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.guarantee-icon {
    width: 36px;
    height: 36px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.guarantee-icon i {
    font-size: 16px;
    color: var(--success);
}

.guarantee-text strong {
    display: block;
    font-size: 13px;
    color: var(--primary);
}

.guarantee-text span {
    font-size: 11px;
    color: var(--gray-400);
}

@media (max-width: 900px) {
    .packages-wrapper {
        grid-template-columns: 1fr;
        max-width: 340px;
        margin: 0 auto;
    }

    .package-card.featured {
        transform: none;
    }
}


/* Features Section - Kompakt */
.features-section {
    padding: 60px 0;
    background: var(--white);
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
}

.features-content .section-badge {
    margin-bottom: 8px;
}

.features-content .section-title {
    text-align: left;
    margin-bottom: 10px;
}

.features-content .section-desc {
    text-align: left;
    margin: 0 0 24px 0;
}

.feature-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.feature-item {
    display: flex;
    gap: 14px;
    padding: 14px;
    background: var(--gray-50);
    border-radius: var(--radius);
    transition: var(--transition);
}

.feature-item:hover {
    background: var(--white);
    box-shadow: var(--shadow);
    transform: translateX(4px);
}

.feature-item-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-item-icon i {
    font-size: 14px;
    color: var(--white);
}

.feature-item-content h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 2px;
}

.feature-item-content p {
    font-size: 11px;
    color: var(--gray-500);
}

.features-visual {
    position: relative;
}

.device-mockup {
    max-width: 360px;
    margin: 0 auto;
}

.device-screen {
    background: var(--primary);
    border-radius: var(--radius-lg);
    padding: 8px;
    box-shadow: var(--shadow-md);
}

.device-screen img {
    border-radius: var(--radius);
    width: 100%;
}

.floating-card {
    position: absolute;
    background: var(--white);
    padding: 8px 12px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 600;
    color: var(--primary);
}

.floating-card i {
    font-size: 12px;
    color: var(--accent);
}

.floating-card.card-1 {
    top: 15%;
    left: -20px;
}

.floating-card.card-2 {
    top: 45%;
    right: -20px;
}

.floating-card.card-3 {
    bottom: 20%;
    left: 0;
}

@media (max-width: 900px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .floating-card {
        display: none;
    }
}

/* Stats Section - Kompakt */
.stats-section {
    padding: 48px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

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

.stat-card {
    text-align: center;
    padding: 16px;
}

.stat-icon {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
}

.stat-icon i {
    font-size: 18px;
    color: var(--accent-light);
}

.stat-number {
    font-size: 24px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2px;
}

.stat-label {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

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

/* Trust Section - Kompakt */
.trust-section {
    padding: 60px 0;
    background: var(--primary);
    position: relative;
    overflow: hidden;
}

.trust-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.trust-content .section-title {
    text-align: left;
    font-size: 24px;
}

.trust-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 24px;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.06);
    padding: 12px;
    border-radius: var(--radius);
}

.trust-badge i {
    font-size: 16px;
    color: var(--accent-light);
}

.trust-badge span {
    font-size: 12px;
    font-weight: 500;
    color: var(--white);
}

.testimonial-card {
    background: var(--white);
    padding: 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.quote-icon {
    width: 32px;
    height: 32px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.quote-icon i {
    font-size: 14px;
    color: var(--white);
}

.testimonial-content>p {
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 16px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 10px;
}

.author-avatar {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 600;
    font-size: 12px;
}

.author-info strong {
    display: block;
    font-size: 13px;
    color: var(--primary);
}

.author-info span {
    font-size: 11px;
    color: var(--gray-400);
}

.testimonial-rating {
    margin-left: auto;
    color: #fbbf24;
    font-size: 10px;
}

@media (max-width: 900px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}


/* CTA Section - Kompakt */
.cta-section {
    padding: 48px 0;
    background: var(--cta);
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    inset: 0;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
}

.cta-shape.shape-1 {
    width: 200px;
    height: 200px;
    top: -100px;
    right: -50px;
}

.cta-shape.shape-2 {
    width: 150px;
    height: 150px;
    bottom: -75px;
    left: -50px;
}

.cta-shape.shape-3 {
    width: 100px;
    height: 100px;
    top: 40%;
    left: 25%;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 700;
    margin-bottom: 12px;
}

.cta-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-content h2 .highlight {
    color: var(--primary);
    background: var(--white);
    padding: 2px 10px;
    border-radius: var(--radius);
}

.cta-content>p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 10px;
    justify-content: center;
}

.btn-glass-dark {
    background: rgba(255, 255, 255, 0.15);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.3);
}

@media (max-width: 500px) {
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-content h2 {
        font-size: 22px;
    }
}

/* Contact Section - Kompakt */
.contact-section {
    padding: 60px 0;
    background: var(--gray-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info .section-title {
    text-align: left;
    font-size: 24px;
    margin-bottom: 8px;
}

.contact-desc {
    font-size: 13px;
    color: var(--gray-500);
    margin-bottom: 24px;
}

.contact-cards {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.contact-card-icon {
    width: 36px;
    height: 36px;
    background: var(--gradient);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-card-icon i {
    font-size: 14px;
    color: var(--white);
}

.contact-card-content strong {
    display: block;
    font-size: 11px;
    color: var(--primary);
}

.contact-card-content span {
    font-size: 12px;
    color: var(--gray-600);
}

.contact-social span {
    display: block;
    font-size: 11px;
    color: var(--gray-400);
    margin-bottom: 10px;
}

.social-links {
    display: flex;
    gap: 8px;
}

.social-links a {
    width: 32px;
    height: 32px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    font-size: 14px;
    box-shadow: var(--shadow);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--gradient);
    color: var(--white);
}

.contact-form-wrapper {
    background: var(--white);
    padding: 28px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}

.form-header {
    margin-bottom: 20px;
}

.form-header h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.form-header p {
    font-size: 12px;
    color: var(--gray-400);
}

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

.form-group {
    margin-bottom: 12px;
}

.form-group label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 4px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 10px 12px;
    font-size: 13px;
    font-family: inherit;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius);
    background: var(--white);
    transition: var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

@media (max-width: 900px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }
}


/* Footer - Kompakt */
.footer {
    background: var(--primary);
}

.footer-top {
    padding: 48px 0 36px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 32px;
}

.footer-brand .logo {
    margin-bottom: 12px;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-brand>p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    margin-bottom: 16px;
}

.footer-social {
    display: flex;
    gap: 8px;
}

.footer-social a {
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 14px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--accent);
}

.footer-links h4 {
    font-size: 13px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 14px;
}

.footer-links ul li {
    margin-bottom: 8px;
}

.footer-links a {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
}

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

.footer-badges span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
}

.footer-badges i {
    color: var(--accent-light);
    font-size: 12px;
}

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

@media (max-width: 500px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-social {
        justify-content: center;
    }

    .footer-bottom .container {
        flex-direction: column;
        gap: 10px;
    }
}

/* Mobile CTA */
.mobile-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 12px 16px;
    background: var(--white);
    box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.1);
    z-index: 999;
}

@media (max-width: 768px) {
    .mobile-cta {
        display: block;
    }

    .footer {
        padding-bottom: 60px;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(16px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-in {
    animation: fadeInUp 0.4s ease forwards;
}

/* Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-300);
    border-radius: 4px;
}

::selection {
    background: var(--accent);
    color: var(--white);
}


/* ==================== MOBİL RESPONSIVE DÜZELTMELER ==================== */

/* Campaign Banner - Slider Altı */
.campaign-banner {
    position: relative;
    z-index: 40;
    padding: 0 16px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.campaign-banner .container {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
    border-radius: var(--radius-lg);
    padding: 16px 20px;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.campaign-close {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 24px;
    height: 24px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.6);
    font-size: 10px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.campaign-close:hover {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.campaign-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.campaign-left {
    display: flex;
    align-items: center;
    gap: 14px;
}

.campaign-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    background: rgba(249, 115, 22, 0.2);
    padding: 5px 10px;
    border-radius: 16px;
    flex-shrink: 0;
}

.campaign-badge i {
    color: #f97316;
    font-size: 12px;
    animation: pulse 1.5s infinite;
}

.campaign-badge span {
    color: #fff;
    font-size: 10px;
    font-weight: 600;
    white-space: nowrap;
}

.campaign-text h3 {
    font-size: 14px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 2px;
}

.campaign-text h3 .highlight {
    color: #10b981;
}

.campaign-text p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
}

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

.timer-label-top {
    font-size: 9px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.timer-countdown {
    display: flex;
    align-items: center;
    gap: 4px;
}

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

.timer-num {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 8px;
    border-radius: 4px;
    min-width: 36px;
    line-height: 1;
}

.timer-label {
    font-size: 8px;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    margin-top: 3px;
    display: block;
}

.timer-sep {
    font-size: 16px;
    font-weight: 700;
    color: #f97316;
    margin-bottom: 14px;
}

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

.campaign-price {
    text-align: right;
}

.old-price {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
}

.new-price {
    font-size: 14px;
    color: #10b981;
    font-weight: 600;
}

.new-price strong {
    font-size: 22px;
    font-weight: 800;
}

.new-price small {
    font-size: 11px;
    opacity: 0.8;
}

.btn-campaign {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: #fff;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-campaign:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.campaign-banner.hidden {
    display: none;
}

/* Campaign Banner Mobile */
@media (max-width: 768px) {
    .campaign-banner {
        padding: 0 12px;
        margin-top: 16px;
        margin-bottom: 16px;
    }

    .campaign-banner .container {
        padding: 14px 16px;
    }

    .campaign-content {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }

    .campaign-left {
        flex-direction: column;
        gap: 8px;
    }

    .campaign-text h3 {
        font-size: 13px;
    }

    .campaign-text p {
        font-size: 10px;
    }

    .timer-num {
        font-size: 16px;
        padding: 5px 6px;
        min-width: 32px;
    }

    .timer-sep {
        font-size: 14px;
        margin-bottom: 12px;
    }

    .campaign-right {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }

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

    .new-price strong {
        font-size: 20px;
    }

    .btn-campaign {
        width: 100%;
        justify-content: center;
    }
}


/* Mobile Promo Section */
.mobile-promo-section {
    display: none;
    padding: 20px 0;
    background: var(--gray-50);
}

.promo-card {
    display: flex;
    align-items: center;
    gap: 14px;
    background: var(--white);
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.promo-card:last-child {
    margin-bottom: 0;
}

.promo-card.highlight-card {
    background: linear-gradient(135deg, #e63946 0%, #d62839 100%);
}

.promo-card.highlight-card .promo-content strong,
.promo-card.highlight-card .promo-content span,
.promo-card.highlight-card>i {
    color: #fff;
}

.promo-icon {
    width: 44px;
    height: 44px;
    background: rgba(249, 115, 22, 0.15);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.promo-icon i {
    font-size: 20px;
    color: #f97316;
}

.promo-icon.blue {
    background: rgba(59, 130, 246, 0.15);
}

.promo-icon.blue i {
    color: #3b82f6;
}

.promo-icon.green {
    background: rgba(16, 185, 129, 0.15);
}

.promo-icon.green i {
    color: #10b981;
}

.promo-card.highlight-card .promo-icon {
    background: rgba(255, 255, 255, 0.2);
}

.promo-card.highlight-card .promo-icon i {
    color: #fff;
}

.promo-content {
    flex: 1;
}

.promo-content strong {
    display: block;
    font-size: 14px;
    color: var(--primary);
    margin-bottom: 2px;
}

.promo-content span {
    font-size: 12px;
    color: var(--gray-500);
}

.promo-card>i {
    color: var(--gray-400);
    font-size: 16px;
}

@media (max-width: 768px) {
    html {
        font-size: 14px;
    }

    .container {
        padding: 0 16px;
    }

    /* Mobile Promo Görünür */
    .mobile-promo-section {
        display: block;
    }

    /* Header Mobile */
    .header {
        padding: 10px 0;
    }

    .logo-icon {
        width: 28px;
        height: 28px;
    }

    .logo-text {
        font-size: 16px;
    }

    /* Hero Mobile - Daha kompakt */
    .hero-section {
        height: auto;
        min-height: 320px;
        max-height: none;
    }

    .hero-content {
        padding: 50px 0 40px;
        max-width: 100%;
    }

    .hero-badge {
        padding: 5px 12px;
        margin-bottom: 10px;
    }

    .hero-badge i {
        font-size: 10px;
    }

    .hero-badge span {
        font-size: 10px;
    }

    .title-line {
        font-size: 24px;
    }

    .title-line.gradient-text {
        font-size: 28px;
    }

    .hero-desc {
        font-size: 13px;
        margin-bottom: 16px;
    }

    .hero-cta {
        gap: 8px;
    }

    .hero-cta .btn {
        padding: 10px 18px;
        font-size: 12px;
        width: 100%;
    }

    .hero-stats {
        gap: 16px;
        padding-top: 16px;
        flex-wrap: wrap;
        justify-content: center;
    }

    .hero-stats .stat {
        text-align: center;
    }

    .hero-stats .stat strong {
        font-size: 18px;
    }

    .hero-stats .stat span {
        font-size: 10px;
    }

    .stat-divider {
        display: none;
    }

    .hero-controls {
        display: none;
    }

    /* Section Headers Mobile */
    .section-header {
        margin-bottom: 24px;
    }

    .section-badge {
        font-size: 10px;
        margin-bottom: 6px;
    }

    .section-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .section-desc {
        font-size: 12px;
    }

    /* Packages Mobile */
    .packages-section {
        padding: 32px 0;
    }

    .packages-wrapper {
        max-width: 100%;
        gap: 14px;
    }

    .package-card {
        padding: 18px 14px;
    }

    .package-ribbon {
        font-size: 9px;
        padding: 3px 10px;
    }

    .package-icon {
        width: 36px;
        height: 36px;
        margin-bottom: 8px;
    }

    .package-icon i {
        font-size: 14px;
    }

    .package-header h3 {
        font-size: 14px;
    }

    .package-header p {
        font-size: 10px;
    }

    .package-price {
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .package-price .currency {
        font-size: 12px;
    }

    .package-price .amount {
        font-size: 28px;
    }

    .package-price .period {
        font-size: 11px;
    }

    .package-features {
        margin-bottom: 14px;
    }

    .package-features li {
        padding: 5px 0;
        font-size: 11px;
    }

    .package-features li i {
        font-size: 12px;
    }

    .packages-guarantee {
        flex-direction: column;
        text-align: center;
        gap: 8px;
        padding: 12px;
        margin-top: 20px;
    }

    /* Features Section Mobile */
    .features-section {
        padding: 32px 0;
    }

    .features-content .section-title {
        text-align: center;
        font-size: 18px;
    }

    .features-content .section-desc {
        text-align: center;
        margin: 0 auto 16px;
        font-size: 12px;
    }

    .feature-list {
        gap: 8px;
    }

    .feature-item {
        padding: 10px;
        gap: 10px;
    }

    .feature-item-icon {
        width: 28px;
        height: 28px;
    }

    .feature-item-icon i {
        font-size: 11px;
    }

    .feature-item-content h4 {
        font-size: 12px;
    }

    .feature-item-content p {
        font-size: 10px;
    }

    .device-mockup {
        max-width: 240px;
        margin-top: 20px;
    }

    .floating-card {
        display: none;
    }

    /* Stats Mobile */
    .stats-section {
        padding: 24px 0;
    }

    .stats-grid {
        gap: 12px;
    }

    .stat-card {
        padding: 10px 6px;
    }

    .stat-icon {
        width: 28px;
        height: 28px;
        margin-bottom: 6px;
    }

    .stat-icon i {
        font-size: 12px;
    }

    .stat-number {
        font-size: 18px;
    }

    .stat-label {
        font-size: 9px;
    }

    /* Trust Section Mobile */
    .trust-section {
        padding: 32px 0;
    }

    .trust-content .section-title {
        text-align: center;
        font-size: 18px;
    }

    .trust-desc {
        text-align: center;
        font-size: 11px;
    }

    .trust-badges {
        gap: 6px;
    }

    .trust-badge {
        padding: 8px;
    }

    .trust-badge i {
        font-size: 12px;
    }

    .trust-badge span {
        font-size: 10px;
    }

    .testimonial-card {
        padding: 16px;
    }

    .quote-icon {
        width: 24px;
        height: 24px;
        margin-bottom: 10px;
    }

    .quote-icon i {
        font-size: 10px;
    }

    .testimonial-content>p {
        font-size: 11px;
        margin-bottom: 12px;
    }

    .author-avatar {
        width: 28px;
        height: 28px;
        font-size: 10px;
    }

    .author-info strong {
        font-size: 11px;
    }

    .author-info span {
        font-size: 9px;
    }

    .testimonial-rating {
        font-size: 8px;
    }

    /* CTA Mobile */
    .cta-section {
        padding: 28px 0;
    }

    .cta-badge {
        font-size: 9px;
        padding: 3px 10px;
        margin-bottom: 8px;
    }

    .cta-content h2 {
        font-size: 18px;
    }

    .cta-content h2 .highlight {
        padding: 2px 6px;
        font-size: 16px;
    }

    .cta-content>p {
        font-size: 11px;
        margin-bottom: 14px;
    }

    .cta-buttons .btn {
        padding: 10px 16px;
        font-size: 11px;
    }

    /* Contact Mobile */
    .contact-section {
        padding: 32px 0;
    }

    .contact-info .section-title {
        text-align: center;
        font-size: 18px;
    }

    .contact-desc {
        text-align: center;
        font-size: 11px;
    }

    .contact-cards {
        gap: 8px;
        margin-bottom: 16px;
    }

    .contact-card {
        padding: 10px;
    }

    .contact-card-icon {
        width: 28px;
        height: 28px;
    }

    .contact-card-icon i {
        font-size: 11px;
    }

    .contact-card-content strong {
        font-size: 9px;
    }

    .contact-card-content span {
        font-size: 11px;
    }

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

    .social-links {
        justify-content: center;
    }

    .social-links a {
        width: 32px;
        height: 32px;
    }

    .contact-form-wrapper {
        padding: 16px;
    }

    .form-header {
        margin-bottom: 14px;
    }

    .form-header h3 {
        font-size: 15px;
    }

    .form-header p {
        font-size: 10px;
    }

    .form-group {
        margin-bottom: 10px;
    }

    .form-group label {
        font-size: 10px;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        padding: 10px;
        font-size: 13px;
    }

    /* Footer Mobile */
    .footer-top {
        padding: 28px 0 20px;
    }

    .footer-grid {
        gap: 20px;
    }

    .footer-brand>p {
        font-size: 10px;
    }

    .footer-links h4 {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 10px;
    }

    .footer-bottom {
        padding: 12px 0;
    }

    .footer-bottom p {
        font-size: 9px;
    }

    .footer-badges {
        gap: 10px;
    }

    .footer-badges span {
        font-size: 9px;
    }

    /* Mobile CTA */
    .mobile-cta {
        padding: 10px 16px;
    }

    .mobile-cta .btn {
        padding: 12px 20px;
        font-size: 13px;
    }
}

@media (max-width: 400px) {
    .timer-num {
        font-size: 22px;
        padding: 6px 10px;
        min-width: 42px;
    }

    .timer-sep {
        font-size: 18px;
    }

    .new-price strong {
        font-size: 26px;
    }

    .title-line {
        font-size: 20px;
    }

    .title-line.gradient-text {
        font-size: 24px;
    }
}

/* ==================== YENİ SATIŞ ODAKLI BÖLÜMLER ==================== */

/* WhatsApp Float Button */
.whatsapp-float {
    position: fixed;
    bottom: 90px;
    right: 20px;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 28px;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 998;
    transition: all 0.3s ease;
    animation: whatsapp-pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #1a1a2e;
    color: #fff;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #1a1a2e;
}

@keyframes whatsapp-pulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 80px;
        right: 16px;
        width: 50px;
        height: 50px;
        font-size: 24px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}


/* FAQ Section */
.faq-section {
    padding: 60px 0;
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 12px;
    background: var(--gray-50);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: var(--accent);
}

.faq-item.active {
    border-color: var(--accent);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.1);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 20px;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
}

.faq-question span {
    font-size: 14px;
    font-weight: 600;
    color: var(--primary);
    flex: 1;
    padding-right: 16px;
}

.faq-question i {
    font-size: 14px;
    color: var(--accent);
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

.faq-answer p {
    padding: 0 20px 18px;
    font-size: 13px;
    color: var(--gray-600);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 0;
    }

    .faq-question {
        padding: 14px 16px;
    }

    .faq-question span {
        font-size: 13px;
    }

    .faq-answer p {
        padding: 0 16px 14px;
        font-size: 12px;
    }
}


/* Testimonial Slider */
.testimonialSwiper {
    padding-bottom: 40px;
}

.testimonialSwiper .swiper-slide {
    opacity: 0.5;
    transform: scale(0.9);
    transition: all 0.3s ease;
}

.testimonialSwiper .swiper-slide-active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-pagination {
    bottom: 0 !important;
}

.testimonial-pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: var(--gray-300);
    opacity: 1;
}

.testimonial-pagination .swiper-pagination-bullet-active {
    background: var(--accent);
    width: 20px;
    border-radius: 4px;
}

@media (max-width: 900px) {
    .testimonialSwiper .swiper-slide {
        opacity: 1;
        transform: scale(1);
    }
}


/* Sticky Header CTA */
.header.scrolled .header-sticky-cta {
    display: inline-flex;
}

.header-sticky-cta {
    display: none;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    font-size: 11px;
    font-weight: 700;
    background: var(--gradient);
    color: #fff;
    border-radius: var(--radius);
    margin-left: 8px;
    animation: pulse-cta 2s infinite;
}

@keyframes pulse-cta {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.4);
    }

    50% {
        box-shadow: 0 0 0 8px rgba(59, 130, 246, 0);
    }
}

@media (max-width: 900px) {
    .header-sticky-cta {
        display: none !important;
    }
}


/* ========================================
   PREMIUM FOOTER (Tüm Sayfalarda Ortak)
   ======================================== */

.premium-footer {
    background: linear-gradient(180deg, #111827 0%, #0a0a1a 100%);
    padding-top: 4rem;
    color: rgba(255, 255, 255, 0.8);
}

.premium-footer .footer-main {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.premium-footer .footer-brand .logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1rem;
}

.premium-footer .footer-brand .logo-text {
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.premium-footer .footer-brand .logo-text span {
    color: var(--accent-light);
}

.premium-footer .footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.5rem;
}

.premium-footer .footer-social {
    display: flex;
    gap: 0.75rem;
}

.premium-footer .footer-social a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
    transition: all 0.3s;
}

.premium-footer .footer-social a:hover {
    background: var(--gradient);
    color: white;
    transform: translateY(-3px);
}

.premium-footer .footer-column h4 {
    color: white;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.premium-footer .footer-column ul li {
    margin-bottom: 0.75rem;
}

.premium-footer .footer-column ul li a {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    transition: all 0.3s;
}

.premium-footer .footer-column ul li a i {
    font-size: 0.65rem;
    transition: transform 0.3s;
}

.premium-footer .footer-column ul li a:hover {
    color: white;
}

.premium-footer .footer-column ul li a:hover i {
    transform: translateX(4px);
}

.premium-footer .footer-contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.premium-footer .footer-contact-item i {
    color: var(--accent-light);
    font-size: 1rem;
}

.premium-footer .footer-contact-item span {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
}

.premium-footer .footer-bottom-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 0;
    flex-wrap: wrap;
    gap: 1rem;
}

.premium-footer .footer-bottom-bar p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.premium-footer .footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.premium-footer .footer-bottom-links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.3s;
}

.premium-footer .footer-bottom-links a:hover {
    color: white;
}

@media (max-width: 900px) {
    .premium-footer .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .premium-footer .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 600px) {
    .premium-footer .footer-main {
        grid-template-columns: 1fr;
    }

    .premium-footer .footer-bottom-bar {
        flex-direction: column;
        text-align: center;
    }
}


/* ========================================
   FLOATING BUTTONS (WhatsApp & Phone)
   ======================================== */

.floating-buttons {
    position: fixed;
    bottom: 24px;
    right: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

.float-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.float-btn:hover {
    transform: scale(1.1);
}

.float-btn.whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    animation: whatsapp-pulse 2s infinite;
}

.float-btn.phone {
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    box-shadow: 0 4px 20px rgba(59, 130, 246, 0.4);
}

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 80px;
        right: 16px;
    }

    .float-btn {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}