/* ======================================
   MODERN HOMEPAGE STYLES - 2024/2025 TRENDS
   ======================================== */

/* CSS Custom Properties - Updated to match About page */
:root {
    /* Brand Colors - Updated for consistent project colors */
    --primary-color: #c8a865; /* Home sayfası ile uyumlu altın rengi */
    --primary-dark: #b8965a;
    --primary-light: #d4b775;
    --secondary-color: #6c757d; /* Bootstrap secondary */
    --secondary-dark: #5a6268;
    --accent-color: #ffc107; /* Bootstrap warning yellow */
    --accent-dark: #e0a800;
    --success-color: #c8a865; /* Same as primary for consistency */
    --danger-color: #dc3545;
    --warning-color: #F2E529;
    
    /* Neutral Colors - Adjusted for the new palette */
    --white: #ffffff;
    --light-cream: #F2EEB6;
    --gray-50: #fafafa;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #525252;
    --gray-700: #404040;
    --gray-800: #262626;
    --gray-900: #0D0D0D;
    
    
    /* Gradients - Updated with custom palette (diagonal transitions) */
    --gradient-primary: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--secondary-color) 0%, var(--secondary-dark) 100%);
    --gradient-hero: linear-gradient(135deg, #3B2C10 0%, #8C6725 25%, #CE9F49 50%, #D9B471 75%, #EFDFC1 100%);
    --gradient-cta: linear-gradient(135deg, var(--accent-color) 0%, var(--primary-color) 100%);
    --gradient-overlay: linear-gradient(45deg, rgba(40, 167, 69, 0.9) 0%, rgba(108, 117, 125, 0.8) 100%);
    --gradient-text: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    
    /* Shadows */
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-3xl: 2rem;
    --radius-full: 9999px;
    
    /* Typography */
    --font-family-base: 'Inter', 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-family-heading: 'Poppins', 'Inter', sans-serif;
    --font-size-xs: 0.75rem;
    --font-size-sm: 0.875rem;
    --font-size-base: 1rem;
    --font-size-lg: 1.125rem;
    --font-size-xl: 1.25rem;
    --font-size-2xl: 1.5rem;
    --font-size-3xl: 1.875rem;
    --font-size-4xl: 2.25rem;
    --font-size-5xl: 3rem;
    --font-size-6xl: 3.75rem;
    
    /* Transitions */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Z-index */
    --z-dropdown: 1000;
    --z-sticky: 1020;
    --z-fixed: 1030;
    --z-modal-backdrop: 1040;
    --z-modal: 1050;
    --z-popover: 1060;
    --z-tooltip: 1070;
}

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

body {
    font-family: var(--font-family-base);
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-family-heading);
    font-weight: 600;
    line-height: 1.2;
    color: var(--gray-900);
}

.container {
    max-width: 1500px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* Utility Classes */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.bg-gradient-primary {
    background: var(--gradient-primary) !important;
}

.bg-gradient-secondary {
    background: var(--gradient-secondary) !important;
}

.bg-gradient-cta {
    background: var(--gradient-cta) !important;
}

.btn-gradient {
    background: var(--gradient-primary);
    border: none;
    color: white;
    transition: var(--transition-base);
}

.btn-gradient:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.floating-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: var(--spacing-lg);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--gray-100);
}

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

/* Animation and Interactive Elements */

/* Floating Cards Animation */
.floating-card {
    animation: float 6s ease-in-out infinite;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.floating-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: var(--shadow-xl);
}

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

/* Parallax Elements */
.parallax-element {
    transition: transform 0.1s ease-out;
}

/* Progress Bars */
.progress-bar {
    position: relative;
    height: 8px;
    background: var(--gradient-primary);
    border-radius: var(--border-radius-full);
    transition: width 0.3s ease-in-out;
    overflow: hidden;
}

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

@keyframes shimmer {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* Enhanced Animations */
.animate-fadeInUp {
    animation: fadeInUp 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

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

/* Smooth Transitions */
.smooth-transition {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Button Hover Effects */
.btn:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Card Hover Effects */
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.card .card-body {
    transition: all 0.3s ease;
}

/* Text Gradient Animation */
.text-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Loading States */
.loading {
    position: relative;
    overflow: hidden;
}

.loading::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    animation: loading 1.5s infinite;
}

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

/* ========================================
   HERO SECTION - MODERN ELEGANT DESIGN
   ======================================== */

/* Generic hero section spacing fix for navbar */
.hero-section {
    padding-top: calc(80px + var(--spacing-xl));
    padding-bottom: var(--spacing-3xl);
    min-height: 60vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
}

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

.hero-section h1 {
    color: var(--gray-900);
    margin-bottom: var(--spacing-lg);
}

.hero-section .lead {
    color: var(--gray-600);
    font-size: var(--font-size-lg);
    line-height: 1.6;
}

.hero-impact {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: var(--gradient-hero);
}

.hero-modern {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
    min-height: 95vh !important;
    position: relative !important;
    z-index: 1;
    background: linear-gradient(
        135deg,
        #fdfcf8 0%,          /* Çok açık krem */
        #f9f6f0 15%,         /* Açık krem */
        #f3ede3 30%,         /* Bej ton */
        #ede6d6 45%,         /* Orta bej */
        #e6dcc9 60%,         /* Daha koyu bej */
        #ddd1bb 75%,         /* Koyu bej */
        #d4c8ae 90%,         /* En koyu bej */
        #c8a865 100%         /* Primary altın */
    );
    overflow: hidden;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Modern particle background effect */
.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 15% 20%, rgba(200, 168, 101, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 85% 80%, rgba(200, 168, 101, 0.08) 0%, transparent 40%),
        radial-gradient(circle at 40% 60%, rgba(200, 168, 101, 0.05) 0%, transparent 30%);
    z-index: 1;
    pointer-events: none;
}

.hero-video-container {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-video-container video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay,
.hero-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(248, 249, 250, 0.6) 25%,
        rgba(200, 168, 101, 0.1) 50%,
        rgba(200, 168, 101, 0.2) 75%,
        rgba(200, 168, 101, 0.3) 100%
        /*
        
        rgba(231, 215, 178, 0.65) 0%,
        rgba(200, 168, 101, 0.25)  25%,
        rgba(200, 168, 101, 0.18) 50%,
        rgba(200, 168, 101, 0.12) 75%,
        rgba(200, 168, 101, 0.55) 100%
        */
    );
    z-index: 1;
    /*
    background: linear-gradient(135deg, rgb(227 226 225 / 65%), rgb(172 169 163 / 25%), rgba(200, 168, 101, 0.18), rgba(200, 168, 101, 0.12), rgb(197 193 182 / 55%));
    z-index: 2;

    background: linear-gradient(135deg, #142a47 0%, #94bcdf 20%, #bbd8ff 30%, #b3d0f7 40%, #CADDF6 50%, #98aecb 60%, #839bba 70%, #92a3b9 80%, #566f90 100%);
    
    background: linear-gradient(135deg, #142a47 0%, #94bcdf 20%, #abc3e3 30%, #b3d0f7 40%, #95b4dd 50%, #98aecb 60%, #839bba 70%, #5c779b 80%, #566f90 100%);

    */
}

.hero-content-container,
.hero-content {
    position: relative;
    z-index: 3;
    color: var(--gray-900);
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
}

.hero-story {
    color: var(--gray-800);
    max-width: 600px;
}

.impact-badge,
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    background: linear-gradient(135deg, #c8a865 0%, #b8965a 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 30px;
    font-size: var(--font-size-sm);
    font-weight: 600;
    margin-bottom: var(--spacing-lg);
    border: 2px solid rgba(200, 168, 101, 0.3);
    animation: fadeInUp 0.8s ease-out;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    box-shadow: 
        0 8px 25px rgba(200, 168, 101, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2),
        inset 0 -1px 0 rgba(0, 0, 0, 0.1);
    position: relative;
    transform: translateY(0);
    filter: drop-shadow(0 4px 12px rgba(200, 168, 101, 0.25));
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
}

.hero-badge:hover {
    transform: translateY(-2px) scale(1.05);
    box-shadow: 
        0 12px 35px rgba(200, 168, 101, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3),
        inset 0 -1px 0 rgba(0, 0, 0, 0.15);
    background: linear-gradient(135deg, #b8965a 0%, #a88650 100%);
}

.hero-badge::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #c8a865, #b8965a);
    border-radius: 32px;
    z-index: -1;
    opacity: 0.6;
}

.hero-badge::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border-radius: 28px;
    pointer-events: none;
}

.badge-icon {
    font-size: 1.2em;
}

.hero-headline,
.hero-title {
    font-family: var(--font-family-heading);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: var(--spacing-lg);
    text-shadow: 0 2px 6px rgba(255, 255, 255, 0.8);
    animation: fadeInUp 0.8s ease-out 0.2s both;
    color: #2d3748; /* Koyu gri renk daha okunabilir */
    letter-spacing: -0.02em;
}

.highlight-text,
.text-gradient {
    background: linear-gradient(135deg, #c8a865 0%, #b8965a 25%, #a88650 50%, #8c6725 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    font-weight: 800;
    text-shadow: none;
    filter: drop-shadow(1px 1px 3px rgba(200, 168, 101, 0.3));
    display: inline-block;
    transition: all 0.3s ease;
}

.highlight-text:hover,
.text-gradient:hover {
    transform: scale(1.02);
    filter: drop-shadow(2px 2px 6px rgba(200, 168, 101, 0.4));
}

.highlight-text::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, #c8a865 0%, #b8965a 50%, #a88650 100%);
    border-radius: 2px;
    opacity: 0.7;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.highlight-text:hover::after {
    transform: scaleX(1);
}

.hero-subtitle {
    font-size: 1.3rem;
    line-height: 1.6;
    margin-bottom: var(--spacing-xl);
    opacity: 0.9;
    animation: fadeInUp 0.8s ease-out 0.4s both;
    color: #2d3748; /* Daha koyu renk için okunabilirlik */
    text-shadow: 0 1px 3px rgba(255, 255, 255, 0.8);
    font-weight: 600; /* 400'den 600'e artırıldı */
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: var(--spacing-md);
    flex-wrap: wrap;
    margin-bottom: var(--spacing-xl);
    animation: fadeInUp 0.8s ease-out 0.6s both;
    justify-content: flex-start;
    align-items: center;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, #c8a865 0%, #b8965a 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-lg);
    transition: var(--transition-base);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(200, 168, 101, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(200, 168, 101, 0.3),
        0 0 0 1px rgba(200, 168, 101, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-hero-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero-primary:hover::before {
    left: 100%;
}

.btn-hero-primary:hover {
    background: linear-gradient(135deg, #b8965a 0%, #a88650 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 15px 35px rgba(200, 168, 101, 0.4),
        0 0 0 1px rgba(200, 168, 101, 0.3),
        0 0 20px rgba(200, 168, 101, 0.2);
    color: var(--white);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-sm);
    padding: var(--spacing-md) var(--spacing-xl);
    background: linear-gradient(135deg, #b8965a 0%, #a88650 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: var(--font-size-lg);
    transition: var(--transition-base);
    backdrop-filter: blur(15px);
    border: 2px solid rgba(184, 150, 90, 0.3);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 25px rgba(184, 150, 90, 0.3),
        0 0 0 1px rgba(184, 150, 90, 0.2);
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.btn-hero-secondary:hover {
    background: linear-gradient(135deg, #a88650 0%, #8c6725 100%);
    transform: translateY(-2px);
    box-shadow: 
        0 15px 35px rgba(184, 150, 90, 0.4),
        0 0 0 1px rgba(184, 150, 90, 0.3),
        0 0 20px rgba(184, 150, 90, 0.2);
    color: var(--white);
}

.btn-hero-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn-hero-secondary:hover::before {
    left: 100%;
}

.hero-quick-stats,
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: var(--spacing-lg);
    animation: fadeInUp 0.8s ease-out 0.8s both;
    margin-top: var(--spacing-md);
}

.quick-stat,
.stat-item {
    text-align: center;
    color: #4a5568;
    padding: var(--spacing-sm);
}

.quick-stat .stat-number,
.stat-item .stat-number {
    display: block;
    font-size: var(--font-size-3xl);
    font-weight: 800;
    margin-bottom: var(--spacing-xs);
    color: #2d3748;
    font-family: var(--font-family-heading);
    letter-spacing: -0.02em;
    text-shadow: 0 1px 3px rgba(200, 168, 101, 0.3);
}

.quick-stat .stat-label,
.stat-item .stat-label {
    font-size: var(--font-size-sm);
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    color: #2d3748;
    margin-top: 4px;
}

/* Hero Visual Elements */
.hero-visual,
.hero-image {
    position: relative;
    max-width: 550px;
    margin-left: auto;
    animation: fadeInRight 1s ease-out 0.3s both;
    padding: var(--spacing-md);
}

/* Hero image enhancement for better integration */
.hero-image {
    filter: contrast(1.05) saturate(1.1) brightness(1.02);
    transition: filter 0.3s ease;
}

.impact-card,
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(25px);
    padding: var(--spacing-md) var(--spacing-lg);
    border-radius: var(--radius-xl);
    box-shadow: 
        0 10px 30px rgba(200, 168, 101, 0.15),
        0 0 0 1px rgba(200, 168, 101, 0.1),
        0 0 15px rgba(200, 168, 101, 0.05);
    min-width: 180px;
    animation: float 6s ease-in-out infinite;
    border: 1px solid rgba(200, 168, 101, 0.2);
    z-index: 5;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    max-width: 220px;
}

.floating-card:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 
        0 20px 40px rgba(200, 168, 101, 0.2),
        0 0 0 1px rgba(200, 168, 101, 0.2),
        0 0 25px rgba(200, 168, 101, 0.1);
    background: rgba(255, 255, 255, 0.98);
}

.floating-card.card-1,
.impact-card.card-primary {
    top: 5%;
    right: -5px;
    animation-delay: 0s;
    opacity: 0.85;
    z-index: 10;
}

.floating-card.card-2,
.impact-card.card-secondary {
    bottom: 40%;
    left: -10px;
    animation-delay: 2s;
    opacity: 0.85;
    z-index: 10;
}

.floating-card.card-3,
.impact-card.card-tertiary {
    top: 60%;
    right: -20px;
    animation-delay: 4s;
    opacity: 0.85;
    z-index: 10;
    animation-delay: 4s;
}

.card-header {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
}

.card-icon {
    font-size: 1.8rem;
    opacity: 0.9;
}

.card-title {
    font-weight: 500;
    color: var(--gray-700);
    font-size: var(--font-size-sm);
    margin: 0;
}

.card-stat {
    font-size: var(--font-size-2xl);
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: var(--spacing-xs);
    line-height: 1.2;
}

.card-desc {
    font-size: var(--font-size-xs);
    color: var(--gray-600);
    line-height: 1.4;
}

/* Enhanced floating card content styles */
.floating-card span {
    display: block;
    font-size: var(--font-size-sm);
    color: var(--gray-600);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

.floating-card strong {
    display: block;
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: var(--primary-color);
    margin-top: var(--spacing-xs);
}

.floating-card i {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-sm);
    opacity: 0.8;
    color: var(--primary-color);
}

/* Hero Image Container and Enhancement */
.hero-image-container {
    position: relative;
    display: block;
    max-width: 120%;
    margin: 0 auto;
    filter: contrast(1.05) saturate(1.1) brightness(1.02);
    transition: all 0.3s ease;
    transform: scale(1.05);
}

.hero-image-container:hover {
    filter: contrast(1.1) saturate(1.15) brightness(1.05);
    transform: scale(1.08);
}

.hero-image-main,
.hero-main-image {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 
        0 20px 40px rgba(200, 168, 101, 0.2),
        0 0 0 1px rgba(200, 168, 101, 0.1),
        0 0 20px rgba(200, 168, 101, 0.05);
    transform: perspective(800px) rotateY(-3deg) rotateX(2deg);
    transition: var(--transition-slow);
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background: linear-gradient(45deg, var(--gray-100), var(--gray-200));
    opacity: 0.9;
    z-index: 1;
}

.hero-image-container:hover .hero-main-image {
    transform: perspective(800px) rotateY(-1deg) rotateX(1deg);
    box-shadow: 
        0 25px 50px rgba(200, 168, 101, 0.25),
        0 0 0 1px rgba(200, 168, 101, 0.15),
        0 0 30px rgba(200, 168, 101, 0.1);
}

.hero-image-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        135deg, 
        rgba(200, 168, 101, 0.05) 0%, 
        rgba(200, 168, 101, 0.02) 100%
    );
    border-radius: var(--radius-2xl);
    z-index: 1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.hero-image-container:hover::before {
    opacity: 1;
}

.hero-img {
    width: 100%;
    height: auto;
    display: block;
}

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

.play-button {
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: var(--radius-full);
    padding: var(--spacing-lg);
    cursor: pointer;
    transition: var(--transition-base);
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-sm);
}

.play-button:hover {
    background: var(--white);
    transform: scale(1.1);
}

.play-icon {
    font-size: var(--font-size-2xl);
    color: var(--primary-color);
}

.play-text {
    font-weight: 600;
    color: var(--gray-800);
    font-size: var(--font-size-sm);
}

.scroll-indicator,
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--spacing-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 4;
    color: var(--white);
    text-align: center;
    animation: bounce 2s infinite;
    cursor: pointer;
    text-shadow: 0 2px 8px rgba(13, 13, 13, 0.7);
    backdrop-filter: blur(10px);
    background: rgba(78, 166, 116, 0.1);
    padding: var(--spacing-sm) var(--spacing-md);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.hero-scroll-indicator:hover {
    background: rgba(78, 166, 116, 0.2);
    transform: translateX(-50%) translateY(-2px);
    box-shadow: 0 8px 25px rgba(13, 13, 13, 0.3);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-scroll-indicator:active {
    transform: translateX(-50%) translateY(0);
    background: rgba(78, 166, 116, 0.3);
}

.hero-scroll-indicator:focus {
    outline: 2px solid rgba(255, 255, 255, 0.5);
    outline-offset: 2px;
}

.scroll-text,
.hero-scroll-indicator span {
    display: block;
    font-size: var(--font-size-sm);
    margin-bottom: var(--spacing-sm);
    opacity: 0.9;
    font-weight: 500;
}

.scroll-arrow,
.hero-scroll-indicator i {
    font-size: var(--font-size-xl);
    opacity: 0.9;
    filter: drop-shadow(0 2px 4px rgba(13, 13, 13, 0.3));
    transition: transform 0.3s ease;
}

.hero-scroll-indicator:hover i {
    transform: translateY(2px);
    animation: bounce 1s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-5px);
    }
    60% {
        transform: translateY(-3px);
    }
}

/* Enhanced bounce animation for hover state */
@keyframes bounceHover {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

/* ========================================
   IMPACT STATISTICS SECTION
   ======================================== */

.impact-stats-section,
.stats-section {
    padding: var(--spacing-3xl) 0;
    background: var(--gray-50);
    position: relative;
}

.stats-section.stats-bg-overlay {
    background: var(--gray-900);
    color: var(--white);
}

.stats-section .stats-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-overlay);
    z-index: 1;
}

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

.impact-stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(78, 166, 116, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(16, 185, 129, 0.05) 0%, transparent 50%);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: var(--spacing-xl);
    margin-top: var(--spacing-2xl);
}

.modern-stat,
.stat-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-lg);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--gray-100);
    position: relative;
    overflow: hidden;
}

.stats-section.stats-bg-overlay .stat-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.modern-stat::before,
.stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
}

.modern-stat:hover,
.stat-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.stat-visual {
    position: relative;
    margin-bottom: var(--spacing-lg);
}

.stat-icon {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-md);
    filter: grayscale(0.3);
}

.stats-section.stats-bg-overlay .stat-icon {
    color: rgba(255, 255, 255, 0.8);
}

.circular-chart {
    width: 100px;
    height: 100px;
    margin: 0 auto;
}

.circle-bg {
    fill: none;
    stroke: var(--gray-200);
    stroke-width: 3;
}

.circle {
    fill: none;
    stroke: var(--primary-color);
    stroke-width: 3;
    stroke-linecap: round;
    animation: progressAnimation 2s ease-in-out;
}

@keyframes progressAnimation {
    0% {
        stroke-dasharray: 0, 100;
    }
}

.stat-content .stat-number {
    font-size: var(--font-size-4xl);
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: var(--spacing-sm);
    display: block;
}

.stats-section.stats-bg-overlay .stat-content .stat-number {
    color: var(--white);
}

.stat-content .stat-label {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    margin-bottom: var(--spacing-sm);
    font-weight: 500;
}

.stats-section.stats-bg-overlay .stat-content .stat-label {
    color: rgba(255, 255, 255, 0.8);
}

.stat-unit {
    font-size: var(--font-size-lg);
    color: var(--primary-color);
    font-weight: 600;
}

.stats-section.stats-bg-overlay .stat-unit {
    color: var(--accent-color);
}

.stat-trend {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-xs);
    margin-top: var(--spacing-sm);
    color: var(--success-color);
    font-size: var(--font-size-sm);
    font-weight: 500;
}

/* ========================================
   SECTION SHARED STYLES
   ======================================== */

.section-header {
    margin-bottom: var(--spacing-2xl);
}

.section-label,
.section-badge {
    display: inline-block;
    background: rgba(78, 166, 116, 0.1);
    color: var(--primary-color);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-sm);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: var(--spacing-md);
}

.stats-section .section-badge {
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
}

.section-title {
    font-family: var(--font-family-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

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

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

.section-subtitle,
.section-description {
    font-size: var(--font-size-lg);
    color: var(--gray-600);
    line-height: 1.6;
    max-width: 600px;
    margin: 0 auto;
}

/* ========================================
   FEATURES SECTION
   ======================================== */

.features-section {
    padding: var(--spacing-3xl) 0;
    background: var(--white);
}

.feature-card {
    background: var(--white);
    padding: var(--spacing-xl);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-base);
    border: 1px solid var(--gray-200);
    height: 100%;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(78, 166, 116, 0.1);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-size-3xl);
    color: var(--primary-color);
    margin: 0 auto var(--spacing-lg);
}

.feature-title {
    font-size: var(--font-size-xl);
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
}

.feature-description {
    color: var(--gray-600);
    line-height: 1.6;
}

/* ========================================
   PROJECTS SECTION
   ======================================== */

.projects-section-modern,
.projects-section {
    padding: var(--spacing-3xl) 0;
    position: relative;
}

.projects-section.bg-light {
    background: linear-gradient(135deg, 
        rgba(248, 250, 252, 1) 0%, 
        rgba(241, 245, 249, 1) 50%, 
        rgba(248, 250, 252, 1) 100%);
}

.projects-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(78,166,116,0.03)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.projects-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: var(--spacing-2xl);
    margin-top: var(--spacing-2xl);
    position: relative;
    z-index: 1;
}

.project-card-modern,
.project-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: 
        0 10px 30px rgba(0, 0, 0, 0.08),
        0 4px 20px rgba(78, 166, 116, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(78, 166, 116, 0.1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
    backdrop-filter: blur(10px);
    transform: translateY(20px);
    opacity: 0;
    animation: slideInUp 0.8s ease-out forwards;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(78, 166, 116, 0.05) 0%, 
        rgba(211, 217, 43, 0.05) 50%, 
        rgba(78, 166, 116, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: inherit;
    z-index: 0;
}

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

.project-card > * {
    position: relative;
    z-index: 1;
}

.project-card:nth-child(1) { animation-delay: 0.1s; }
.project-card:nth-child(2) { animation-delay: 0.2s; }
.project-card:nth-child(3) { animation-delay: 0.3s; }

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

.project-card-modern:hover,
.project-card:hover {
    transform: translateY(-16px) scale(1.02);
    box-shadow: 
        0 25px 50px rgba(0, 0, 0, 0.15),
        0 10px 40px rgba(78, 166, 116, 0.2),
        0 0 0 1px rgba(78, 166, 116, 0.3);
    border-color: rgba(78, 166, 116, 0.3);
}

.project-image-container,
.project-image {
    position: relative;
    height: 260px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(78, 166, 116, 0.1), rgba(211, 217, 43, 0.1));
}

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

.project-card-modern:hover .project-image img,
.project-card:hover .project-image img {
    transform: scale(1.15);
    filter: brightness(1.1) contrast(1.15) saturate(1.1);
}

.project-category {
    position: absolute;
    top: var(--spacing-md);
    left: var(--spacing-md);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(15px);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: var(--spacing-xs);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

/* Enhanced Project Category Badge Styling */
.project-card .project-category.badge {
    position: static;
    background: rgba(200, 168, 101, 0.1) !important;
    color: #c8a865 !important;
    border: 1px solid rgba(200, 168, 101, 0.2);
    font-size: var(--font-size-xs);
    font-weight: 700;
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.project-card:hover .project-category.badge {
    background: #c8a865 !important;
    color: var(--white) !important;
    border-color: #c8a865;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(200, 168, 101, 0.3);
}

/* Override Bootstrap badge colors for project categories */
.project-card .badge.bg-primary {
    background: rgba(200, 168, 101, 0.1) !important;
    color: #c8a865 !important;
    border: 1px solid rgba(200, 168, 101, 0.2);
}

.project-card:hover .badge.bg-primary {
    background: #c8a865 !important;
    color: var(--white) !important;
}

.project-card .badge.bg-success {
    background: rgba(200, 168, 101, 0.1) !important;
    color: #c8a865 !important;
    border: 1px solid rgba(200, 168, 101, 0.2);
}

.project-card:hover .badge.bg-success {
    background: #c8a865 !important;
    color: var(--white) !important;
}

/* Proje sayfası butonları için de aynı renk */
.btn-success {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-success:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline-success {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-success:hover {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
    color: #ffffff;
}

/* Proje kartlarındaki butonları about sayfası renkleriyle uyumlu yap */
.btn-primary {
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-primary:focus,
.btn-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(78, 166, 116, 0.5);
}

.btn-primary:not(:disabled):not(.disabled):active,
.btn-primary:not(:disabled):not(.disabled).active {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

/* Detaylar butonları için outline stil */
.btn-outline-primary {
    color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:hover {
    color: #fff;
    background-color: var(--primary-color);
    border-color: var(--primary-color);
}

.btn-outline-primary:focus,
.btn-outline-primary.focus {
    box-shadow: 0 0 0 0.2rem rgba(78, 166, 116, 0.5);
}

/* ========================================
   RESPONSIVE IMPROVEMENTS
   ======================================== */

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .about-image-container {
        margin-bottom: var(--spacing-xl);
    }
    
    .news-image {
        height: 200px;
    }
    
    .project-content,
    .news-content {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .news-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
}

/* Hero section responsive improvements for tablets */
@media (max-width: 768px) and (min-width: 577px) {
    .hero-modern {
        min-height: 85vh !important;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 6vw, 3.5rem);
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
        text-align: center;
        font-weight: 600;
        color: #2d3748;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .floating-card {
        padding: var(--spacing-sm) var(--spacing-md);
        max-width: 180px;
        min-width: 150px;
    }
    
    .floating-card i {
        font-size: 1.2rem;
    }
    
    .floating-card strong {
        font-size: var(--font-size-lg);
    }
}

/* ========================================
   ABOUT PREVIEW SECTION
   ======================================== */

.about-preview {
    background: var(--white);
    position: relative;
}

.about-preview::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, 
        rgba(78, 166, 116, 0.02) 0%, 
        rgba(248, 250, 252, 1) 50%, 
        rgba(78, 166, 116, 0.02) 100%);
    pointer-events: none;
}

.about-image-container {
    position: relative;
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    transition: var(--transition-base);
}

.about-image-container:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-2xl);
}

.about-image {
    width: 100%;
    height: auto;
    display: block;
    transition: var(--transition-base);
}

.about-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(78, 166, 116, 0.8);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition-base);
    color: var(--white);
}

.about-image-container:hover .about-overlay {
    opacity: 1;
}

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

.about-features {
    margin: var(--spacing-xl) 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: var(--spacing-sm);
    margin-bottom: var(--spacing-md);
    color: var(--gray-700);
}

.about-feature i {
    color: var(--primary-color);
    font-size: var(--font-size-lg);
}

/* === Hero Section & About Preview Section Spacing Optimization === */
.hero-modern {
    margin-bottom: 0px !important;
    padding-bottom: 0px !important;
    min-height: 92vh !important;
    position: relative !important;
    z-index: 1;
}

.about-preview {
    margin-top: -20px !important;
    padding-top: 40px !important;
    padding-bottom: 40px !important;
    position: relative;
    z-index: 5;
    scroll-margin-top: 60px;
    background-color: var(--white) !important;
    border-top-left-radius: 20px !important;
    border-top-right-radius: 20px !important;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05) !important;
}

/* About preview container'ının üst padding'ini ayarla */
.about-preview .container {
    padding-top: 10px !important;
}

/* About preview row'unun üst margin'ini ayarla */
.about-preview .row {
    margin-top: 10px !important;
}

/* Responsive ayarlamalar */
@media (max-width: 991px) {
  .hero-modern {
    min-height: 90vh !important;
    padding-bottom: 0px !important;
  }
  
  .about-preview {
    margin-top: -15px !important;
  }
}

@media (max-width: 767px) {
  .hero-modern {
    min-height: 85vh !important;
    padding-bottom: 0px !important;
  }
  
  .about-preview {
    margin-top: -10px !important;
  }
}

@media (max-width: 480px) {
  .hero-modern {
    min-height: 80vh !important;
  }
  
  .about-preview {
    margin-top: -5px !important;
  }
}

/* ========================================
   NEWS SECTION STYLES
   ======================================== */

.news-section {
    background: linear-gradient(135deg, 
        var(--gray-50) 0%, 
        var(--white) 50%, 
        var(--gray-50) 100%);
    position: relative;
}

.news-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1.5" fill="rgba(78,166,116,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.news-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--gray-100);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(78, 166, 116, 0.2);
}

.news-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-base);
}

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

.news-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(13, 13, 13, 0.3) 0%, 
        transparent 50%, 
        rgba(78, 166, 116, 0.2) 100%);
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: var(--spacing-md);
}

.news-category {
    background: rgba(78, 166, 116, 0.9);
    color: var(--white);
    padding: var(--spacing-xs) var(--spacing-md);
    border-radius: var(--radius-full);
    font-size: var(--font-size-xs);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-date {
    background: rgba(255, 255, 255, 0.9);
    color: var(--gray-700);
    padding: var(--spacing-xs) var(--spacing-sm);
    border-radius: var(--radius-lg);
    font-size: var(--font-size-xs);
    font-weight: 500;
}

.news-content {
    padding: var(--spacing-xl);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-title {
    margin-bottom: var(--spacing-md);
    line-height: 1.3;
}

.news-title a {
    color: var(--gray-900);
    font-size: var(--font-size-xl);
    font-weight: 600;
    transition: var(--transition-base);
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: var(--spacing-lg);
    flex: 1;
}

.news-footer {
    margin-top: auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-100);
}

/* ========================================
   ENHANCED HERO SECTION CONSISTENCY
   ======================================== */

.hero-modern {
    background: linear-gradient(135deg, 
        #c9c4bc 0%,    /* En koyu (sol üst) */
        #dad6d0 25%,   /* Koyu altın */
        #ddd9d2 50%,   /* Orta altın */
        #b39d75 75%,   /* Açık altın */ 
        #8a7d66 100%   /* En açık bej (sağ alt) */        
    );    
    position: relative;
}

.hero-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="heroPattern" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23heroPattern)"/></svg>');
    opacity: 0.3;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
}

/* ========================================
   IMPROVED PROJECT CARDS
   ======================================== */

.project-card {
    background: var(--white);
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-md);
    transition: var(--transition-base);
    border: 1px solid var(--gray-100);
    height: 100%;
    overflow: hidden;
    position: relative;
}

.project-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #c8a865 0%, #b8965a 100%);
    transform: scaleX(0);
    transition: var(--transition-base);
}

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

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: rgba(78, 166, 116, 0.2);
}

.project-content {
    padding: var(--spacing-xl);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.project-card .project-category {
    background: rgba(200, 168, 101, 0.1) !important;
    color: #c8a865 !important;
    border: 1px solid rgba(200, 168, 101, 0.2);
    transition: var(--transition-base);
}

.project-card:hover .project-category {
    background: #c8a865 !important;
    color: var(--white) !important;
    border-color: #c8a865;
}

.project-card h3 {
    color: var(--gray-900);
    margin-bottom: var(--spacing-md);
    font-size: var(--font-size-xl);
    font-weight: 600;
    transition: var(--transition-base);
}

.project-card:hover h3 {
    color: #c8a865 !important;
}

.project-card p {
    color: var(--gray-600);
    line-height: 1.6;
    flex: 1;
    margin-bottom: var(--spacing-lg);
}

.project-footer {
    margin-top: auto;
    padding-top: var(--spacing-md);
    border-top: 1px solid var(--gray-100);
}

/* Proje sayfası detaylar butonları için özel renkler */
.project-footer .btn-primary {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

.project-footer .btn-primary:hover {
    background-color: #5a6268 !important;
    border-color: #545b62 !important;
}

/* Proje kartlarındaki tüm butonlar için */
.project-card .btn-primary {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

.project-card .btn-primary:hover {
    background-color: #5a6268 !important;
    border-color: #545b62 !important;
}

/* "Detayları Gör" butonları */
a[href*="projects"].btn-primary,
.btn-primary[href*="projects"] {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

a[href*="projects"].btn-primary:hover,
.btn-primary[href*="projects"]:hover {
    background-color: #5a6268 !important;
    border-color: #545b62 !important;
}

/* FAQ sayfasındaki detaylar butonları */
.popular-topic .btn-outline-primary {
    border-color: #6c757d !important;
    color: #6c757d !important;
}

.popular-topic .btn-outline-primary:hover {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
}

/* Bağış sayfasındaki butonlar */
.donation-amount-btn.btn-outline-primary {
    border-color: #6c757d !important;
    color: #6c757d !important;
}

.donation-amount-btn.btn-outline-primary:hover,
.donation-amount-btn.btn-outline-primary:focus {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
}

/* IBAN kopyalama butonları */
.btn-outline-primary[onclick*="copyToClipboard"] {
    border-color: #6c757d !important;
    color: #6c757d !important;
}

.btn-outline-primary[onclick*="copyToClipboard"]:hover {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
}

/* Admin panel proje butonları */
.btn-outline-primary[title="Düzenle"] {
    border-color: #6c757d !important;
    color: #6c757d !important;
}

.btn-outline-primary[title="Düzenle"]:hover {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
    color: #ffffff !important;
}

/* Genel proje detay butonları */
.project-section .btn-primary,
.projects-section .btn-primary {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

.project-section .btn-primary:hover,
.projects-section .btn-primary:hover {
    background-color: #5a6268 !important;
    border-color: #545b62 !important;
}

/* İstatistik renkleriyle uyumlu gradient */
.stat-number-consistent {
    color: #6c757d !important;
    font-weight: 700;
}

.stat-label-muted {
    color: #6c757d !important;
    opacity: 0.8;
}

/* Proje kartı kategori badgeleri */
.project-card .badge.bg-success {
    background-color: #6c757d !important;
}

.project-card:hover .badge.bg-success {
    background-color: #5a6268 !important;
}

/* Proje progress barları */
.project-card .progress-bar {
    background-color: #6c757d !important;
}

/* Modal butonları da uyumlu yap */
.modal .btn-primary {
    background-color: #6c757d !important;
    border-color: #6c757d !important;
}

.modal .btn-primary:hover {
    background-color: #5a6268 !important;
    border-color: #545b62 !important;
}

/* ========================================
   RESPONSIVE IMPROVEMENTS
   ======================================== */

@media (max-width: 768px) {
    .hero-actions {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-actions .btn {
        width: 100%;
    }
    
    .about-image-container {
        margin-bottom: var(--spacing-xl);
    }
    
    .news-image {
        height: 200px;
    }
    
    .project-content,
    .news-content {
        padding: var(--spacing-lg);
    }
}

@media (max-width: 576px) {
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: var(--spacing-md);
        text-align: center;
    }
    
    .floating-card {
        display: none;
    }
    
    .news-overlay {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--spacing-xs);
    }
}

/* =================================== */
/* 10. Hero Section Responsive Styling */
/* =================================== */

/* Base Hero Modern Styling */
.hero-modern {
    padding: 0 !important;
    min-height: 100vh !important;
    display: flex;
    align-items: center;
    overflow-x: hidden;
}

.hero-modern .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

.hero-modern .row {
    margin: 0;
    width: 100%;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-modern .col-lg-6 {
    padding: 20px 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Hero Content Styling */
.hero-content {
    max-width: 100%;
    z-index: 3;
}

.hero-title {
    font-size: clamp(2.2rem, 5vw, 4.5rem);
    line-height: 1.1;
    margin-bottom: 1.5rem;
    font-weight: 700;
    color: #2d3748;
}

.hero-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #2d3748;
    max-width: 90%;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-actions .btn {
    padding: 12px 24px;
    font-size: 1rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-top: 1rem;
}

.stat-item {
    text-align: center;
    padding: 0.5rem;
}

.stat-number {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
    font-weight: 800;
    color: #2d3748;
    display: block;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    color: #2d3748;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Hero Image Base Styling */
.hero-image {
    position: relative;
    width: 100%;
    max-width: 550px;
    margin: 0 auto;
    z-index: 2;
}

.hero-main-image {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
    object-fit: cover;
    display: block;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 1rem 1.25rem;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(200, 168, 101, 0.15);
    min-width: 160px;
    max-width: 200px;
    z-index: 5;
    font-size: 0.875rem;
    transition: all 0.3s ease;
}

.floating-card:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 15px 35px rgba(200, 168, 101, 0.2);
}

.floating-card.card-1 {
    top: 5%;
    right: -5px;
}

.floating-card.card-2 {
    bottom: 40%;
    left: -10px;
}

.floating-card.card-3 {
    top: 60%;
    right: -20px;
}

.floating-card .card-label {
    display: block;
    font-size: 0.75rem;
    color: #666;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.floating-card .card-value {
    display: block;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--primary-color);
}

.floating-card i {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

/* RESPONSIVE BREAKPOINTS */

/* Extra Large Screens (1400px+) */
@media (min-width: 1400px) {
    .hero-modern .container {
        max-width: 1320px;
    }
    
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

/* Large Screens (1200px - 1399px) */
@media (max-width: 1399px) and (min-width: 1200px) {
    .hero-image {
        max-width: 500px;
    }
    
    .floating-card {
        min-width: 140px;
        max-width: 180px;
        padding: 0.875rem 1rem;
    }
}

/* Medium Large Screens (992px - 1199px) */
@media (max-width: 1199px) and (min-width: 992px) {
    .hero-image {
        max-width: 450px;
    }
    
    .hero-title {
        font-size: clamp(2.5rem, 4.5vw, 3.5rem);
    }
    
    .floating-card {
        min-width: 130px;
        max-width: 160px;
        padding: 0.75rem 0.875rem;
        font-size: 0.8rem;
    }
    
    .floating-card .card-value {
        font-size: 1rem;
    }
}

/* Tablet Portrait and Below (991px and below) */
@media (max-width: 991px) {
    .hero-modern {
        min-height: auto !important;
        padding: 60px 0 !important;
    }
    
    .hero-modern .row {
        min-height: auto;
        flex-direction: column;
        text-align: center;
    }
    
    .hero-modern .col-lg-6 {
        width: 100%;
        max-width: 100%;
        padding: 20px 0;
    }
    
    .hero-content {
        order: 1;
        margin-bottom: 40px;
        text-align: center;
    }
    
    .hero-image {
        order: 2;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .hero-actions {
        justify-content: center;
        flex-direction: row;
        gap: 0.75rem;
    }
    
    .hero-stats {
        justify-content: center;
        max-width: 400px;
        margin: 1.5rem auto 0;
    }
    
    .floating-card {
        display: none; /* Hide floating cards on tablet and below */
    }
}

/* Mobile Landscape (768px - 991px) */
@media (max-width: 991px) and (min-width: 768px) {
    .hero-modern {
        padding: 80px 0 60px !important;
    }
    
    .hero-content {
        margin-bottom: 50px;
    }
    
    .hero-image {
        max-width: 450px;
    }
    
    .hero-actions .btn {
        padding: 14px 28px;
        font-size: 1rem;
    }
}

/* Mobile Portrait (576px - 767px) */
@media (max-width: 767px) {
    .hero-modern {
        padding: 60px 0 40px !important;
    }
    
    .hero-modern .container {
        padding: 0 20px;
    }
    
    .hero-title {
        font-size: clamp(2rem, 6vw, 2.8rem);
        margin-bottom: 1rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.9rem, 3vw, 1.1rem);
        margin-bottom: 1.5rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        gap: 0.75rem;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 20px;
        font-size: 0.95rem;
        text-align: center;
        justify-content: center;
    }
    
    .hero-image {
        max-width: 320px;
    }
    
    .hero-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.75rem;
        margin-top: 2rem;
    }
    
    .stat-number {
        font-size: clamp(1.25rem, 4vw, 1.75rem);
    }
    
    .stat-label {
        font-size: 0.75rem;
    }
}

/* Small Mobile (480px - 575px) */
@media (max-width: 575px) {
    .hero-modern {
        padding: 40px 0 30px !important;
    }
    
    .hero-modern .container {
        padding: 0 15px;
    }
    
    .hero-content {
        margin-bottom: 30px;
    }
    
    .hero-title {
        font-size: clamp(1.75rem, 7vw, 2.5rem);
        line-height: 1.2;
        margin-bottom: 0.875rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.875rem, 3.5vw, 1rem);
        margin-bottom: 1.25rem;
        line-height: 1.5;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 260px;
        padding: 11px 18px;
        font-size: 0.9rem;
    }
    
    .hero-image {
        max-width: 280px;
    }
    
    .hero-stats {
        gap: 0.5rem;
    }
    
    .stat-item {
        padding: 0.25rem;
    }
    
    .stat-number {
        font-size: clamp(1.125rem, 4.5vw, 1.5rem);
        margin-bottom: 0.125rem;
    }
    
    .stat-label {
        font-size: 0.7rem;
        letter-spacing: 0.5px;
    }
}

/* Extra Small Mobile (below 480px) */
@media (max-width: 479px) {
    .hero-modern {
        padding: 30px 0 25px !important;
    }
    
    .hero-content {
        margin-bottom: 25px;
    }
    
    .hero-title {
        font-size: clamp(1.5rem, 8vw, 2.2rem);
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        font-size: clamp(0.8rem, 4vw, 0.95rem);
        margin-bottom: 1rem;
    }
    
    .hero-actions {
        gap: 0.5rem;
    }
    
    .hero-actions .btn {
        max-width: 240px;
        padding: 10px 16px;
        font-size: 0.85rem;
    }
    
    .hero-image {
        max-width: 250px;
    }
    
    .hero-stats {
        margin-top: 1.5rem;
        gap: 0.25rem;
    }
    
    .stat-number {
        font-size: clamp(1rem, 5vw, 1.375rem);
    }
    
    .stat-label {
        font-size: 0.65rem;
    }
}

/* ======================================
   Ultra-Professional Enhancements (Performance, A11y, UX)
   ====================================== */

/* Performance: Hinting browser about upcoming transformations */
.navbar-modern, .navbar-modern::before, #mobileMenu, .nav-link-modern::after, 
.logo-container, .floating-card, .project-card, .feature-card {
    will-change: transform, opacity, box-shadow, background-color, height, filter;
}

/* Accessibility: Focus outline for better visibility */
:focus-visible {
    outline: 3px solid #c8a865 !important;
    outline-offset: 3px;
    border-radius: 4px;
}

/* Accessibility: Respect user preference for reduced motion */
@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto !important;
    }
    *, *::before, *::after {
        animation-duration: 1ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 1ms !important;
        scroll-behavior: auto !important;
    }
}

/* Responsive & UX Enhancements */
:root {
    --navbar-height: 80px; /* Default height for desktop */
    --navbar-height-scrolled: 70px;
}

@media (max-width: 991.98px) {
    :root {
        --navbar-height: 70px; /* Height for tablet/mobile */
        --navbar-height-scrolled: 60px;
    }
}

body {
    /* Smoothly transition padding when navbar height changes */
    padding-top: var(--navbar-height);
    transition: padding-top 0.3s ease-in-out;
}

/* Skip to content link for accessibility */
.skip-link {
    position: absolute;
    top: -100px; /* Hide offscreen */
    left: 0;
    background: #c8a865;
    color: white;
    padding: 1rem;
    z-index: 99999;
    transition: top 0.3s ease-in-out;
    text-decoration: none;
    font-weight: 600;
}

.skip-link:focus {
    top: 0;
}

/* Mobile Menu Animation Enhancement */
#mobileMenu {
    transition: transform 0.4s cubic-bezier(0.23, 1, 0.32, 1);
}

/* Low performance mode adjustments */
.low-performance-mode .parallax-element {
    transform: none !important;
    transition: none !important;
}

.low-performance-mode .animate-fadeInUp,
.low-performance-mode .floating-card,
.low-performance-mode .project-card {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

@media (max-width: 991px) {
  .hero-modern {
    padding-bottom: 60px !important;
  }
  
  .about-preview {
    margin-top: 0 !important;
  }
  
  .hero-scroll-indicator {
    bottom: 100px !important; /* Mobil görünümde daha yukarıda */
  }
}

@media (max-width: 767px) {
  .hero-modern {
    padding-bottom: 50px !important;
  }
  
  .about-preview {
    margin-top: 0 !important;
  }
  
  .hero-scroll-indicator {
    bottom: 120px !important; /* Daha küçük ekranlarda daha da yukarıda */
    padding: 6px 12px !important; /* Daha küçük buton */
  }
  
  .hero-scroll-indicator span {
    font-size: 0.8rem !important;
  }
}

/* Görünürlük sınıfı ve hover efektini kaldır */
.hero-scroll-indicator.visible,
.hero-scroll-indicator:hover {
    display: none !important;
}

.about-preview {
    margin-top: -20px !important; /* Negatif margin ile üste doğru çıkar */
    padding-top: 40px !important; /* Üst padding'i artır */
    padding-bottom: 40px !important;
    position: relative;
    z-index: 5;
    scroll-margin-top: 60px;
    background-color: var(--white) !important; /* Arka plan rengini belirle */
    border-top-left-radius: 20px !important; /* Üst köşeleri yuvarla */
    border-top-right-radius: 20px !important;
    box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.05) !important; /* Üstte hafif gölge */
}

/* ======================================
   ULTRA RESPONSIVE FOOTER - Modern 2025
   ======================================== */

.footer-responsive-professional {
    background: linear-gradient(135deg, #1B57A6 0%, #1B65A6 50%, #0D0D0D 100%);
    color: #ffffff;
    position: relative;
    overflow: hidden;
    margin-top: 0;
}

.footer-responsive-professional::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D9B471, transparent);
}

/* Main Content Area */
.footer-main-content {
    padding: 4rem 0 2rem 0;
    background: rgba(13, 13, 13, 0.2);
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 2;
}

/* Brand Section */
.footer-brand-col {
    margin-bottom: 2.5rem;
}

.footer-brand-section {
    text-align: center;
}

.footer-logo-container {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    background: linear-gradient(330deg, #F9F4EA 0%, #d9ccb5 100%);
    padding: 10px;
    box-shadow: 0 6px 20px rgba(217, 180, 113, 0.4);
    border: 2px solid rgba(217, 180, 113, 0.3);
    object-fit: contain;
}

.footer-brand-info {
    text-align: center;
}

.footer-title {
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 0.25rem 0;
    line-height: 1.2;
    background: linear-gradient(135deg, #ffffff, #D9B471);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-tagline {
    color: #D9B471;
    font-size: 0.85rem;
    font-weight: 500;
    margin: 0;
    opacity: 0.9;
}

.footer-description {
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin: 1.5rem 0;
    font-size: 0.9rem;
    text-align: center;
    max-width: 90%;
    margin-left: auto;
    margin-right: auto;
}

/* Social Links */
.footer-social-links {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(217, 180, 113, 0.15), rgba(27, 87, 166, 0.15));
    border: 1.5px solid rgba(217, 180, 113, 0.3);
    border-radius: 12px;
    color: #D9B471;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.social-link-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 180, 113, 0.2), transparent);
    transition: left 0.6s;
}

.social-link-item:hover::before {
    left: 100%;
}

.social-link-item:hover {
    background: linear-gradient(135deg, #D9B471, #1B57A6);
    border-color: #D9B471;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 180, 113, 0.4);
}

/* Links Columns */
.footer-links-col {
    margin-bottom: 2rem;
}

.footer-links-wrapper {
    text-align: center;
}

.footer-section-title {
    color: #ffffff;
    font-family: 'Poppins', 'Inter', sans-serif;
    font-size: 1.15rem;
    font-weight: 600;
    margin: 0 0 1.5rem 0;
    line-height: 1.3;
    position: relative;
    padding-bottom: 0.5rem;
    display: inline-block;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #D9B471, #1B57A6);
    border-radius: 1px;
}

.footer-nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    /*align-items: flex-start;  *//* Sol hizalama için bu satırı kullanın */

}

.footer-nav-links li {
    margin-bottom: 0.7rem;
}

.footer-nav-links a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 0.4rem 1rem;
    position: relative;
    border-radius: 6px;
}

.footer-nav-links a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: #D9B471;
    transition: width 0.3s ease;
}

.footer-nav-links a:hover::before {
    width: 20px;
}

.footer-nav-links a:hover {
    color: #D9B471;
    padding-left: 1.5rem;
    background: rgba(217, 180, 113, 0.1);
}

.footer-nav-links a i {
    font-size: 0.85rem;
    width: 16px;
    opacity: 0.7;
    color: #D9B471;
}

/* Contact Section */
.footer-contact-col {
    margin-bottom: 2rem;
}

.footer-contact-wrapper {
    text-align: center;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: center;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.5rem 0;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
}

.contact-icon-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    background: linear-gradient(135deg, rgba(217, 180, 113, 0.15), rgba(27, 87, 166, 0.15));
    border: 1.5px solid rgba(217, 180, 113, 0.3);
    border-radius: 12px;
    color: #D9B471;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.contact-icon-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(217, 180, 113, 0.2), transparent);
    transition: left 0.6s;
}

.contact-icon-wrapper:hover::before {
    left: 100%;
}

.contact-icon-wrapper:hover {
    background: linear-gradient(135deg, #D9B471, #1B57A6);
    border-color: #D9B471;
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(217, 180, 113, 0.4);
}

.contact-text {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.contact-text span,
.contact-text a {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.6;
    text-decoration: none;
    display: block;
    word-wrap: break-word;
}

.contact-text a {
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: #D9B471;
}

/* Footer Bottom */
.footer-bottom-section {
    background: linear-gradient(135deg, #0D0D0D, #1B57A6);
    border-top: 1px solid rgba(217, 180, 113, 0.2);
    padding: 1.5rem 0;
    position: relative;
}

.footer-bottom-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #D9B471, transparent);
}

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

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

.footer-legal-links {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.legal-link {
    color: rgba(217, 180, 113, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    position: relative;
}

.legal-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #D9B471;
    transition: width 0.3s ease;
}

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

.legal-link:hover {
    color: #D9B471;
}

/* ======================================
   ULTRA RESPONSIVE BREAKPOINTS
   ======================================== */

/* Large Desktop (1200px+) - 4-column perfect layout */
@media (min-width: 1200px) {
    .footer-brand-col {
        text-align: left;
    }
    
    .footer-logo-container {
        flex-direction: row;
        justify-content: flex-start;
    }
    
    .footer-brand-info {
        text-align: left;
    }
    
    .footer-description {
        text-align: left;
        margin-left: 0;
    }
    
    .footer-social-links {
        justify-content: flex-start;
    }
    
    .footer-links-wrapper {
        text-align: left;
    }
    
    .footer-nav-links {
        align-items: flex-start;
    }
    
    .footer-section-title::after {
        left: 0;
        transform: none;
    }
    
    .footer-contact-wrapper {
        text-align: left;
    }
    
    .contact-info-list {
        align-items: flex-start;
    }
    
    .contact-info-item {
        justify-content: flex-start;
    }
}

/* Tablet Portrait (768px - 1199px) - 2x2 grid */
@media (min-width: 768px) and (max-width: 1199px) {
    .footer-main-content {
        padding: 3.5rem 0 2rem 0;
    }
    
    .footer-brand-col {
        margin-bottom: 2rem;
    }
    
    .footer-links-col {
        margin-bottom: 2rem;
    }
    
    .footer-contact-col {
        margin-top: 1rem;
    }
    
    .contact-info-item {
        justify-content: center;
        text-align: center;
    }
    
    .contact-text {
        text-align: center;
    }
    
    .footer-bottom-content {
        justify-content: center;
        text-align: center;
        flex-direction: column;
    }
}

/* Mobile Landscape & Small Tablet (576px - 767px) */
@media (min-width: 576px) and (max-width: 767px) {
    .footer-main-content {
        padding: 3rem 0 1.5rem 0;
    }
    
    .footer-brand-col {
        margin-bottom: 2.5rem;
    }
    
    .footer-links-col {
        margin-bottom: 2rem;
    }
    
    .footer-contact-col {
        margin-top: 1rem;
    }
    
    .footer-logo {
        width: 50px;
        height: 50px;
    }
    
    .footer-title {
        font-size: 1.3rem;
    }
    
    .footer-description {
        font-size: 0.85rem;
        padding: 0 10px;
    }
    
    .social-link-item {
        width: 38px;
        height: 38px;
    }
    
    .contact-icon-wrapper {
        width: 38px;
        height: 38px;
    }
    
    .footer-section-title {
        font-size: 1.05rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal-links {
        justify-content: center;
    }
}

/* Mobile Portrait (up to 575px) */
@media (max-width: 575px) {
    .footer-main-content {
        padding: 2.5rem 0 1.5rem 0;
    }
    
    .footer-brand-col,
    .footer-links-col,
    .footer-contact-col {
        margin-bottom: 2rem;
    }
    
    .footer-links-col:last-of-type {
        margin-bottom: 2.5rem;
    }
    
    .footer-logo {
        width: 45px;
        height: 45px;
    }
    
    .footer-title {
        font-size: 1.2rem;
    }
    
    .footer-tagline {
        font-size: 0.8rem;
    }
    
    .footer-description {
        font-size: 0.8rem;
        padding: 0 5px;
        margin: 1rem auto;
    }
    
    .social-link-item {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    
    .contact-icon-wrapper {
        width: 36px;
        height: 36px;
        border-radius: 10px;
    }
    
    .footer-section-title {
        font-size: 1rem;
        margin-bottom: 1rem;
    }
    
    .footer-nav-links a {
        font-size: 0.85rem;
        padding: 0.3rem 0.8rem;
    }
    
    .contact-info-item {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        padding: 0.5rem;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 8px;
        margin: 0 auto;
        /*max-width: 280px;*/
    }
    
    .contact-text {
        text-align: left;
        margin-left: 0.5rem;
    }
    
    .contact-text span,
    .contact-text a {
        font-size: 0.85rem;
    }
    
    .footer-bottom-section {
        padding: 1.25rem 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-copyright p {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
    }
    
    .footer-legal-links {
        gap: 1rem;
        justify-content: center;
    }
    
    .legal-link {
        font-size: 0.8rem;
    }
}

/* Extra Small Mobile (320px - 374px) */
@media (max-width: 374px) {
    .footer-main-content {
        padding: 2rem 0 1rem 0;
    }
    
    .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .footer-title {
        font-size: 1.1rem;
    }
    
    .footer-description {
        font-size: 0.75rem;
        line-height: 1.5;
    }
    
    .social-link-item {
        width: 32px;
        height: 32px;
    }
    
    .contact-icon-wrapper {
        width: 32px;
        height: 32px;
    }
    
    .footer-nav-links a {
        font-size: 0.8rem;
        padding: 0.25rem 0.6rem;
    }
    
    .contact-info-item {
        max-width: 260px;
        padding: 0.4rem;
    }
    
    .contact-text span,
    .contact-text a {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .footer-legal-links {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Utility Classes for Better Responsive Control */
@media (max-width: 991px) {
    .footer-hide-on-tablet {
        display: none;
    }
    .footer-nav-links {
        padding: 0 0 0 40px!important;
    
        align-items: flex-start!important;  /* Sol hizalama için bu satırı kullanın */
    
    }

}

@media (max-width: 767px) {
    .footer-hide-on-mobile {
        display: none;
    }
}

/* Print Styles */
@media print {
    .footer-responsive-professional {
        background: white !important;
        color: black !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
    
    .social-link-item,
    .footer-legal-links {
        display: none;
    }
}

/* === HERO SECTION COL-LG-6 SPACING AND IMPROVEMENTS === */

/* Col-lg-6 arasında boşluk */
.hero-section .row .col-lg-6:first-child {
    padding-right: 4rem; /* 3rem'den 4rem'e artırıldı */
}

.hero-section .row .col-lg-6:last-child {
    padding-left: 4rem; /* 3rem'den 4rem'e artırıldı */
}

/* Hero image'e opacity efekti */
.hero-image-container img,
.hero-main-image,
.hero-image img {
    opacity: 0.85;
    transition: opacity 0.3s ease;
}

.hero-image-container:hover img,
.hero-main-image:hover,
.hero-image:hover img {
    opacity: 1;
}

/* Mobil responsive ayarları */
@media (max-width: 991px) {
    .hero-section .row .col-lg-6:first-child,
    .hero-section .row .col-lg-6:last-child {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .floating-card.card-1,
    .floating-card.card-2,
    .floating-card.card-3 {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        margin: 1rem 0;
    }
}

/* Container responsive ayarları */
@media (max-width: 1600px) {
    .container {
        max-width: 1200px;
    }
}

@media (max-width: 1200px) {
    .container {
        max-width: 960px;
    }
}

@media (max-width: 991px) {
    .container {
        max-width: 720px;
    }
    
    .hero-image-container {
        max-width: 100%;
        transform: scale(1);
    }
    
    .hero-subtitle {
        font-size: 1.2rem;
    }
}

@media (max-width: 768px) {
    .container {
        max-width: 540px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        font-weight: 600;
        color: #2d3748;
    }
}

@media (max-width: 576px) {
    .container {
        max-width: 100%;
        padding: 0 1rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
}

/* === Footer iyileştirmeleri (767 görünümünü 768–991'e taşı, tipografi & hizalama) === */

/* Tipografi ve görsel ölçüleri */
.footer-responsive-professional .footer-logo {
    width: 64px !important;
    height: 64px !important;
}

.footer-responsive-professional .footer-title {
    font-size: clamp(20px, 2.2vw, 28px) !important;
}

.footer-responsive-professional .footer-tagline {
    font-size: clamp(13px, 1.7vw, 16px) !important;
    opacity: .9 !important;
}

.footer-responsive-professional .footer-section-title {
    font-size: clamp(16px, 1.8vw, 20px) !important;
}

.footer-responsive-professional .footer-nav-links a {
    font-size: clamp(12px, 1.4vw, 16px) !important;
    white-space: nowrap !important;
}

/* Sosyal ikonlar (biraz büyüt) */
.footer-responsive-professional .footer-social-links a {
    width: 42px !important;
    height: 42px !important;
    line-height: 42px !important;
    font-size: 18px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    border-radius: 12px !important;
}

/* İletişim alanını net sola hizala ve satır düzenini düzelt */
.footer-responsive-professional .footer-contact-wrapper { 
    text-align: left !important;       /* links wrapper'dan gelebilecek merkezlemeyi kır */
}

.footer-responsive-professional .contact-info-list {
    display: grid !important;
    grid-template-columns: 1fr !important;
    row-gap: 14px !important;
}

.footer-responsive-professional .contact-info-item {
    display: flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 12px !important;
    text-align: left !important;
}

.footer-responsive-professional .contact-icon-wrapper {
    width: 40px !important;
    height: 40px !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex: 0 0 40px !important;
}

.footer-responsive-professional .contact-text a,
.footer-responsive-professional .contact-text span {
    display: inline-block !important;
    line-height: 1.35 !important;
    font-size: clamp(14px, 1.6vw, 16px) !important;
}

/* 768–991 arasında 767'deki düzeni koru:
   - Marka kolonu: %100
   - İki link kolonu: %50 - %50
   - İletişim kolonu: %100
*/
@media (min-width: 768px) and (max-width: 991px) {
    .footer-responsive-professional .footer-brand-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
    
    .footer-responsive-professional .footer-links-col {
        flex: 0 0 50% !important;
        max-width: 50% !important;
    }
    
    .footer-responsive-professional .footer-contact-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}

/* 992–1199 arasında link bölümlerini sola hizala */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .footer-responsive-professional .footer-links-wrapper {
        text-align: left !important;
    }
    
    .footer-responsive-professional .footer-nav-links {
        align-items: flex-start !important;
    }
    
    .footer-responsive-professional .footer-contact-col {
        margin-top: 0 !important;
    }
    
    .footer-responsive-professional .footer-section-title {
        font-size: clamp(12px, 1.5vw, 15px) !important;
        white-space: nowrap !important;
        margin-bottom: 0.8rem !important;
    }
    
    .footer-responsive-professional .footer-section-title::after {
        left: 0 !important;
        transform: none !important;
    }
    
    .footer-responsive-professional .footer-nav-links a {
        font-size: 13px !important;
        padding: 0.3rem 0.8rem !important;
        gap: 0.6rem !important;
    }
    
    .footer-responsive-professional .footer-nav-links a i {
        font-size: 12px !important;
        width: 14px !important;
    }
}

/* Küçük ekranlarda buton/ikon aralıklarını biraz artır */
@media (max-width: 991px) {
    .footer-responsive-professional .footer-nav-links li + li { 
        margin-top: 6px !important; 
    }
    
    .footer-responsive-professional .footer-social-links a + a { 
        margin-left: 6px !important; 
    }
}

/* ======================================
   İLETİŞİM BİLGİLERİ RESPONSIVE DÜZELTMELERİ - 0-992px
   ======================================== */

/* Base Contact Section Düzeltmeleri */
.footer-responsive-professional .footer-contact-col,
.footer-responsive-professional .footer-contact-col * {
    text-align: center !important; /* ÇÖZÜM: Sol hizalama → Merkezi hizalama */
}

/* 768px altında İletişim Bilgileri alt satıra geçsin ve ortalansın */
@media (max-width: 767px) {
    .footer-responsive-professional .footer-contact-col {
        flex: 0 0 100% !important; /* Alt satıra geç, tam genişlik */
        max-width: 100% !important;
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin-top: 2rem !important; /* Üstten boşluk */
        order: 999 !important; /* En sona sırala */
    }
}

.footer-responsive-professional .footer-contact-wrapper {
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
}

.footer-responsive-professional .contact-info-list {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
}

.footer-responsive-professional .contact-info-item {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
    background: rgba(255, 255, 255, 0.05) !important; /* ÇÖZÜM: Arka plan eklendi */
    border-radius: 8px !important;
    padding: 0.5rem !important;
    margin: 0 auto !important;
}

.footer-responsive-professional .contact-icon-wrapper {
    flex-shrink: 0 !important;
    margin-right: 0.8rem !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

.footer-responsive-professional .contact-text {
    text-align: center !important;
    flex-grow: 1 !important;
}

.footer-responsive-professional .contact-text a,
.footer-responsive-professional .contact-text span {
    text-align: center !important;
    word-break: break-all !important; /* ÇÖZÜM: Email'i zorla böl */
    overflow-wrap: anywhere !important; /* ÇÖZÜM: Overflow handling */
}

/* 768-991px Aralığı - Tablet (Bu stil çalışıyor, diğerlerine kopyalanacak) */
@media (min-width: 768px) and (max-width: 991px) {
    .footer-responsive-professional .contact-info-list {
        gap: 1.3rem !important;
        max-width: 400px !important;
        margin: 0 auto !important;
    }
    
    .footer-responsive-professional .contact-info-item {
        gap: 1rem !important;
        /*max-width: 320px !important;*/
        width:100%;
    }
    
    .footer-responsive-professional .contact-icon-wrapper {
        width: 38px !important;
        height: 38px !important;
    }
    
    .footer-responsive-professional .contact-text a,
    .footer-responsive-professional .contact-text span {
        font-size: 0.88rem !important;
    }
}

/* 576-767px Aralığı - Mobile Landscape (768-991 stilini kopyala) */
@media (min-width: 576px) and (max-width: 767px) {
    .footer-responsive-professional .contact-info-list {
        gap: 1.2rem !important;
        /*max-width: 360px !important;*/
        margin: 0 auto !important;
    }
    
    .footer-responsive-professional .contact-info-item {
        gap: 0.9rem !important;
        /*max-width: 300px !important;*/
        width:100%;
        background: rgba(255, 255, 255, 0.05) !important; /* ÇÖZÜM: Arka plan */
        border-radius: 8px !important;
        padding: 0.5rem 0.8rem !important;
    }
    
    .footer-responsive-professional .contact-icon-wrapper {
        width: 36px !important;
        height: 36px !important;
    }
    
    .footer-responsive-professional .contact-text a,
    .footer-responsive-professional .contact-text span {
        font-size: 0.85rem !important;
        text-align: center !important; /* ÇÖZÜM: Merkezi hizalama */
    }
}

/* 0-575px Aralığı - Mobile Portrait (768-991 stilini kopyala) */
@media (max-width: 575px) {
    .footer-responsive-professional .contact-info-list {
        gap: 1rem !important;
        /*max-width: 280px !important;*/
        margin: 0 auto !important;
        
    }
    
    .footer-responsive-professional .contact-info-item {
        gap: 0.8rem !important;
        /*max-width: 260px !important;*/
        background: rgba(255, 255, 255, 0.05) !important; /* ÇÖZÜM: Arka plan */
        border-radius: 6px !important;
        padding: 0.5rem !important;
        width:100%
    }
    
    .footer-responsive-professional .contact-icon-wrapper {
        width: 34px !important;
        height: 34px !important;
    }
    
    .footer-responsive-professional .contact-text a,
    .footer-responsive-professional .contact-text span {
        font-size: 0.8rem !important;
        line-height: 1.3 !important;
        text-align: center !important; /* ÇÖZÜM: Merkezi hizalama */
        word-break: break-all !important; /* ÇÖZÜM: Email zorla böl */
        overflow-wrap: anywhere !important;
    }
}

/* ======================================
   992px+ İLETİŞİM BİLGİLERİ - HIZLI BAĞLANTILAR STİLİNDE
   ======================================== */

@media (min-width: 992px) {
    /* İletişim Bilgileri 992px+ için col-lg-4 gibi davransın */
    .footer-responsive-professional .footer-contact-col {
        /* 992px altındaki flex ve order ayarlarını sıfırla */
        flex: 0 0 33.333333% !important; /* col-lg-4 genişliği */
        max-width: 33.333333% !important; /* col-lg-4 max-width */
        margin-top: 0 !important;
        order: initial !important;
        display: block !important;
        justify-content: initial !important;
        align-items: initial !important;
    }
    
    .footer-responsive-professional .footer-contact-wrapper {
        text-align: left !important; /* Sol hizala (Hızlı Bağlantılar gibi) */
        display: block !important;
        flex-direction: initial !important;
        align-items: initial !important;
    }
    
    .footer-responsive-professional .footer-section-title {
        text-align: left !important; /* Başlık sol hizalı */
        margin-bottom: 1.5rem !important;
    }
    
    .footer-responsive-professional .contact-info-list {
        display: block !important; /* Liste formatı */
        flex-direction: initial !important;
        align-items: initial !important;
        gap: initial !important;
        justify-content: initial !important;
        margin: 0 !important;
        max-width: none !important;
    }
    
    .footer-responsive-professional .contact-info-item {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-start !important; /* Sol başla */
        text-align: left !important;
        padding: 0 !important; /* Padding kaldır */
        background: none !important; /* Background kaldır */
        border-radius: 0 !important;
        max-width: none !important;
        width: 100% !important; /* Tam genişlik */
        gap: 0.8rem !important;
        margin: 0 0 0.8rem 0 !important; /* Sadece alt margin */
        border: none !important;
        box-shadow: none !important;
    }
    
    .footer-responsive-professional .contact-info-item:not(:last-child) {
        margin-bottom: 0.8rem !important; /* Aralarında boşluk */
    }
    
    .footer-responsive-professional .contact-icon-wrapper {
        width: 18px !important; /* Küçük ikon (Hızlı Bağlantılar gibi) */
        height: 18px !important;
        background: none !important;
        border: none !important;
        padding: 0 !important;
        margin: 0 !important;
        margin-right: 0.8rem !important;
        flex-shrink: 0 !important; /* Sabit boyut */
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    
    .footer-responsive-professional .contact-icon-wrapper i {
        font-size: 14px !important; /* Küçük ikon */
        color: #D9B471 !important; /* Ana renk */
        line-height: 1 !important;
    }
    
    .footer-responsive-professional .contact-text {
        text-align: left !important; /* Sol hizala */
        flex: 1 !important;
        display: block !important;
        align-items: initial !important;
        justify-content: initial !important;
    }
    
    .footer-responsive-professional .contact-text a,
    .footer-responsive-professional .contact-text span {
        font-size: 0.9rem !important; /* Normal boyut */
        line-height: 1.5 !important;
        text-align: left !important; /* Sol hizala */
        word-break: normal !important; /* Normal kırılma */
        overflow-wrap: normal !important;
        color: rgba(255, 255, 255, 0.8) !important; /* Hafif şeffaf */
        display: inline !important;
    }
    
    .footer-responsive-professional .contact-text a:hover {
        color: #D9B471 !important; /* Hover rengi */
        transition: color 0.3s ease !important;
    }
}
