/* ============================================
   GENEL STİLLER VE DEĞİŞKENLER
   ============================================ */

:root {
    /* Renk Paleti */
    --primary-color: #EC7505;        /* Ana Renk (CTA, ikon, buton) */
    --accent-color: #D84A05;         /* Vurgu Rengi (info, banner, özel alanlar) */
    --heading-color: #0A2647;        /* Başlık Yazı Rengi */
    --subheading-color: #1565C0;     /* Alt Başlık / İkincil Yazı Rengi */
    --bg-main: #FAFAFA;              /* Arka Plan Ana */
    --bg-white: #FFFFFF;             /* Beyaz Kontrast (kart, içerik kutuları) */
    --border-color: #E7E7E7;         /* Soft Gri (çerçeve, ince ayırıcılar) */
    
    /* Tipografi */
    --font-primary: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    
    /* Spacing */
    --section-padding: 80px 0;
    --container-max-width: 1200px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    line-height: 1.6;
    color: var(--heading-color);
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 30%, #f3f4f6 60%, #f9fafb 100%);
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(200, 180, 220, 0.12) 0%, rgba(180, 200, 220, 0.15) 30%, rgba(200, 220, 200, 0.12) 60%, rgba(220, 200, 180, 0.08) 100%),
        radial-gradient(ellipse 1200px 1000px at 20% 20%, rgba(255, 240, 200, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 1000px 900px at 80% 60%, rgba(200, 220, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 900px 800px at 50% 80%, rgba(200, 255, 220, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 800px 700px at 10% 50%, rgba(255, 220, 200, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 700px 600px at 70% 30%, rgba(240, 200, 255, 0.04) 0%, transparent 70%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    filter: blur(0.8px);
    z-index: -1;
    pointer-events: none;
}

.container {
    max-width: var(--container-max-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* ============================================
   SOSYAL MEDYA BAR
   ============================================ */

.social-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #f5f5f5;
    padding: 6px 0;
    z-index: 1001;
    border-bottom: 1px solid var(--border-color);
    display: block;
}

.social-bar-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.social-links-minimal {
    display: flex;
    gap: 15px;
    align-items: center;
}

.social-link-minimal {
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--subheading-color);
    text-decoration: none;
    transition: all 0.2s ease;
    font-size: 0.8rem;
    padding: 0;
}

.social-link-minimal:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.social-link-minimal i {
    font-size: 0.85rem;
}

.top-menu-links {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-menu-link {
    color: var(--subheading-color);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 500;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.top-menu-link:hover {
    color: var(--primary-color);
}

.top-menu-link i {
    font-size: 0.8rem;
}

/* ============================================
   HEADER STİLLERİ
   ============================================ */

.main-header {
    position: fixed;
    top: 28px;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: all 0.3s ease;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    text-decoration: none;
}

.logo i {
    font-size: 2rem;
    color: var(--primary-color);
    display: inline-block;
    width: 100px;
    height: 100px;
    background-image: url('../images/logo.png');
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    text-indent: -9999px;
    overflow: hidden;
    flex-shrink: 0;
}

.main-nav {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--heading-color);
    font-weight: 500;
    transition: color 0.3s ease;
    position: relative;
}

.nav-link:hover {
    color: var(--primary-color);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--heading-color);
    cursor: pointer;
    padding: 5px;
}

.btn-appointment {
    white-space: nowrap;
    padding: 10px 20px;
    font-size: 0.95rem;
    margin-left: 10px;
}

/* ============================================
   BUTON STİLLERİ
   ============================================ */

.btn {
    display: inline-block;
    padding: 12px 30px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
    text-align: center;
}

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

.btn-primary:hover {
    background: var(--accent-color);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(236, 117, 5, 0.3);
}

.btn-secondary {
    background: transparent;
    color: var(--subheading-color);
    border: 2px solid var(--subheading-color);
}

.btn-secondary:hover {
    background: var(--subheading-color);
    color: white;
}


.btn-block {
    width: 100%;
}

/* ============================================
   HERO BÖLÜMÜ
   ============================================ */

.hero-section {
    margin-top: 108px;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.03), rgba(21, 101, 192, 0.02));
    min-height: 90vh;
    display: flex;
    align-items: center;
}

.hero-background-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-background-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.12;
    filter: blur(50px) brightness(1.1);
    transform: scale(1.15);
    animation: background-zoom 20s ease-in-out infinite;
}

@keyframes background-zoom {
    0%, 100% { transform: scale(1.15); }
    50% { transform: scale(1.25); }
}

.hero-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 2px,
            rgba(255, 255, 255, 0.03) 2px,
            rgba(255, 255, 255, 0.03) 4px
        );
    opacity: 0.5;
    z-index: 1;
    animation: pattern-move-slow 30s linear infinite;
}

@keyframes pattern-move-slow {
    0% { transform: translate(0, 0); }
    100% { transform: translate(50px, 50px); }
}

.hero-background-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: shape-float 15s ease-in-out infinite;
}

.hero-shape-1 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 117, 5, 0.3) 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(21, 101, 192, 0.3) 0%, transparent 70%);
    bottom: -150px;
    right: -150px;
    animation-delay: 5s;
}

.hero-shape-3 {
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(236, 117, 5, 0.2) 0%, transparent 70%);
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    animation-delay: 10s;
}

@keyframes shape-float {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.4;
    }
    33% { 
        transform: translate(30px, -30px) scale(1.1);
        opacity: 0.6;
    }
    66% { 
        transform: translate(-20px, 20px) scale(0.9);
        opacity: 0.3;
    }
}

.hero-background-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse 800px 600px at 20% 30%, rgba(236, 117, 5, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 800px 600px at 80% 70%, rgba(21, 101, 192, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse 1000px 800px at 50% 50%, rgba(236, 117, 5, 0.04) 0%, transparent 70%),
        linear-gradient(135deg, rgba(10, 38, 71, 0.02) 0%, rgba(21, 101, 192, 0.02) 100%);
    z-index: 2;
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 80px;
    align-items: center;
}

.hero-text-content {
    max-width: 100%;
}

.hero-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    border-radius: 30px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(236, 117, 5, 0.3);
}

.hero-title-modern {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.hero-title-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.hero-description-modern {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--subheading-color);
    margin-bottom: 40px;
}

.hero-buttons-modern {
    display: flex;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.btn-hero-modern {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-hero-modern i {
    transition: transform 0.3s ease;
}

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

.hero-stats-modern {
    display: flex;
    gap: 50px;
    flex-wrap: wrap;
    padding-top: 30px;
    border-top: 2px solid #e2e8f0;
}

.hero-stat-item {
    text-align: left;
}

.hero-stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 5px;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.95rem;
    color: var(--subheading-color);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.hero-image-content {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.5s ease;
}

.hero-image-wrapper:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
}

.hero-image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(236, 117, 5, 0.2) 0%, transparent 70%);
    animation: glow-pulse 3s ease-in-out infinite;
    z-index: 1;
    pointer-events: none;
}

@keyframes glow-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.hero-main-image {
    width: 100%;
    height: auto;
    display: block;
    position: relative;
    z-index: 2;
    border-radius: 24px;
}

/* ============================================
   BÖLÜM BAŞLIKLARI
   ============================================ */

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

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.gallery-title {
    font-size: 3rem;
    font-weight: 800;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--heading-color);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.gallery-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--subheading-color);
    max-width: 700px;
    margin: 0 auto;
}

/* ============================================
   HAKKIMIZDA BÖLÜMÜ
   ============================================ */

.about-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 30%, #f3f4f6 60%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(200, 180, 220, 0.12) 0%, rgba(180, 200, 220, 0.15) 30%, rgba(200, 220, 200, 0.12) 60%, rgba(220, 200, 180, 0.08) 100%),
        radial-gradient(ellipse 1000px 900px at 80% 20%, rgba(255, 240, 200, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 900px 800px at 20% 80%, rgba(200, 220, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 800px 700px at 50% 50%, rgba(200, 255, 220, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 700px 600px at 10% 30%, rgba(255, 220, 200, 0.05) 0%, transparent 70%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    filter: blur(0.8px);
    z-index: 0;
    pointer-events: none;
}

.about-section .container {
    position: relative;
    z-index: 2;
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.about-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.about-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
}

.about-card h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.about-card p {
    color: var(--subheading-color);
    line-height: 1.8;
}

/* ============================================
   ÜNİVERSİTELER BÖLÜMÜ - PREMIUM & MODERN
   ============================================ */

.universities-section-premium {
    padding: 140px 0;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 30%, #f3f4f6 60%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.universities-section-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(200, 180, 220, 0.12) 0%, rgba(180, 200, 220, 0.15) 30%, rgba(200, 220, 200, 0.12) 60%, rgba(220, 200, 180, 0.08) 100%),
        radial-gradient(ellipse 1000px 900px at 80% 20%, rgba(255, 240, 200, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 900px 800px at 20% 80%, rgba(200, 220, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 800px 700px at 50% 50%, rgba(200, 255, 220, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 700px 600px at 10% 30%, rgba(255, 220, 200, 0.05) 0%, transparent 70%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    filter: blur(0.8px);
    z-index: 0;
    pointer-events: none;
}

.universities-section-premium .container {
    position: relative;
    z-index: 2;
}

.universities-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(ellipse 800px 600px at 20% 30%, rgba(236, 117, 5, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse 800px 600px at 80% 70%, rgba(21, 101, 192, 0.04) 0%, transparent 60%);
    opacity: 1;
    animation: pattern-move 20s ease-in-out infinite;
}

@keyframes pattern-move {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

.universities-header-premium {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.header-content-premium {
    max-width: 800px;
    margin: 0 auto 50px;
}

.premium-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: rgba(236, 117, 5, 0.1);
    border: 1px solid rgba(236, 117, 5, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 25px;
}

.premium-badge i {
    font-size: 0.9rem;
}

.universities-title-premium {
    font-size: 3.5rem;
    font-weight: 800;
    color: #1a1f3a;
    margin-bottom: 20px;
    line-height: 1.2;
    letter-spacing: -1px;
}

.gradient-text-premium {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, #FFD700 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: inline-block;
}

.universities-subtitle-premium {
    font-size: 1.2rem;
    color: #4a5568;
    line-height: 1.7;
    font-weight: 400;
}

.universities-stats-premium {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
}

.stat-box-premium {
    text-align: center;
}

.stat-number-premium {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    line-height: 1;
}

.stat-label-premium {
    font-size: 0.95rem;
    color: #718096;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.universities-grid-premium {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 80px;
    position: relative;
    z-index: 1;
}

.university-card-premium {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.university-card-premium.featured-premium {
    border: 2px solid rgba(236, 117, 5, 0.3);
    background: #fffaf5;
    box-shadow: 0 8px 30px rgba(236, 117, 5, 0.15);
}

.card-glow-premium {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(236, 117, 5, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.university-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(236, 117, 5, 0.5);
    box-shadow: 0 20px 60px rgba(236, 117, 5, 0.2);
    background: #ffffff;
}

.university-card-premium:hover .card-glow-premium {
    opacity: 1;
}

.university-rank-premium {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: rgba(236, 117, 5, 0.15);
    border: 1px solid rgba(236, 117, 5, 0.3);
    border-radius: 20px;
    color: var(--primary-color);
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.university-rank-premium i {
    font-size: 0.8rem;
}

.university-logo-premium {
    position: relative;
    width: 100%;
    height: 200px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-bg-premium {
    position: absolute;
    width: 100%;
    height: 100%;
    background: #f7fafc;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.4s ease;
}

.university-card-premium:hover .logo-bg-premium {
    background: rgba(236, 117, 5, 0.05);
    border-color: rgba(236, 117, 5, 0.2);
    transform: scale(1.05);
}

.logo-img-premium {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    filter: none;
    opacity: 1;
    transition: all 0.4s ease;
}

.university-card-premium:hover .logo-img-premium {
    filter: none;
    opacity: 1;
    transform: scale(1.1);
}

.university-content-premium {
    position: relative;
    z-index: 1;
}

.university-title-premium {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1a1f3a;
    margin-bottom: 15px;
    line-height: 1.3;
    min-height: 72px;
}

.university-meta-premium {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 18px;
    border-bottom: 1px solid #e2e8f0;
}

.location-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4a5568;
    font-size: 0.95rem;
    font-weight: 500;
}

.location-premium i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.rank-premium {
    padding: 4px 12px;
    background: rgba(236, 117, 5, 0.15);
    border: 1px solid rgba(236, 117, 5, 0.3);
    border-radius: 12px;
    color: var(--primary-color);
    font-size: 0.8rem;
    font-weight: 700;
}

.university-desc-premium {
    color: #4a5568;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 20px;
    min-height: 60px;
}

.university-features-premium {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.feature-item-premium {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    background: #f7fafc;
    border: 1px solid #e2e8f0;
    border-radius: 16px;
    color: #4a5568;
    font-size: 0.85rem;
    font-weight: 500;
}

.feature-item-premium i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.universities-cta-premium {
    margin-top: 80px;
    position: relative;
    z-index: 1;
}

.cta-wrapper-premium {
    background: linear-gradient(135deg, rgba(236, 117, 5, 0.05), rgba(21, 101, 192, 0.05));
    border: 1px solid #e2e8f0;
    border-radius: 32px;
    padding: 50px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 40px;
    align-items: center;
    transition: all 0.4s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.cta-wrapper-premium:hover {
    border-color: rgba(236, 117, 5, 0.5);
    box-shadow: 0 20px 60px rgba(236, 117, 5, 0.2);
    transform: translateY(-5px);
}

.cta-icon-wrapper-premium {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(236, 117, 5, 0.4);
    flex-shrink: 0;
}

.cta-content-wrapper-premium {
    color: #1a1f3a;
}

.cta-title-premium {
    font-size: 2rem;
    font-weight: 700;
    color: #1a1f3a;
    margin-bottom: 12px;
}

.cta-desc-premium {
    font-size: 1.1rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.btn-premium-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(236, 117, 5, 0.4);
    white-space: nowrap;
}

.btn-premium-cta:hover {
    transform: translateX(5px);
    box-shadow: 0 12px 35px rgba(236, 117, 5, 0.5);
}

.btn-premium-cta i {
    transition: transform 0.3s ease;
}

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

/* Üniversite Modal */
/* Üniversite Görsel Lightbox */
.university-image-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.university-image-modal.active {
    opacity: 1;
    visibility: visible;
    pointer-events: all;
}

.modal-backdrop {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.modal-image-container {
    position: relative;
    z-index: 1;
    max-width: 90%;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: imageZoomIn 0.3s ease;
}

@keyframes imageZoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.modal-image {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    background: var(--bg-white);
    padding: 20px;
}

.modal-close-btn {
    position: absolute;
    top: -50px;
    right: 0;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--heading-color);
    font-size: 1.3rem;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.modal-close-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: rotate(90deg);
}

/* Üniversiteler Responsive */
@media (max-width: 1200px) {
    .universities-grid-premium {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 1024px) {
    .universities-title-premium {
        font-size: 2.8rem;
    }

    .universities-stats-premium {
        gap: 40px;
    }

    .stat-number-premium {
        font-size: 2.5rem;
    }

    .cta-wrapper-premium {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }

    .cta-icon-wrapper-premium {
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .universities-section-premium {
        padding: 100px 0;
    }

    .universities-title-premium {
        font-size: 2.2rem;
    }

    .universities-subtitle-premium {
        font-size: 1.05rem;
    }

    .universities-stats-premium {
        gap: 30px;
        flex-wrap: wrap;
    }

    .stat-number-premium {
        font-size: 2rem;
    }

    .universities-grid-premium {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .university-card-premium {
        padding: 30px 25px;
    }

    .university-logo-premium {
        height: 180px;
        margin-bottom: 25px;
    }

    .university-title-premium {
        font-size: 1.25rem;
        min-height: auto;
    }

    .cta-wrapper-premium {
        padding: 40px 30px;
    }

    .cta-title-premium {
        font-size: 1.6rem;
    }

    .cta-desc-premium {
        font-size: 1rem;
    }

    .modal-image-container {
        max-width: 95%;
    }

    .modal-close-btn {
        top: -40px;
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    .universities-section-premium {
        padding: 80px 0;
    }

    .universities-title-premium {
        font-size: 1.8rem;
    }

    .universities-subtitle-premium {
        font-size: 0.95rem;
    }

    .universities-stats-premium {
        gap: 25px;
    }

    .stat-number-premium {
        font-size: 1.8rem;
    }

    .stat-label-premium {
        font-size: 0.85rem;
    }

    .universities-grid-premium {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .university-card-premium {
        padding: 25px 20px;
    }

    .university-logo-premium {
        height: 160px;
        margin-bottom: 20px;
    }

    .university-title-premium {
        font-size: 1.15rem;
    }

    .university-desc-premium {
        font-size: 0.9rem;
    }

    .cta-wrapper-premium {
        padding: 30px 20px;
    }

    .cta-icon-wrapper-premium {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .cta-title-premium {
        font-size: 1.4rem;
    }

    .btn-premium-cta {
        padding: 16px 28px;
        font-size: 0.95rem;
    }
}

/* ============================================
   HİZMETLER BÖLÜMÜ
   ============================================ */

.services-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 30%, #f3f4f6 60%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(200, 180, 220, 0.12) 0%, rgba(180, 200, 220, 0.15) 30%, rgba(200, 220, 200, 0.12) 60%, rgba(220, 200, 180, 0.08) 100%),
        radial-gradient(ellipse 1000px 900px at 80% 20%, rgba(255, 240, 200, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 900px 800px at 20% 80%, rgba(200, 220, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 800px 700px at 50% 50%, rgba(200, 255, 220, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 700px 600px at 10% 30%, rgba(255, 220, 200, 0.05) 0%, transparent 70%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    filter: blur(0.8px);
    z-index: 0;
    pointer-events: none;
}

.services-section .container {
    position: relative;
    z-index: 2;
}

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

.service-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    margin-bottom: 20px;
}

.service-card h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 15px;
}

.service-card p {
    color: var(--subheading-color);
    margin-bottom: 20px;
    line-height: 1.8;
}

.service-list {
    list-style: none;
    padding: 0;
}

.service-list li {
    padding: 8px 0;
    color: var(--subheading-color);
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-list i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* ============================================
   SSS BÖLÜMÜ
   ============================================ */

/* ============================================
   TANITIM VİDEOSU BÖLÜMÜ - MODERN TASARIM
   ============================================ */

.video-section-modern {
    padding: 120px 0;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 30%, #f3f4f6 60%, #f9fafb 100%);
}

.video-section-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.video-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(200, 180, 220, 0.12) 0%, rgba(180, 200, 220, 0.15) 30%, rgba(200, 220, 200, 0.12) 60%, rgba(220, 200, 180, 0.08) 100%),
        radial-gradient(ellipse 1000px 900px at 80% 60%, rgba(100, 200, 255, 0.12) 0%, transparent 70%),
        radial-gradient(ellipse 900px 800px at 50% 80%, rgba(200, 255, 100, 0.1) 0%, transparent 70%),
        radial-gradient(ellipse 800px 700px at 10% 50%, rgba(255, 150, 100, 0.08) 0%, transparent 70%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    filter: blur(1px);
}

.video-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.video-shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
    animation: video-shape-float 20s ease-in-out infinite;
}

.video-shape-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 117, 5, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -200px;
    animation-delay: 0s;
}

.video-shape-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(10, 38, 71, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -150px;
    animation-delay: 5s;
}

.video-shape-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(236, 117, 5, 0.25) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes video-shape-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.video-section-modern .container {
    position: relative;
    z-index: 2;
}

.video-section-content {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

/* Sol Taraf - İçerik */
.video-content-side {
    position: relative;
    z-index: 2;
}

.video-content-inner {
    max-width: 100%;
}

.video-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, rgba(236, 117, 5, 0.1), rgba(216, 74, 5, 0.08));
    border: 2px solid rgba(236, 117, 5, 0.3);
    border-radius: 50px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.video-badge i {
    font-size: 1.1rem;
}

.video-title-modern {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--heading-color);
    margin-bottom: 25px;
    letter-spacing: -1px;
}

.video-title-gradient {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.video-description {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--subheading-color);
    margin-bottom: 40px;
}

.video-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.video-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1rem;
    color: var(--heading-color);
}

.video-feature-item i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Sağ Taraf - Video Player */
.video-player-side {
    position: relative;
    z-index: 2;
}

.video-player-modern {
    position: relative;
    padding: 14px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.7));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 255, 255, 0.5);
    transform: perspective(1000px) rotateY(-2deg);
    transition: transform 0.5s ease;
}

.video-player-modern:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.2), 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.video-player-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(236, 117, 5, 0.2) 0%, transparent 70%);
    animation: video-glow-pulse 3s ease-in-out infinite;
    z-index: -1;
}

@keyframes video-glow-pulse {
    0%, 100% { opacity: 0.3; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

.video-player-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #000;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(236, 117, 5, 0.3);
}

.video-wrapper-modern {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%;
    background: #000;
}

.intro-video-modern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    /* Dikey videonun tamamı görünsün diye kırpmadan yerleştir */
    object-fit: contain;
    background: #000;
}

.video-overlay-play {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.1);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.video-player-modern:hover .video-overlay-play {
    opacity: 1;
}

.play-button-circle {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 10px 30px rgba(236, 117, 5, 0.4);
    animation: play-button-pulse 2s ease-in-out infinite;
}

@keyframes play-button-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.video-player-decoration {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.video-decoration-dot {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary-color);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(236, 117, 5, 0.6);
    animation: video-dot-float 3s ease-in-out infinite;
}

.video-dot-1 {
    top: 15px;
    left: 15px;
    animation-delay: 0s;
}

.video-dot-2 {
    top: 15px;
    right: 15px;
    animation-delay: 1s;
}

.video-dot-3 {
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    animation-delay: 2s;
}

@keyframes video-dot-float {
    0%, 100% { transform: translateY(0) scale(1); opacity: 0.8; }
    50% { transform: translateY(-10px) scale(1.2); opacity: 1; }
}

/* Video Responsive */
@media (max-width: 1024px) {
    .video-section-content {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .video-title-modern {
        font-size: 2.8rem;
    }
    
    .video-player-modern {
        transform: none;
    }
    
    .video-player-modern:hover {
        transform: translateY(-10px);
    }
}

@media (max-width: 768px) {
    .video-section-modern {
        padding: 80px 0;
    }
    
    .video-title-modern {
        font-size: 2.2rem;
    }
    
    .video-description {
        font-size: 1rem;
    }

    .video-player-modern {
        padding: 15px;
        border-radius: 20px;
    }
    
    .video-player-frame {
        border-radius: 15px;
        border-width: 3px;
    }
}

@media (max-width: 480px) {
    .video-title-modern {
        font-size: 1.8rem;
    }
    
    .video-badge {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
}

.faq-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 30%, #f3f4f6 60%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 180, 220, 0.12) 0%, rgba(180, 200, 220, 0.15) 30%, rgba(200, 220, 200, 0.12) 60%, rgba(220, 200, 180, 0.08) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    filter: blur(1px);
    z-index: 0;
    pointer-events: none;
}

.success-gallery-section .neon-lights-wrapper,
.faq-section .neon-lights-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.success-gallery-section .container,
.faq-section .container {
    position: relative;
    z-index: 2;
}

.faq-section .container {
    position: relative;
    z-index: 2;
}

/* ============================================
   BAŞARI HİKAYELERİ SAYFASI
   ============================================ */

.success-gallery-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 30%, #f3f4f6 60%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.success-gallery-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 180, 220, 0.12) 0%, rgba(180, 200, 220, 0.15) 30%, rgba(200, 220, 200, 0.12) 60%, rgba(220, 200, 180, 0.08) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    filter: blur(1px);
    z-index: 0;
    pointer-events: none;
}

.success-gallery-section .container {
    position: relative;
    z-index: 2;
}

.success-gallery-wrapper {
    position: relative;
}

.success-gallery-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    padding: 6px 0 12px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scroll-behavior: auto; /* JavaScript ile kontrol ediyoruz */
}

.success-gallery-scroll::-webkit-scrollbar {
    display: none; /* Chrome, Safari, Opera */
}

.success-gallery-track {
    display: grid;
    grid-auto-flow: column;
    grid-template-rows: repeat(2, 380px);
    grid-auto-columns: 420px;
    gap: 14px;
    transition: transform 0.5s ease;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
    border: 2px solid rgba(236, 117, 5, 0.15);
    width: 100%;
    height: 100%;
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.success-gallery-wrapper::before,
.success-gallery-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 48px;
    pointer-events: none;
    z-index: 3;
}

.success-gallery-wrapper::before {
    left: 0;
    background: linear-gradient(90deg, rgba(255,255,255,1), rgba(255,255,255,0));
}

.success-gallery-wrapper::after {
    right: 0;
    background: linear-gradient(270deg, rgba(255,255,255,1), rgba(255,255,255,0));
}

.gallery-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: none;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    box-shadow: 0 8px 20px rgba(236, 117, 5, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 4;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gallery-nav-btn:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: 0 10px 24px rgba(236, 117, 5, 0.45);
}

.gallery-nav-btn.prev {
    left: -10px;
}

.gallery-nav-btn.next {
    right: -10px;
}

.success-testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-main);
}

.success-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.success-testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(236, 117, 5, 0.35);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-top h3 {
    margin: 0;
    color: var(--heading-color);
    font-size: 1.05rem;
}

.testimonial-top .university {
    margin: 0;
    color: var(--subheading-color);
    font-size: 0.9rem;
}

.rating {
    color: var(--primary-color);
    display: flex;
    gap: 2px;
}

.testimonial-text {
    margin: 0;
    color: var(--heading-color);
    line-height: 1.6;
}

/* ============================================
   BAŞARI HİKAYELERİ BÖLÜMÜ
   ============================================ */

.success-stories-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 30%, #f3f4f6 60%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.success-stories-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(200, 180, 220, 0.12) 0%, rgba(180, 200, 220, 0.15) 30%, rgba(200, 220, 200, 0.12) 60%, rgba(220, 200, 180, 0.08) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    filter: blur(1px);
    z-index: 0;
    pointer-events: none;
}

.neon-lights-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.neon-light {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.6;
}

.neon-light-1 {
    width: 1000px;
    height: 900px;
    background: radial-gradient(ellipse, rgba(100, 200, 255, 0.3) 0%, transparent 70%);
    top: 60%;
    left: 80%;
    animation: neon-float-1 25s ease-in-out infinite;
}

.neon-light-2 {
    width: 900px;
    height: 800px;
    background: radial-gradient(ellipse, rgba(200, 255, 100, 0.25) 0%, transparent 70%);
    top: 80%;
    left: 50%;
    animation: neon-float-2 30s ease-in-out infinite;
}

.neon-light-3 {
    width: 800px;
    height: 700px;
    background: radial-gradient(ellipse, rgba(255, 150, 100, 0.2) 0%, transparent 70%);
    top: 50%;
    left: 10%;
    animation: neon-float-3 28s ease-in-out infinite;
}

.neon-light-4 {
    width: 700px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(100, 255, 200, 0.25) 0%, transparent 70%);
    top: 30%;
    left: 70%;
    animation: neon-float-4 32s ease-in-out infinite;
}

.neon-light-5 {
    width: 600px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(100, 255, 200, 0.2) 0%, transparent 70%);
    top: 70%;
    left: 30%;
    animation: neon-float-5 27s ease-in-out infinite;
}

.neon-light-6 {
    width: 500px;
    height: 400px;
    background: radial-gradient(ellipse, rgba(200, 220, 255, 0.2) 0%, transparent 70%);
    top: 40%;
    left: 20%;
    animation: neon-float-6 35s ease-in-out infinite;
}

@keyframes neon-float-1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-15%, -20%) scale(1.2); }
    50% { transform: translate(10%, 15%) scale(0.8); }
    75% { transform: translate(20%, -10%) scale(1.1); }
}

@keyframes neon-float-2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(20%, -15%) scale(0.9); }
    50% { transform: translate(-10%, 20%) scale(1.15); }
    75% { transform: translate(-15%, -5%) scale(0.85); }
}

@keyframes neon-float-3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(25%, 10%) scale(1.1); }
    50% { transform: translate(-20%, -15%) scale(0.9); }
    75% { transform: translate(15%, 20%) scale(1.05); }
}

@keyframes neon-float-4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-25%, 15%) scale(0.95); }
    50% { transform: translate(15%, -20%) scale(1.2); }
    75% { transform: translate(10%, 25%) scale(0.8); }
}

@keyframes neon-float-5 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(18%, -25%) scale(1.15); }
    50% { transform: translate(-18%, 18%) scale(0.85); }
    75% { transform: translate(25%, 10%) scale(1.05); }
}

@keyframes neon-float-6 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-20%, 20%) scale(0.9); }
    50% { transform: translate(20%, -18%) scale(1.2); }
    75% { transform: translate(-10%, -25%) scale(0.85); }
}

.success-stories-section .container {
    position: relative;
    z-index: 2;
}

.success-stories-section .container {
    position: relative;
    z-index: 2;
}

.success-stories-container {
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.success-story-card {
    background: var(--bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    display: grid;
    grid-template-columns: 350px 1fr;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.success-story-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.story-image-wrapper {
    position: relative;
    overflow: hidden;
    background: transparent;
    min-height: 100%;
}

.story-image {
    width: 100%;
    height: 100%;
    min-height: 700px;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.success-story-card:hover .story-image {
    transform: scale(1.1);
}

.story-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.1), transparent 30%, transparent 70%, rgba(0, 0, 0, 0.2));
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 20px;
}

.story-badge {
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(236, 117, 5, 0.4);
}

.story-badge i {
    font-size: 0.9rem;
}

.story-content {
    padding: 35px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.story-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.story-author h3 {
    margin: 0 0 8px;
    color: var(--heading-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.story-university {
    margin: 0;
    color: var(--subheading-color);
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.story-university i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.story-rating {
    color: var(--primary-color);
    display: flex;
    gap: 3px;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.story-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.story-quote {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--heading-color);
    line-height: 1.7;
    padding: 20px;
    background: linear-gradient(135deg, rgba(236, 117, 5, 0.05), rgba(216, 74, 5, 0.03));
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    margin: 0;
    font-style: italic;
}

.story-text p {
    margin: 0;
    color: var(--heading-color);
    line-height: 1.8;
    font-size: 1.05rem;
}

.story-footer {
    display: flex;
    gap: 30px;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    flex-wrap: wrap;
}

.story-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--subheading-color);
    font-size: 0.95rem;
}

.story-location i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

@media (max-width: 992px) {
    .success-story-card {
        grid-template-columns: 300px 1fr;
    }
    
    .story-content {
        padding: 30px;
    }
}

@media (max-width: 768px) {
    .success-stories-container {
        gap: 30px;
    }
    
    .success-story-card {
        grid-template-columns: 1fr;
    }
    
    .story-image-wrapper {
        height: 300px;
    }
    
    .story-content {
        padding: 25px;
    }
    
    .story-header {
        flex-direction: column;
        gap: 15px;
    }
    
    .story-quote {
        font-size: 1.05rem;
        padding: 15px;
    }
    
    .story-text p {
        font-size: 1rem;
    }
    
    .story-footer {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .story-content {
        padding: 20px;
    }
    
    .story-author h3 {
        font-size: 1.3rem;
    }
    
    .story-quote {
        font-size: 1rem;
        padding: 12px;
    }
}

.more-stories-wrapper {
    text-align: center;
    margin-top: 60px;
    padding-top: 40px;
}

.btn-more-stories {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 5px 20px rgba(236, 117, 5, 0.3);
    border: none;
    cursor: pointer;
}

.btn-more-stories:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(236, 117, 5, 0.4);
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
}

.btn-more-stories i {
    transition: transform 0.3s ease;
}

.btn-more-stories:hover i {
    transform: translateY(3px);
}

@media (max-width: 768px) {
    .more-stories-wrapper {
        margin-top: 40px;
        padding-top: 30px;
    }
    
    .btn-more-stories {
        padding: 14px 32px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .btn-more-stories {
        padding: 12px 28px;
        font-size: 0.95rem;
        gap: 10px;
    }
}

.success-cta-section {
    padding: 70px 0 90px;
    background: var(--bg-white);
}

.success-cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 26px 30px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(236, 117, 5, 0.1), rgba(216, 74, 5, 0.08));
    border: 2px solid rgba(236, 117, 5, 0.3);
    box-shadow: 0 10px 30px rgba(236, 117, 5, 0.15);
}

.success-cta-card h2 {
    margin: 0 0 8px;
    color: var(--heading-color);
}

.success-cta-card p {
    margin: 0;
    color: var(--heading-color);
    opacity: 0.85;
}

@media (max-width: 992px) {
}

@media (max-width: 768px) {
    .success-gallery-grid {
        grid-template-rows: repeat(2, 200px);
        grid-auto-columns: 220px;
    }
    .success-cta-card {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   BAŞARI HİKAYELERİ SAYFASI
   ============================================ */

.success-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 18px;
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
    border: 2px solid rgba(236, 117, 5, 0.15);
}

.gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-card.tall {
    grid-row: span 2;
}

.gallery-card.wide {
    grid-column: span 2;
}

.success-testimonials-section {
    padding: var(--section-padding);
    background: var(--bg-main);
}

.success-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.success-testimonial-card {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 14px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.testimonial-top {
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 12px rgba(236, 117, 5, 0.35);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-top h3 {
    margin: 0;
    color: var(--heading-color);
    font-size: 1.05rem;
}

.testimonial-top .university {
    margin: 0;
    color: var(--subheading-color);
    font-size: 0.9rem;
}

.rating {
    color: var(--primary-color);
    display: flex;
    gap: 2px;
}

.testimonial-text {
    margin: 0;
    color: var(--heading-color);
    line-height: 1.6;
}

.success-stats-section {
    padding: 70px 0;
    background: linear-gradient(135deg, rgba(236, 117, 5, 0.08), rgba(10, 38, 71, 0.06));
}

.success-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    text-align: center;
}

.stat-card {
    background: var(--bg-white);
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(236, 117, 5, 0.2);
}

.stat-card h3 {
    margin: 0 0 8px;
    font-size: 2rem;
    color: var(--primary-color);
}

.stat-card p {
    margin: 0;
    color: var(--heading-color);
    font-weight: 600;
}

.success-cta-section {
    padding: 70px 0 90px;
    background: var(--bg-white);
}

.success-cta-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    padding: 26px 30px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(236, 117, 5, 0.1), rgba(216, 74, 5, 0.08));
    border: 2px solid rgba(236, 117, 5, 0.3);
    box-shadow: 0 10px 30px rgba(236, 117, 5, 0.15);
}

.success-cta-card h2 {
    margin: 0 0 8px;
    color: var(--heading-color);
}

.success-cta-card p {
    margin: 0;
    color: var(--heading-color);
    opacity: 0.85;
}

@media (max-width: 992px) {
    .gallery-card.tall {
        grid-row: span 1;
    }
    .gallery-card.wide {
        grid-column: span 1;
    }
}

@media (max-width: 768px) {
    .success-cta-card {
        flex-direction: column;
        text-align: center;
    }
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.faq-question {
    padding: 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-main);
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f0f0f0;
}

.faq-question h3 {
    font-size: 1.1rem;
    color: var(--heading-color);
    font-weight: 600;
    margin: 0;
}

.faq-question i {
    color: var(--primary-color);
    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;
}

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

.faq-answer p {
    padding: 20px;
    color: var(--subheading-color);
    line-height: 1.8;
    margin: 0;
}

/* ============================================
   PAKETLER BÖLÜMÜ
   ============================================ */

.packages-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 30%, #f3f4f6 60%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.packages-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(200, 180, 220, 0.12) 0%, rgba(180, 200, 220, 0.15) 30%, rgba(200, 220, 200, 0.12) 60%, rgba(220, 200, 180, 0.08) 100%),
        radial-gradient(ellipse 1000px 900px at 80% 20%, rgba(255, 240, 200, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 900px 800px at 20% 80%, rgba(200, 220, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 800px 700px at 50% 50%, rgba(200, 255, 220, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 700px 600px at 10% 30%, rgba(255, 220, 200, 0.05) 0%, transparent 70%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    filter: blur(0.8px);
    z-index: 0;
    pointer-events: none;
}

.packages-section .container {
    position: relative;
    z-index: 2;
}

.package-warning {
    background: linear-gradient(135deg, rgba(216, 74, 5, 0.1), rgba(236, 117, 5, 0.1));
    border: 2px solid var(--accent-color);
    border-radius: 10px;
    padding: 15px 20px;
    margin-top: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.package-warning i {
    color: var(--accent-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.package-warning p {
    margin: 0;
    color: var(--heading-color);
    font-size: 0.95rem;
    line-height: 1.6;
}

.package-warning strong {
    color: var(--accent-color);
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 36px;
    align-items: stretch;
}

.package-card {
    background: var(--bg-white);
    border-radius: 14px;
    box-shadow: 0 3px 16px rgba(0, 0, 0, 0.07);
    border: 1px solid var(--border-color);
    padding: 22px 18px;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    min-height: 500px;
}

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

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

.package-card:hover::before {
    opacity: 1;
}

/* Pro Paket - Sweet Spot (Daha Büyük ve Öne Çıkan) */
.package-card.pro.featured {
    transform: scale(1.03);
    background: linear-gradient(135deg, #fff 0%, #fafbfc 100%);
    border: 2px solid var(--primary-color);
    box-shadow: 0 6px 24px rgba(236, 117, 5, 0.22);
    z-index: 2;
    margin: 0 -6px;
    padding: 26px 22px;
}

.package-card.pro.featured::before {
    opacity: 1;
    height: 5px;
}

.package-card.pro.featured:hover {
    transform: scale(1.06) translateY(-8px);
    box-shadow: 0 16px 50px rgba(236, 117, 5, 0.35);
}

.package-badge {
    position: absolute;
    top: -3px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(236, 117, 5, 0.5);
    white-space: nowrap;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    z-index: 10;
}

.package-header {
    text-align: center;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
}

.package-header::after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.package-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--heading-color);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.package-card.pro.featured .package-name {
    color: var(--primary-color);
    font-size: 1.6rem;
}

.package-name-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 800;
    color: var(--heading-color);
}

.package-name-label.essential-label {
    color: #2e7d32;
}

.package-name-label.pro-label {
    color: var(--primary-color);
}

.package-name-label.elite-label {
    color: #b71c1c;
}

.package-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}


.price-currency {
    font-size: 1.2rem;
    color: var(--subheading-color);
    font-weight: 600;
}

.package-subtitle {
    color: var(--subheading-color);
    font-size: 0.9rem;
    font-weight: 500;
    margin-top: 4px;
}

.feature-title {
    font-weight: 700;
    color: var(--heading-color);
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 8px 0 4px;
}

.feature-title i {
    color: var(--primary-color);
    font-size: 0.95rem;
}

.feature-title.negative {
    color: #c62828;
}

.feature-title.negative i {
    color: #c62828;
}

.package-emotional {
    background: linear-gradient(135deg, rgba(236, 117, 5, 0.1), rgba(216, 74, 5, 0.1));
    padding: 12px 15px;
    border-radius: 8px;
    margin-bottom: 15px;
    border-left: 3px solid var(--accent-color);
}

.emotional-text {
    color: var(--heading-color);
    font-size: 0.85rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
    display: flex;
    align-items: center;
    gap: 8px;
}

.emotional-text i {
    color: var(--accent-color);
    font-size: 1rem;
    flex-shrink: 0;
}

.package-features {
    flex: 1;
    margin-bottom: 12px;
    overflow-y: auto;
    min-height: 0;
}

.package-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-features li {
    padding: 7px 0;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--heading-color);
    font-size: 0.88rem;
    line-height: 1.35;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.package-features li:hover {
    padding-left: 5px;
    color: var(--primary-color);
}

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

.package-features li i.fa-check {
    color: var(--primary-color);
    font-size: 0.9rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.package-features li i.fa-times {
    color: #ccc;
    font-size: 0.85rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.package-features li.feature-disabled {
    color: #999;
    opacity: 0.6;
}

.package-features li strong {
    color: var(--primary-color);
    font-weight: 600;
}

.package-footer {
    margin-top: auto;
    padding-top: 20px;
    border-top: 1px solid var(--border-color);
    flex-shrink: 0;
}

.package-availability {
    text-align: center;
    padding: 10px 12px;
    background: var(--bg-main);
    border-radius: 8px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: var(--subheading-color);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid var(--border-color);
}

.package-availability i {
    color: var(--primary-color);
    font-size: 0.85rem;
}

.package-availability.elite-availability {
    background: linear-gradient(135deg, rgba(236, 117, 5, 0.1), rgba(216, 74, 5, 0.1));
    color: var(--accent-color);
    font-weight: 600;
}

.package-availability.elite-availability i {
    color: var(--accent-color);
}

.btn-package {
    width: 100%;
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 8px;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn-package:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(236, 117, 5, 0.3);
}

.packages-cta {
    background: var(--bg-white);
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 2px solid var(--border-color);
    margin-top: 50px;
}

.cta-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    margin-bottom: 25px;
}

.cta-text h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.cta-text p {
    color: var(--subheading-color);
    margin: 0;
}

.btn-pdf {
    padding: 15px 30px;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.urgency-notice {
    background: linear-gradient(135deg, rgba(216, 74, 5, 0.1), rgba(236, 117, 5, 0.1));
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid var(--accent-color);
    display: flex;
    align-items: center;
    gap: 15px;
}

.urgency-notice i {
    color: var(--accent-color);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.urgency-notice p {
    margin: 0;
    color: var(--heading-color);
    font-size: 1rem;
}

.urgency-notice strong {
    color: var(--accent-color);
}

/* Paketler Responsive */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .package-card {
        max-height: none;
    }

    .package-card.pro.featured {
        transform: scale(1);
        margin: 0;
        padding: 20px 18px;
    }

    .package-card.pro.featured:hover {
        transform: scale(1.01);
    }
}

@media (max-width: 768px) {
    .packages-grid {
        gap: 20px;
    }

    .package-card {
        padding: 18px 15px;
        max-height: none;
    }

    .package-card.pro.featured {
        padding: 20px 18px;
    }

    .package-name {
        font-size: 1.4rem;
    }

    .package-card.pro.featured .package-name {
        font-size: 1.5rem;
    }


    .cta-content {
        flex-direction: column;
        text-align: center;
    }

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

    .urgency-notice {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .package-card {
        padding: 15px 12px;
    }

    .package-card.pro.featured {
        padding: 18px 15px;
    }

    .package-name {
        font-size: 1.3rem;
    }

    .package-card.pro.featured .package-name {
        font-size: 1.4rem;
    }


    .packages-cta {
        padding: 20px 15px;
    }

    .package-features {
        overflow-y: auto;
        max-height: 300px;
    }

    .package-warning {
        flex-direction: column;
        text-align: center;
        padding: 12px 15px;
        gap: 8px;
    }

    .package-warning i {
        font-size: 1.1rem;
    }

    .package-warning p {
        font-size: 0.85rem;
    }
}

/* ============================================
   REFERANSLAR BÖLÜMÜ
   ============================================ */

.references-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 30%, #f3f4f6 60%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.references-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(200, 180, 220, 0.12) 0%, rgba(180, 200, 220, 0.15) 30%, rgba(200, 220, 200, 0.12) 60%, rgba(220, 200, 180, 0.08) 100%),
        radial-gradient(ellipse 1000px 900px at 80% 20%, rgba(255, 240, 200, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 900px 800px at 20% 80%, rgba(200, 220, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 800px 700px at 50% 50%, rgba(200, 255, 220, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 700px 600px at 10% 30%, rgba(255, 220, 200, 0.05) 0%, transparent 70%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    filter: blur(0.8px);
    z-index: 0;
    pointer-events: none;
}

.references-section .container {
    position: relative;
    z-index: 2;
}

.references-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.reference-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid var(--border-color);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.reference-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.reference-image {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 15px;
    border: 3px solid var(--primary-color);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-white);
}

.reference-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}

.reference-content h3 {
    font-size: 1.3rem;
    color: var(--heading-color);
    margin-bottom: 5px;
    font-weight: 600;
}

.reference-service {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.reference-rating {
    display: flex;
    gap: 5px;
    margin-bottom: 15px;
}

.reference-rating i {
    color: #FFD700;
    font-size: 1rem;
}

.reference-text {
    color: var(--subheading-color);
    line-height: 1.8;
    font-size: 0.95rem;
    margin: 0;
    flex-grow: 1;
}

.references-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
    padding-top: 50px;
    border-top: 2px solid var(--border-color);
}

.stat-item {
    text-align: center;
    padding: 20px;
    background: var(--bg-main);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.stat-item:hover {
    background: var(--bg-white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    transform: translateY(-3px);
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1rem;
    color: var(--heading-color);
    font-weight: 600;
}

/* Referanslar Responsive */
@media (max-width: 768px) {
    .references-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .references-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }

    .stat-number {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .references-stats {
        grid-template-columns: 1fr;
    }

    .reference-card {
        padding: 20px;
    }
}

/* ============================================
   İLETİŞİM BÖLÜMÜ
   ============================================ */

.contact-section {
    padding: var(--section-padding);
    background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 30%, #f3f4f6 60%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(135deg, rgba(200, 180, 220, 0.12) 0%, rgba(180, 200, 220, 0.15) 30%, rgba(200, 220, 200, 0.12) 60%, rgba(220, 200, 180, 0.08) 100%),
        radial-gradient(ellipse 1000px 900px at 80% 20%, rgba(255, 240, 200, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 900px 800px at 20% 80%, rgba(200, 220, 255, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 800px 700px at 50% 50%, rgba(200, 255, 220, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 700px 600px at 10% 30%, rgba(255, 220, 200, 0.05) 0%, transparent 70%);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    filter: blur(0.8px);
    z-index: 0;
    pointer-events: none;
}

.contact-section .container {
    position: relative;
    z-index: 2;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-card {
    background: var(--bg-white);
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.8rem;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-icon {
    transform: scale(1.1) rotate(5deg);
}

.contact-card h3 {
    font-size: 1.2rem;
    color: var(--heading-color);
    margin-bottom: 10px;
}

.contact-card p,
.contact-card a {
    color: var(--subheading-color);
    text-decoration: none;
}

.contact-card a:hover {
    color: var(--primary-color);
}

.contact-form-wrapper {
    background: var(--bg-white);
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.contact-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group {
    position: relative;
}

.form-group label {
    color: var(--heading-color);
    font-weight: 600;
    margin-bottom: 10px;
    display: block;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: var(--font-primary);
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--bg-white);
    color: var(--heading-color);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(236, 117, 5, 0.1);
    transform: translateY(-1px);
}

.form-group input:hover,
.form-group select:hover,
.form-group textarea:hover {
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    line-height: 1.6;
}

.btn-block {
    margin-top: 10px;
    padding: 16px 30px;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.btn-block:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(236, 117, 5, 0.35);
}

/* ============================================
   FOOTER
   ============================================ */

.main-footer {
    background: linear-gradient(135deg, #5a2a1a 0%, #3d1a0f 50%, #2d1309 100%);
    color: white;
    padding: 40px 0 0;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(circle at 80% 20%, rgba(139, 69, 19, 0.3), transparent 60%);
    pointer-events: none;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 35px;
    margin-bottom: 30px;
    position: relative;
    z-index: 1;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

.footer-section h3 {
    color: white;
    margin-bottom: 12px;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-section p {
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.85rem;
    margin: 0;
}

/* Footer Brand Section */
.footer-brand {
    max-width: 100%;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.footer-logo-icon {
    width: 38px;
    height: 38px;
    background: white;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.footer-brand-name {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.footer-social-links {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.footer-social-link {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.footer-social-link.instagram {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.footer-social-link.whatsapp {
    background: #25D366;
}

.footer-social-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Footer Contact Section */
.footer-contact {
    gap: 15px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 15px;
}

.footer-contact-item:last-child {
    margin-bottom: 0;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    flex-shrink: 0;
}

.footer-contact-icon.whatsapp-icon {
    background: #25D366;
}

.footer-contact-icon.email-icon {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
}

.footer-contact-icon.location-icon {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
}

.footer-contact-info a {
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-contact-info a:hover {
    color: var(--primary-color);
}

.footer-contact-info span {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    line-height: 1.4;
}

.footer-contact-label {
    color: rgba(255, 255, 255, 0.65) !important;
    font-size: 0.75rem !important;
    font-weight: 400 !important;
}

.footer-bottom {
    text-align: center;
    padding: 18px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    position: relative;
    z-index: 1;
}

/* ============================================
   RESPONSIVE TASARIM
   ============================================ */

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

    .hero-content-modern {
        gap: 60px;
    }

    .hero-title-modern {
        font-size: 3.2rem;
    }

    .hero-image-wrapper {
        transform: none;
    }
}

@media (max-width: 768px) {
    .social-bar {
        padding: 5px 0;
    }

    .social-links-minimal {
        gap: 12px;
    }

    .social-link-minimal i {
        font-size: 0.75rem;
    }

    .top-menu-links {
        gap: 12px;
    }

    .top-menu-link {
        font-size: 0.75rem;
    }

    .main-header {
        top: 24px;
    }

    .mobile-menu-toggle {
        display: block;
    }

    .main-nav {
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--bg-white);
        flex-direction: column;
        padding: 1rem;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        gap: 0;
    }

    .main-nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        padding: 1rem;
        width: 100%;
        text-align: center;
        border-bottom: 1px solid var(--border-color);
    }

    .nav-link:last-child {
        border-bottom: none;
    }

    .btn-appointment {
        width: 100%;
        margin-left: 0;
        margin-top: 10px;
        text-align: center;
    }

    .hero-section {
        padding: 100px 0;
        min-height: auto;
    }

    .hero-content-modern {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .hero-image-content {
        order: -1;
    }

    .hero-image-wrapper {
        transform: none;
    }

    .hero-title-modern {
        font-size: 2.5rem;
    }

    .hero-description-modern {
        font-size: 1.1rem;
    }

    .hero-stats-modern {
        gap: 30px;
    }

    .hero-stat-number {
        font-size: 2rem;
    }

    .section-title {
        font-size: 2rem;
    }
    
    .gallery-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .section-padding {
        padding: 50px 0;
    }

    .about-content,
    .services-grid {
        grid-template-columns: 1fr;
    }

    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-form-wrapper {
        padding: 30px 20px;
    }

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

    .hero-buttons-modern {
        flex-direction: column;
    }

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

    .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-section {
        padding: 80px 0;
    }

    .hero-content-modern {
        gap: 40px;
    }

    .hero-title-modern {
        font-size: 2rem;
    }

    .hero-description-modern {
        font-size: 1rem;
    }

    .hero-badge {
        padding: 8px 20px;
        font-size: 0.75rem;
    }

    .hero-stats-modern {
        gap: 20px;
        flex-direction: column;
    }

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

    .hero-stat-number {
        font-size: 1.8rem;
    }

    .section-title {
        font-size: 1.75rem;
    }
    
    .gallery-title {
        font-size: 1.8rem;
        letter-spacing: 1.5px;
    }

    .about-card,
    .service-card,
    .contact-card {
        padding: 20px;
    }
}

/* ============================================
   ÇEREZ BİLDİRİM SİSTEMİ
   ============================================ */

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--bg-white);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
    z-index: 9999;
    padding: 20px;
    transform: translateY(100%);
    transition: transform 0.4s ease;
    border-top: 3px solid var(--primary-color);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-banner-content {
    max-width: var(--container-max-width);
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    flex-wrap: wrap;
}

.cookie-banner-text {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    flex: 1;
    min-width: 300px;
}

.cookie-banner-text i {
    font-size: 2rem;
    color: var(--primary-color);
    margin-top: 5px;
    flex-shrink: 0;
}

.cookie-banner-text h3 {
    font-size: 1.2rem;
    color: var(--heading-color);
    margin-bottom: 8px;
    font-weight: 600;
}

.cookie-banner-text p {
    color: var(--subheading-color);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.cookie-policy-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.cookie-policy-link:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.cookie-banner-buttons {
    display: flex;
    gap: 15px;
    flex-shrink: 0;
}

.btn-cookie {
    padding: 10px 25px;
    font-size: 0.95rem;
    white-space: nowrap;
}

/* Floating Social Buttons (WhatsApp & Instagram) */
.instagram-floating-button,
.whatsapp-floating-button {
    position: fixed;
    right: 20px;
    bottom: 90px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
    z-index: 9990;
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.instagram-floating-button {
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
}

.whatsapp-floating-button i {
    font-size: 1.8rem;
}

.whatsapp-floating-button {
    background: #25D366;
    bottom: 20px;
}

.instagram-floating-button i {
    font-size: 1.8rem;
}

.instagram-floating-button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: linear-gradient(135deg, #fd1d1d, #833ab4);
}

.whatsapp-floating-button:hover {
    transform: translateY(-2px) scale(1.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    background: #20ba5a;
}

@media (max-width: 480px) {
    .instagram-floating-button,
    .whatsapp-floating-button {
        right: 16px;
        bottom: 80px;
        width: 52px;
        height: 52px;
    }

    .whatsapp-floating-button {
        bottom: 16px;
    }

    .whatsapp-floating-button i {
        font-size: 1.6rem;
    }
}

/* Footer Responsive */
@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .main-footer {
        padding: 35px 0 0;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 28px;
    }
    
    .footer-logo {
        margin-bottom: 12px;
    }
    
    .footer-logo-icon {
        width: 36px;
        height: 36px;
        font-size: 1.3rem;
    }
    
    .footer-brand-name {
        font-size: 1.2rem;
    }
    
    .footer-section h3 {
        font-size: 1.05rem;
    }
    
    .footer-section p {
        font-size: 0.85rem;
    }
    
    .footer-contact-item {
        margin-bottom: 14px;
    }
    
    .footer-contact-icon {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
    }
    
    .footer-bottom {
        padding: 16px 0;
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .main-footer {
        padding: 40px 0 0;
    }
    
    .footer-content {
        gap: 30px;
    }
    
    .footer-logo-icon {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }
    
    .footer-brand-name {
        font-size: 1.4rem;
    }
    
    .footer-social-link {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .footer-contact-icon {
        width: 38px;
        height: 38px;
        font-size: 1rem;
    }
    
    .footer-contact-info a,
    .footer-contact-info span {
        font-size: 0.9rem;
    }
    
    .footer-contact-label {
        font-size: 0.8rem !important;
    }
}

/* Cookie Banner Responsive */
@media (max-width: 768px) {
    .cookie-banner {
        padding: 15px;
    }

    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 20px;
    }

    .cookie-banner-text {
        min-width: auto;
    }

    .cookie-banner-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn-cookie {
        width: 100%;
    }

    .cookie-banner-text i {
        font-size: 1.5rem;
    }

    .cookie-banner-text h3 {
        font-size: 1.1rem;
    }

    .cookie-banner-text p {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .cookie-banner {
        padding: 12px;
    }

    .cookie-banner-text {
        gap: 10px;
    }

    .cookie-banner-text i {
        font-size: 1.3rem;
    }
}

/* ============================================
   HAKKIMIZDA SAYFASI - YENİ MODERN TASARIM
   ============================================ */
   /* Not: Hakkımızda sayfası stilleri about-modern.css dosyasında tanımlıdır */

/* Hikayemiz Bölümü */
.about-story-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(236, 117, 5, 0.1), rgba(216, 74, 5, 0.1));
    border: 2px solid rgba(236, 117, 5, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--primary-color);
}

.section-badge i {
    font-size: 1rem;
}

.story-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 80px;
    margin-top: 60px;
}

.story-image-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.story-image-left {
    direction: ltr;
}

.story-image-right {
    direction: rtl;
}

.story-image-right > * {
    direction: ltr;
}

.story-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease;
}

.story-image-container:hover {
    transform: translateY(-10px);
}

.story-image {
    width: 100%;
    height: 450px;
    object-fit: cover;
    display: block;
}

.story-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), transparent 40%, transparent 60%, rgba(0, 0, 0, 0.4));
    display: flex;
    align-items: flex-end;
    justify-content: flex-start;
    padding: 30px;
}

.story-image-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(236, 117, 5, 0.95);
    backdrop-filter: blur(10px);
    color: white;
    padding: 12px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 20px rgba(236, 117, 5, 0.4);
}

.story-image-badge i {
    font-size: 1.1rem;
}

.story-text-block {
    padding: 20px;
}

.story-text-block h3 {
    font-size: 2rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
}

.story-text-block h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 2px;
}

.story-text-block p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--subheading-color);
    margin: 0;
}

/* Değerlerimiz Bölümü */
.about-values-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(236, 117, 5, 0.03), rgba(10, 38, 71, 0.03));
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.value-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.value-icon {
    width: 90px;
    height: 90px;
    margin: 0 auto 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(236, 117, 5, 0.3);
    transition: transform 0.3s ease;
}

.value-card:hover .value-icon {
    transform: scale(1.1) rotate(5deg);
}

.value-card h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.value-card p {
    color: var(--subheading-color);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
}

/* Misyon & Vizyon Bölümü */
.about-mission-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
}

.mission-card,
.vision-card {
    background: var(--bg-white);
    padding: 50px 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.mission-card::before,
.vision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.mission-icon,
.vision-icon {
    width: 80px;
    height: 80px;
    margin-bottom: 25px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2.5rem;
    box-shadow: 0 10px 30px rgba(236, 117, 5, 0.3);
}

.mission-card h2,
.vision-card h2 {
    font-size: 2.2rem;
    color: var(--heading-color);
    margin-bottom: 20px;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--subheading-color);
    margin-bottom: 30px;
}

.mission-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.mission-feature {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--heading-color);
    font-weight: 600;
}

.mission-feature i {
    color: var(--primary-color);
    font-size: 1.2rem;
}

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

.vision-goal {
    text-align: center;
    padding: 20px;
    background: linear-gradient(135deg, rgba(236, 117, 5, 0.05), rgba(216, 74, 5, 0.05));
    border-radius: 15px;
    border: 2px solid rgba(236, 117, 5, 0.2);
}

.goal-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.goal-label {
    font-size: 0.9rem;
    color: var(--heading-color);
    font-weight: 600;
}

/* İstatistikler Bölümü */
.about-stats-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(10, 38, 71, 0.05), rgba(21, 101, 192, 0.05));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.stat-card {
    background: var(--bg-white);
    padding: 40px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.stat-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    box-shadow: 0 8px 25px rgba(236, 117, 5, 0.3);
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
}

.stat-label {
    font-size: 1.3rem;
    color: var(--heading-color);
    font-weight: 700;
    margin-bottom: 8px;
}

.stat-description {
    font-size: 0.95rem;
    color: var(--subheading-color);
    margin: 0;
}

/* Neden Bizi Seçmelisiniz Bölümü */
.about-why-section {
    padding: 100px 0;
    background: var(--bg-white);
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-top: 60px;
}

.why-card {
    background: var(--bg-white);
    padding: 35px 30px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 2px solid var(--border-color);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

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

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

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

.why-number {
    font-size: 4rem;
    font-weight: 800;
    color: rgba(236, 117, 5, 0.15);
    line-height: 1;
    margin-bottom: 15px;
    position: absolute;
    top: 20px;
    right: 25px;
    z-index: 0;
}

.why-card h3 {
    font-size: 1.5rem;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
    position: relative;
    z-index: 1;
}

.why-card p {
    color: var(--subheading-color);
    line-height: 1.8;
    font-size: 1rem;
    margin: 0;
    position: relative;
    z-index: 1;
}

/* CTA Bölümü */
.about-cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(236, 117, 5, 0.1), rgba(216, 74, 5, 0.1));
}

.about-cta-card {
    background: var(--bg-white);
    padding: 60px 50px;
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 2px solid var(--primary-color);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    position: relative;
    overflow: hidden;
}

.about-cta-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.cta-content {
    flex: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    color: var(--heading-color);
    margin-bottom: 15px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--subheading-color);
    line-height: 1.8;
    margin: 0;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    flex-shrink: 0;
}

/* Hakkımızda Sayfası Responsive */
@media (max-width: 1024px) {
    .story-image-block {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .story-image-left,
    .story-image-right {
        direction: ltr;
    }
    
    .story-image-right > * {
        direction: ltr;
    }
    
    .mission-vision-grid {
        grid-template-columns: 1fr;
    }
    
    .about-cta-card {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-buttons {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .about-hero-section {
        padding: 120px 0 80px;
    }
    
    /* Hakkımızda sayfası responsive stilleri about-modern.css'de */
    
    .story-content-wrapper {
        gap: 50px;
    }
    
    .story-image {
        height: 350px;
    }
    
    .story-text-block h3 {
        font-size: 1.7rem;
    }
    
    .values-grid,
    .why-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-card,
    .vision-card {
        padding: 40px 30px;
    }
    
    .mission-card h2,
    .vision-card h2 {
        font-size: 1.8rem;
    }
    
    .vision-goals {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .stat-number {
        font-size: 2.8rem;
    }
    
    .about-cta-card {
        padding: 40px 30px;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .cta-buttons .btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    /* Hakkımızda sayfası responsive stilleri about-modern.css'de */
    
    .story-image {
        height: 280px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .mission-card,
    .vision-card {
        padding: 30px 20px;
    }
    
    .value-card,
    .why-card {
        padding: 30px 20px;
    }
    
    .about-cta-card {
        padding: 30px 20px;
    }
    
    .cta-content h2 {
        font-size: 1.7rem;
    }
}

