/* Renk Değişkenleri */
:root {
    --primary-color: #87CEEB;      /* Bebek Mavisi */
    --primary-dark: #5DADE2;       /* Koyu Bebek Mavisi */
    --primary-light: #AED6F1;      /* Açık Bebek Mavisi */
    --gradient-start: #87CEEB;
    --gradient-end: #5DADE2;
    --bg-light: #F0F8FF;           /* Alice Blue - Çok Açık Bebek Mavisi */
}

/* Reset ve Temel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: var(--bg-light);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header ve Navigation */
.header {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    transition: background 0.3s ease;
    overflow: visible;
}

.header.transparent {
    background: transparent;
    box-shadow: none;
}

.header.transparent .nav-link {
    color: #fff;
}

.header.transparent .mobile-menu-toggle span {
    background: #fff;
}

.navbar {
    padding: 0;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo {
    height: 150px;
    width: auto;
    max-width: 350px;
    object-fit: contain;
    background: transparent;
    padding: 3px 10px;
    margin: -5px 0;
}

.brand-text {
    display: none;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
    color: var(--primary-color);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    background: transparent;
    border: none;
    z-index: 1001;
}

.mobile-menu-toggle span {
    width: 28px;
    height: 3px;
    background: #333;
    margin: 4px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 999;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100%;
    background: linear-gradient(135deg, #ffffff 0%, #f8fbff 100%);
    box-shadow: -5px 0 25px rgba(0, 0, 0, 0.15);
    transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 1000;
    overflow-y: auto;
    padding: 80px 0 30px;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu-header {
    padding: 0 30px 20px;
    border-bottom: 2px solid #e3f4ff;
    margin-bottom: 20px;
}

.mobile-menu-header h3 {
    color: #1f2937;
    font-size: 1.3rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu-header h3 i {
    color: #87CEEB;
}

.mobile-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mobile-menu ul li {
    border-bottom: 1px solid #e3f4ff;
}

.mobile-menu ul li a {
    display: flex;
    align-items: center;
    padding: 18px 30px;
    color: #1f2937;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    position: relative;
}

.mobile-menu ul li a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 4px;
    background: linear-gradient(135deg, #87CEEB, #5DADE2);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.mobile-menu ul li a:hover,
.mobile-menu ul li a.active {
    background: linear-gradient(90deg, #e3f4ff 0%, transparent 100%);
    color: #5DADE2;
}

.mobile-menu ul li a:hover::before,
.mobile-menu ul li a.active::before {
    transform: scaleY(1);
}

.mobile-menu ul li a i {
    margin-right: 12px;
    width: 20px;
    text-align: center;
    color: #87CEEB;
}

.mobile-menu-footer {
    margin-top: 30px;
    padding: 20px 30px;
    border-top: 2px solid #e3f4ff;
}

.mobile-menu-footer .btn {
    width: 100%;
    justify-content: center;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

/* Butonlar */
.btn {
    display: inline-block;
    padding: 12px 24px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    text-align: center;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline:hover {
    background: var(--primary-color);
    color: white;
}

.btn-success {
    background: #10b981;
    color: white;
}

.btn-success:hover {
    background: #059669;
}

.btn-large {
    padding: 16px 32px;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    position: relative;
    color: white;
    padding: 0;
    margin-top: 0;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    /* Video daha canlı ve net görünsün */
    filter: brightness(1.1) contrast(1.05);
}

/* Video Overlay - Hafif ve Dengeli */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        /* Sadece merkeze odaklanmış hafif gradient */
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.35) 0%, rgba(0, 0, 0, 0.25) 100%),
        /* Üstten hafif bir gradient - yazılar için okunabilirlik */
        linear-gradient(to bottom, rgba(0, 0, 0, 0.15) 0%, transparent 30%, transparent 70%, rgba(0, 0, 0, 0.2) 100%);
    z-index: 1;
}

/* Dekoratif Partiküller - Optimize Edilmiş */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.2) 0%, rgba(135, 206, 235, 0.05) 50%, transparent 100%);
    filter: blur(10px);
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
    /* GPU acceleration */
    will-change: transform;
    transform: translateZ(0);
}

/* Sadece 3 partikül - performans için */
.particle-1 {
    width: 140px;
    height: 140px;
    top: 15%;
    left: 10%;
    animation: particleFloat1 16s infinite;
}

.particle-2 {
    width: 160px;
    height: 160px;
    bottom: 15%;
    left: 20%;
    animation: particleFloat2 18s infinite;
}

.particle-3 {
    width: 120px;
    height: 120px;
    top: 40%;
    right: 15%;
    animation: particleFloat3 14s infinite;
}

/* Diğer partikülleri gizle - performans */
.particle-4,
.particle-5,
.particle-6 {
    display: none;
}

/* Basitleştirilmiş Partikül Animasyonları - Performans Optimize */
@keyframes particleFloat1 {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.5;
    }
    50% {
        transform: translate3d(20px, -30px, 0);
        opacity: 0.7;
    }
}

@keyframes particleFloat2 {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.4;
    }
    50% {
        transform: translate3d(-25px, 40px, 0);
        opacity: 0.6;
    }
}

@keyframes particleFloat3 {
    0%, 100% {
        transform: translate3d(0, 0, 0);
        opacity: 0.5;
    }
    50% {
        transform: translate3d(30px, -20px, 0);
        opacity: 0.7;
    }
}

.hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 180px 20px 80px;
}

.hero-content .container {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.hero-text {
    max-width: 950px;
    animation: heroFadeIn 1s ease-out;
    position: relative;
    z-index: 3;
    /* GPU acceleration */
    will-change: opacity, transform;
    transform: translateZ(0);
}

/* Yazılar için hafif backdrop - okunabilirlik */
.hero-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 120%;
    height: 120%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.2) 0%, transparent 70%);
    z-index: -1;
    pointer-events: none;
}

/* Başlık Wrapper */
.hero-title-wrapper {
    position: relative;
    display: inline-block;
    margin-bottom: 2rem;
}

/* Başlık için özel stil - Performans Optimize */
.hero-text h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 0;
    line-height: 1.25;
    letter-spacing: -0.5px;
    position: relative;
    display: inline-block;
    
    /* Net beyaz renk - maksimum okunabilirlik */
    color: #ffffff;
    
    /* Optimize edilmiş gölge efekti - daha az katman */
    text-shadow: 
        0 0 40px rgba(135, 206, 235, 0.7),
        2px 4px 15px rgba(0, 0, 0, 0.8),
        0 2px 25px rgba(0, 0, 0, 0.6);
    
    /* GPU acceleration */
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
    
    /* Sadece yüzme animasyonu - parlama kaldırıldı */
    animation: heroTextFloat 4s ease-in-out infinite;
}

/* Başlık Dekorasyonu - Alt çizgi efekti - Optimize */
.hero-title-decoration {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translate3d(-50%, 0, 0);
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #ffffff, #87CEEB, #ffffff, transparent);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(135, 206, 235, 0.8);
    /* GPU acceleration */
    will-change: opacity;
    animation: decorationPulse 4s ease-in-out infinite;
}

@keyframes decorationPulse {
    0%, 100% {
        opacity: 0.8;
    }
    50% {
        opacity: 1;
    }
}

/* Yumuşak yüzme efekti - GPU Accelerated */
@keyframes heroTextFloat {
    0%, 100% {
        transform: translate3d(0, 0, 0);
    }
    50% {
        transform: translate3d(0, -5px, 0);
    }
}

/* Fade in animasyonu - GPU Accelerated */
@keyframes heroFadeIn {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Alt metin için geliştirilmiş stil - Optimize */
.hero-text p {
    font-size: 1.4rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    font-weight: 500;
    color: #ffffff;
    text-shadow: 
        0 0 30px rgba(135, 206, 235, 0.5),
        2px 3px 12px rgba(0, 0, 0, 0.8);
    position: relative;
    animation: heroParagraphFade 1.2s ease-out 0.2s both;
    padding: 0 20px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    /* GPU acceleration */
    will-change: opacity, transform;
    transform: translateZ(0);
}

/* Paragraf fade in - GPU Accelerated */
@keyframes heroParagraphFade {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Butonlar için animasyon - Optimize */
.hero-buttons {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    justify-content: center;
    animation: heroButtonsFade 1.2s ease-out 0.4s both;
    /* GPU acceleration */
    will-change: opacity, transform;
    transform: translateZ(0);
}

@keyframes heroButtonsFade {
    from {
        opacity: 0;
        transform: translate3d(0, 20px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

/* Buton hover efektleri - Optimize */
.hero-buttons .btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-weight: 600;
    /* GPU acceleration */
    will-change: transform;
    transform: translateZ(0);
}

.hero-buttons .btn i {
    font-size: 1.1rem;
    transition: transform 0.3s ease;
}

.hero-buttons .btn:hover {
    transform: translate3d(0, -3px, 0);
    box-shadow: 0 8px 20px rgba(135, 206, 235, 0.4);
}

.hero-buttons .btn:hover i {
    transform: scale(1.15);
}

.hero-buttons .btn-primary {
    background: linear-gradient(135deg, #87CEEB 0%, #5DADE2 100%);
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
}

.hero-buttons .btn-outline {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
}

.hero-buttons .btn-outline:hover {
    background: rgba(255, 255, 255, 0.95);
    border-color: #87CEEB;
    color: #5DADE2;
}

/* Stats Section */
.stats {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    padding: 80px 0;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-item {
    padding: 2.5rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(135, 206, 235, 0.15);
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    /* GPU acceleration */
    will-change: transform;
    transform: translateZ(0);
}

/* Hover efekti için parlayan gradient border */
.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover::before {
    opacity: 1;
}

.stat-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(135, 206, 235, 0.3);
    border-color: rgba(135, 206, 235, 0.3);
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.02), white);
}

/* İkon için yuvarlak arka plan ekleyelim */
.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(135, 206, 235, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover::after {
    opacity: 1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
    letter-spacing: -1px;
    /* Sayaç animasyonu için smooth */
    transition: transform 0.3s ease;
}

.stat-item:hover .stat-number {
    transform: scale(1.1);
}

.stat-text {
    font-size: 1.1rem;
    color: #4b5563;
    font-weight: 600;
    position: relative;
    z-index: 1;
    line-height: 1.4;
}

/* Services Section */
.services {
    padding: 100px 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.2rem;
    color: #6b7280;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.service-icon i {
    font-size: 2rem;
    color: white;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.service-card p {
    color: #6b7280;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    flex-grow: 1;
}

.service-card .btn {
    margin-top: auto;
}

/* About Section */
.about {
    background: #fff;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.about .container {
    max-width: 1300px;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -50%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.05), transparent);
    border-radius: 50%;
    z-index: 0;
}

.about-content {
    display: grid;
    grid-template-columns: 0.9fr 2.1fr;
    gap: 7rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

/* About Text */
.about-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 440px;
}

/* About Badge */
.about-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    padding: 0.6rem 1.8rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(135, 206, 235, 0.3);
    animation: pulse 2s infinite;
}

.about-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    padding-bottom: 1rem;
}

.about-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), transparent);
    border-radius: 2px;
}

.about-description {
    font-size: 1.15rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.8;
}

/* About Features */
.about-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.about-feature {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1.2rem;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.05), rgba(174, 214, 241, 0.05));
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s ease;
}

.about-feature:hover {
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(135, 206, 235, 0.2);
}

.feature-icon-small {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
}

.feature-text h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.3rem;
}

.feature-text p {
    font-size: 0.95rem;
    color: #6b7280;
    margin: 0;
}

/* About Image */
.about-image {
    position: relative;
    animation: fadeInRight 1s ease-out;
    display: flex;
    height: 100%;
    margin-left: 20px;
    margin-top: 117px;
}

.about-image-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
    width: 100%;
    min-height: 550px;
    height: 550px;
    display: flex;
}

.about-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 60% 55%;
    display: block;
    transition: transform 0.5s ease;
}

.about-image-wrapper:hover img {
    transform: scale(1.05);
}

/* About Decorations */
.about-decoration-1 {
    position: absolute;
    top: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-color));
    border-radius: 50%;
    opacity: 0.2;
    z-index: -1;
    animation: float 4s ease-in-out infinite;
}

.about-decoration-2 {
    position: absolute;
    bottom: -50px;
    left: -50px;
    width: 250px;
    height: 250px;
    background: linear-gradient(225deg, var(--gradient-start), var(--gradient-end));
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.15;
    z-index: -1;
    animation: morph 8s ease-in-out infinite;
}

/* Process Section */
.process {
    padding: 100px 0;
    background: #ffffff;
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step {
    text-align: center;
    padding: 2rem;
}

.step-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
}

.step h3 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #1f2937;
}

.step p {
    color: #6b7280;
    line-height: 1.6;
}

/* CTA Section */
.cta {
    background: linear-gradient(-45deg, #ffffff, #f0f9ff, #d1ebf7, #a7d5ed, #87ceeb);
    background-size: 400% 400%;
    animation: gradientShift 5s ease infinite;
    color: #1f2937;
    padding: 60px 0;
    margin-top: 0;
    position: relative;
    overflow: hidden;
}

/* Animasyonlu gradient geçiş */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Hafif yüzen partiküller */
.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 30%, rgba(135, 206, 235, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(174, 214, 241, 0.08) 0%, transparent 50%);
    animation: particleFloat 20s ease-in-out infinite;
}

@keyframes particleFloat {
    0%, 100% {
        transform: translate(0, 0);
        opacity: 1;
    }
    50% {
        transform: translate(-20px, -20px);
        opacity: 0.8;
    }
}

.cta .container {
    position: relative;
    z-index: 1;
}

.cta-content {
    text-align: center;
    max-width: 750px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
    background: linear-gradient(135deg, #2563eb 0%, #0891b2 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: #4b5563;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 14px 30px;
    font-size: 1.05rem;
    font-weight: 600;
    border-radius: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #87CEEB 0%, #5DADE2 100%);
    color: white;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(87, 206, 235, 0.3);
}

.cta-buttons .btn-outline {
    background: white;
    color: #5DADE2;
    border: 2px solid #87CEEB;
}

.cta-buttons .btn-outline:hover {
    background: #87CEEB;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(135, 206, 235, 0.25);
}

.cta-buttons .btn-success {
    background: #10b981;
    color: white;
}

.cta-buttons .btn-success:hover {
    background: #059669;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.3);
}

/* Footer */
.footer {
    background: #1f2937;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section:first-child h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #ffffff;
}

.footer-section:first-child p {
    color: #d1d5db;
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-section h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #f9fafb;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section ul li a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section ul li a:hover {
    color: var(--primary-light);
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #374151;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: background 0.3s;
}

.social-links a:hover {
    background: var(--primary-color);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
    color: #d1d5db;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-links {
    display: flex;
    gap: 1rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--primary-light);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero {
        min-height: 85vh;
    }
    
    .hero-content {
        padding: 140px 20px 60px;
    }
    
    .hero-content .container {
        text-align: center;
    }
    
    /* Mobil için partikülleri küçült */
    .particle {
        display: none; /* Mobilde performans için gizle */
    }
    
    .particle-1,
    .particle-4 {
        display: block;
        width: 100px;
        height: 100px;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
        letter-spacing: -0.3px;
        color: #ffffff;
        text-shadow: 
            0 0 40px rgba(135, 206, 235, 0.8),
            0 0 70px rgba(135, 206, 235, 0.5),
            2px 3px 10px rgba(0, 0, 0, 0.7),
            0 2px 18px rgba(0, 0, 0, 0.5),
            0 4px 30px rgba(0, 0, 0, 0.4);
    }
    
    .hero-title-decoration {
        width: 150px;
        height: 3px;
        bottom: -12px;
    }
    
    .hero-text p {
        font-size: 1.15rem;
        padding: 0 10px;
    }
    
    .hero-buttons .btn i {
        font-size: 1rem;
    }
    
    .about-intro h2 {
        font-size: 2.3rem;
        padding-bottom: 1rem;
    }
    
    .about-intro p {
        font-size: 1.1rem;
    }
    
    .about-page-intro h2 {
        font-size: 2.3rem;
        padding-bottom: 1rem;
    }
    
    .about-page-intro p {
        font-size: 1.1rem;
    }
    
    .about-page-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .about-page-value-item {
        padding: 2.5rem 1.5rem;
    }
    
    .page-header {
        padding: 150px 0 80px;
    }
    
    .page-header-content h1 {
        font-size: 2.5rem;
        letter-spacing: -0.5px;
    }
    
    .page-header-content p {
        font-size: 1.1rem;
        padding: 0 20px;
    }
    
    .about-title {
        font-size: 2rem;
    }
    
    .about-description {
        font-size: 1.1rem;
    }
    
    .about-image {
        order: -1;
    }
    
    .about-image-wrapper {
        min-height: 400px;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .hero {
        min-height: 75vh;
    }
    
    .hero-content {
        padding: 120px 20px 50px;
    }
    
    /* Tüm partikülleri gizle mobilde */
    .particle {
        display: none !important;
    }
    
    .hero-text h1 {
        font-size: 2rem;
        letter-spacing: -0.2px;
        line-height: 1.3;
        color: #ffffff;
        text-shadow: 
            0 0 35px rgba(135, 206, 235, 0.8),
            0 0 60px rgba(135, 206, 235, 0.5),
            2px 3px 8px rgba(0, 0, 0, 0.7),
            0 2px 15px rgba(0, 0, 0, 0.5),
            0 4px 25px rgba(0, 0, 0, 0.4);
    }
    
    .hero-title-decoration {
        width: 120px;
        height: 3px;
        bottom: -10px;
    }
    
    .hero-text p {
        font-size: 1.05rem;
        line-height: 1.6;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .hero-buttons .btn {
        width: 100%;
        justify-content: center;
        padding: 14px 28px;
    }
    
    .hero-buttons .btn i {
        font-size: 0.95rem;
    }
    
    .about-title {
        font-size: 1.6rem;
    }
    
    .about-description {
        font-size: 1rem;
    }
    
    .about-features {
        gap: 0.8rem;
    }
    
    .about-image-wrapper {
        min-height: 350px;
    }
    
    .about-intro h2 {
        font-size: 2rem;
        padding-bottom: 1rem;
    }
    
    .about-intro p {
        font-size: 1.05rem;
        padding: 0 10px;
    }
    
    .about-page-intro h2 {
        font-size: 2rem;
        padding-bottom: 1rem;
    }
    
    .about-page-intro p {
        font-size: 1.05rem;
        padding: 0 10px;
    }
    
    .about-page-values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .about-page-value-item {
        padding: 2.5rem 1.5rem;
    }
    
    .about-page-value-icon {
        width: 70px;
        height: 70px;
    }
    
    .about-page-value-icon i {
        font-size: 1.8rem;
    }
    
    .page-header {
        padding: 130px 0 60px;
    }
    
    .page-header-content h1 {
        font-size: 2rem;
        letter-spacing: -0.3px;
    }
    
    .page-header-content p {
        font-size: 1rem;
        padding: 0 15px;
        line-height: 1.6;
    }
    
    .stats-grid {
        grid-template-columns: 1fr;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .service-card {
        padding: 2rem;
    }
}

/* Animasyonlar */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(135, 206, 235, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 0 20px 10px rgba(135, 206, 235, 0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(5deg);
    }
}

@keyframes morph {
    0%, 100% {
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
        transform: rotate(0deg);
    }
    25% {
        border-radius: 58% 42% 75% 25% / 76% 46% 54% 24%;
    }
    50% {
        border-radius: 50% 50% 33% 67% / 55% 27% 73% 45%;
        transform: rotate(45deg);
    }
    75% {
        border-radius: 33% 67% 58% 42% / 63% 68% 32% 37%;
    }
}

.service-card,
.stat-item,
.step {
    animation: fadeInUp 0.6s ease-out;
}

/* Page Header - Modern & Professional */
.page-header {
    background: linear-gradient(135deg, #5DADE2 0%, #85C1E2 50%, #AED6F1 100%);
    color: white;
    padding: 180px 0 100px;
    margin-top: 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%);
    z-index: 1;
}

.page-header::after {
    display: none;
}

.page-header-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

.page-header-content h1 {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    letter-spacing: -0.8px;
    line-height: 1.2;
}

.page-header-content p {
    font-size: 1.15rem;
    opacity: 0.92;
    font-weight: 400;
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Service Sections */
.service-section {
    padding: 80px 0;
}

.service-section.bg-light {
    background: #fff;
}

.service-features {
    list-style: none;
    margin: 1.5rem 0;
    text-align: left;
}

.service-features li {
    padding: 0.5rem 0;
    color: #6b7280;
    position: relative;
    padding-left: 1.5rem;
}

.service-features li:before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #10b981;
    font-weight: bold;
}

/* Online Features */
.online-features {
    margin-top: 3rem;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-item {
    text-align: center;
    padding: 2rem;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.feature-icon i {
    font-size: 1.5rem;
    color: white;
}

.feature-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.feature-item p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* Tests Grid */
.tests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.test-category {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.test-category h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.test-items {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.test-item {
    padding: 1rem;
    background: #fff;
    border-radius: 10px;
    border-left: 4px solid var(--primary-color);
}

.test-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.test-item p {
    color: #6b7280;
    font-size: 0.9rem;
}

/* About Page Content - Hakkımızda Sayfası */
.about-page-content {
    padding: 100px 0;
    background: var(--bg-light);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.about-page-content .container {
    text-align: center;
}

.about-page-content::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.1), rgba(174, 214, 241, 0.1));
    border-radius: 50%;
    z-index: 0;
}

.about-page-content::after {
    content: '';
    position: absolute;
    bottom: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: linear-gradient(225deg, rgba(135, 206, 235, 0.08), rgba(174, 214, 241, 0.08));
    border-radius: 50%;
    z-index: 0;
}

.about-page-centered {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-page-centered * {
    text-align: center;
}

.about-page-intro {
    margin-bottom: 5rem;
    text-align: center;
    width: 100%;
}

.about-page-intro h2 {
    font-size: 3rem;
    font-weight: 700;
    color: #1f2937;
    margin: 0 auto 2.5rem;
    position: relative;
    display: block;
    padding-bottom: 1.5rem;
    text-align: center;
    width: 100%;
}

.about-page-intro h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color), var(--primary-dark));
    border-radius: 3px;
    box-shadow: 0 2px 10px rgba(135, 206, 235, 0.4);
}

.about-page-intro p {
    font-size: 1.2rem;
    color: #6b7280;
    line-height: 2;
    margin: 0 auto 1.8rem;
    max-width: 800px;
    text-align: center;
    display: block;
}

.about-page-values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 4rem;
}

@media (max-width: 992px) {
    .about-page-values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.about-page-value-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 25px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.about-page-value-item * {
    text-align: center;
}

.about-page-value-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--gradient-start), var(--gradient-end));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.about-page-value-item:hover::before {
    opacity: 1;
}

.about-page-value-item:hover {
    transform: translateY(-15px);
    border-color: var(--primary-light);
    box-shadow: 0 15px 40px rgba(135, 206, 235, 0.25);
    background: linear-gradient(135deg, rgba(135, 206, 235, 0.03), white);
}

.about-page-value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    box-shadow: 0 8px 25px rgba(135, 206, 235, 0.35);
    transition: all 0.4s ease;
}

.about-page-value-item:hover .about-page-value-icon {
    transform: scale(1.1) rotateY(360deg);
    box-shadow: 0 10px 30px rgba(135, 206, 235, 0.5);
}

.about-page-value-icon i {
    font-size: 2rem;
    color: white;
}

.about-page-value-item h3 {
    font-size: 1.35rem;
    font-weight: 700;
    margin: 0 auto 1rem;
    color: #1f2937;
    text-align: center;
    width: 100%;
}

.about-page-value-item p {
    color: #6b7280;
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
    margin: 0 auto;
    width: 100%;
}

/* Mission Vision */
.mission-vision {
    background: #fff;
    padding: 80px 0;
}

.mv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
}

.mv-item {
    text-align: center;
    padding: 3rem 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: fadeInUp 0.9s ease-out forwards;
    opacity: 0;
    transform: translateY(30px);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.mv-item:nth-child(2) {
    animation-delay: 0.15s;
}

.mv-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.mv-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.mv-icon i {
    font-size: 2rem;
    color: white;
}

.mv-item h2 {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1.5rem;
}

.mv-item p {
    font-size: 1.1rem;
    color: #6b7280;
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 80px 0;
    background: #ffffff;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-member {
    background: white;
    border-radius: 20px;
    padding: 0;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
    height: 100%;
    overflow: hidden;
}

.team-member:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 45px rgba(135, 206, 235, 0.25);
    border-color: #87CEEB;
}

.member-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    overflow: hidden;
    margin: 2rem auto 1.5rem;
    border: 5px solid #f0f9ff;
    box-shadow: 0 5px 20px rgba(135, 206, 235, 0.2);
    transition: all 0.3s ease;
}

.team-member:hover .member-photo {
    border-color: #87CEEB;
    transform: scale(1.05);
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 0 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.member-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.member-title {
    color: #5DADE2;
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.member-title::before {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, transparent, #5DADE2);
}

.member-title::after {
    content: '';
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #5DADE2, transparent);
}

.member-specialty {
    color: #6b7280;
    font-size: 0.95rem;
    margin-bottom: 1.25rem;
    font-weight: 500;
    line-height: 1.5;
}

.member-experience {
    background: linear-gradient(135deg, #f0f9ff 0%, #e3f4ff 100%);
    padding: 0.6rem 1.5rem;
    border-radius: 25px;
    display: inline-block;
    font-size: 0.85rem;
    color: #1f2937;
    font-weight: 600;
    margin-bottom: 1.25rem;
    border: 2px solid #d1ebf7;
}

.member-experience i {
    color: #5DADE2;
    margin-right: 0.5rem;
}

.member-bio {
    flex: 1;
    margin-bottom: 1.5rem;
}

.member-bio p {
    color: #4b5563;
    font-size: 0.95rem;
    line-height: 1.7;
    text-align: left;
    padding: 1rem;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 3px solid #87CEEB;
}

.member-contact {
    padding: 1.5rem 2rem 2rem;
    background: linear-gradient(to top, #f8fbff 0%, white 100%);
    margin-top: auto;
}

.member-contact .btn {
    width: 100%;
    padding: 14px 24px;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.member-contact .btn::after {
    content: '\f073';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    transition: transform 0.3s ease;
}

.member-contact .btn:hover::after {
    transform: translateX(5px);
}

/* Process Section */
.process-section {
    background: #fff;
    padding: 80px 0;
}

.process-timeline {
    position: relative;
    margin-top: 3rem;
}

.process-timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e5e7eb;
    transform: translateX(-50%);
}

.timeline-item {
    display: flex;
    align-items: center;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-number {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    margin: 0 2rem;
    flex: 1;
    max-width: 400px;
}

.timeline-content h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 1rem;
}

.timeline-content p {
    color: #6b7280;
    line-height: 1.6;
}

/* Appointment Section */
.appointment-section {
    padding: 80px 0;
}

.appointment-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.appointment-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 1rem;
}

.appointment-info p {
    font-size: 1.1rem;
    color: #6b7280;
    margin-bottom: 2rem;
    line-height: 1.7;
}

.info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    background: #fff;
    padding: 1.5rem;
    border-radius: 15px;
    border-left: 4px solid var(--primary-color);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.info-icon i {
    font-size: 1.2rem;
    color: white;
}

.info-card h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.info-card p {
    color: #6b7280;
    font-size: 0.9rem;
    line-height: 1.6;
}

/* Appointment Form */
.appointment-form-container {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.appointment-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-weight: 500;
    color: #374151;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    flex-direction: row !important;
    align-items: flex-start;
    gap: 0.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    font-size: 0.9rem;
    line-height: 1.5;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
}

.checkbox-text {
    color: #6b7280;
}

.checkbox-text a {
    color: var(--primary-color);
    text-decoration: none;
}

.checkbox-text a:hover {
    text-decoration: underline;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

.alert ul {
    margin: 0;
    padding-left: 1rem;
}

.alert li {
    margin-bottom: 0.25rem;
}

/* Contact Info Section */
.contact-info-section {
    background: #fff;
    padding: 80px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.contact-item {
    background: white;
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.contact-item:hover {
    transform: translateY(-5px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.contact-icon i {
    font-size: 1.5rem;
    color: white;
}

.contact-item h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 0.5rem;
}

.contact-item p {
    color: #6b7280;
    margin-bottom: 1rem;
}

/* Responsive Design for Appointment */
@media (max-width: 768px) {
    .appointment-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .appointment-form-container {
        padding: 2rem;
    }
    
    .info-cards {
        margin-top: 2rem;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

/* Scroll animasyonları için */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   İLETİŞİM SAYFASI STİLLERİ
   ============================================ */

/* Alert/Bildirim Mesajları */
.alert {
    padding: 15px 20px;
    border-radius: 12px;
    margin-bottom: 25px;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideDown 0.4s ease-out;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.alert i {
    font-size: 1.3rem;
}

.alert-success {
    background: #d4edda;
    border: 2px solid #c3e6cb;
    color: #155724;
}

.alert-danger {
    background: #f8d7da;
    border: 2px solid #f5c6cb;
    color: #721c24;
}

.alert ul {
    margin: 10px 0 0 0;
    padding-left: 20px;
}

.alert ul li {
    margin: 5px 0;
}

.alert .btn-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    cursor: pointer;
    margin-left: auto;
    opacity: 0.6;
    transition: opacity 0.3s;
}

.alert .btn-close:hover {
    opacity: 1;
}

.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8fbff 0%, #ffffff 100%);
}

/* İletişim Kartları */
.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 80px;
}

.contact-card {
    background: white;
    padding: 15px 20px 20px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 15px rgba(93, 173, 226, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(93, 173, 226, 0.08);
    position: relative;
    overflow: hidden;
}

.contact-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(93, 173, 226, 0.15);
    border-color: rgba(93, 173, 226, 0.3);
}

.contact-card:hover::before {
    transform: scaleX(1);
}

.contact-card-wide {
    grid-column: span 4;
    padding: 15px 30px 20px;
}

.contact-card-wide .contact-card-icon {
    margin-bottom: 12px;
}

.contact-card-wide h3 {
    margin-bottom: 12px;
}

.contact-card-wide p {
    font-size: 0.98rem;
    line-height: 1.4;
}

.contact-card-icon {
    width: 46px;
    height: 46px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.08) rotate(3deg);
}

.contact-card-icon i {
    font-size: 20px;
    color: white;
}

.contact-card h3 {
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.contact-card h3 i {
    color: var(--primary-color);
    font-size: 1rem;
}

.contact-card p {
    font-size: 0.92rem;
    color: var(--text-gray);
    margin: 0;
    line-height: 1.5;
}


.contact-card a {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: var(--secondary-color);
}

/* İletişim Form Container */
.contact-form-container {
    max-width: 900px;
    margin: 0 auto 80px;
}

/* Form Wrapper */
.contact-form-wrapper {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(93, 173, 226, 0.1);
}

.contact-form-header {
    margin-bottom: 35px;
}

.contact-form-header h2 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.contact-form-header p {
    color: var(--text-gray);
    font-size: 1.05rem;
}

/* Form Stilleri */
.contact-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.contact-form .form-group {
    margin-bottom: 0;
}

.contact-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    color: var(--text-dark);
    margin-bottom: 10px;
    font-size: 0.95rem;
}

.contact-form label i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.contact-form .required {
    color: #e74c3c;
    margin-left: auto;
}

.contact-form .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid #e8f4f8;
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    background: #f8fbff;
}

.contact-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(93, 173, 226, 0.1);
}

.contact-form textarea.form-control {
    resize: vertical;
    min-height: 140px;
}

.contact-form .btn-large {
    padding: 16px 40px;
    font-size: 1.05rem;
    margin-top: 10px;
    width: 100%;
}

/* Harita Section */
.map-section {
    margin-top: 40px;
}

.map-header {
    text-align: center;
    margin-bottom: 40px;
}

.map-header h2 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.map-header p {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(93, 173, 226, 0.15);
    border: 3px solid white;
}

.map-container iframe {
    display: block;
    filter: grayscale(0.3);
    transition: filter 0.4s ease;
}

.map-container:hover iframe {
    filter: grayscale(0);
}

/* Responsive - Tablet */
@media (max-width: 992px) {
    .contact-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .contact-card {
        padding: 14px 16px 18px;
    }
    
    .contact-card-icon {
        width: 44px;
        height: 44px;
        margin-bottom: 10px;
    }
    
    .contact-card-icon i {
        font-size: 18px;
    }
    
    .contact-card h3 {
        font-size: 1rem;
        margin-bottom: 10px;
    }
    
    .contact-card p {
        font-size: 0.9rem;
    }
    
    .contact-card-wide {
        grid-column: span 2;
        padding: 14px 25px 18px;
    }
    
    .contact-form-container {
        max-width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 35px;
    }
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        margin-bottom: 50px;
    }
    
    .contact-card-wide {
        grid-column: span 1;
        padding: 12px 18px 16px;
    }
    
    .contact-card {
        padding: 12px 15px 16px;
    }
    
    .contact-card-icon {
        width: 42px;
        height: 42px;
        margin-bottom: 8px;
    }
    
    .contact-card-icon i {
        font-size: 17px;
    }
    
    .contact-card h3 {
        font-size: 0.95rem;
        margin-bottom: 8px;
    }
    
    .contact-card h3 i {
        font-size: 0.85rem;
    }
    
    .contact-card p {
        font-size: 0.86rem;
    }
    
    .contact-form-container {
        max-width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
    
    .contact-form .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form .form-group {
        margin-bottom: 20px;
    }
    
    .map-container iframe {
        height: 350px !important;
    }
    
    .map-header h2 {
        font-size: 1.8rem;
    }
}

/* AOS Animasyon Desteği */
[data-aos="fade-up"] {
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.6s ease-out;
}

[data-aos="fade-up"].aos-animate {
    transform: translateY(0);
    opacity: 1;
}

[data-aos="fade-right"] {
    transform: translateX(-30px);
    opacity: 0;
    transition: all 0.6s ease-out;
}

[data-aos="fade-right"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

[data-aos="fade-left"] {
    transform: translateX(30px);
    opacity: 0;
    transition: all 0.6s ease-out;
}

[data-aos="fade-left"].aos-animate {
    transform: translateX(0);
    opacity: 1;
}

/* Legal Pages Styles */
.legal-content {
    padding: 80px 0;
    background: #ffffff;
}

.legal-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.legal-intro {
    margin-bottom: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #f0f9ff 0%, #e3f4ff 100%);
    border-radius: 15px;
    border-left: 5px solid #87CEEB;
}

.legal-date {
    color: #5DADE2;
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.legal-intro p {
    color: #374151;
    line-height: 1.8;
    font-size: 1.05rem;
}

.legal-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #e5e7eb;
}

.legal-section:last-of-type {
    border-bottom: none;
}

.legal-section h2 {
    color: #1f2937;
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.legal-section h2 i {
    color: #87CEEB;
    font-size: 1.5rem;
}

.legal-section h3 {
    color: #374151;
    font-size: 1.3rem;
    font-weight: 600;
    margin: 2rem 0 1rem 0;
}

.legal-section p {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-size: 1.05rem;
}

.legal-section ul {
    list-style: none;
    padding-left: 0;
    margin: 1.5rem 0;
}

.legal-section ul li {
    color: #4b5563;
    line-height: 1.8;
    margin-bottom: 0.75rem;
    padding-left: 2rem;
    position: relative;
}

.legal-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 8px;
    height: 8px;
    background: #87CEEB;
    border-radius: 50%;
}

.legal-section ul li strong {
    color: #1f2937;
    font-weight: 600;
}

.legal-section ul li i.fas {
    color: #10b981;
    margin-right: 0.5rem;
}

/* Cookie Types */
.cookie-type {
    margin: 2rem 0;
    padding: 1.5rem;
    background: #f9fafb;
    border-radius: 12px;
    border-left: 4px solid #87CEEB;
}

.cookie-type h3 {
    color: #1f2937;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0 0 1rem 0;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cookie-type h3 i {
    color: #87CEEB;
}

.cookie-type p {
    margin-bottom: 1rem;
}

.cookie-info {
    background: #e3f4ff;
    padding: 0.75rem 1rem;
    border-radius: 8px;
    font-size: 0.95rem;
    margin-top: 1rem;
}

.cookie-info i {
    color: #5DADE2;
    margin-right: 0.5rem;
}

/* Cookie Table */
.cookie-table {
    overflow-x: auto;
    margin: 2rem 0;
}

.cookie-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    overflow: hidden;
}

.cookie-table thead {
    background: linear-gradient(135deg, #87CEEB 0%, #5DADE2 100%);
    color: white;
}

.cookie-table th {
    padding: 1rem;
    text-align: left;
    font-weight: 600;
    font-size: 0.95rem;
}

.cookie-table td {
    padding: 1rem;
    border-bottom: 1px solid #e5e7eb;
    color: #4b5563;
}

.cookie-table tbody tr:last-child td {
    border-bottom: none;
}

.cookie-table tbody tr:hover {
    background: #f9fafb;
}

/* Cookie Warning */
.cookie-warning {
    background: #fef3c7;
    border-left: 4px solid #f59e0b;
    padding: 1.5rem;
    border-radius: 8px;
    margin: 1.5rem 0;
}

.cookie-warning p {
    margin: 0;
    color: #92400e;
    font-size: 1rem;
}

.cookie-warning i {
    color: #f59e0b;
}

/* Legal Footer */
.legal-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, #e3f4ff 0%, #d1ebf7 100%);
    border-radius: 12px;
    text-align: center;
}

.legal-footer p {
    margin: 0;
    color: #1f2937;
    font-weight: 500;
}

.legal-footer i {
    color: #5DADE2;
    margin-right: 0.5rem;
}

.legal-footer a {
    color: #2563eb;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.legal-footer a:hover {
    color: #1d4ed8;
    border-bottom-color: #1d4ed8;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-content {
        padding: 60px 0;
    }

    .legal-intro {
        padding: 1.5rem;
    }

    .legal-section h2 {
        font-size: 1.5rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 0.5rem;
    }

    .legal-section h3 {
        font-size: 1.15rem;
    }

    .legal-section p,
    .legal-section ul li {
        font-size: 1rem;
    }

    .cookie-table {
        font-size: 0.9rem;
    }

    .cookie-table th,
    .cookie-table td {
        padding: 0.75rem 0.5rem;
    }
}
