/* ===============================================
   Reset & Base Styles
   =============================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #ff1e79;
    --primary-dark: #5a0cad;
    --primary-light: #ff8c61;
    --secondary-color: #a200ff;
    --accent-color: #ff1e79;
    --success-color: #10b981;
    --text-dark: #1e0f2a;
    --text-gray: #8e7cae;
    --text-light: #e0c0f8;
    --bg-white: #ffffff;
    --bg-gray: #f3e8ff;
    --bg-dark: #1e0f2a;
    --border-color: #d8b6ff;
    --gradient-1: linear-gradient(135deg, #ff1e79 0%, #a200ff 100%);
    --gradient-2: linear-gradient(135deg, #5a0cad 0%, #a200ff 50%, #ff1e79 100%);
    --gradient-3: linear-gradient(45deg, #ff8c61 0%, #ff1e79 50%, #a200ff 100%);
    --shadow-sm: 0 1px 2px 0 rgb(90 12 173 / 0.05);
    --shadow-md: 0 4px 6px -1px rgb(90 12 173 / 0.1);
    --shadow-lg: 0 10px 15px -3px rgb(90 12 173 / 0.1);
    --shadow-xl: 0 20px 25px -5px rgb(90 12 173 / 0.1);
    --shadow-orange: 0 10px 30px rgba(255, 30, 121, 0.3);
    --shadow-orange-lg: 0 20px 40px rgba(255, 30, 121, 0.4);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}


html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===============================================
   Navigation
   =============================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(226, 232, 240, 0.8);
    z-index: 1000;
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.875rem 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--text-dark);
    text-decoration: none;
    transition: var(--transition);
    z-index: 10;
}

.logo:hover {
    opacity: 0.8;
}

.logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-icon svg {
    filter: drop-shadow(0 2px 4px rgba(255, 107, 53, 0.2));
    transition: var(--transition);
}

.logo:hover .logo-icon svg {
    transform: translateY(-2px) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(255, 107, 53, 0.4));
}

.nav-center {
    flex: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
    background: var(--bg-gray);
    padding: 0.375rem;
    border-radius: 12px;
}

.nav-link {
    color: var(--text-gray);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.625rem 1.25rem;
    border-radius: 8px;
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.nav-link:hover {
    color: var(--text-dark);
    background: white;
}

.nav-link.active-link {
    color: var(--text-dark);
    background: white;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.nav-phone {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.625rem 1rem;
    border-radius: 10px;
    transition: var(--transition);
}

.nav-phone:hover {
    background: var(--bg-gray);
    color: var(--primary-color);
}

.nav-phone svg {
    flex-shrink: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    padding: 0.625rem 1.5rem;
    background: var(--gradient-2);
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 10px;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
    position: relative;
    overflow: hidden;
}

.btn-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s;
}

.btn-cta:hover::before {
    left: 100%;
}

.btn-cta:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 107, 53, 0.4);
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: var(--bg-gray);
    border: none;
    cursor: pointer;
    padding: 0.625rem;
    border-radius: 8px;
    transition: var(--transition);
}

.mobile-toggle:hover {
    background: var(--border-color);
}

.mobile-toggle span {
    width: 22px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: var(--transition);
}

.mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.mobile-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

/* ===============================================
   Hero Section
   =============================================== */
.hero {
    position: relative;
    padding: 180px 0 120px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
}

.hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 159, 28, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 2rem;
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-icon {
    font-size: 1rem;
}

@keyframes badgeFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
}

.gradient-text {
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    display: inline-block;
}

.hero-description {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    margin-bottom: 4rem;
    justify-content: center;
    align-items: center;
}

.hero-buttons .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-buttons .btn svg {
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover svg {
    transform: translateX(5px);
}

.btn {
    display: inline-block;
    padding: 0.875rem 2rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 12px;
    transition: var(--transition);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--gradient-2);
    color: white;
    box-shadow: var(--shadow-orange);
    background-size: 200% 200%;
    animation: gradientShift 3s ease infinite;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: var(--shadow-orange-lg);
    animation-play-state: paused;
}

.btn-primary:active {
    transform: translateY(-1px) scale(0.98);
}

.btn-secondary {
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    animation: pulse 2s infinite;
}

.btn-secondary:hover {
    background: var(--gradient-2);
    color: white;
    border-color: transparent;
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
    animation: none;
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    position: relative;
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--gradient-2);
    transition: width 0.4s ease;
    z-index: -1;
    border-radius: 10px;
}

.btn-outline:hover {
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: var(--shadow-orange);
}

.btn-outline:hover::after {
    width: 100%;
}

.btn-full {
    width: 100%;
}

@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes pulse {
    0% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(255, 107, 53, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0);
    }
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    max-width: 800px;
    margin: 0 auto;
}

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 159, 28, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.stat-icon svg {
    color: var(--primary-color);
}

.stat-content {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.stat-number {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.25rem;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: var(--border-color);
}

.hero-decoration {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: -1;
    overflow: hidden;
}

.decoration-circle {
    position: absolute;
    border-radius: 50%;
    background: var(--gradient-1);
    opacity: 0.1;
    filter: blur(60px);
}

.circle-1 {
    width: 500px;
    height: 500px;
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.circle-2 {
    width: 400px;
    height: 400px;
    bottom: -100px;
    left: -100px;
    animation: float 6s ease-in-out infinite reverse;
}

.circle-3 {
    width: 300px;
    height: 300px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 4s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    50% { transform: translateY(-30px) translateX(30px); }
}

/* ===============================================
   Section Styles
   =============================================== */
section {
    padding: 120px 0;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-tag {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 159, 28, 0.1) 100%);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--primary-color);
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.section-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-description {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
}

/* ===============================================
   Services Section
   =============================================== */
.services {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 50%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, var(--border-color) 50%, transparent 100%);
    opacity: 0.5;
}

.services-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    position: relative;
}

.service-card-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    border: 1px solid var(--border-color);
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-2);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.service-card-modern:hover::before {
    opacity: 0.03;
}

.service-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 24px 48px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-color);
}

.service-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 159, 28, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 1;
}

.service-card-modern:hover .service-badge {
    background: var(--gradient-2);
    transform: rotate(10deg) scale(1.1);
}

.badge-number {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card-modern:hover .badge-number {
    color: white;
}

.service-icon-modern {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.08) 0%, rgba(255, 159, 28, 0.08) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
}

.service-icon-modern svg {
    color: var(--primary-color);
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-icon-modern {
    background: var(--gradient-2);
    transform: scale(1.05);
    box-shadow: 0 8px 24px rgba(255, 107, 53, 0.3);
}

.service-card-modern:hover .service-icon-modern svg {
    color: white;
    transform: scale(1.1);
}

.service-card-modern h3 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    position: relative;
    z-index: 1;
    margin-top: 0.5rem;
}

.service-card-modern p {
    color: var(--text-gray);
    line-height: 1.7;
    font-size: 0.9375rem;
    position: relative;
    z-index: 1;
    flex: 1;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-color);
    font-size: 0.9375rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    margin-top: auto;
    opacity: 0;
    transform: translateX(-10px);
    transition: all 0.4s ease;
}

.service-card-modern:hover .service-link {
    opacity: 1;
    transform: translateX(0);
}

.service-link svg {
    transition: transform 0.3s ease;
}

.service-link:hover svg {
    transform: translateX(4px);
}

/* Stagger animation for service cards */
.service-card-modern:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card-modern:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card-modern:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card-modern:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card-modern:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card-modern:nth-child(6) {
    animation-delay: 0.6s;
}

/* ===============================================
   Packages Section
   =============================================== */
.packages {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 2rem;
    align-items: start;
}

.package-card-new {
    background: white;
    border-radius: 24px;
    padding: 2.5rem;
    border: 1px solid var(--border-color);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.package-card-new:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.15);
    border-color: var(--primary-light);
}

.package-card-new.featured-new {
    border-color: var(--primary-color);
    box-shadow: 0 10px 40px rgba(255, 107, 53, 0.2);
    border-width: 2px;
    transform: scale(1.03);
}

.package-card-new.featured-new:hover {
    transform: scale(1.03) translateY(-10px);
    box-shadow: 0 25px 60px rgba(255, 107, 53, 0.3);
}

.package-icon-badge {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 159, 28, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.package-icon-badge svg {
    color: var(--primary-color);
}

.package-card-new:hover .package-icon-badge {
    background: var(--gradient-2);
    transform: scale(1.1) rotate(5deg);
}

.package-card-new:hover .package-icon-badge svg {
    color: white;
}

.package-icon-badge.featured-badge {
    background: var(--gradient-2);
}

.package-icon-badge.featured-badge svg {
    color: white;
}

.popular-badge-new {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-2);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    animation: badgePulse 2s ease-in-out infinite;
    z-index: 10;
}

.popular-badge-new svg {
    width: 14px;
    height: 14px;
}

@keyframes badgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 12px 30px rgba(255, 107, 53, 0.6);
    }
}

.package-header-new {
    margin-bottom: 2rem;
}

.package-name-new {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.package-price-new {
    display: flex;
    align-items: baseline;
    gap: 0.75rem;
    margin-bottom: 0.5rem;
}

.amount-new {
    font-size: 2.75rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.period-new {
    font-size: 0.9375rem;
    color: var(--text-gray);
    font-weight: 500;
}

.package-features-new {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2rem;
    flex: 1;
}

.feature-item-new {
    display: flex;
    align-items: start;
    gap: 0.75rem;
    color: var(--text-dark);
    font-size: 0.9375rem;
    line-height: 1.6;
}

.feature-item-new.highlight {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 159, 28, 0.05) 100%);
    padding: 0.875rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

.feature-icon-small {
    width: 24px;
    height: 24px;
    border-radius: 6px;
    background: var(--gradient-2);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-icon-small svg {
    color: white;
}

.feature-divider {
    height: 1px;
    background: var(--border-color);
    margin: 0.5rem 0;
}

.delivery-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.625rem 1rem;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(5, 150, 105, 0.1) 100%);
    border: 1px solid rgba(16, 185, 129, 0.2);
    border-radius: 50px;
    color: var(--success-color);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 0.5rem;
}

.delivery-badge svg {
    width: 16px;
    height: 16px;
}

/* ===============================================
   SEO Eğitim PDF Section
   =============================================== */
.seo-egitim {
    background: linear-gradient(135deg, #1e1e2e 0%, #2d2d44 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.seo-egitim::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -10%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pulseGlow 4s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.egitim-wrapper {
    display: grid;
    grid-template-columns: 45% 55%;
    gap: 4rem;
    align-items: center;
}

/* Visual Side */
.egitim-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 500px;
}

.egitim-badge-float {
    position: absolute;
    top: 0;
    right: 10%;
    z-index: 3;
    animation: badgeFloat 3s ease-in-out infinite;
}

.badge-content {
    background: linear-gradient(135deg, #ff6b35 0%, #ff9f1c 100%);
    padding: 1rem 1.5rem;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
}

.badge-emoji {
    font-size: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.badge-text {
    display: flex;
    flex-direction: column;
}

.badge-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
    letter-spacing: 0.05em;
}

.badge-discount {
    font-size: 1.75rem;
    color: white;
    font-weight: 800;
    line-height: 1;
}

/* Book 3D */
.egitim-book {
    position: relative;
    z-index: 2;
    perspective: 1000px;
}

.book-cover {
    width: 280px;
    height: 380px;
    position: relative;
    transform-style: preserve-3d;
    transform: rotateY(-15deg);
    transition: transform 0.6s ease;
    animation: bookFloat 4s ease-in-out infinite;
}

.egitim-book:hover .book-cover {
    transform: rotateY(0deg) scale(1.05);
}

@keyframes bookFloat {
    0%, 100% { transform: rotateY(-15deg) translateY(0); }
    50% { transform: rotateY(-15deg) translateY(-15px); }
}

.book-spine {
    position: absolute;
    left: -20px;
    top: 0;
    width: 20px;
    height: 100%;
    background: linear-gradient(90deg, #1a1a2e 0%, #2d2d44 100%);
    border-radius: 4px 0 0 4px;
    transform: rotateY(-90deg);
    transform-origin: right;
}

.book-front {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    border-radius: 8px;
    padding: 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.book-glow {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: bookGlow 3s ease-in-out infinite;
}

@keyframes bookGlow {
    0%, 100% { left: -100%; }
    50% { left: 100%; }
}

.book-icon {
    color: white;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
}

.book-title {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    text-align: center;
    margin: 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    letter-spacing: 0.05em;
}

.book-subtitle {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.9);
    text-align: center;
    margin: 0;
    font-weight: 500;
}

/* Floating Features */
.egitim-features-float {
    position: absolute;
    left: 0;
    bottom: 10%;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 1;
}

.float-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
    animation-duration: 3s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
}

.float-item svg {
    color: var(--success-color);
    flex-shrink: 0;
}

.float-item-1 {
    animation-name: floatItem1;
}

.float-item-2 {
    animation-name: floatItem2;
    animation-delay: 0.5s;
}

.float-item-3 {
    animation-name: floatItem3;
    animation-delay: 1s;
}

@keyframes floatItem1 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-10px); }
}

@keyframes floatItem2 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-15px); }
}

@keyframes floatItem3 {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(-20px); }
}

/* Content Side */
.egitim-content {
    position: relative;
    z-index: 2;
}

.egitim-header {
    margin-bottom: 2rem;
}

.egitim-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0.5rem 0 1rem 0;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.egitim-description {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 0;
}

.egitim-description strong {
    color: var(--primary-color);
    font-weight: 700;
}

/* Topics */
.egitim-topics {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2rem;
}

.topic-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    gap: 1rem;
    transition: all 0.3s ease;
}

.topic-item:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 159, 28, 0.3);
    transform: translateX(5px);
}

.topic-number {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    flex-shrink: 0;
}

.topic-info h4 {
    font-size: 1rem;
    font-weight: 700;
    color: white;
    margin: 0 0 0.25rem 0;
}

.topic-info p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

/* Bonus */
.egitim-bonus {
    background: rgba(255, 159, 28, 0.1);
    border: 1px solid rgba(255, 159, 28, 0.3);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
}

.bonus-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.bonus-title svg {
    flex-shrink: 0;
}

.bonus-list {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.625rem;
}

.bonus-list li {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.9);
    padding-left: 1.5rem;
    position: relative;
}

.bonus-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--success-color);
    font-weight: 700;
}

/* CTA */
.egitim-cta {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.price-wrapper {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.price-old {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.old-amount {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: line-through;
    font-weight: 600;
}

.discount-badge {
    background: #ef4444;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 6px;
    font-size: 0.875rem;
    font-weight: 700;
    align-self: flex-start;
}

.price-new {
    display: flex;
    flex-direction: column;
}

.new-amount {
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.price-period {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.25rem;
}

.btn-egitim {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.25rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
}

.btn-egitim::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-egitim:hover::before {
    left: 100%;
}

.btn-egitim:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.5);
}

.btn-egitim svg {
    transition: transform 0.3s ease;
}

.btn-egitim:hover svg {
    transform: translateX(5px);
}

.egitim-guarantee {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin: 0;
}

.egitim-guarantee svg {
    color: var(--success-color);
    flex-shrink: 0;
}

/* ===============================================
   DoFollow Packages Section
   =============================================== */
.dofollow-packages {
    background: white;
    padding: 100px 0;
}

.premium-card {
    position: relative;
}

.premium-badge-new {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: white;
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.8125rem;
    font-weight: 700;
    box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    display: flex;
    align-items: center;
    gap: 0.375rem;
    animation: premiumPulse 2s ease-in-out infinite;
    z-index: 10;
}

.premium-badge-new svg {
    width: 14px;
    height: 14px;
}

@keyframes premiumPulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 8px 20px rgba(251, 191, 36, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 12px 30px rgba(251, 191, 36, 0.6);
    }
}

.premium-badge-icon {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%) !important;
}

.premium-badge-icon svg {
    color: white !important;
}

.premium-card:hover .premium-badge-icon {
    transform: scale(1.1) rotate(10deg);
}

.packages-footer-note {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 159, 28, 0.05) 100%);
    border-radius: 20px;
    border: 1px solid rgba(255, 107, 53, 0.1);
    text-align: center;
}

.packages-footer-note p {
    color: var(--text-gray);
    font-size: 0.9375rem;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ===============================================
   On-PAGE SEO Section
   =============================================== */
.onpage-seo {
    background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.onpage-seo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    filter: blur(100px);
}

.onpage-header {
    margin-bottom: 3rem;
}

.onpage-title-wrapper {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px 16px 0 0;
    padding: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.onpage-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0;
    letter-spacing: -0.02em;
}

.onpage-price {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.price-label {
    font-size: 0.875rem;
    color: var(--text-gray);
    font-weight: 600;
    margin-bottom: 0.25rem;
}

.price-value {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.onpage-description {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0 0 16px 16px;
    padding: 2rem;
}

.onpage-description p {
    color: var(--text-dark);
    font-size: 0.9375rem;
    line-height: 1.8;
    margin: 0;
}

.onpage-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.onpage-step {
    background: white;
    border-radius: 16px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.onpage-step:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.15);
}

.step-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.25rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-color);
}

.step-header h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1e40af;
    margin: 0;
}

.step-number {
    font-size: 0.8125rem;
    font-weight: 700;
    color: white;
    background: var(--gradient-2);
    padding: 0.375rem 0.75rem;
    border-radius: 6px;
}

.step-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}

.step-list li {
    display: flex;
    align-items: start;
    gap: 0.625rem;
    font-size: 0.875rem;
    color: var(--text-dark);
    line-height: 1.5;
}

.step-list li svg {
    flex-shrink: 0;
    color: var(--success-color);
    margin-top: 2px;
}

/* On-PAGE CTA Card */
.onpage-cta-card {
    grid-column: span 2;
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100%;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.3);
}

.onpage-cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    width: 100%;
}

.cta-icon-wrapper {
    position: relative;
    display: inline-flex;
    margin-bottom: 1.5rem;
}

.cta-icon {
    width: 64px;
    height: 64px;
    color: white;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.2));
    animation: ctaIconBounce 2s ease-in-out infinite;
}

.cta-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: ctaPulseAnimation 2s ease-out infinite;
}

@keyframes ctaIconBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes ctaPulseAnimation {
    0% {
        transform: translate(-50%, -50%) scale(0.8);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.onpage-cta-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin: 0 0 1rem 0;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.02em;
}

.onpage-cta-desc {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.6;
    margin: 0 0 2rem 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefits {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
    margin-bottom: 2rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-size: 1rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.25rem;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.cta-benefit svg {
    flex-shrink: 0;
}

.btn-onpage-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-color);
    font-size: 1.25rem;
    font-weight: 700;
    padding: 1.25rem 3rem;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-onpage-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-onpage-cta:hover::before {
    left: 100%;
}

.btn-onpage-cta:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.btn-onpage-cta svg {
    transition: transform 0.3s ease;
}

.btn-onpage-cta:hover svg {
    transform: translateX(5px);
}

.cta-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.cta-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    animation: ctaFloat 6s ease-in-out infinite;
}

.cta-circle-1 {
    width: 150px;
    height: 150px;
    top: -50px;
    left: -50px;
    animation-delay: 0s;
}

.cta-circle-2 {
    width: 100px;
    height: 100px;
    bottom: -30px;
    right: -30px;
    animation-delay: 2s;
}

.cta-circle-3 {
    width: 80px;
    height: 80px;
    top: 50%;
    right: 10%;
    animation-delay: 4s;
}

@keyframes ctaFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0.3;
    }
    50% {
        transform: translateY(-20px) scale(1.1);
        opacity: 0.5;
    }
}

/* ===============================================
   Features Section
   =============================================== */
.features {
    background: white;
}

.features-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.features-content {
    max-width: 500px;
}

.features-text {
    font-size: 1.125rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.features-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2.5rem;
}

.feature-item-inline {
    display: flex;
    gap: 1rem;
    align-items: start;
}

.feature-check {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--gradient-2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.feature-item-inline h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.feature-item-inline p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.features-visual {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.feature-card-3d {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
    text-align: center;
}

.feature-card-3d:nth-child(1) {
    grid-column: 1 / -1;
}

.feature-card-3d:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.feature-icon-large {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.feature-card-3d h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.feature-stat {
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 159, 28, 0.05) 100%);
    border-radius: 12px;
}

.stat-big {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.stat-label-small {
    font-size: 0.875rem;
    color: var(--text-gray);
    margin-top: 0.5rem;
}

/* ===============================================
   Contact Section
   =============================================== */
.contact {
    background: #fafafa;
}

.contact-container {
    max-width: 1000px;
    margin: 0 auto;
}

.contact-header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
}

.contact-form-card {
    background: white;
    padding: 3rem;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--border-color);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: start;
    gap: 1rem;
    transition: var(--transition);
}

.info-card:hover {
    transform: translateX(5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: var(--primary-color);
}

.info-card.highlight {
    background: var(--gradient-2);
    border-color: transparent;
}

.info-card.highlight .info-icon,
.info-card.highlight .info-content h4,
.info-card.highlight .info-content p {
    color: white;
}

.info-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 159, 28, 0.1) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    flex-shrink: 0;
}

.info-card.highlight .info-icon {
    background: rgba(255, 255, 255, 0.2);
}

.info-content h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
}

.info-content p {
    font-size: 0.9375rem;
    color: var(--text-gray);
    line-height: 1.5;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: inherit;
    transition: var(--transition);
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-light);
}

/* ===============================================
   Footer
   =============================================== */
.footer {
    background: linear-gradient(180deg, #1a1a2e 0%, #16213e 100%);
    color: white;
    padding: 4rem 0 0;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 107, 53, 0.5), transparent);
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
}

.footer-brand {
    max-width: 480px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1.25rem;
}

.footer-logo .logo-icon {
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-logo .logo-text {
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1rem;
    margin-bottom: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.social-link {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-link:hover {
    background: var(--gradient-2);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

.footer-stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.stat-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 1.25rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
}

.stat-box:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 159, 28, 0.3);
    transform: translateX(5px);
}

.stat-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-2);
    border-radius: 12px;
    color: white;
    flex-shrink: 0;
}

.stat-info {
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9375rem;
    margin: 0;
}

.footer-bottom strong {
    color: white;
    font-weight: 700;
}

.footer-links {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9375rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--primary-color);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

/* ===============================================
   Floating Action Buttons
   =============================================== */
.floating-actions {
    position: fixed;
    left: 24px;
    bottom: 24px;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    z-index: 999;
}

.floating-btn {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    position: relative;
    animation: floatBounce 3s ease-in-out infinite;
}

.floating-btn:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
}

.whatsapp-btn:hover {
    animation: none;
}

.phone-btn {
    background: #0f172a;
    color: white;
}

.phone-btn:hover {
    animation: none;
}

.floating-tooltip {
    position: absolute;
    left: calc(100% + 12px);
    top: 50%;
    transform: translateY(-50%);
    background: var(--text-dark);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.floating-tooltip::before {
    content: '';
    position: absolute;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-right-color: var(--text-dark);
}

.floating-btn:hover .floating-tooltip {
    opacity: 1;
}

@keyframes floatBounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ===============================================
   Order Modal
   =============================================== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    padding: 20px;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-container {
    background: white;
    border-radius: 24px;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9) translateY(20px);
    transition: transform 0.3s ease;
}

.modal-overlay.active .modal-container {
    transform: scale(1) translateY(0);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.05);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(255, 107, 53, 0.1);
    color: var(--primary-color);
    transform: rotate(90deg);
}

.modal-close svg {
    color: var(--text-dark);
    transition: color 0.3s ease;
}

.modal-close:hover svg {
    color: var(--primary-color);
}

.modal-content {
    padding: 3rem;
}

.modal-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.modal-icon {
    width: 72px;
    height: 72px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.modal-icon svg {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.modal-title {
    font-size: 2rem;
    font-weight: 800;
    color: var(--text-dark);
    margin: 0 0 0.5rem 0;
    letter-spacing: -0.02em;
}

.modal-subtitle {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
}

/* Modal Form */
.modal-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.form-group-modal {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group-modal label {
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--text-dark);
}

.form-group-modal input,
.form-group-modal select,
.form-group-modal textarea {
    padding: 0.875rem 1.125rem;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    color: var(--text-dark);
    transition: all 0.3s ease;
    background: white;
}

.form-group-modal input:focus,
.form-group-modal select:focus,
.form-group-modal textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group-modal select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 3rem;
}

.form-group-modal textarea {
    resize: vertical;
    min-height: 80px;
}

/* Dynamic Fields */
#dynamicFields {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.05) 0%, rgba(255, 159, 28, 0.05) 100%);
    border-radius: 16px;
    border: 1px solid rgba(255, 107, 53, 0.1);
}

#dynamicFields:empty {
    display: none;
}

.dynamic-field-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.dynamic-field-header svg {
    color: var(--primary-color);
    flex-shrink: 0;
}

.dynamic-field-header h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

/* Price Display */
.price-display {
    background: linear-gradient(135deg, var(--gradient-1), var(--gradient-2));
    border-radius: 16px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.price-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.price-label {
    font-size: 1.125rem;
    font-weight: 600;
    color: white;
}

.price-amount {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
}

/* Modal Actions */
.modal-actions {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.btn-modal {
    flex: 1;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.btn-cancel {
    background: transparent;
    border: 2px solid var(--border-color);
    color: var(--text-dark);
}

.btn-cancel:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: var(--text-dark);
}

.btn-submit {
    background: #fa861f;
    color: white;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.4);
}

.btn-submit svg {
    transition: transform 0.3s ease;
}

.btn-submit:hover svg {
    transform: translateX(3px);
}

.btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}

.btn-submit:disabled:hover {
    transform: none !important;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.3);
}

/* Package Info Box */
.package-info-box {
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 12px;
    padding: 1.25rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.package-info-item {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    color: var(--text-dark);
}

.package-info-item svg {
    color: var(--success-color);
    flex-shrink: 0;
}

/* ===============================================
   Responsive Design
   =============================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    
    .hero-content {
        gap: 3rem;
    }
    
    .contact-wrapper {
        gap: 3rem;
    }
}

@media (max-width: 1024px) {
    .onpage-steps {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    }
    
    .onpage-title-wrapper {
        flex-direction: column;
        gap: 1.5rem;
        align-items: flex-start;
    }
    
    .onpage-price {
        align-items: flex-start;
    }
    
    .onpage-cta-card {
        grid-column: span 1;
    }
    
    .egitim-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .egitim-visual {
        order: 1;
    }
    
    .egitim-content {
        order: 2;
    }
    
    .egitim-topics {
        grid-template-columns: 1fr;
    }
    
    .bonus-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }
    
    .nav-center {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: white;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
        border-top: 1px solid var(--border-color);
    }
    
    .onpage-steps {
        grid-template-columns: 1fr;
    }
    
    .onpage-title {
        font-size: 2rem;
    }
    
    .onpage-description {
        padding: 1.5rem;
    }
    
    .nav-center.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    
    .nav-menu {
        flex-direction: column;
        padding: 1.5rem;
        gap: 0.5rem;
        background: transparent;
        width: 100%;
    }
    
    .nav-link {
        width: 100%;
        text-align: left;
        padding: 1rem 1.25rem;
    }
    
    .nav-actions {
        flex-direction: column;
        width: 100%;
        padding: 0 1.5rem 1.5rem;
        gap: 0.75rem;
    }
    
    .nav-phone,
    .btn-cta {
        width: 100%;
        justify-content: center;
    }
    
    .hero {
        padding: 140px 0 80px;
    }
    
    .hero-title {
        font-size: 2.75rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .stat-divider {
        display: none;
    }
    
    .stat-item {
        width: 100%;
        justify-content: center;
    }
    
    .features-layout {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .features-visual {
        grid-template-columns: 1fr;
    }
    
    .feature-card-3d:nth-child(1) {
        grid-column: 1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .contact-form-card {
        padding: 2rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    section {
        padding: 60px 0;
    }
    
    .services-showcase,
    .packages-grid {
        grid-template-columns: 1fr;
    }
    
    .package-card-new.featured-new {
        transform: scale(1);
    }
    
    .package-card-new.featured-new:hover {
        transform: translateY(-10px);
    }
    
    .services-showcase {
        gap: 1.5rem;
    }
    
    .service-card-modern {
        padding: 2rem;
    }
    

    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .floating-actions {
        left: 16px;
        bottom: 16px;
    }
    
    .floating-btn {
        width: 52px;
        height: 52px;
    }
    
    .egitim-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .egitim-visual {
        order: 1;
    }
    
    .egitim-content {
        order: 2;
    }
    
    .egitim-topics {
        grid-template-columns: 1fr;
    }
    
    .bonus-list {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2.25rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .amount {
        font-size: 2.5rem;
    }
    
    .service-card-modern {
        padding: 1.75rem;
    }
    
    .service-icon-modern {
        width: 70px;
        height: 70px;
    }
    
    .service-badge {
        width: 42px;
        height: 42px;
    }
    
    .hero-badge,
    .section-tag {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
    
    .contact-form-card {
        padding: 1.5rem;
    }
    
    .onpage-title {
        font-size: 1.75rem;
    }
    
    .price-value {
        font-size: 1.5rem;
    }
    
    .onpage-step {
        padding: 1.5rem;
    }
    
    .onpage-cta-card {
        padding: 2rem;
    }
    
    .onpage-cta-title {
        font-size: 2rem;
    }
    
    .onpage-cta-desc {
        font-size: 1rem;
    }
    
    .btn-onpage-cta {
        font-size: 1.125rem;
        padding: 1rem 2rem;
    }
    
    .egitim-title {
        font-size: 2rem;
    }
    
    .egitim-badge-float {
        right: 5%;
        top: -10px;
    }
    
    .badge-content {
        padding: 0.75rem 1rem;
    }
    
    .book-cover {
        width: 240px;
        height: 320px;
    }
    
    .egitim-features-float {
        position: static;
        flex-direction: row;
        justify-content: center;
        margin-top: 2rem;
    }
    
    .price-wrapper {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
    
    .new-amount {
        font-size: 2.5rem;
    }
    
    .btn-egitim {
        font-size: 1.125rem;
        padding: 1rem 2rem;
        width: 100%;
    }
    
    .footer-brand {
        max-width: 100%;
    }
    
    .footer-stats {
        grid-template-columns: 1fr;
    }
    
    .floating-btn {
        width: 48px;
        height: 48px;
    }
    
    .floating-tooltip {
        display: none;
    }
    
    /* Modal Responsive */
    .modal-container {
        max-width: 90%;
        margin: 1rem;
    }
    
    .form-grid-2 {
        grid-template-columns: 1fr;
    }
    
    .modal-icon {
        width: 64px;
        height: 64px;
    }
    
    .modal-icon i {
        font-size: 28px;
    }
    
    .modal-header h2 {
        font-size: 24px;
    }
}

/* ===============================================
   Extra Small Devices (400px and below)
   =============================================== */
@media (max-width: 400px) {
    /* Navbar için özel düzenlemeler */
    .container {
        padding: 0 12px;
    }
    
    .nav-wrapper {
        padding: 0.5rem 0;
        gap: 0.5rem;
    }
    
    .logo {
        font-size: 1.125rem;
        gap: 0.5rem;
    }
    
    .logo-text {
        font-size: 1.125rem;
    }
    
    .logo-icon svg {
        width: 26px;
        height: 26px;
    }
    
    .mobile-toggle {
        padding: 0.5rem;
        gap: 4px;
    }
    
    .mobile-toggle span {
        width: 20px;
        height: 2px;
    }
    
    .nav-phone {
        font-size: 0.8125rem;
        padding: 0.5rem 0.75rem;
        gap: 0.375rem;
    }
    
    .nav-phone svg {
        width: 16px;
        height: 16px;
    }
    
    .nav-phone span {
        display: none;
    }
    
    /* Telefon numarasını göster - sadece ikon */
    .nav-phone::after {
        content: '0501...';
        font-size: 0.75rem;
    }
    
    .btn-cta {
        font-size: 0.8125rem;
        padding: 0.5rem 1rem;
    }
    
    /* Hero section düzenlemeleri */
    .hero {
        padding: 120px 0 60px;
    }
    
    .hero-badge {
        font-size: 0.6875rem;
        padding: 0.375rem 0.75rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .hero-description {
        font-size: 0.9375rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .hero-buttons {
        gap: 0.75rem;
    }
    
    .btn {
        font-size: 0.9375rem;
        padding: 0.875rem 1.5rem;
    }
    
    .hero-stats {
        padding: 1.25rem;
        gap: 1.25rem;
    }
    
    .stat-number {
        font-size: 1.75rem;
    }
    
    .stat-label {
        font-size: 0.8125rem;
    }
    
    /* Section düzenlemeleri */
    .section-title {
        font-size: 1.625rem;
        line-height: 1.3;
    }
    
    .section-description {
        font-size: 0.9375rem;
    }
    
    .section-tag {
        font-size: 0.75rem;
        padding: 0.375rem 0.875rem;
    }
    
    /* Service cards */
    .service-card-modern {
        padding: 1.5rem;
    }
    
    .service-icon-modern {
        width: 60px;
        height: 60px;
    }
    
    .service-badge {
        width: 38px;
        height: 38px;
        font-size: 0.75rem;
    }
    
    .service-card-modern h3 {
        font-size: 1.125rem;
    }
    
    .service-card-modern p {
        font-size: 0.875rem;
    }
    
    /* Package cards */
    .package-card-new {
        padding: 1.5rem;
    }
    
    .package-name {
        font-size: 1.25rem;
    }
    
    .amount {
        font-size: 2rem;
    }
    
    .period {
        font-size: 0.875rem;
    }
    
    /* Contact form */
    .contact-form-card {
        padding: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.875rem;
    }
    
    .form-control {
        font-size: 0.9375rem;
        padding: 0.75rem 1rem;
    }
    
    /* Footer */
    .footer-brand-text {
        font-size: 1rem;
    }
    
    .footer-description {
        font-size: 0.875rem;
    }
    
    .footer-title {
        font-size: 1rem;
    }
    
    .footer-link {
        font-size: 0.875rem;
    }
    
    /* Floating buttons */
    .floating-actions {
        left: 12px;
        bottom: 12px;
    }
    
    .floating-btn {
        width: 44px;
        height: 44px;
    }
    
    .floating-btn i {
        font-size: 18px;
    }
    
    /* Modal düzenlemeleri */
    .modal-container {
        max-width: 95%;
        margin: 0.5rem;
        padding: 1.25rem;
    }
    
    .modal-header h2 {
        font-size: 1.25rem;
    }
    
    .modal-body {
        padding: 1rem 0;
    }
}
Açıklama