@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Poppins:wght@300;400;500;600;700;800&display=swap');

/* Ultra Modern Medikal Site Stili - Premium Design System */
:root {
    /* Ultra Lüks Renk Paleti */
    --primary-color: #a855f7;
    --primary-dark: #9333ea;
    --primary-light: #c084fc;
    --primary-gradient: linear-gradient(135deg, #e879f9 0%, #a855f7 25%, #9333ea 50%, #7c3aed 75%, #6d28d9 100%);
    --primary-gradient-animated: linear-gradient(-45deg, #e879f9, #c084fc, #a855f7, #9333ea, #7c3aed, #6d28d9);
    --primary-glow: 0 0 80px rgba(168, 85, 247, 0.5), 0 0 120px rgba(168, 85, 247, 0.3);
    --gold-accent: #fbbf24;
    --gold-gradient: linear-gradient(135deg, #fef3c7 0%, #fde68a 25%, #fbbf24 50%, #f59e0b 75%, #d97706 100%);
    
    --secondary-color: #06b6d4;
    --secondary-dark: #0891b2;
    --secondary-light: #22d3ee;
    --secondary-gradient: linear-gradient(135deg, #0891b2 0%, #06b6d4 100%);
    
    --accent-color: #f59e0b;
    --accent-gradient: linear-gradient(135deg, #f59e0b 0%, #ef4444 100%);
    
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    --info-color: #3b82f6;
    
    /* Glassmorphism */
    --glass-bg: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Nötr Renkler */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black: #000000;
    
    /* Gölgeler */
    --shadow-sm: 0 2px 4px 0 rgba(155, 89, 182, 0.1);
    --shadow: 0 4px 6px 0 rgba(155, 89, 182, 0.15), 0 2px 4px 0 rgba(155, 89, 182, 0.1);
    --shadow-md: 0 6px 10px -2px rgba(155, 89, 182, 0.2), 0 4px 6px -2px rgba(155, 89, 182, 0.15);
    --shadow-lg: 0 15px 25px -5px rgba(155, 89, 182, 0.25), 0 8px 10px -5px rgba(155, 89, 182, 0.2);
    --shadow-xl: 0 25px 35px -8px rgba(155, 89, 182, 0.3), 0 15px 20px -8px rgba(155, 89, 182, 0.25);
    --shadow-2xl: 0 35px 60px -15px rgba(155, 89, 182, 0.4);
    --shadow-inner: inset 0 2px 4px 0 rgba(155, 89, 182, 0.1);
    --shadow-colored: 0 15px 50px -10px rgba(155, 89, 182, 0.5);
    
    /* Border Radius */
    --radius-sm: 0.375rem;
    --radius-md: 0.5rem;
    --radius-lg: 0.75rem;
    --radius-xl: 1rem;
    --radius-2xl: 1.5rem;
    --radius-full: 9999px;
    
    /* Transitions */
    --transition-fast: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    animation: gradientShift 10s ease infinite;
}

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

*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--gray-800);
    background: linear-gradient(135deg, #faf5ff 0%, #f3e8ff 50%, #ede9fe 100%);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(196, 181, 253, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(233, 121, 249, 0.1) 0%, transparent 50%);
    z-index: -1;
    animation: floatingGradient 20s ease-in-out infinite;
}

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

/* Ultra Modern Header */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
    padding: 1rem 0;
    transition: var(--transition);
    z-index: 1000;
}

.navbar.scrolled {
    padding: 0.75rem 0;
    box-shadow: var(--shadow-md);
}

.navbar-brand {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    background: var(--primary-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.5px;
    transition: var(--transition);
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.navbar-nav .nav-link {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--gray-700);
    padding: 0.5rem 1.25rem;
    margin: 0 0.25rem;
    border-radius: var(--radius-full);
    transition: var(--transition);
    position: relative;
}

.navbar-nav .nav-link:hover {
    color: var(--primary-color);
    background-color: var(--gray-100);
}

.navbar-nav .nav-link.active {
    color: var(--white);
    background: var(--primary-gradient);
    font-weight: 600;
}

/* CTA Button in Navbar */
.navbar .btn-primary {
    background: var(--primary-gradient);
    border: none;
    border-radius: var(--radius-full);
    padding: 0.6rem 1.75rem;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    box-shadow: var(--shadow-colored);
    transition: var(--transition);
}

.navbar .btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 50px -10px rgba(99, 102, 241, 0.4);
}

/* Modern Hero Section */
.hero-carousel {
    margin-top: -76px;
    z-index: 1;
}

.hero-slide {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(155, 89, 182, 0.9) 0%, rgba(190, 147, 212, 0.85) 100%);
    z-index: 1;
    animation: gradientShift 15s ease infinite;
    background-size: 200% 200%;
}

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

/* Hero slide içindeki tüm yazılar beyaz - GÜÇLÜ KURAL */
.hero-slide * {
    color: #ffffff !important;
}
.hero-slide h1,
.hero-slide h2,
.hero-slide h3,
.hero-slide h4,
.hero-slide h5,
.hero-slide h6,
.hero-slide .display-1,
.hero-slide .display-2,
.hero-slide .display-3,
.hero-slide .display-4,
.hero-slide .display-5,
.hero-slide .display-6 {
    color: #ffffff !important;
}
.hero-slide p,
.hero-slide .lead,
.hero-slide span,
.hero-slide div {
    color: #ffffff !important;
}
.hero-slide .text-center,
.hero-slide .text-white,
.hero-slide .container,
.hero-slide .container * {
    color: #ffffff !important;
}

.hero-slide h1 {
    font-family: 'Poppins', sans-serif;
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    animation: heroTitle 1s ease-out;
}

.hero-slide p {
    font-size: 1.25rem;
    font-weight: 300;
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.95;
    animation: heroSubtitle 1s ease-out 0.3s both;
}

.hero-slide .btn {
    padding: 0.75rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    text-transform: none;
    letter-spacing: 0;
    font-size: 1rem;
    transition: var(--transition);
    animation: heroButtons 1s ease-out 0.6s both;
}

/* Hero section butonları - Beyaz arkaplan, mor yazı */
.hero-slide .btn {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border: none !important;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.3);
}

.hero-slide .btn:hover {
    background: var(--gray-100) !important;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
    box-shadow: 0 15px 40px -10px rgba(0, 0, 0, 0.4);
}

/* Hero slide içindeki tüm butonlar */
.hero-slide .btn-primary,
.hero-slide .btn-secondary,
.hero-slide .btn-success,
.hero-slide .btn-info,
.hero-slide .btn-warning,
.hero-slide .btn-danger,
.hero-slide .btn-light,
.hero-slide .btn-dark,
.hero-slide .btn-outline-light,
.hero-slide .btn-outline-primary {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border: none !important;
}

.hero-slide .btn-primary:hover,
.hero-slide .btn-secondary:hover,
.hero-slide .btn-success:hover,
.hero-slide .btn-info:hover,
.hero-slide .btn-warning:hover,
.hero-slide .btn-danger:hover,
.hero-slide .btn-light:hover,
.hero-slide .btn-dark:hover,
.hero-slide .btn-outline-light:hover,
.hero-slide .btn-outline-primary:hover {
    background: var(--gray-100) !important;
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

/* Specific button classes - purple text always */
.btn.btn-outline-light.btn-lg,
.btn.btn-primary.btn-lg.me-2 {
    color: var(--primary-color) !important;
}

.btn.btn-outline-light.btn-lg:hover,
.btn.btn-primary.btn-lg.me-2:hover {
    color: var(--primary-color) !important;
}

/* Hero Animations */
@keyframes heroTitle {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroSubtitle {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 0.95;
        transform: translateY(0);
    }
}

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

/* Modern Card Design */
.card {
    border: none;
    border-radius: var(--radius-xl);
    background: var(--white);
    box-shadow: var(--shadow-lg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    height: 100%;
    position: relative;
    backdrop-filter: blur(10px);
    background: linear-gradient(145deg, rgba(255,255,255,0.95) 0%, rgba(249,250,251,0.95) 100%);
}

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

.card:hover {
    /* transform: translateY(-12px) scale(1.02); */
    box-shadow: 0 20px 50px rgba(155, 89, 182, 0.35);
    background: linear-gradient(145deg, rgba(255,255,255,1) 0%, rgba(250,245,255,1) 100%);
}

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

.card-img-top {
    height: 280px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.card:hover .card-img-top {
    transform: scale(1.08);
}

.card-body {
    padding: 2rem;
}

.card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.card-text {
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

/* Modern Button Design */
.btn {
    padding: 0.75rem 1.75rem;
    border-radius: var(--radius-lg);
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    text-transform: none;
    letter-spacing: 0;
    border: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:active::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: var(--primary-gradient);
    color: var(--white);
    box-shadow: var(--shadow-colored);
}

.btn-primary:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px -10px rgba(155, 89, 182, 0.6);
    background: linear-gradient(135deg, #be93d4 0%, #9b59b6 100%);
}

.btn-secondary {
    background: var(--secondary-gradient);
    color: var(--white);
    box-shadow: 0 10px 40px -10px rgba(6, 182, 212, 0.3);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 15px 40px -10px rgba(6, 182, 212, 0.5);
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    box-shadow: none;
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-colored);
}

.btn-light {
    background: var(--white);
    color: var(--gray-700);
    box-shadow: var(--shadow);
}

.btn-light:hover {
    background: var(--gray-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

/* Modern Footer Design with Purple Gradient and Particles */
.footer-section {
    background: linear-gradient(135deg, #2e1a47 0%, #6b46c1 25%, #9333ea 50%, #7c3aed 75%, #4c1d95 100%);
    color: var(--white);
    padding: 5rem 0 2rem;
    margin-top: 100px;
    position: relative;
    overflow: hidden;
    animation: footerGradientShift 20s ease-in-out infinite;
}

@keyframes footerGradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.footer-section::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    right: 0;
    height: 100px;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1440 100"><path fill="%23f9fafb" d="M0,50 C360,100 1080,0 1440,50 L1440,0 L0,0 Z"></path></svg>');
    background-size: cover;
    background-position: bottom;
}

/* Footer Particle Canvas */
.footer-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.8;
}

/* Glowing Orbs */
.footer-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    animation: floatOrb 20s infinite ease-in-out;
}

.footer-orb-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(168, 85, 247, 0.5) 0%, transparent 70%);
    top: -150px;
    left: -150px;
    animation-delay: 0s;
}

.footer-orb-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(196, 181, 253, 0.4) 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: 5s;
}

.footer-orb-3 {
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-delay: 10s;
}

@keyframes floatOrb {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(30px, -30px) scale(1.1);
    }
    66% {
        transform: translate(-20px, 20px) scale(0.9);
    }
}

/* Footer Content Enhancement */
.footer-content {
    position: relative;
    z-index: 2;
}

/* Glowing Pulse Lines */
.footer-pulse-line {
    position: absolute;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
    animation: pulseLine 3s linear infinite;
}

.footer-pulse-line-1 {
    top: 20%;
    left: 0;
    right: 0;
    animation-delay: 0s;
}

.footer-pulse-line-2 {
    top: 50%;
    left: 0;
    right: 0;
    animation-delay: 1s;
}

.footer-pulse-line-3 {
    top: 80%;
    left: 0;
    right: 0;
    animation-delay: 2s;
}

@keyframes pulseLine {
    0% {
        transform: translateX(-100%);
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* Enhanced Footer Links with Glow */
.footer-links a {
    position: relative;
    overflow: hidden;
}

.footer-links a::after {
    content: '';
    position: absolute;
    left: -100%;
    top: 50%;
    height: 2px;
    width: 100%;
    background: linear-gradient(90deg, transparent, #e879f9, transparent);
    transform: translateY(-50%);
    transition: left 0.5s ease;
}

.footer-links a:hover::after {
    left: 100%;
}

/* Social Links Enhanced Glow */
.social-links a {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
}

.social-links a:hover {
    box-shadow: 0 0 30px rgba(168, 85, 247, 0.6), 
                0 0 50px rgba(168, 85, 247, 0.4),
                inset 0 0 20px rgba(255, 255, 255, 0.2);
    animation: socialPulse 1s ease-in-out infinite;
}

@keyframes socialPulse {
    0%, 100% {
        transform: translateY(-3px) scale(1);
    }
    50% {
        transform: translateY(-3px) scale(1.1);
    }
}

/* Sparkle Animation */
.footer-sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: white;
    border-radius: 50%;
    animation: sparkle 3s linear infinite;
}

@keyframes sparkle {
    0% {
        opacity: 0;
        transform: scale(0) rotate(0deg);
    }
    50% {
        opacity: 1;
        transform: scale(1) rotate(180deg);
    }
    100% {
        opacity: 0;
        transform: scale(0) rotate(360deg);
    }
}

/* Floating Particles Background */
@keyframes floatingParticles {
    0% {
        transform: translateY(100%) translateX(0) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90%) translateX(10px) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(10%) translateX(-10px) scale(1);
    }
    100% {
        transform: translateY(0) translateX(0) scale(0);
        opacity: 0;
    }
}

.footer-section h5 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--white);
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-section h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: var(--primary-gradient);
    border-radius: var(--radius-full);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--gray-400);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
    padding-left: 0;
}

.footer-links a:hover {
    color: var(--white);
    padding-left: 10px;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--primary-gradient);
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 3rem;
    padding-top: 2rem;
    text-align: center;
    color: var(--gray-400);
}

/* Modern Features Section */
.features-section {
    padding: 100px 0;
    background-color: var(--white);
    position: relative;
}

.features-section.custom-services-bg {
    background: var(--primary-gradient);
    color: var(--white);
}

.feature-box {
    text-align: center;
    padding: 2.5rem 1.5rem;
    border-radius: var(--radius-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: linear-gradient(145deg, rgba(255,255,255,0.9) 0%, rgba(249,250,251,0.9) 100%);
    backdrop-filter: blur(8px);
}

.feature-box:hover {
    transform: translateY(-10px);
}

.features-section:not(.custom-services-bg) .feature-box {
    background: var(--gray-50);
}

.features-section:not(.custom-services-bg) .feature-box:hover {
    background: var(--white);
    box-shadow: var(--shadow-xl);
}

.features-section.custom-services-bg .feature-box:hover {
    background: rgba(255, 255, 255, 0.1);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--primary-gradient);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--white);
    transition: var(--transition);
}

.features-section.custom-services-bg .feature-icon {
    background: rgba(255, 255, 255, 0.2);
}

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

.feature-box h4 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.features-section:not(.custom-services-bg) .feature-box h4 {
    color: var(--gray-900);
}

/* Modern Product Detail */
.product-detail-img {
    width: 100%;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}

.product-detail-img:hover {
    transform: scale(1.02);
}

.product-gallery {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.product-gallery img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    border-radius: var(--radius-lg);
    border: 3px solid transparent;
    transition: var(--transition);
}

.product-gallery img:hover,
.product-gallery img.active {
    border-color: var(--primary-color);
    transform: scale(1.1);
    box-shadow: var(--shadow-md);
}

/* Modern Contact Form */
.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-2xl);
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: var(--primary-gradient);
    opacity: 0.05;
    border-radius: 50%;
    animation: float 20s ease-in-out infinite;
}

.form-control,
.form-select {
    background: var(--white);
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-lg);
    padding: 1rem 1.25rem;
    font-size: 1rem;
    font-weight: 500;
    color: var(--gray-800);
    transition: var(--transition);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
}

.form-control:hover,
.form-select:hover {
    border-color: var(--gray-400);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.form-control:focus,
.form-select:focus {
    background: var(--white);
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(99, 102, 241, 0.15), 0 4px 12px rgba(99, 102, 241, 0.1);
    outline: none;
}

.form-label {
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 0.5rem;
}

.form-floating > .form-control {
    padding-top: 1.625rem;
    padding-bottom: 0.625rem;
}

.form-floating > label {
    color: var(--gray-500);
}

/* Modern Input Group */
.input-group-text {
    background: var(--primary-gradient);
    color: var(--white);
    border: none;
    font-weight: 600;
}

/* Modern Animations */
@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

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

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

@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

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

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Scroll Animations */
.animate-on-scroll {
    opacity: 0;
    transition: all 0.8s ease-out;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.animate-on-scroll.fade-up {
    transform: translateY(50px);
}

.animate-on-scroll.fade-up.animated {
    transform: translateY(0);
}

.animate-on-scroll.fade-left {
    transform: translateX(-50px);
}

.animate-on-scroll.fade-left.animated {
    transform: translateX(0);
}

.animate-on-scroll.fade-right {
    transform: translateX(50px);
}

.animate-on-scroll.fade-right.animated {
    transform: translateX(0);
}

/* Enhanced Responsive Design */
@media (max-width: 1200px) {
    .hero-slide h1 {
        font-size: 3rem;
    }
}

@media (max-width: 992px) {
    .hero-slide h1 {
        font-size: 2.5rem;
    }
    
    .card-body {
        padding: 1.5rem;
    }
}

@media (max-width: 768px) {
    .hero-slide {
        min-height: 80vh;
    }
    
    .hero-slide h1 {
        font-size: 2rem;
    }
    
    .hero-slide p {
        font-size: 1.1rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .card-img-top {
        height: 200px;
    }
    
    .feature-icon {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
    
    .navbar-brand {
        font-size: 1.25rem;
    }
}

@media (max-width: 576px) {
    .hero-slide h1 {
        font-size: 1.5rem;
    }
    
    .hero-slide .btn {
        padding: 0.6rem 1.5rem;
        font-size: 0.9rem;
    }
    
    .card-title {
        font-size: 1.1rem;
    }
    
    .btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
    }
}

/* Modern Admin Panel */
.admin-sidebar {
    background: linear-gradient(180deg, var(--gray-900) 0%, var(--gray-800) 100%);
    min-height: 100vh;
    padding: 2rem 0;
    box-shadow: var(--shadow-xl);
}

.admin-sidebar .nav-link {
    color: var(--gray-300);
    padding: 1rem 1.5rem;
    margin: 0.25rem 1rem;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-weight: 500;
}

.admin-sidebar .nav-link:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
    transform: translateX(5px);
}

.admin-sidebar .nav-link.active {
    background: var(--primary-gradient);
    color: var(--white);
    font-weight: 600;
    box-shadow: var(--shadow-colored);
}

.admin-sidebar .nav-link i {
    font-size: 1.25rem;
    width: 30px;
    text-align: center;
}

/* Admin Content Area */
.admin-content {
    padding: 2rem;
    background: var(--gray-50);
    min-height: 100vh;
}

.admin-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow);
    padding: 2rem;
    margin-bottom: 2rem;
    transition: var(--transition);
}

.admin-card:hover {
    box-shadow: var(--shadow-lg);
}

/* Admin Stats Cards */
.admin-stats-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.admin-stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: -50px;
    width: 100px;
    height: 100px;
    background: var(--primary-gradient);
    border-radius: 50%;
    opacity: 0.1;
}

.admin-stats-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
}

.admin-stats-card h3 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.admin-stats-card p {
    color: var(--gray-600);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Modern Table Design */
.table-responsive {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.table {
    background: var(--white);
    margin-bottom: 0;
}

.table thead {
    background: var(--primary-gradient);
}

.table thead th {
    color: var(--white);
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.5px;
    padding: 1.25rem 1rem;
    border: none;
}

.table tbody td {
    padding: 1.25rem 1rem;
    vertical-align: middle;
    color: var(--gray-700);
    border-color: var(--gray-100);
}

.table-hover tbody tr {
    transition: var(--transition);
}

.table-hover tbody tr:hover {
    background-color: var(--gray-50);
    /* transform: scale(1.01); */
    /* box-shadow: var(--shadow-sm); */
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: rgba(99, 102, 241, 0.02);
}

/* Badge */
.badge {
    padding: 5px 10px;
    border-radius: 20px;
    font-weight: normal;
}

/* Loading Spinner */
.spinner-border {
    width: 3rem;
    height: 3rem;
    border-width: 0.3em;
}

/* Alert */
.alert {
    border-radius: var(--border-radius);
    border: none;
}

/* Breadcrumb */
.breadcrumb {
    background-color: transparent;
    padding: 0;
    margin: 20px 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    font-size: 1.2rem;
}

/* Hero Carousel & Slider */
.hero-carousel {
    margin-bottom: 0;
}
.hero-slide {
    min-height: 480px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
}
.hero-slide .container {
    z-index: 2;
}
.hero-slide::after {
    content: '';
    position: absolute;
    left: 0; top: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.25);
    z-index: 1;
}
.hero-slide h1, .hero-slide p, .hero-slide a {
    position: relative;
    z-index: 2;
}
/* Hero slide içindeki tüm metinler beyaz - GÜÇLÜ KURAL */
.hero-slide * {
    color: #ffffff !important;
}
.hero-slide h1,
.hero-slide h2,
.hero-slide h3,
.hero-slide h4,
.hero-slide h5,
.hero-slide h6,
.hero-slide .display-1,
.hero-slide .display-2,
.hero-slide .display-3,
.hero-slide .display-4,
.hero-slide .display-5,
.hero-slide .display-6 {
    color: #ffffff !important;
}
.hero-slide p,
.hero-slide .lead,
.hero-slide span,
.hero-slide div {
    color: #ffffff !important;
}
.hero-slide .text-center,
.hero-slide .text-white,
.hero-slide .container,
.hero-slide .container * {
    color: #ffffff !important;
}
/* Carousel içindeki hero slide metinleri */
.carousel-item .hero-slide h1,
.carousel-item .hero-slide p {
    color: #ffffff !important;
}
.carousel-control-prev-icon, .carousel-control-next-icon {
    filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
}
@media (max-width: 768px) {
    .hero-slide {
        min-height: 280px;
        padding: 40px 0;
    }
    .hero-slide h1 {
        font-size: 1.5rem;
    }
    .hero-slide p {
        font-size: 1rem;
    }
}

/* About & Difference Section */
.about-difference-section {
    background: var(--white);
}
.about-difference-section .img-fluid {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
}
.about-difference-section h3 {
    color: var(--primary-color);
}
.about-difference-section ul li {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
}
.about-difference-section ul i {
    font-size: 1.2rem;
    margin-right: 0.5rem;
}
@media (max-width: 992px) {
    .about-difference-section .row.align-items-center {
        flex-direction: column !important;
    }
    .about-difference-section .col-lg-6 {
        margin-bottom: 2rem;
    }
}

/* Reviews Section */
.reviews-section {
    background: var(--light-color);
}
.review-card {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: none;
    position: relative;
}
.review-card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.review-card .fa-star {
    font-size: 1.2rem;
    margin-right: 2px;
}
@media (max-width: 768px) {
    .review-card {
        padding: 1.2rem;
    }
}

/* Blog/Library Section */
.blog-library-section {
    background: var(--white);
}
.blog-library-section .card {
    border-radius: var(--border-radius);
    box-shadow: var(--box-shadow);
    transition: var(--transition);
    border: none;
    overflow: hidden;
}
.blog-library-section .card:hover {
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
    transform: translateY(-4px);
}
.blog-library-section .card-img-top {
    height: 180px;
    object-fit: cover;
}
.blog-library-section .card-title {
    color: var(--primary-color);
    font-weight: bold;
}
.blog-library-section .btn-outline-primary {
    border-radius: 20px;
    font-size: 0.95rem;
    padding: 6px 18px;
}
@media (max-width: 768px) {
    .blog-library-section .card-img-top {
        height: 120px;
    }
}

/* CTA Info Section */
.cta-info-section {
    background: var(--light-color);
    margin-bottom: 0;
}
.cta-info-box {
    box-shadow: 0 8px 32px rgba(0,102,204,0.10);
    border-radius: var(--border-radius);
    background: var(--primary-color);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.cta-info-box h4 {
    color: var(--white);
    margin-bottom: 0.5rem;
}
.cta-info-box .btn-light {
    color: var(--primary-color);
    font-weight: bold;
    border-radius: 24px;
    padding: 10px 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: var(--transition);
}
.cta-info-box .btn-light:hover {
    background: var(--secondary-color);
    color: var(--white);
}
@media (max-width: 768px) {
    .cta-info-box {
        flex-direction: column;
        text-align: center;
        padding: 2rem 1rem;
    }
    .cta-info-box .btn-light {
        width: 100%;
        margin-top: 1rem;
    }
}

/* Ultra Modern Navbar */
.animated-navbar {
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(8px);
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    transition: background 0.3s, box-shadow 0.3s;
}
.navbar-brand span {
    font-family: 'Montserrat', 'Segoe UI', Arial, sans-serif;
    letter-spacing: 1px;
    font-weight: 700;
    font-size: 1.3rem;
    text-shadow: 0 2px 8px rgba(0,102,204,0.08);
}
.navbar-nav .nav-link {
    color: var(--dark-color) !important;
    font-size: 1.08rem;
    font-weight: 600;
    margin: 0 8px;
    border-radius: 24px;
    padding: 8px 18px;
    transition: background 0.2s, color 0.2s, box-shadow 0.2s;
    position: relative;
    z-index: 1;
}
/* Aktif menü butonu (örn. Ana Sayfa) */
.navbar-nav .nav-link.active, .navbar-nav .nav-link:focus, .navbar-nav .nav-link:hover {
    background: var(--primary-color);
    color: #fff !important;
    border-radius: 16px;
    font-weight: 600;
    padding: 8px 18px;
    box-shadow: none;
    font-size: 1rem;
}

/* Menüdeki diğer linkler */
.navbar-nav .nav-link {
    font-size: 1rem;
    font-weight: 500;
    color: #3a256a !important;
    margin: 0 8px;
    border-radius: 12px;
    padding: 8px 14px;
}

/* 7/24 Teknik Servis butonu */
.navbar .btn-primary {
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 18px;
    padding: 8px 22px;
    box-shadow: none;
    letter-spacing: 0.5px;
}
.navbar-nav .nav-link i {
    font-size: 1.1em;
    vertical-align: middle;
}
.navbar .btn-primary {
    font-size: 1rem;
    font-weight: 700;
    border-radius: 24px;
    box-shadow: 0 2px 12px rgba(0,102,204,0.10);
    letter-spacing: 0.5px;
}
@media (max-width: 991px) {
    .navbar-nav {
        background: rgba(255,255,255,0.98);
        box-shadow: 0 8px 32px rgba(0,0,0,0.10);
        border-radius: 16px;
        margin-top: 12px;
        padding: 16px 0;
    }
    .navbar-nav .nav-link {
        margin: 6px 0;
        font-size: 1.15rem;
        text-align: center;
    }
}

/* Ultra Modern Footer */
.footer-section {
    background: linear-gradient(120deg, #232526 0%, #414345 100%);
    color: #fff;
    border-top-left-radius: 32px;
    border-top-right-radius: 32px;
    box-shadow: 0 -4px 32px rgba(0,0,0,0.10);
    margin-top: 100px;
    position: relative;
    overflow: hidden;
}
.footer-section h5, .footer-section h3 {
    color: #fff;
    font-weight: 700;
    letter-spacing: 0.5px;
}
.footer-section .footer-links a {
    color: #b0b8c1;
    font-weight: 500;
    font-size: 1.05rem;
    border-radius: 16px;
    padding: 4px 12px;
    transition: background 0.2s, color 0.2s, padding-left 0.2s;
}
.footer-section .footer-links a:hover {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff !important;
    padding-left: 16px;
}
.footer-section .social-links a {
    color: #b0b8c1;
    font-size: 1.5rem;
    margin-right: 16px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    padding: 10px;
    transition: background 0.2s, color 0.2s, transform 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.footer-section .social-links a:hover {
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: #fff !important;
    transform: scale(1.15) rotate(-6deg);
}
.footer-section .d-flex.align-items-center img {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.10);
    padding: 6px;
    margin-right: 16px;
}
.footer-section .contact-info a {
    color: #b0b8c1;
    font-weight: 500;
    transition: color 0.2s;
}
.footer-section .contact-info a:hover {
    color: var(--primary-color) !important;
}
.footer-section .row.align-items-center {
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-top: 32px;
    padding-top: 16px;
}
.footer-section .text-info {
    color: #4fd1c5 !important;
}
.footer-section .text-white-50 {
    color: #b0b8c1 !important;
}
@media (max-width: 768px) {
    .footer-section {
        border-radius: 0;
        margin-top: 60px;
    }
    .footer-section .d-flex.align-items-center {
        flex-direction: column;
        text-align: center;
    }
    .footer-section .d-flex.align-items-center img {
        margin-bottom: 10px;
        margin-right: 0;
    }
}

/* Genel Modernizasyon */
body, .bg-light {
    background-color: var(--light-color) !important;
}
.shadow-sm, .shadow-lg, .card, .feature-box, .review-card, .cta-info-box, .blog-library-section .card {
    box-shadow: 0 2px 10px rgba(0,0,0,0.08) !important;
}
.btn, .btn-primary, .btn-outline-primary, .btn-success, .btn-light {
    transition: var(--transition);
}
.btn:active, .btn:focus {
    outline: none !important;
    box-shadow: 0 0 0 0.2rem rgba(0,102,204,0.15) !important;
}
img, .img-fluid, .card-img-top {
    border-radius: var(--border-radius);
    transition: var(--transition);
}
img:hover, .img-fluid:hover, .card-img-top:hover {
    filter: brightness(0.97) contrast(1.05);
}
input, textarea, select {
    border-radius: var(--border-radius);
    transition: var(--transition);
}
input:focus, textarea:focus, select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 0.2rem rgba(0,102,204,0.10);
}
.section-title {
    font-size: 2.2rem;
    font-weight: bold;
    color: var(--primary-color);
    margin-bottom: 2rem;
}
@media (max-width: 576px) {
    .section-title {
        font-size: 1.4rem;
    }
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 80px;
    right: 20px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 1000;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    color: white;
    text-decoration: none;
}

/* Back to Top Button */
#backToTop {
    position: fixed;
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    z-index: 999;
    transition: all 0.3s ease;
    cursor: pointer;
    display: none;
}

#backToTop:hover {
    background-color: var(--primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .whatsapp-button {
        bottom: 70px;
        right: 15px;
        width: 50px;
        height: 50px;
    }
    
    #backToTop {
        bottom: 15px;
        right: 15px;
        width: 40px;
        height: 40px;
    }
}

/* Custom Services Section (Mor Gradient ve Partiküller) */
.custom-services-bg {
    background: linear-gradient(135deg, #9b59b6 0%, #be93d4 100%) !important;
    color: #fff;
    position: relative;
    overflow: hidden;
    padding-bottom: 40px;
    animation: gradientShift 20s ease infinite;
    background-size: 400% 400%;
}
.custom-services-bg .feature-box {
    background: transparent !important;
    border: none !important;
    color: #fff !important;
    box-shadow: none !important;
    border-radius: 18px;
    padding: 32px 18px 28px 18px;
    transition: var(--transition);
}
.custom-services-bg .feature-box:hover {
    background: rgba(190, 147, 212, 0.2) !important;
    box-shadow: 0 15px 50px rgba(155, 89, 182, 0.3) !important;
    transform: translateY(-10px) scale(1.05);
    animation: pulse 2s ease-in-out infinite;
}
.custom-services-bg .feature-icon {
    color: #fff;
    margin-bottom: 18px;
}
.custom-services-bg h2, .custom-services-bg h4, .custom-services-bg p, .custom-services-bg ul, .custom-services-bg a {
    color: #fff !important;
}
.custom-services-bg ul {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}
.custom-services-bg a {
    text-decoration: underline;
    font-weight: 500;
    transition: color 0.2s;
}
.custom-services-bg a:hover {
    color: var(--accent-color) !important;
}
#particles-bg {
    position: absolute;
    left: 0; top: 0; width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    display: block;
}
@media (max-width: 768px) {
    .custom-services-bg .feature-box {
        padding: 20px 8px 18px 8px;
    }
    .custom-services-bg h2 {
        font-size: 1.3rem;
    }
    .custom-services-bg h4 {
        font-size: 1.1rem;
    }
}

/* Remove white background from features-section for custom-services-bg */
.features-section.custom-services-bg {
    background: linear-gradient(135deg, #9b59b6 0%, #be93d4 100%) !important;
    animation: gradientShift 20s ease infinite;
    background-size: 400% 400%;
}
.features-section {
    background-color: unset !important;
}

/* Typography System */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 2rem; }
h4 { font-size: 1.5rem; }
h5 { font-size: 1.25rem; }
h6 { font-size: 1rem; }

p {
    line-height: 1.8;
    color: var(--gray-600);
}

.lead {
    font-size: 1.25rem;
    font-weight: 300;
    line-height: 1.6;
}

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

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

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

.bg-gradient-accent {
    background: var(--accent-gradient);
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 12px;
    height: 12px;
}

::-webkit-scrollbar-track {
    background: var(--gray-100);
}

::-webkit-scrollbar-thumb {
    background: var(--gray-400);
    border-radius: var(--radius-full);
    border: 3px solid var(--gray-100);
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gray-500);
}

/* Loading States */
.skeleton {
    background: linear-gradient(90deg, var(--gray-200) 25%, var(--gray-300) 50%, var(--gray-200) 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Focus Styles */
*:focus {
    outline: none;
}

*:focus-visible {
    outline: 2px solid var(--primary-color);
    outline-offset: 2px;
    border-radius: var(--radius-sm);
}

/* Print Styles */
@media print {
    .navbar,
    .footer-section,
    .whatsapp-button,
    #backToTop,
    .btn {
        display: none !important;
    }
    
    body {
        font-size: 12pt;
        line-height: 1.5;
    }
    
    h1, h2, h3, h4, h5, h6 {
        page-break-after: avoid;
    }
}

/* Advanced Animations */
@keyframes gradientShift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes morphing {
    0% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
    50% {
        border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%;
    }
    100% {
        border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%;
    }
}

@keyframes glowPulse {
    0% {
        box-shadow: 0 0 5px rgba(99, 102, 241, 0.5),
                    0 0 20px rgba(99, 102, 241, 0.3),
                    0 0 40px rgba(99, 102, 241, 0.1);
    }
    50% {
        box-shadow: 0 0 20px rgba(99, 102, 241, 0.8),
                    0 0 40px rgba(99, 102, 241, 0.5),
                    0 0 60px rgba(99, 102, 241, 0.3);
    }
    100% {
        box-shadow: 0 0 5px rgba(99, 102, 241, 0.5),
                    0 0 20px rgba(99, 102, 241, 0.3),
                    0 0 40px rgba(99, 102, 241, 0.1);
    }
}

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

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.8);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes slideInBlur {
    0% {
        opacity: 0;
        transform: translateX(-100px);
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
        filter: blur(0);
    }
}

@keyframes rotateIn {
    0% {
        opacity: 0;
        transform: rotate(-180deg) scale(0.5);
    }
    100% {
        opacity: 1;
        transform: rotate(0) scale(1);
    }
}

/* Animated Gradient Background */
.animated-gradient-bg {
    background: var(--primary-gradient-animated);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
}

/* Glassmorphism Elements */
.glass-effect {
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    box-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
}

/* Hover Effects */
.hover-lift {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.hover-lift:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.hover-glow:hover {
    animation: glowPulse 2s ease-in-out infinite;
}

/* Text Effects */
.text-shadow-glow {
    text-shadow: 0 0 20px rgba(99, 102, 241, 0.5),
                 0 0 40px rgba(99, 102, 241, 0.3),
                 0 0 60px rgba(99, 102, 241, 0.1);
}

.text-3d {
    text-shadow: 0 1px 0 #ccc,
                 0 2px 0 #c9c9c9,
                 0 3px 0 #bbb,
                 0 4px 0 #b9b9b9,
                 0 5px 0 #aaa,
                 0 6px 1px rgba(0,0,0,.1),
                 0 0 5px rgba(0,0,0,.1),
                 0 1px 3px rgba(0,0,0,.3),
                 0 3px 5px rgba(0,0,0,.2),
                 0 5px 10px rgba(0,0,0,.25),
                 0 10px 10px rgba(0,0,0,.2),
                 0 20px 20px rgba(0,0,0,.15);
}

/* Morphing Shapes */
.morph-shape {
    position: absolute;
    background: var(--primary-gradient);
    animation: morphing 8s ease-in-out infinite;
    opacity: 0.1;
    z-index: -1;
}

/* Particle Background */
.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    opacity: 0.5;
    animation: floatParticle 20s infinite linear;
}

@keyframes floatParticle {
    0% {
        transform: translateY(100vh) translateX(0);
    }
    100% {
        transform: translateY(-100vh) translateX(100px);
    }
}

/* Neon Effects */
.neon-text {
    color: var(--primary-color);
    text-shadow: 0 0 10px var(--primary-color),
                 0 0 20px var(--primary-color),
                 0 0 30px var(--primary-color),
                 0 0 40px var(--primary-light),
                 0 0 70px var(--primary-light),
                 0 0 80px var(--primary-light),
                 0 0 100px var(--primary-light),
                 0 0 150px var(--primary-light);
    animation: neonFlicker 1.5s infinite alternate;
}

@keyframes neonFlicker {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.8;
    }
}

/* Advanced Card Hover */
.card-3d {
    transform-style: preserve-3d;
    transition: transform 0.6s;
}

.card-3d:hover {
    transform: rotateY(5deg) rotateX(5deg);
}

/* Liquid Button */
.btn-liquid {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-liquid::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
    z-index: -1;
}

.btn-liquid:hover::before {
    width: 300px;
    height: 300px;
}

/* Reveal Animation */
.reveal-text {
    position: relative;
    overflow: hidden;
}

.reveal-text::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    animation: revealText 2s ease-out forwards;
}

@keyframes revealText {
    0% {
        left: -100%;
    }
    50% {
        left: 0;
    }
    100% {
        left: 100%;
    }
}

/* Parallax Layers */
.parallax-container {
    position: relative;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/* Scroll Progress Bar */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: var(--primary-gradient);
    z-index: 9999;
    transition: width 0.2s;
}

/* Loading Animation */
.loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 3px solid var(--gray-200);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

/* Toast Notifications Styles */
.toast-notification {
    min-width: 300px;
    padding: 16px;
    margin-bottom: 10px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    transform: translateX(400px);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 12px;
}

.toast-notification.show {
    transform: translateX(0);
}

.toast-notification.toast-success {
    background: var(--success-color);
    color: white;
}

.toast-notification.toast-error {
    background: var(--danger-color);
    color: white;
}

.toast-notification.toast-info {
    background: var(--info-color);
    color: white;
}

/* Cursor Effects */
.custom-cursor {
    position: fixed;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.1s ease;
    z-index: 9999;
}

.custom-cursor-dot {
    position: fixed;
    width: 4px;
    height: 4px;
    background: var(--primary-color);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
}

/* Contact Form Styles */
.contact-form {
    padding: 3rem;
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: var(--transition);
}

.contact-form:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

/* Contact page equal height columns */
.contact-page-row {
    display: flex;
    flex-wrap: wrap;
}

.contact-page-row > [class*='col-'] {
    display: flex;
    flex-direction: column;
}

/* Ensure both contact cards have consistent styling */
.contact-card {
    padding: 3rem;
    border-radius: var(--radius-2xl);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    height: 100%;
    transition: var(--transition);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.15);
}

.contact-info-item {
    padding: 1.5rem;
    border-radius: var(--radius-lg);
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    transition: var(--transition);
}

.contact-info-item:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.contact-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    flex-shrink: 0;
}

.hover-primary:hover {
    color: var(--primary-color) !important;
}

/* Social Links Modern */
.social-link-modern {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: var(--radius-lg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.25rem;
    margin: 0 0.5rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.social-link-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--secondary-gradient);
    transition: left 0.3s ease;
}

.social-link-modern:hover::before {
    left: 0;
}

.social-link-modern:hover {
    transform: translateY(-5px) rotate(360deg);
    color: var(--white);
}

.social-link-modern i {
    position: relative;
    z-index: 1;
}

/* Form Floating Labels Enhancement */
.form-floating > .form-control:focus ~ label,
.form-floating > .form-control:not(:placeholder-shown) ~ label,
.form-floating > .form-select ~ label {
    color: var(--primary-color);
    transform: scale(0.85) translateY(-0.5rem) translateX(0.15rem);
}

.form-select {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%236366f1' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
}

/* Map Section */
.map-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-2xl);
    z-index: 10;
    max-width: 300px;
    text-align: center;
}

/* Animated Elements */
.animate__animated {
    animation-duration: 1s;
    animation-fill-mode: both;
}

.animate__tada {
    animation-name: tada;
}

@keyframes tada {
    0% {
        transform: scale(1);
    }
    10%, 20% {
        transform: scale(0.9) rotate(-3deg);
    }
    30%, 50%, 70%, 90% {
        transform: scale(1.1) rotate(3deg);
    }
    40%, 60%, 80% {
        transform: scale(1.1) rotate(-3deg);
    }
    100% {
        transform: scale(1) rotate(0);
    }
}

/* Page Loading Effect */
.page-loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.5s, visibility 0.5s;
}

.page-loader.loaded {
    opacity: 0;
    visibility: hidden;
}

.loader-inner {
    position: relative;
    width: 80px;
    height: 80px;
}

.loader-inner::before,
.loader-inner::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top-color: var(--primary-color);
    animation: spin 1.5s linear infinite;
}

.loader-inner::after {
    animation-delay: 0.2s;
    border-top-color: var(--secondary-color);
}

/* Smooth Page Transitions */
.page-transition {
    position: fixed;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--primary-gradient);
    z-index: 99998;
    transition: left 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}

.page-transition.active {
    left: 0;
}

/* Interactive Particles */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: -1;
}

/* Glow Effects */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px var(--primary-color),
                    0 0 10px var(--primary-color),
                    0 0 15px var(--primary-color),
                    0 0 20px var(--primary-color);
    }
    50% {
        box-shadow: 0 0 10px var(--primary-color),
                    0 0 20px var(--primary-color),
                    0 0 30px var(--primary-color),
                    0 0 40px var(--primary-color);
    }
    100% {
        box-shadow: 0 0 5px var(--primary-color),
                    0 0 10px var(--primary-color),
                    0 0 15px var(--primary-color),
                    0 0 20px var(--primary-color);
    }
}

/* Magnetic Button Effect */
.magnetic-btn {
    position: relative;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Wave Animation */
@keyframes wave {
    0% {
        transform: rotate(0deg);
    }
    10% {
        transform: rotate(14deg);
    }
    20% {
        transform: rotate(-8deg);
    }
    30% {
        transform: rotate(14deg);
    }
    40% {
        transform: rotate(-4deg);
    }
    50% {
        transform: rotate(10deg);
    }
    60% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

.wave-emoji {
    animation: wave 2.5s infinite;
    transform-origin: 70% 70%;
    display: inline-block;
}

/* HERO SECTION BEYAZ METIN - EN GÜÇLÜ KURAL */
#mainHeroCarousel .hero-slide h1,
#mainHeroCarousel .hero-slide p,
#mainHeroCarousel .hero-slide .container *:not(.btn) {
    color: #ffffff !important;
}

/* Direkt carousel-item içindeki metinler */
.carousel-item h1.display-4,
.carousel-item p.lead {
    color: #ffffff !important;
}
