/**
 * Diş Kliniği Web Sitesi
 * Anasayfa CSS - Ultra Modern Tasarım
 */

:root {
    /* Ana Renkler */
    --primary: #8B4513;
    --primary-light: #A0522D;
    --primary-dark: #654321;
    --secondary: #D2691E;
    --accent: #DEB887;
    --accent-glow: #FFE4B5;
    
    /* Nötr Renkler */
    --bg-light: #FFF8DC;
    --bg-cream: #FAEBD7;
    --text-dark: #2C1810;
    --text-light: #FFF;
    
    /* Modern Gradyanlar */
    --gradient-primary: linear-gradient(135deg, var(--primary-dark), var(--primary), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--accent), var(--accent-glow));
    --gradient-overlay: linear-gradient(to right, rgba(44, 24, 16, 0.9), rgba(44, 24, 16, 0.7));
    --gradient-glass: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.05));
    --gradient-card: linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.05));
    
    /* Border Radius */
    --radius-sm: 20px;
    --radius-md: 30px;
    --radius-lg: 40px;
    --radius-xl: 60px;
    
    /* Animasyonlar */
    --transition-fast: 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-normal: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    --transition-slow: 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    
    /* Gelişmiş Gölgeler */
    --shadow-sm: 0 5px 15px rgba(44, 24, 16, 0.05);
    --shadow-md: 0 10px 25px rgba(44, 24, 16, 0.08);
    --shadow-lg: 0 20px 40px rgba(44, 24, 16, 0.12);
    --shadow-xl: 0 30px 60px rgba(44, 24, 16, 0.15);
    
    /* Modern Efektler */
    --glass-border: 1px solid rgba(255, 255, 255, 0.2);
    --glass-blur: blur(12px);
    --neon-glow: 0 0 30px rgba(139, 69, 19, 0.6);
    --text-glow: 0 0 15px rgba(255, 255, 255, 0.5);
}

/* Hero Bölümü */
.hero-section {
    position: relative;
    height: 100vh;
    min-height: 800px;
    background-image: url('../../resimler/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 60px;
    color: var(--text-light);
    background: var(--gradient-glass);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s var(--transition-normal) forwards;
}

.hero-content h1 {
    font-size: clamp(3.5rem, 7vw, 6rem);
    font-weight: 900;
    margin-bottom: 40px;
    line-height: 1.1;
    background: linear-gradient(to right, var(--text-light) 20%, var(--accent-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--text-glow);
}

.hero-content p {
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.8;
    margin-bottom: 50px;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.hero-buttons {
    display: flex;
    gap: 30px;
}

.hero-buttons .btn {
    padding: 18px 45px;
    border-radius: var(--radius-xl);
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.hero-buttons .btn-primary {
    background: var(--gradient-primary);
    color: var(--text-light);
    box-shadow: var(--neon-glow);
}

.hero-buttons .btn-outline-light {
    background: var(--gradient-glass);
    color: var(--text-light);
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
}

.hero-buttons .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-normal);
    z-index: -1;
}

.hero-buttons .btn:hover::before {
    left: 100%;
    transform: skewX(-15deg);
}

.hero-buttons .btn:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: var(--shadow-xl), var(--neon-glow);
}

/* Hizmetler Bölümü - Ultra Modern */
.services-section {
    background-color: #f8f9fa;
    position: relative;
    padding: 100px 0;
    overflow: hidden;
    z-index: 1;
    pointer-events: none;
}

.services-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(var(--primary-rgb), 0.05) 0%, rgba(var(--primary-rgb), 0.1) 100%);
    opacity: 0.7;
    z-index: -1;
}

.services-section .container {
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.section-title {
    text-align: center;
    margin-bottom: 100px;
    position: relative;
    z-index: 1;
}

.section-title h2 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 30px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--neon-glow);
}

.section-title h2::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 5px;
    background: var(--gradient-primary);
    border-radius: 3px;
    box-shadow: var(--neon-glow);
}

.section-title p {
    font-size: 1.4rem;
    color: var(--text-dark);
    max-width: 800px;
    margin: 0 auto;
    opacity: 0.9;
    line-height: 1.8;
}

.service-card {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    padding: 50px 40px;
    margin-bottom: 30px;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 1s var(--transition-normal) forwards;
    animation-delay: calc(var(--delay, 0) * 0.2s);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.03);
    box-shadow: var(--shadow-xl);
}

.service-card:hover::before {
    height: 12px;
}

.service-icon {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.1), rgba(139, 69, 19, 0.2));
    border-radius: 50%;
    margin: 0 auto 35px;
    position: relative;
    border: var(--glass-border);
    backdrop-filter: var(--glass-blur);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-normal);
}

.service-icon i {
    font-size: 42px;
    color: var(--primary);
    transition: var(--transition-normal);
}

.service-card:hover .service-icon {
    transform: rotateY(360deg);
}

.service-card:hover .service-icon::after {
    opacity: 1;
    animation: pulse 2s infinite;
}

.service-card:hover .service-icon i {
    color: var(--text-light);
    animation: bounce 1s infinite;
}

.service-card h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--primary-dark);
    position: relative;
    display: inline-block;
    transition: var(--transition-normal);
}

.service-card h3::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.service-card:hover h3::after {
    width: 100%;
}

.service-card p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 30px;
    opacity: 0.9;
}

.service-card .btn {
    padding: 15px 35px;
    border-radius: var(--radius-xl);
    background: var(--gradient-glass);
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition-normal);
    border: 1px solid var(--primary-light);
    position: relative;
    overflow: hidden;
}

.service-card:hover .btn {
    background: var(--gradient-primary);
    color: var(--text-light);
    transform: translateY(-5px);
    box-shadow: var(--shadow-md), var(--neon-glow);
}

/* Animasyonlar */
@keyframes pulseBackground {
    0% {
        opacity: 0.07;
        transform: scale(1);
    }
    50% {
        opacity: 0.1;
        transform: scale(1.1);
    }
    100% {
        opacity: 0.07;
        transform: scale(1);
    }
}

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
    100% {
        transform: scale(1);
        opacity: 0.5;
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .hero-content {
        padding: 40px;
        max-width: 700px;
    }
    
    .hero-content h1 {
        font-size: clamp(3rem, 6vw, 4.5rem);
    }
    
    .service-card {
        padding: 40px 30px;
    }
    
    .service-icon {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        min-height: 700px;
    }
    
    .hero-content {
        max-width: 600px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 20px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        text-align: center;
    }
    
    .section-title h2 {
        font-size: 3rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 600px;
    }
    
    .hero-content {
        padding: 30px;
        margin: 0 20px;
    }
    
    .hero-content h1 {
        font-size: clamp(2.5rem, 5vw, 3.5rem);
    }
    
    .hero-content p {
        font-size: 1.1rem;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 80px;
        height: 80px;
    }
    
    .service-icon i {
        font-size: 32px;
    }
    
    .service-card h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 576px) {
    .hero-content {
        padding: 25px;
    }
    
    .hero-content h1 {
        font-size: clamp(2rem, 4vw, 3rem);
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .service-card {
        padding: 25px 15px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 25px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
}

/* Hakkımızda Bölümü - Ultra Modern */
.about-section {
    position: relative;
    padding: 120px 0;
    background: var(--text-light);
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(45deg, var(--primary-dark) 25%, transparent 25%),
                      linear-gradient(-45deg, var(--primary-dark) 25%, transparent 25%),
                      linear-gradient(45deg, transparent 75%, var(--primary-dark) 75%),
                      linear-gradient(-45deg, transparent 75%, var(--primary-dark) 75%);
    background-size: 60px 60px;
    opacity: 0.02;
    z-index: 0;
}

.about-image {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
}

.about-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transform: scale(1.1);
    transition: var(--transition-normal);
}

.about-image:hover img {
    transform: scale(1);
}

.about-experience {
    position: absolute;
    bottom: 40px;
    right: -30px;
    background: var(--gradient-primary);
    padding: 30px;
    border-radius: var(--radius-lg);
    color: var(--text-light);
    box-shadow: var(--shadow-xl), var(--neon-glow);
    text-align: center;
    min-width: 200px;
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    opacity: 0;
    animation: fadeInUp 0.6s ease 0.8s forwards;
}

.about-experience h3 {
    font-size: 4rem;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 5px;
    background: var(--text-light);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--neon-glow);
}

.about-experience p {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    opacity: 0.9;
}

.about-content {
    padding-left: 50px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
}

.about-content h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 30px;
}

.about-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 40px;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.about-feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--delay, 0) * 0.2s);
}

.about-feature-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
    font-size: 1.8rem;
    color: var(--text-light);
    transition: var(--transition-normal);
    box-shadow: var(--neon-glow);
    flex-shrink: 0;
}

.about-feature-item:hover .about-feature-icon {
    background: var(--text-light);
    color: var(--primary);
    transform: rotate(360deg);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
}

.about-feature-text h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-dark);
    transition: var(--transition-normal);
}

.about-feature-item:hover .about-feature-text h4 {
    color: var(--primary);
}

.about-feature-text p {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 0;
}

/* İstatistikler Bölümü - Ultra Modern */
.stats-section {
    position: relative;
    background: var(--gradient-primary) !important;
    padding: 100px 0 !important;
    overflow: hidden;
    color: var(--text-light);
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(30deg, var(--primary-dark) 12%, transparent 12.5%, transparent 87%, var(--primary-dark) 87.5%, var(--primary-dark)),
                      linear-gradient(150deg, var(--primary-dark) 12%, transparent 12.5%, transparent 87%, var(--primary-dark) 87.5%, var(--primary-dark)),
                      linear-gradient(30deg, var(--primary-dark) 12%, transparent 12.5%, transparent 87%, var(--primary-dark) 87.5%, var(--primary-dark)),
                      linear-gradient(150deg, var(--primary-dark) 12%, transparent 12.5%, transparent 87%, var(--primary-dark) 87.5%, var(--primary-dark));
    background-size: 40px 70px;
    opacity: 0.1;
    z-index: 0;
}

.stat-card {
    position: relative;
    text-align: center;
    padding: 40px 20px;
    background: var(--gradient-glass);
    border-radius: var(--radius-md);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    transition: var(--transition-normal);
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
    animation-delay: calc(var(--delay, 0) * 0.1s);
    z-index: 1;
    height: 100%;
}

.stat-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.stat-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-glass);
    border-radius: 50%;
    margin: 0 auto 25px;
    position: relative;
    border: var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.stat-icon i {
    font-size: 32px;
    color: var(--text-light);
    transition: var(--transition-normal);
}

.stat-card:hover .stat-icon {
    transform: rotateY(360deg);
}

.stat-card:hover .stat-icon i {
    animation: bounce 1s infinite;
}

.stat-card h3.counter {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--text-light);
    margin-bottom: 10px;
    background: linear-gradient(to right, var(--text-light), rgba(255, 255, 255, 0.8));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.stat-card p {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* Doktorlar Bölümü - Ultra Modern */
.doctors-section {
    position: relative;
    background: var(--bg-light);
    padding: 120px 0;
    overflow: hidden;
}

.doctors-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(139, 69, 19, 0.03), rgba(210, 105, 30, 0.03));
    z-index: 0;
}

/* Testimonials Bölümü - Ultra Modern */
.testimonials-section {
    position: relative;
    padding: 120px 0 !important;
    background: var(--text-light) !important;
    overflow: hidden;
}

.testimonial-card {
    position: relative;
    padding: 40px;
    background: var(--gradient-card);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    overflow: hidden;
    height: 100%;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s var(--transition-normal) forwards;
    animation-delay: calc(var(--delay, 0) * 0.2s);
}

.testimonial-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.testimonial-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.testimonial-card:hover::before {
    height: 10px;
}

.testimonial-content {
    position: relative;
    padding-left: 40px;
    margin-bottom: 30px;
}

.testimonial-content::before {
    content: '\f10d';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.testimonial-content p {
    font-style: italic;
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.1rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    margin-top: 20px;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    box-shadow: var(--shadow-md);
    color: white;
    font-size: 2.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-avatar {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
}

.author-info h5 {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.testimonial-card:hover .author-info h5 {
    color: var(--primary);
}

.author-info p {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 0;
}

/* Blog Bölümü - Ultra Modern ve Responsive */
.blog-section {
    background: var(--gradient-primary);
    position: relative;
    padding: 120px 0 !important;
    overflow: hidden;
    text-align: center;
    color: var(--text-light);
    z-index: 1;
    pointer-events: none;
}

.blog-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%) -50px 0,
                linear-gradient(225deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%) -50px 0,
                linear-gradient(315deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%),
                linear-gradient(45deg, rgba(255, 255, 255, 0.1) 25%, transparent 25%);
    background-size: 100px 100px;
    opacity: 0.1;
    z-index: -1;
}

.blog-section .container {
    position: relative;
    z-index: 5;
    pointer-events: auto;
}

.blog-section h2 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 800;
    background: white;
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 1rem;
    text-align: center;
    position: relative;
    display: inline-block;
    transform: none;
    left: auto;
    text-shadow: var(--text-glow);
}

.blog-section h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.blog-section .subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: var(--text-light);
    text-align: center;
    margin-bottom: 4rem;
    opacity: 0.9;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.blog-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 0 1rem;
    max-width: 1200px;
    margin: 0 auto;
}

.blog-card {
    position: relative;
    z-index: 2;
    pointer-events: auto;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    transform: translateY(30px);
    opacity: 0;
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    animation-delay: calc(var(--delay, 0) * 0.2s);
    border: 1px solid rgba(139, 69, 19, 0.1);
    backdrop-filter: blur(10px);
}

.blog-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(139, 69, 19, 0.15);
    border-color: rgba(139, 69, 19, 0.2);
}

.blog-image {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    aspect-ratio: 16/9;
}

.blog-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        transparent 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    opacity: 0;
    transition: all 0.4s ease;
}

.blog-card:hover .blog-image::after {
    opacity: 1;
}

.blog-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.blog-card:hover .blog-image img {
    transform: scale(1.1) rotate(-2deg);
}

.blog-content {
    padding: 2rem;
    position: relative;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 1)
    );
    flex: 1;
    display: flex;
    flex-direction: column;
}

.blog-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.blog-meta span {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s ease;
}

.blog-meta span:hover {
    background: var(--primary-light);
    color: var(--text-light);
    transform: translateY(-2px);
}

.blog-meta i {
    margin-right: 5px;
    color: var(--primary);
}

.blog-content h4 {
    font-size: clamp(1.2rem, 3vw, 1.5rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--primary-dark);
    transition: all 0.3s ease;
    line-height: 1.4;
}

.blog-card:hover .blog-content h4 {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.blog-content p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 1.5rem;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-content .btn-link {
    margin-top: auto;
    color: var(--primary);
    font-weight: 600;
    padding: 0.8rem 1.5rem;
    text-decoration: none;
    position: relative;
    transition: all 0.3s ease;
    border-radius: 25px;
    background: var(--bg-light);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: fit-content;
}

.blog-content .btn-link i {
    transition: all 0.3s ease;
}

.blog-content .btn-link:hover {
    background: var(--gradient-primary);
    color: var(--text-light);
    transform: translateX(5px);
}

.blog-content .btn-link:hover i {
    transform: translateX(3px);
}

/* Responsive Tasarım İyileştirmeleri */
@media (max-width: 1200px) {
    .blog-section {
        padding: 100px 0 !important;
    }
    
    .blog-container {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .blog-section {
        padding: 80px 0 !important;
    }
    
    .blog-section h2 {
        padding: 0 1rem;
    }
    
    .blog-section .subtitle {
        padding: 0 1rem;
        margin-bottom: 3rem;
    }
    
    .blog-container {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.2rem;
    }
    
    .blog-content {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .blog-section {
        padding: 60px 0 !important;
    }
    
    .blog-container {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }
    
    .blog-meta {
        gap: 0.5rem;
    }
    
    .blog-meta span {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
    }
    
    .blog-content h4 {
        font-size: 1.3rem;
    }
    
    .blog-content {
        padding: 1.2rem;
    }
}

/* Banner/Slider Bölümü - Dokunma */
.banner-section {
    position: relative;
    background-color: #8B7355; /* Kahverengi tema tonu */
    padding: 80px 0;
    overflow: hidden;
}

.banner-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.banner-slider {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    background-color: #fff;
    padding: 15px;
    aspect-ratio: 21/9; /* Desktop için ideal oran */
}

.banner-slide {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 15px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: scale(1.1);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 1;
    background-color: #fff;
}

.banner-slide.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
}

/* İlk slide'ı varsayılan olarak göster (JS yüklenmeden önce fallback) */
/* JS yüklendiğinde .slider-initialized class'ı eklenir ve bu kural devre dışı kalır */
.banner-slider:not(.slider-initialized) .banner-slide:first-child {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
    pointer-events: auto;
}

.banner-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.1);
    transition: transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner-slide.active img {
    transform: scale(1);
}

/* Slider içeriği */
.banner-content {
    position: absolute;
    top: 50%;
    left: 80px;
    transform: translateY(-50%);
    max-width: 600px;
    z-index: 2;
    opacity: 0;
    transition: all 0.8s ease;
    padding-right: 20px;
    color: #fff;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.3);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(5px);
}

.banner-slide.active .banner-content {
    opacity: 1;
}

.banner-title {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.2s;
    color: #fff;
}

.banner-slide.active .banner-title {
    opacity: 1;
}

.banner-description {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 30px;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.4s;
    color: rgba(255, 255, 255, 0.9);
    /* CLS Prevention */
    min-height: 58px;
    contain: layout style;
}

.banner-slide.active .banner-description {
    opacity: 1;
}

.banner-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #8B7355; /* Buton arka planı kahverengi */
    color: #fff; /* Buton yazı rengi beyaz */
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transform: translateY(30px);
    opacity: 0;
    transition: all 0.8s ease 0.6s;
    border: 2px solid transparent;
}

.banner-slide.active .banner-button {
    opacity: 1;
}

.banner-button:hover {
    background-color: transparent;
    color: #8B7355; /* Hover durumunda yazı rengi kahverengi */
    border-color: #8B7355; /* Hover durumunda border rengi kahverengi */
    transform: translateY(-2px);
}

/* Slider Navigasyon */
.banner-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    font-size: 1.2rem;
    z-index: 10;
}

.banner-slider:hover .banner-nav {
    opacity: 1;
}

.banner-prev {
    left: 30px;
    transform: translate(-30px, -50%);
}

.banner-next {
    right: 30px;
    transform: translate(30px, -50%);
}

.banner-slider:hover .banner-prev {
    transform: translate(0, -50%);
}

.banner-slider:hover .banner-next {
    transform: translate(0, -50%);
}

.banner-nav:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-50%) scale(1.1);
}

/* Slider Dots */
.banner-dots {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.banner-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255,255,255,0.4);
    cursor: pointer;
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.banner-dot:hover {
    background: rgba(255,255,255,0.8);
}

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

/* Animasyonlar */
@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .about-content {
        padding-left: 0;
        margin-top: 50px;
    }
    
    .about-experience {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: 30px;
        transform: none;
    }
    
    .service-card {
        padding: 30px 20px;
    }
    
    .service-icon {
        width: 70px;
        height: 70px;
    }
    
    .service-icon i {
        font-size: 28px;
    }
}

@media (max-width: 992px) {
    .hero-section {
        height: auto;
        min-height: 600px;
        padding: 100px 0;
    }
    
    .hero-content h1 {
        font-size: 3rem;
    }
    
    .about-image img {
        height: auto;
    }
    
    .about-experience {
        padding: 20px;
        min-width: 160px;
    }
    
    .about-experience h3 {
        font-size: 3rem;
    }
    
    .section-title h2 {
        font-size: 2.5rem;
    }
    
    .stat-item .counter-value {
        font-size: 3rem;
    }
    
    .banner-section {
        padding: 20px 0;
    }
    
    .banner-container {
        padding: 0 15px;
    }
    
    .banner-slider {
        aspect-ratio: 16/9; /* Tablet için oran */
        padding: 10px;
    }
    
    .banner-content {
        left: 40px;
        max-width: 500px;
    }
    
    .banner-title {
        font-size: 2rem;
    }
    
    .banner-description {
        font-size: 1rem;
    }
    
    .banner-nav {
        width: 50px;
        height: 50px;
        opacity: 1;
    }
    
    .banner-prev {
        left: 20px;
        transform: translate(0, -50%);
    }
    
    .banner-next {
        right: 20px;
        transform: translate(0, -50%);
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 500px;
        padding: 80px 0;
    }
    
    .hero-content {
        padding: 30px;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
        flex-wrap: wrap;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1rem;
    }
    
    .section-title h2 {
        font-size: 2rem;
    }
    
    .about-image {
        margin-bottom: 30px;
    }
    
    .about-content {
        text-align: center;
    }
    
    .about-content h2 {
        font-size: 2.2rem;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-feature-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .about-feature-icon {
        margin-right: 0;
        margin-bottom: 15px;
    }
    
    .stat-item {
        margin-bottom: 30px;
    }
    
    .service-card {
        margin-bottom: 30px;
    }
    
    .banner-section {
        padding: 0;
    }
    
    .banner-container {
        padding: 0;
    }
    
    .banner-slider {
        aspect-ratio: 1/1; /* Mobil için kare oran */
        padding: 0;
        border-radius: 0;
    }
    
    .banner-slide {
        border-radius: 0;
    }
    
    .banner-content {
        left: 0;
        right: 0;
        max-width: 100%;
        text-align: center;
        padding: 20px;
        background: rgba(0, 0, 0, 0.4);
        backdrop-filter: blur(5px);
    }
    
    .banner-title {
        font-size: 1.8rem;
        margin-bottom: 15px;
    }
    
    .banner-description {
        font-size: 1rem;
        margin-bottom: 20px;
        -webkit-line-clamp: 3;
        min-height: 72px; /* 3 satır * 24px line-height */
    }
    
    .banner-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .banner-nav {
        width: 40px;
        height: 40px;
        font-size: 1rem;
        background: rgba(255, 255, 255, 0.95);
    }
    
    .banner-prev {
        left: 15px;
    }
    
    .banner-next {
        right: 15px;
    }
    
    .banner-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .banner-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 576px) {
    .hero-content h1 {
        font-size: 2rem;
    }
    
    .section-title h2 {
        font-size: 1.8rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
    
    .about-content h2 {
        font-size: 1.8rem;
    }
    
    .about-feature-text h4 {
        font-size: 1.3rem;
    }
    
    .stat-item .counter-value {
        font-size: 2.5rem;
    }
    
    .stat-item p {
        font-size: 1rem;
    }
    
    .banner-button {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .banner-section {
        margin-top: -5px; /* Top bar'ın yüksekliği kadar negatif margin */
    }
    
    .banner-slider {
        aspect-ratio: 3/4; /* Daha dikey bir oran */
    }
    
    .banner-content {
        padding: 15px;
    }
    
    .banner-title {
        font-size: 1.5rem;
    }
    
    .banner-description {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
        min-height: 44px; /* 2 satır * 22px line-height */
    }
}

/* Doktor Tanıtım Bölümü - Ultra Modern */
.doctor-intro-section {
    position: relative;
    padding: 120px 0 !important;
    background: var(--text-light) !important;
    overflow: hidden;
}

.doctor-intro-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 20%, var(--primary-light) 0%, transparent 30%),
                      radial-gradient(circle at 80% 80%, var(--secondary) 0%, transparent 30%);
    opacity: 0.05;
    z-index: 0;
}

.doctor-intro-container {
    position: relative;
    z-index: 2;
}

.doctor-intro-content {
    padding-right: 50px;
    opacity: 0;
    animation: fadeInUp 0.8s ease forwards;
}

.doctor-intro-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 25px;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: var(--neon-glow);
}

.doctor-intro-content p {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 30px;
}

.doctor-stats {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
}

.doctor-stat-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--delay, 0) * 0.2s + 0.3s);
}

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

.doctor-stat-text {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.8;
}

.doctor-intro-content .btn {
    padding: 15px 40px;
    border-radius: var(--radius-xl);
    background: var(--gradient-primary);
    color: var(--text-light);
    font-weight: 600;
    transition: var(--transition-normal);
    border: none;
    position: relative;
    overflow: hidden;
    box-shadow: var(--neon-glow);
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: 0.6s;
}

.doctor-intro-content .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-normal);
    z-index: 1;
}

.doctor-intro-content .btn:hover::before {
    left: 100%;
    transform: skewX(-15deg);
}

.doctor-intro-content .btn:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl), var(--neon-glow);
}

.doctor-image-wrapper {
    position: relative;
    width: 100%;
    height: 600px;
    clip-path: polygon(0% 20%, 100% 0%, 100% 80%, 0% 100%);
    opacity: 0;
    animation: slideInLeft 1s ease forwards;
    animation-delay: 0.3s;
}

.doctor-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    transition: var(--transition-normal);
}

.doctor-image-wrapper:hover .doctor-image {
    transform: scale(1.05);
}

.doctor-badges {
    position: absolute;
    right: -30px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 3;
}

.doctor-badge {
    width: 120px;
    height: 120px;
    background: var(--gradient-glass);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    opacity: 0;
    animation: fadeInRight 0.6s ease forwards;
    animation-delay: calc(var(--delay, 0) * 0.3s + 0.6s);
}

.doctor-badge:nth-child(1) {
    --delay: 1;
}

.doctor-badge:nth-child(2) {
    --delay: 2;
}

.doctor-badge:nth-child(3) {
    --delay: 3;
}

.doctor-badge:hover {
    transform: translateX(-10px);
    box-shadow: var(--shadow-xl);
    background: var(--gradient-primary);
}

.doctor-badge i {
    font-size: 36px;
    color: var(--primary);
    margin-bottom: 10px;
    transition: var(--transition-normal);
}

.doctor-badge span {
    font-size: 0.9rem;
    color: var(--text-dark);
    text-align: center;
    transition: var(--transition-normal);
}

.doctor-badge:hover i,
.doctor-badge:hover span {
    color: var(--text-light);
}

/* Yeni Animasyonlar */
@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate(30px, -50%);
    }
    to {
        opacity: 1;
        transform: translate(0, -50%);
    }
}

@keyframes pulseGradient {
    0% {
        background-position: 0% 50%;
        opacity: 0.05;
    }
    50% {
        background-position: 100% 50%;
        opacity: 0.08;
    }
    100% {
        background-position: 0% 50%;
        opacity: 0.05;
    }
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .doctor-intro-content {
        padding-right: 0;
    }
    
    .doctor-image-wrapper {
        height: 500px;
    }
    
    .doctor-badge {
        width: 100px;
        height: 100px;
    }
    
    .doctor-badge i {
        font-size: 30px;
    }
    
    .testimonial-card,
    .blog-card {
        padding: 25px;
    }
}

@media (max-width: 992px) {
    .services-section,
    .blog-section,
    .testimonials-section,
    .doctor-intro-section {
        padding: 80px 0 !important;
    }
    
    .stats-section,
    .cta-section {
        padding: 60px 0 !important;
    }
    
    .doctor-intro-section {
        padding: 60px 0 100px !important;
    }
    
    .doctor-intro-content h2 {
        font-size: 2.2rem;
    }
    
    .doctor-intro-content p {
        font-size: 1.1rem;
    }

    .doctor-image-wrapper {
        clip-path: polygon(0% 10%, 100% 0%, 100% 90%, 0% 100%);
    }

    @keyframes fadeInRight {
        from {
            opacity: 0;
            transform: translate(0, 30px);
        }
        to {
            opacity: 1;
            transform: translate(0, 0);
        }
    }
}

@media (max-width: 768px) {
    .services-section,
    .blog-section,
    .testimonials-section {
        padding: 60px 0 !important;
    }
    
    .stats-section,
    .cta-section {
        padding: 40px 0 !important;
    }
    
    .doctor-intro-section {
        padding: 60px 0 100px !important;
    }

    .doctor-intro-content h2 {
        font-size: 2.2rem;
    }

    .doctor-intro-content p {
        font-size: 1.1rem;
    }

    .doctor-image-wrapper {
        height: 400px;
        clip-path: polygon(0% 5%, 100% 0%, 100% 95%, 0% 100%);
    }

    .doctor-badge {
        width: 80px;
        height: 80px;
    }

    .doctor-badge i {
        font-size: 24px;
    }

    .doctor-badge span {
        font-size: 0.8rem;
    }
    
    .cta-section h2 {
        font-size: 2rem;
    }
    
    .cta-section p {
        font-size: 1rem;
    }
    
    .cta-section .btn {
        width: 100%;
        margin-top: 20px;
    }
    
    .stat-card {
        margin-bottom: 30px;
    }
}

@media (max-width: 576px) {
    .doctor-stats {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .doctor-stat-item {
        width: 45%;
    }
    
    .doctor-stat-number {
        font-size: 2rem;
    }
    
    .doctor-badge {
        width: 70px;
        height: 70px;
    }
    
    .doctor-badge i {
        font-size: 20px;
        margin-bottom: 5px;
    }
    
    .doctor-badge span {
        font-size: 0.7rem;
    }
    
    .testimonial-content {
        padding-left: 30px;
    }
    
    .testimonial-content::before {
        font-size: 20px;
    }
    
    .testimonial-author img {
        width: 50px;
        height: 50px;
    }
    
    .author-info h5 {
        font-size: 1.1rem;
    }
}

/* Neden Bizi Seçmelisiniz Bölümü - Düzeltilmiş */
.why-us-section {
    position: relative;
    padding: 100px 0;
    background-color: #f1f3f5; /* Soft gri-beyaz arka plan */
    overflow: hidden;
}

.why-us-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(241, 243, 245, 0.5), rgba(233, 236, 239, 0.5)); /* Soft gradient */
    opacity: 0.7;
    z-index: 0;
}

.why-us-container {
    position: relative;
    z-index: 2;
}

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

.why-us-card {
    position: relative;
    padding: 40px;
    background: var(--gradient-glass);
    backdrop-filter: var(--glass-blur);
    border: var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
    overflow: hidden;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s var(--transition-normal) forwards;
    animation-delay: calc(var(--delay, 0) * 0.2s);
}

.why-us-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: var(--transition-normal);
    z-index: -1;
}

.why-us-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
}

.why-us-card:hover::before {
    opacity: 0.05;
}

.why-us-icon {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-glass);
    border-radius: 50%;
    margin-bottom: 25px;
    position: relative;
    border: var(--glass-border);
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.why-us-icon::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50%;
    background: var(--gradient-primary);
    opacity: 0;
    z-index: -1;
    transition: var(--transition-normal);
}

.why-us-icon i {
    font-size: 32px;
    color: var(--primary);
    transition: var(--transition-normal);
}

.why-us-card:hover .why-us-icon {
    transform: rotateY(360deg);
}

.why-us-card:hover .why-us-icon::after {
    opacity: 1;
    animation: pulse 2s infinite;
}

.why-us-card:hover .why-us-icon i {
    color: var(--text-light);
    animation: bounce 1s infinite;
}

.why-us-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 20px;
    position: relative;
    display: inline-block;
}

.why-us-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.why-us-card:hover .why-us-title::after {
    width: 100%;
}

.why-us-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    opacity: 0.9;
    margin-bottom: 25px;
}

.why-us-stats {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: auto;
}

.why-us-stat {
    text-align: center;
}

.why-us-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 5px;
}

.why-us-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
}

/* Responsive Düzenlemeler */
@media (max-width: 1200px) {
    .why-us-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .why-us-card {
        padding: 35px;
    }
    
    .why-us-icon {
        width: 70px;
        height: 70px;
    }
    
    .why-us-icon i {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .why-us-section {
        padding: 80px 0 !important;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .why-us-card {
        padding: 30px;
    }
    
    .why-us-title {
        font-size: 1.6rem;
    }
    
    .why-us-description {
        font-size: 1rem;
    }
    
    .why-us-number {
        font-size: 2rem;
    }
}

@media (max-width: 576px) {
    .why-us-card {
        padding: 25px;
    }
    
    .why-us-icon {
        width: 60px;
        height: 60px;
    }
    
    .why-us-icon i {
        font-size: 24px;
    }
    
    .why-us-title {
        font-size: 1.4rem;
    }
    
    .why-us-stats {
        flex-direction: column;
        gap: 15px;
    }
}

/* =============================================
   Instagram Feed Bölümü
   ============================================= */
.instagram-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
    overflow: hidden;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 80%, rgba(225, 48, 108, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(131, 58, 180, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(253, 29, 29, 0.05) 0%, transparent 50%);
    z-index: 0;
}

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

.instagram-section .section-title h2 {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-section .section-title h2 i {
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-feed-container {
    margin-top: 50px;
    margin-bottom: 50px;
}

.instagram-widget-placeholder {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
}

.instagram-placeholder {
    text-align: center;
}

.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 40px;
}

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #833ab4, #fd1d1d, #fcb045);
    border-radius: 15px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 0;
    transform: scale(0.9);
    animation: instagramItemIn 0.6s ease forwards;
    animation-delay: calc(var(--delay, 0) * 0.1s);
}

@keyframes instagramItemIn {
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.instagram-item:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 15px 30px rgba(131, 58, 180, 0.3);
    z-index: 2;
}

.instagram-item-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.3);
    color: white;
    transition: all 0.3s ease;
}

.instagram-item:hover .instagram-item-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.instagram-item-overlay i {
    font-size: 2.5rem;
    margin-bottom: 10px;
    transition: transform 0.3s ease;
}

.instagram-item:hover .instagram-item-overlay i {
    transform: scale(1.2);
}

.instagram-item-overlay span {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.instagram-cta {
    padding: 30px 0;
}

.instagram-cta p {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.instagram-cta p i {
    margin-right: 10px;
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    padding: 15px 40px;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    color: white !important;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s ease;
    box-shadow: 0 5px 20px rgba(131, 58, 180, 0.3);
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(131, 58, 180, 0.4);
    color: white !important;
}

.btn-instagram i {
    font-size: 1.3rem;
}

/* Instagram Stats */
.instagram-stats {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 40px;
}

.instagram-stat-item {
    text-align: center;
    opacity: 0;
    animation: fadeInUp 0.6s ease forwards;
    animation-delay: calc(var(--delay, 0) * 0.1s + 0.5s);
}

.instagram-stat-item:nth-child(1) { --delay: 1; }
.instagram-stat-item:nth-child(2) { --delay: 2; }
.instagram-stat-item:nth-child(3) { --delay: 3; }

.instagram-stat-item i {
    font-size: 2rem;
    background: linear-gradient(45deg, #833ab4, #fd1d1d, #fcb045);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
    display: block;
}

.instagram-stat-item .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-dark);
    line-height: 1;
    margin-bottom: 5px;
}

.instagram-stat-item .stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive - Instagram Section */
@media (max-width: 1200px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .instagram-section {
        padding: 80px 0;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .instagram-item-overlay i {
        font-size: 1.8rem;
    }
    
    .instagram-item-overlay span {
        font-size: 0.75rem;
    }
    
    .instagram-stats {
        flex-wrap: wrap;
        gap: 30px;
    }
    
    .instagram-stat-item {
        width: 45%;
    }
}

@media (max-width: 576px) {
    .instagram-section {
        padding: 60px 0;
    }
    
    .instagram-widget-placeholder {
        padding: 20px;
    }
    
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .instagram-cta p {
        font-size: 1.2rem;
    }
    
    .btn-instagram {
        padding: 12px 30px;
        font-size: 1rem;
    }
    
    .instagram-stat-item .stat-number {
        font-size: 1.5rem;
    }
    
    .instagram-stat-item i {
        font-size: 1.5rem;
    }
}

/* Container z-index düzeltmesi */
.services-section .container,
.blog-section .container {
    position: relative;
    z-index: 5;
}

/* Butonlar için z-index düzeltmesi */
.services-section .text-center.mt-5,
.blog-section .text-center.mt-5 {
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.services-section .btn-primary,
.blog-section .btn-primary {
    position: relative;
    z-index: 10;
    background: var(--gradient-primary);
    border: 2px solid white;
    box-shadow: var(--shadow-md);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.services-section .btn-primary:hover,
.blog-section .btn-primary:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.blog-section .btn-primary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.blog-section .btn-primary:hover {
    background: var(--primary-light);
    color: white;
    border-color: white;
} 