/* ===================================
   Global Styles & Reset
   =================================== */

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


/* ===================================
   Preloader - Premium Loading Animation
   =================================== */

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2563eb, #1e40af);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.fade-out {
    opacity: 0;
    visibility: hidden;
}

.preloader-content {
    text-align: center;
}

.logo-animation {
    width: 150px;
    height: 150px;
    margin: 0 auto 2rem;
    position: relative;
    animation: logo-float 3s ease-in-out infinite;
}

.logo-animation img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 15px 40px rgba(251, 191, 36, 0.4));
    animation: logo-glow 2s ease-in-out infinite;
}

.logo-animation::before {
    content: '';
    position: absolute;
    top: -30px;
    left: -30px;
    right: -30px;
    bottom: -30px;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    animation: ring-pulse 2s ease-in-out infinite;
}

.logo-animation::after {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    right: -50px;
    bottom: -50px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: ring-pulse 3s ease-in-out infinite reverse;
}

.loading-text {
    color: #ffffff;
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: 3px;
    animation: text-glow 2s ease-in-out infinite;
}

.loading-bar {
    width: 280px;
    height: 8px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 15px;
    margin: 0 auto 1rem;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0, 0, 0, 0.2);
}

.loading-progress {
    height: 100%;
    background: linear-gradient(90deg, #fbbf24, #f59e0b, #fbbf24);
    background-size: 200% 100%;
    border-radius: 15px;
    animation: progress-load 2s ease-in-out infinite;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.loading-subtext {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 2px;
    animation: pulse-text 1.5s ease-in-out infinite;
}


/* Preloader Animations */

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

@keyframes logo-glow {
    0%,
    100% {
        filter: drop-shadow(0 15px 40px rgba(251, 191, 36, 0.4));
        transform: scale(1);
    }
    50% {
        filter: drop-shadow(0 20px 60px rgba(251, 191, 36, 0.8));
        transform: scale(1.02);
    }
}

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

@keyframes text-glow {
    0%,
    100% {
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.5);
    }
    50% {
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.8), 0 0 40px rgba(251, 191, 36, 0.6);
    }
}

@keyframes progress-load {
    0% {
        width: 0%;
        background-position: 0% 50%;
    }
    25% {
        width: 30%;
        background-position: 25% 50%;
    }
    50% {
        width: 60%;
        background-position: 50% 50%;
    }
    75% {
        width: 85%;
        background-position: 75% 50%;
    }
    100% {
        width: 100%;
        background-position: 100% 50%;
    }
}

@keyframes pulse-text {
    0%,
    100% {
        opacity: 0.9;
    }
    50% {
        opacity: 1;
    }
}

:root {
    /* Light Theme Colors */
    --primary-color: #2563eb;
    --secondary-color: #1e40af;
    --accent-color: #3b82f6;
    --bg-primary: #ffffff;
    --bg-secondary: #f8fafc;
    --bg-tertiary: #e2e8f0;
    --text-primary: #1e293b;
    --text-secondary: #475569;
    --text-tertiary: #64748b;
    --border-color: #e2e8f0;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.20);
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}


/* Dark Theme */

[data-theme="dark"] {
    --primary-color: #3b82f6;
    --secondary-color: #2563eb;
    --accent-color: #60a5fa;
    --bg-primary: #0f172a;
    --bg-secondary: #1e293b;
    --bg-tertiary: #334155;
    --text-primary: #f1f5f9;
    --text-secondary: #cbd5e1;
    --text-tertiary: #94a3b8;
    --border-color: #334155;
    --success-color: #10b981;
    --danger-color: #ef4444;
    --warning-color: #f59e0b;
    /* Dark theme shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.5);
    --shadow-xl: 0 16px 48px rgba(0, 0, 0, 0.6);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-primary);
    background-color: var(--bg-primary);
    overflow-x: hidden;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

[data-theme="dark"] img {
    filter: brightness(0.9) contrast(1.1);
    transition: filter 0.3s ease;
}

[data-theme="dark"] img:hover {
    filter: brightness(1) contrast(1.2);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}


/* ===================================
   Navigation
   =================================== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0);
    backdrop-filter: blur(0px);
    box-shadow: none;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid transparent;
}

[data-theme="dark"] .navbar {
    background: rgba(15, 23, 42, 0);
}

.navbar.scrolled {
    background: var(--bg-primary);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    border-bottom: 1px solid var(--border-color);
}

[data-theme="dark"] .navbar.scrolled {
    background: var(--bg-primary);
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    transition: all 0.3s ease;
}

.navbar.scrolled .nav-wrapper {
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 15px;
    transition: var(--transition);
    cursor: pointer;
    padding: 5px;
    border-radius: 15px;
}

.logo img {
    height: 70px;
    width: auto;
    transition: var(--transition);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

[data-theme="dark"] .logo img {
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3)) brightness(1.1);
}

.logo:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.1);
}

.navbar.scrolled .logo:hover {
    background: var(--bg-secondary);
}

.logo:hover img {
    transform: rotate(360deg) scale(1.15);
    filter: drop-shadow(0 8px 16px rgba(255, 255, 255, 0.5));
}

.navbar.scrolled .logo:hover img {
    filter: drop-shadow(0 8px 16px rgba(37, 99, 235, 0.4));
}

.logo:hover .logo-text {
    transform: translateX(5px) scale(1.05);
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.8);
}

.navbar.scrolled .logo:hover .logo-text {
    text-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
}

.logo-text {
    font-size: 1.7rem;
    font-weight: 700;
    color: #ffffff;
    transition: var(--transition);
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    position: relative;
    overflow: hidden;
    background: transparent;
    -webkit-text-fill-color: #ffffff;
    background-clip: border-box;
}

.navbar.scrolled .logo-text {
    color: var(--primary-color);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background: linear-gradient( 90deg, var(--primary-color) 0%, var(--primary-color) 30%, #ffffff 40%, #60a5fa 50%, #ffffff 60%, var(--primary-color) 70%, var(--primary-color) 100%);
    background-size: 300% 100%;
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.logo:hover .logo-text {
    animation: shimmer 2.5s ease-in-out;
}

@keyframes shimmer {
    0% {
        background-position: 250% center;
    }
    100% {
        background-position: -250% center;
    }
}

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


/* Theme Switcher */

.theme-switcher {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
    color: var(--text-primary);
    position: relative;
    overflow: hidden;
}

.theme-switcher::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.theme-switcher:hover::before {
    width: 100px;
    height: 100px;
}

.theme-switcher:hover {
    transform: scale(1.15) rotate(180deg);
    background: var(--primary-color);
    color: #ffffff;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.nav-link {
    font-weight: 600;
    font-size: 0.95rem;
    color: #ffffff;
    padding: 0.85rem 2rem;
    position: relative;
    transition: all 0.4s ease;
    letter-spacing: 1px;
    text-transform: uppercase;
    overflow: hidden;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.navbar.scrolled .nav-link {
    background: transparent;
    border: none;
    color: var(--text-primary);
    text-shadow: none;
}


/* Arka plan efekti */

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    border-radius: 50px;
    transition: opacity 0.4s ease;
    z-index: -1;
}


/* Alt çizgi efekti */

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: var(--primary-color);
    border-radius: 2px;
    transition: transform 0.4s ease;
}


/* Hover durumu */

.nav-link:hover {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-3px);
    letter-spacing: 1.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

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

.nav-link:hover::before {
    opacity: 0.08;
}

.navbar.scrolled .nav-link:hover::before {
    opacity: 0.08;
}

.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

.navbar.scrolled .nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}


/* Active durumu */

.nav-link.active {
    color: #ffffff;
    background: rgba(37, 99, 235, 0.9);
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.5);
    letter-spacing: 1.2px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.navbar.scrolled .nav-link.active {
    background: var(--primary-color);
    border: none;
}

.nav-link.active::before {
    opacity: 1;
}

.nav-link.active::after {
    display: none;
}


/* Active hover */

.nav-link.active:hover {
    transform: translateY(-5px);
    background: rgba(30, 64, 175, 0.95);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.7);
}

.navbar.scrolled .nav-link.active:hover {
    background: var(--secondary-color);
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #ffffff;
    border-radius: 3px;
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.navbar.scrolled .hamburger span {
    background: var(--text-primary);
    box-shadow: none;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}


/* ===================================
   Hero Slider
   =================================== */

.hero-slider {
    margin-top: 0;
    height: 100vh;
    min-height: 700px;
    position: relative;
    overflow: hidden;
}


/* Premium Background Animation */

.premium-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
    transition: opacity 0.4s ease;
}

.navbar.scrolled~.hero-slider .premium-bg {
    opacity: 0.15;
    /* reduce decorations on scroll for readability */
}


/* 3D Geometric Shapes - SADE VE ELEGANt */

.geometric-shape {
    position: absolute;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.08;
    animation: float-rotate 20s ease-in-out infinite;
    filter: blur(3px);
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.1);
    transition: opacity 0.4s ease;
}

.navbar.scrolled~.hero-slider .geometric-shape {
    opacity: 0.05;
    /* reduce decorations on scroll for readability */
}

.shape-1 {
    width: 350px;
    height: 350px;
    background: rgba(255, 255, 255, 0.1);
    top: 10%;
    left: 5%;
    animation-delay: 0s;
    animation-duration: 25s;
}

.shape-2 {
    width: 250px;
    height: 250px;
    background: rgba(251, 191, 36, 0.1);
    top: 60%;
    left: 80%;
    animation-delay: 2s;
    animation-duration: 30s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: rgba(255, 255, 255, 0.08);
    top: 30%;
    right: 10%;
    animation-delay: 4s;
    animation-duration: 35s;
    border-radius: 50%;
}

.shape-4 {
    width: 220px;
    height: 220px;
    background: rgba(251, 191, 36, 0.12);
    bottom: 15%;
    left: 15%;
    animation-delay: 1s;
    animation-duration: 28s;
}

.shape-5 {
    width: 280px;
    height: 280px;
    background: rgba(255, 255, 255, 0.06);
    top: 50%;
    left: 50%;
    animation-delay: 3s;
    animation-duration: 32s;
    border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
}


/* Smooth Waves - SADE DALGALAR */

.wave {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0.05;
    transition: opacity 0.4s ease;
}

.navbar.scrolled~.hero-slider .wave {
    opacity: 0.03;
    /* reduce decorations on scroll for readability */
}

.wave::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.2) 0%, transparent 70%);
    animation: wave-move 15s linear infinite;
    filter: blur(5px);
    transition: opacity 0.4s ease;
}

.navbar.scrolled~.hero-slider .wave::before {
    opacity: 0.02;
    /* reduce decorations on scroll for readability */
}

.wave-1::before {
    top: -100%;
    left: -50%;
    animation-duration: 20s;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.15) 0%, transparent 70%);
}

.wave-2::before {
    bottom: -100%;
    right: -50%;
    animation-duration: 25s;
    animation-direction: reverse;
    background: radial-gradient(ellipse at center, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
}

.wave-3::before {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation-duration: 30s;
    background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}


/* Floating Particles - SADE PARLAYAN NOKTALAR */

.floating-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: rgba(251, 191, 36, 0.4);
    border-radius: 50%;
    opacity: 0.5;
    box-shadow: 0 0 15px rgba(251, 191, 36, 0.3);
    animation: particle-float 15s ease-in-out infinite;
    transition: opacity 0.4s ease;
}

.navbar.scrolled~.hero-slider .floating-particle {
    opacity: 0.1;
    /* reduce decorations on scroll for readability */
}

.particle-1 {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.particle-2 {
    top: 40%;
    left: 70%;
    animation-delay: 2s;
}

.particle-3 {
    top: 70%;
    left: 30%;
    animation-delay: 4s;
}

.particle-4 {
    top: 50%;
    left: 85%;
    animation-delay: 1s;
}

.particle-5 {
    top: 80%;
    left: 60%;
    animation-delay: 3s;
}

.particle-6 {
    top: 15%;
    left: 90%;
    animation-delay: 5s;
}


/* Keyframe Animations */

@keyframes float-rotate {
    0%,
    100% {
        transform: translate(0, 0) rotate(0deg) scale(1);
        border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    }
    25% {
        transform: translate(50px, -30px) rotate(90deg) scale(1.1);
        border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%;
    }
    50% {
        transform: translate(-30px, 50px) rotate(180deg) scale(0.9);
        border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
    }
    75% {
        transform: translate(30px, 30px) rotate(270deg) scale(1.05);
        border-radius: 40% 60% 40% 60% / 60% 40% 60% 40%;
    }
}

@keyframes wave-move {
    0% {
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
    50% {
        transform: translate(100px, 100px) scale(1.2) rotate(180deg);
    }
    100% {
        transform: translate(0, 0) scale(1) rotate(360deg);
    }
}

@keyframes particle-float {
    0%,
    100% {
        transform: translate(0, 0);
        opacity: 0.5;
    }
    25% {
        transform: translate(30px, -50px);
        opacity: 0.7;
    }
    50% {
        transform: translate(-20px, -80px);
        opacity: 0.3;
    }
    75% {
        transform: translate(40px, -30px);
        opacity: 0.6;
    }
}

.slider-container {
    height: 100%;
    position: relative;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: scale(1.1);
    transition: opacity 0.8s ease, transform 0.8s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.slide.active {
    opacity: 1;
    transform: scale(1);
    z-index: 1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.slide-bg::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: bg-rotate 20s linear infinite;
}

@keyframes bg-rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.slide-bg-1 {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 50%, #3b82f6 100%);
    animation: gradient-shift 8s ease infinite;
    background-size: 200% 200%;
}

.slide-bg-2 {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    animation: gradient-shift 8s ease infinite;
    background-size: 200% 200%;
}

.slide-bg-3 {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    animation: gradient-shift 8s ease infinite;
    background-size: 200% 200%;
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.slide-content {
    position: relative;
    z-index: 2;
    width: 100%;
}


/* 3D Animasyonlu Icon */

.hero-3d-icon {
    display: flex;
    justify-content: center;
    margin-bottom: 3rem;
    perspective: 1000px;
}

.icon-3d-container {
    position: relative;
    width: 200px;
    height: 200px;
    transform-style: preserve-3d;
    animation: icon-3d-float 6s ease-in-out infinite;
}

@keyframes icon-3d-float {
    0%,
    100% {
        transform: translateY(0) rotateX(0deg) rotateY(0deg);
    }
    25% {
        transform: translateY(-20px) rotateX(10deg) rotateY(10deg);
    }
    50% {
        transform: translateY(0) rotateX(20deg) rotateY(20deg);
    }
    75% {
        transform: translateY(-10px) rotateX(10deg) rotateY(-10deg);
    }
}

.icon-3d-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 30%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 40px rgba(251, 191, 36, 0.5), inset 0 -5px 20px rgba(0, 0, 0, 0.2), inset 0 5px 20px rgba(255, 255, 255, 0.3);
    animation: icon-3d-spin 8s linear infinite;
    z-index: 10;
}

@keyframes icon-3d-spin {
    0% {
        transform: translate(-50%, -50%) rotateY(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotateY(360deg);
    }
}

.icon-3d-inner i {
    font-size: 4rem;
    color: #ffffff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    animation: icon-pulse 2s ease-in-out infinite;
}


/* 3D Logo Stilleri */

.hero-logo-3d {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    animation: logo-pulse 2s ease-in-out infinite;
    padding: 10px;
}

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

@keyframes logo-pulse {
    0%,
    100% {
        transform: scale(1);
        filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    }
    50% {
        transform: scale(1.08);
        filter: drop-shadow(0 12px 30px rgba(251, 191, 36, 0.6));
    }
}

.icon-3d-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 3px solid rgba(251, 191, 36, 0.3);
    transform: translate(-50%, -50%);
}

.icon-3d-ring.ring-1 {
    width: 160px;
    height: 160px;
    animation: ring-rotate-1 4s linear infinite;
    box-shadow: 0 0 20px rgba(251, 191, 36, 0.4);
}

.icon-3d-ring.ring-2 {
    width: 200px;
    height: 200px;
    animation: ring-rotate-2 6s linear infinite reverse;
    border-style: dashed;
    box-shadow: 0 0 30px rgba(251, 191, 36, 0.3);
}

.icon-3d-ring.ring-3 {
    width: 240px;
    height: 240px;
    animation: ring-rotate-3 8s linear infinite;
    border-width: 2px;
    box-shadow: 0 0 40px rgba(251, 191, 36, 0.2);
}

@keyframes ring-rotate-1 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 1;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.05);
        opacity: 0.7;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
        opacity: 1;
    }
}

@keyframes ring-rotate-2 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) rotate(-180deg) scale(1.08);
        opacity: 0.5;
    }
    100% {
        transform: translate(-50%, -50%) rotate(-360deg) scale(1);
        opacity: 0.8;
    }
}

@keyframes ring-rotate-3 {
    0% {
        transform: translate(-50%, -50%) rotate(0deg) scale(1);
        opacity: 0.6;
    }
    50% {
        transform: translate(-50%, -50%) rotate(180deg) scale(1.1);
        opacity: 0.3;
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg) scale(1);
        opacity: 0.6;
    }
}

.hero-text {
    text-align: center;
    color: #ffffff;
    animation: fadeInUp 1s ease;
}

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

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: #ffffff;
    text-shadow: 2px 4px 8px rgba(0, 0, 0, 0.5);
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 1;
    font-weight: 400;
    color: #f1f5f9;
    text-shadow: 1px 2px 4px rgba(0, 0, 0, 0.4);
}

.highlight {
    color: #fbbf24;
    font-weight: 800;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.5), 2px 4px 8px rgba(0, 0, 0, 0.5);
    display: inline-block;
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
}

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

.btn:hover::before {
    width: 400px;
    height: 400px;
}

.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    transition: all 0.8s;
}

.btn:hover::after {
    right: -200%;
}

.btn-primary {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.3);
    animation: btn-glow-primary 3s ease-in-out infinite;
}

@keyframes btn-glow-primary {
    0%,
    100% {
        box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
    }
    50% {
        box-shadow: 0 8px 30px rgba(102, 126, 234, 0.7), 0 0 20px rgba(240, 147, 251, 0.4);
    }
}

.btn-primary:hover {
    background: linear-gradient(135deg, #764ba2, #f093fb);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 12px 40px rgba(102, 126, 234, 0.6);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.1));
    color: #ffffff;
    border: 3px solid rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(15px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    animation: btn-glow-secondary 3s ease-in-out infinite;
}

@keyframes btn-glow-secondary {
    0%,
    100% {
        border-color: rgba(255, 255, 255, 0.8);
        box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
    }
    50% {
        border-color: rgba(251, 191, 36, 1);
        box-shadow: 0 8px 30px rgba(251, 191, 36, 0.5);
    }
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #ffffff;
    transform: translateY(-5px) scale(1.05);
    border-color: #ffffff;
    box-shadow: 0 12px 40px rgba(251, 191, 36, 0.7);
}

.btn-light {
    background: #ffffff;
    color: var(--primary-color);
    box-shadow: var(--shadow-md);
}

.btn-light:hover {
    background: var(--primary-color);
    color: #ffffff;
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.slider-controls {
    position: absolute;
    top: 50%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    transform: translateY(-50%);
    z-index: 10;
}

.slider-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255, 107, 107, 0.9), rgba(251, 191, 36, 0.9));
    backdrop-filter: blur(10px);
    border: 3px solid rgba(255, 255, 255, 0.8);
    color: #ffffff;
    font-size: 1.4rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    animation: btn-pulse 2s ease-in-out infinite;
}

@keyframes btn-pulse {
    0%,
    100% {
        box-shadow: 0 5px 25px rgba(0, 0, 0, 0.3);
    }
    50% {
        box-shadow: 0 5px 35px rgba(251, 191, 36, 0.6), 0 0 0 10px rgba(255, 255, 255, 0.1);
    }
}

.slider-btn:hover {
    background: linear-gradient(135deg, rgba(251, 191, 36, 1), rgba(255, 107, 107, 1));
    transform: scale(1.2);
    border-color: #ffffff;
    box-shadow: 0 8px 40px rgba(251, 191, 36, 0.8);
}

.slider-dots {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: var(--transition);
    border: 2px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.dot:hover {
    background: rgba(255, 255, 255, 0.7);
    transform: scale(1.2);
}

.dot.active {
    background: linear-gradient(90deg, #fbbf24, #ff6b6b, #fbbf24);
    background-size: 200% 100%;
    width: 50px;
    border-radius: 8px;
    border-color: #ffffff;
    box-shadow: 0 4px 20px rgba(251, 191, 36, 0.6);
    animation: dot-active-glow 2s ease-in-out infinite;
}

@keyframes dot-active-glow {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(251, 191, 36, 0.6);
        background-position: 0% 50%;
    }
    50% {
        box-shadow: 0 4px 30px rgba(255, 107, 107, 0.8);
        background-position: 100% 50%;
    }
}


/* ===================================
   Section Styles
   =================================== */

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

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


/* ===================================
   Featured Services - ÖNE ÇIKAN HİZMETLER
   =================================== */

.featured-services {
    padding: 6rem 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    position: relative;
    overflow: hidden;
}

[data-theme="dark"] .featured-services {
    background: linear-gradient(135deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
}

.featured-services::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(37, 99, 235, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    animation: pulse 8s ease-in-out infinite;
}


/* Featured Services Grid Layout */

.featured-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.featured-row-top {
    margin-top: 3rem;
}

.featured-row-middle {
    margin-bottom: 2rem;
}

.featured-row-bottom {
    justify-content: center;
    margin-bottom: 0;
}

.featured-row .featured-card {
    flex: 1;
    max-width: 500px;
}

.featured-row-bottom .featured-card {
    max-width: 500px;
    margin: 0 auto;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    margin-top: 2rem;
}

.featured-card {
    background: #ffffff;
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 3px solid transparent;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.featured-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
    border-radius: 25px;
}

.featured-card>* {
    position: relative;
    z-index: 2;
}

[data-theme="dark"] .featured-card {
    background: var(--bg-secondary);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.featured-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.3), transparent);
    transition: left 0.6s ease;
}

.featured-card:hover::before {
    left: 100%;
}

.featured-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-color);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.3);
}

.featured-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #ffffff;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    animation: badge-pulse 2s ease-in-out infinite;
}

@keyframes badge-pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(251, 191, 36, 0.6);
    }
}

.featured-icon {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 3rem;
    color: #ffffff;
    transition: all 0.4s ease;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.4);
    position: relative;
}

.featured-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid var(--primary-color);
    opacity: 0;
    animation: icon-ring 2s ease-in-out infinite;
}

@keyframes icon-ring {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }
    50% {
        transform: scale(1.3);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 0;
    }
}

.featured-card:hover .featured-icon {
    transform: rotateY(360deg) scale(1.15);
    box-shadow: 0 15px 40px rgba(37, 99, 235, 0.6);
}

.featured-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1.2rem;
    font-weight: 700;
    color: #ffffff;
    position: relative;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.featured-card h3::after {
    content: '';
    display: block;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), #fbbf24);
    margin: 1rem auto 0;
    border-radius: 2px;
    transition: width 0.4s ease;
}

.featured-card:hover h3::after {
    width: 100px;
}

.featured-card p {
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.8);
}

.featured-link {
    color: #ffffff;
    background: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.8rem 1.8rem;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.featured-link:hover {
    background: var(--primary-color);
    color: #ffffff;
    gap: 15px;
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.3);
}


/* Featured Services Page Styles */

.featured-services-page {
    padding: 3rem 0;
    background: var(--bg-secondary);
    position: relative;
}

.featured-services-page::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="30" fill="rgba(37,99,235,0.03)"/></svg>');
    opacity: 0.5;
}

.service-featured {
    border: 3px solid var(--primary-color) !important;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.05) 0%, rgba(37, 99, 235, 0.05) 100%);
    position: relative;
    overflow: visible;
}

[data-theme="dark"] .service-featured {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1) 0%, rgba(37, 99, 235, 0.1) 100%);
}

.service-featured::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(45deg, var(--primary-color), #fbbf24, var(--primary-color));
    background-size: 200% 200%;
    border-radius: 20px;
    z-index: -1;
    animation: gradient-border 3s ease infinite;
}

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

.featured-badge-large {
    position: absolute;
    top: -15px;
    right: 30px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #ffffff;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 800;
    letter-spacing: 1.5px;
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
    z-index: 10;
    animation: featured-bounce 2s ease-in-out infinite;
}

@keyframes featured-bounce {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
}

.service-featured .service-detail-icon {
    border: 4px solid var(--primary-color);
    box-shadow: 0 15px 50px rgba(37, 99, 235, 0.4);
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
}

.service-featured .service-detail-icon i {
    color: #fbbf24;
    text-shadow: 0 0 20px rgba(251, 191, 36, 0.6);
}

.service-featured:hover {
    transform: translateY(-15px) scale(1.01);
    box-shadow: 0 25px 70px rgba(37, 99, 235, 0.35);
}

.service-featured:hover .service-detail-icon {
    transform: scale(1.1) rotate(5deg);
}


/* ===================================
   Business Areas Section
   =================================== */

.business-areas {
    padding: 5rem 0;
    background: var(--bg-primary);
    position: relative;
}

.business-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
}

.business-card {
    background: var(--bg-secondary);
    padding: 3rem 2rem;
    border-radius: 25px;
    text-align: center;
    transition: var(--transition);
    border: 2px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.business-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(37, 99, 235, 0.05), transparent);
    transform: rotate(45deg);
    transition: var(--transition-slow);
}

.business-card:hover::before {
    left: 100%;
}

.business-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-color);
}

.business-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    font-size: 2.5rem;
    color: #ffffff;
    transition: var(--transition);
    box-shadow: 0 8px 25px rgba(37, 99, 235, 0.3);
}

.business-card:hover .business-icon {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(37, 99, 235, 0.5);
}

.business-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.business-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1rem;
}


/* ===================================
   Features Section
   =================================== */

.features {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.feature-card {
    background: var(--bg-primary);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

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

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

.feature-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: var(--shadow-xl);
}

.feature-card:hover .feature-icon,
.feature-card:hover h3,
.feature-card:hover p {
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
    position: relative;
    z-index: 1;
}

.feature-card:hover .feature-icon {
    transform: scale(1.2) rotateY(360deg);
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}

.feature-card p {
    color: var(--text-secondary);
    line-height: 1.8;
    position: relative;
    z-index: 1;
    transition: var(--transition);
}


/* ===================================
   Products Section
   =================================== */

.products {
    padding: 5rem 0;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--light-color);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    transform-style: preserve-3d;
    perspective: 1000px;
}

.product-card:hover {
    transform: translateY(-15px) rotateX(5deg) rotateY(5deg);
    box-shadow: var(--shadow-xl);
}

.product-image {
    height: 250px;
    background: var(--bg-secondary);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

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

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 1;
    transition: var(--transition);
}

.product-card:hover .product-image::before {
    background: linear-gradient(180deg, transparent 0%, rgba(37, 99, 235, 0.4) 100%);
}

.product-icon {
    font-size: 4rem;
    color: #ffffff;
    z-index: 2;
    position: relative;
    transition: var(--transition);
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.product-card:hover .product-icon {
    transform: scale(1.2) rotate(10deg);
}

.product-content {
    padding: 2rem;
}


/* Product Overlay - Hover'da açılan detay */

.product-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient( to bottom, rgba(37, 99, 235, 0.75) 0%, rgba(30, 64, 175, 0.9) 100%);
    backdrop-filter: blur(2px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(100%);
    transition: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 10;
}

.product-card:hover .product-overlay {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.overlay-content {
    color: #ffffff;
    text-align: center;
    padding: 2rem;
    transform: translateY(20px);
    transition: transform 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) 0.1s;
}

.product-card:hover .overlay-content {
    transform: translateY(0);
}

.overlay-content h4 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.overlay-content h4 i {
    font-size: 1.8rem;
}

.overlay-content ul {
    list-style: none;
    padding: 0;
    margin: 0 0 1.5rem 0;
}

.overlay-content ul li {
    padding: 0.6rem 0;
    font-size: 1.05rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition);
}

.overlay-content ul li:last-child {
    border-bottom: none;
}

.overlay-content ul li:hover {
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.1);
}

.overlay-cta {
    background: #ffffff;
    color: var(--primary-color);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: var(--transition);
}

.overlay-cta:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.overlay-cta i {
    animation: ring 1.5s ease-in-out infinite;
}

@keyframes ring {
    0%,
    100% {
        transform: rotate(0deg);
    }
    10%,
    30% {
        transform: rotate(-10deg);
    }
    20%,
    40% {
        transform: rotate(10deg);
    }
    50% {
        transform: rotate(0deg);
    }
}

.product-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
    color: var(--text-primary);
}

.product-content p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.8;
}

.product-link {
    color: var(--primary-color);
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.product-link:hover {
    gap: 15px;
    color: var(--secondary-color);
}


/* ===================================
   CTA Section
   =================================== */

.cta {
    padding: 5rem 0;
    background: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.05);
    animation: pulse 4s ease-in-out infinite;
}

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

.cta-content {
    text-align: center;
    color: #ffffff;
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}


/* ===================================
   Footer
   =================================== */

.footer {
    background: var(--bg-tertiary);
    color: var(--text-primary);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border-color);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
}

.footer-logo img {
    height: 60px;
    width: auto;
    transition: var(--transition);
}

.footer-logo:hover img {
    transform: rotate(10deg) scale(1.1);
}

.footer-logo h3 {
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section p {
    color: var(--text-secondary);
    line-height: 1.8;
}

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: var(--text-secondary);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-section ul li a:hover {
    color: var(--primary-color);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text-secondary);
}

.contact-info i {
    color: var(--primary-color);
    margin-top: 3px;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid var(--border-color);
    color: var(--text-tertiary);
}

.footer-bottom p {
    margin-bottom: 0.5rem;
}

.developer-credit {
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.developer-credit a {
    color: var(--primary-color);
    font-weight: 600;
    position: relative;
    transition: var(--transition);
}

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

.developer-credit a:hover {
    color: var(--secondary-color);
    letter-spacing: 0.5px;
}

.developer-credit a:hover::after {
    width: 100%;
}


/* ===================================
   Page Header
   =================================== */

.page-header {
    margin-top: 0;
    padding: 5rem 0;
    background: var(--primary-color);
    text-align: center;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="40" fill="rgba(255,255,255,0.05)"/></svg>');
    opacity: 0.3;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
}

.page-subtitle {
    font-size: 1.2rem;
    opacity: 0.95;
    position: relative;
    z-index: 1;
}


/* ===================================
   About Page
   =================================== */

.about-content {
    padding: 5rem 0;
}

.about-intro {
    margin-bottom: 4rem;
}

.about-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.about-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.stat-item {
    text-align: center;
    padding: 2rem;
    background: var(--primary-color);
    border-radius: 20px;
    color: #ffffff;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.stat-item:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    opacity: 0.95;
}


/* ===================================
   Values Section
   =================================== */

.values {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
}

.value-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    opacity: 0;
    transition: var(--transition-slow);
    transform: rotate(45deg);
}

.value-card:hover::after {
    top: -10%;
    right: -10%;
    opacity: 0.1;
}

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

.value-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

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

.value-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}


/* ===================================
   Why Choose Section
   =================================== */

.why-choose {
    padding: 5rem 0;
}

.why-choose-text h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    font-weight: 700;
}

.why-item {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.why-item:hover {
    background: var(--bg-tertiary);
    transform: translateX(10px);
}

.why-icon {
    font-size: 2rem;
    color: var(--primary-color);
    min-width: 50px;
}

.why-text h4 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.why-text p {
    color: var(--text-secondary);
    line-height: 1.8;
}


/* ===================================
   Services Page
   =================================== */

.services-content {
    padding: 5rem 0;
}

.service-detail {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    margin-bottom: 4rem;
    padding: 3rem;
    background: var(--bg-primary);
    border-radius: 20px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-detail:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.service-detail.reverse {
    grid-template-columns: 1fr 200px;
}

.service-detail.reverse .service-detail-icon {
    order: 2;
}

.service-detail.reverse .service-detail-content {
    order: 1;
}

.service-detail-icon {
    width: 200px;
    height: 200px;
    background: var(--bg-secondary);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #ffffff;
    transition: var(--transition);
    overflow: hidden;
    position: relative;
}

.service-detail-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.service-detail-icon i {
    z-index: 2;
}

.service-detail:hover .service-detail-icon {
    transform: scale(1.05);
    box-shadow: var(--shadow-xl);
}

.service-detail:hover .service-detail-icon img {
    transform: scale(1.1) rotate(2deg);
}

.service-detail-content h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.service-detail-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.service-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1rem;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0.8rem;
    background: var(--bg-secondary);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.service-features li:hover {
    background: var(--bg-tertiary);
    transform: translateX(5px);
}

.service-features i {
    color: var(--success-color);
    font-size: 1.2rem;
}


/* ===================================
   Additional Services
   =================================== */

.additional-services {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.additional-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.additional-card {
    background: var(--bg-primary);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.additional-card:hover {
    transform: translateY(-10px) rotateY(5deg);
    box-shadow: var(--shadow-xl);
}

.additional-icon {
    font-size: 3rem;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    transition: var(--transition);
}

.additional-card:hover .additional-icon {
    transform: scale(1.2) rotateZ(360deg);
}

.additional-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 600;
}

.additional-card p {
    color: var(--text-secondary);
    line-height: 1.8;
}


/* ===================================
   Contact Page
   =================================== */

.contact-content {
    padding: 5rem 0;
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.contact-info-section p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-info-card {
    display: flex;
    gap: 1.5rem;
    padding: 1.5rem;
    background: var(--bg-secondary);
    border-radius: 15px;
    border: 1px solid var(--border-color);
    transition: var(--transition);
}

.contact-info-card:hover {
    background: var(--bg-tertiary);
    transform: translateX(10px);
    box-shadow: var(--shadow-md);
}

.contact-info-icon {
    width: 60px;
    height: 60px;
    background: var(--primary-color);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: #ffffff;
    flex-shrink: 0;
    transition: var(--transition);
}

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

.contact-info-text h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    font-weight: 600;
}

.contact-info-text a {
    color: var(--primary-color);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

.contact-info-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin: 0;
}


/* ===================================
   Contact Form
   =================================== */

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

.form-group label {
    font-weight: 600;
    color: var(--text-primary);
}

[data-theme="dark"] .form-group label {
    color: var(--text-primary);
}

.form-group input,
.form-group textarea {
    padding: 1rem;
    border: 2px solid var(--border-color);
    border-radius: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    background: var(--bg-primary);
    color: var(--text-primary);
    transition: var(--transition);
}

[data-theme="dark"] .form-group input,
[data-theme="dark"] .form-group textarea {
    background: var(--bg-secondary);
    border-color: var(--border-color);
    color: var(--text-primary);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.contact-form .btn {
    justify-content: center;
    margin-top: 1rem;
}

.contact-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.form-note {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-secondary);
    border-left: 4px solid var(--primary-color);
    border-radius: 8px;
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.form-note i {
    color: var(--primary-color);
    font-size: 1.3rem;
    margin-top: 2px;
}

.form-note p {
    margin: 0;
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.form-note strong {
    color: var(--primary-color);
    font-weight: 600;
}


/* ===================================
   Map Section
   =================================== */

.map-section {
    padding: 5rem 0;
    background: var(--bg-secondary);
}

.map-section .section-title {
    margin-bottom: 3rem;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.map-note {
    margin-top: 1.5rem;
    padding: 1.25rem;
    background: var(--bg-primary);
    border-radius: 12px;
    border: 2px solid var(--primary-color);
    text-align: center;
}

.map-note p {
    margin: 0;
    color: var(--text-primary);
    font-size: 1.05rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

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

.map-note strong {
    color: var(--primary-color);
    font-weight: 600;
}


/* ===================================
   Quick Contact
   =================================== */

.quick-contact {
    padding: 5rem 0;
}

.quick-contact-content {
    text-align: center;
}

.quick-contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.quick-contact-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.quick-contact-buttons {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.quick-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    padding: 2rem 3rem;
    border-radius: 20px;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.quick-btn i {
    font-size: 3rem;
}

.quick-btn span {
    font-weight: 600;
    font-size: 1.1rem;
}

.call-btn {
    background: var(--primary-color);
    color: #ffffff;
}

.call-btn:hover {
    background: var(--secondary-color);
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.whatsapp-btn {
    background: #25D366;
    color: #ffffff;
}

.whatsapp-btn:hover {
    background: #128C7E;
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}

.email-btn {
    background: #ef4444;
    color: #ffffff;
}

.email-btn:hover {
    background: #dc2626;
    transform: translateY(-10px) scale(1.05);
    box-shadow: var(--shadow-xl);
}


/* ===================================
   Responsive Design
   =================================== */

@media (max-width: 968px) {
    .hamburger {
        display: flex;
    }
    .nav-menu {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 80px);
        background: var(--bg-primary);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 2rem;
        transition: var(--transition);
        box-shadow: var(--shadow-lg);
        border-right: 1px solid var(--border-color);
    }
    .nav-menu.active {
        left: 0;
    }
    .theme-switcher {
        margin-top: 1rem;
    }
    .hero-title {
        font-size: 2.5rem;
    }
    .hero-subtitle {
        font-size: 1.1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .featured-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 2rem;
    }
    .featured-badge-large {
        top: -10px;
        right: 15px;
        padding: 0.6rem 1.5rem;
        font-size: 0.75rem;
    }
    .service-detail,
    .service-detail.reverse {
        grid-template-columns: 1fr;
    }
    .service-detail.reverse .service-detail-icon {
        order: 1;
    }
    .service-detail.reverse .service-detail-content {
        order: 2;
    }
    .service-detail-icon {
        margin: 0 auto;
    }
    .contact-wrapper {
        grid-template-columns: 1fr;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .quick-contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    .quick-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    .page-title {
        font-size: 2.5rem;
    }
    .hero-slider {
        height: 500px;
    }
    .slider-controls {
        padding: 0 1rem;
    }
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .stat-number {
        font-size: 2.5rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
    }
    /* 3D Icon Responsive */
    .hero-3d-icon {
        margin-bottom: 2rem;
    }
    .icon-3d-container {
        width: 150px;
        height: 150px;
    }
    .icon-3d-inner {
        width: 90px;
        height: 90px;
    }
    .icon-3d-inner i {
        font-size: 2.5rem;
    }
    .hero-logo-3d {
        padding: 5px;
    }
    .icon-3d-ring.ring-1 {
        width: 120px;
        height: 120px;
    }
    .icon-3d-ring.ring-2 {
        width: 150px;
        height: 150px;
    }
    .icon-3d-ring.ring-3 {
        width: 180px;
        height: 180px;
    }
    .featured-grid {
        grid-template-columns: 1fr;
    }
    .featured-card {
        padding: 2.5rem 1.5rem;
    }
    .featured-icon {
        width: 90px;
        height: 90px;
        font-size: 2.5rem;
    }
    .featured-badge {
        top: 15px;
        right: 15px;
        padding: 0.4rem 0.8rem;
        font-size: 0.7rem;
    }
    .featured-badge-large {
        position: relative;
        top: 0;
        right: 0;
        margin: 0 auto 1.5rem;
        display: inline-block;
        padding: 0.6rem 1.2rem;
        font-size: 0.7rem;
    }
    .features-grid,
    .products-grid,
    .values-grid,
    .additional-grid {
        grid-template-columns: 1fr;
    }
    .about-stats {
        grid-template-columns: 1fr;
    }
    .service-detail {
        padding: 2rem 1.5rem;
    }
    .service-detail-icon {
        width: 150px;
        height: 150px;
        font-size: 4rem;
    }
    /* Floating buttons responsive */
    .whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    .instagram-float {
        bottom: 20px;
        right: 90px;
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
    }
    .whatsapp-float::before,
    .instagram-float::before {
        right: 65px;
        font-size: 0.8rem;
        padding: 0.5rem 1rem;
    }
    .whatsapp-float::after,
    .instagram-float::after {
        right: 50px;
    }
}


/* ===================================
   WhatsApp Floating Button
   =================================== */

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 65px;
    height: 65px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 999;
    cursor: pointer;
    transition: var(--transition);
    animation: pulse-whatsapp 2s ease-in-out infinite;
}

.whatsapp-float i {
    font-size: 2rem;
    color: #ffffff;
}

.whatsapp-float:hover {
    transform: scale(1.15);
    background: #128C7E;
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.6);
    animation: none;
}


/* WhatsApp tooltip */

.whatsapp-float::before {
    content: 'WhatsApp ile mesaj gönderin';
    position: absolute;
    right: 75px;
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .whatsapp-float::before {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.whatsapp-float::after {
    content: '';
    position: absolute;
    right: 60px;
    border: 8px solid transparent;
    border-left-color: var(--bg-primary);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

[data-theme="dark"] .whatsapp-float::after {
    border-left-color: var(--bg-secondary);
}

.whatsapp-float:hover::before,
.whatsapp-float:hover::after {
    opacity: 1;
    visibility: visible;
}


/* Instagram Floating Button */

.instagram-float {
    position: fixed;
    bottom: 30px;
    right: 110px;
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, #e1306c, #fd1d1d);
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 2rem;
    box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse-instagram 2s infinite;
}

.instagram-float i {
    font-size: 2rem;
    color: #ffffff;
}

.instagram-float:hover {
    transform: scale(1.15);
    background: linear-gradient(135deg, #c13584, #e1306c);
    box-shadow: 0 8px 30px rgba(225, 48, 108, 0.6);
    animation: none;
}


/* Instagram tooltip */

.instagram-float::before {
    content: 'Instagram\'da takip edin';
    position: absolute;
    right: 75px;
    background: var(--bg-primary);
    color: var(--text-primary);
    padding: 0.75rem 1.25rem;
    border-radius: 10px;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    font-size: 0.9rem;
    font-weight: 500;
    border: 1px solid var(--border-color);
}

[data-theme="dark"] .instagram-float::before {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border-color: var(--border-color);
}

.instagram-float::after {
    content: '';
    position: absolute;
    right: 60px;
    border: 8px solid transparent;
    border-left-color: var(--bg-primary);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

[data-theme="dark"] .instagram-float::after {
    border-left-color: var(--bg-secondary);
}

.instagram-float:hover::before,
.instagram-float:hover::after {
    opacity: 1;
    visibility: visible;
}

@keyframes pulse-instagram {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(225, 48, 108, 0.4), 0 0 0 10px rgba(225, 48, 108, 0.1), 0 0 0 20px rgba(225, 48, 108, 0.05);
    }
}


/* Pulse animation */

@keyframes pulse-whatsapp {
    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4), 0 0 0 10px rgba(37, 211, 102, 0.1), 0 0 0 20px rgba(37, 211, 102, 0.05);
    }
}


/* ===================================
   Animations
   =================================== */

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        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);
    }
}

@keyframes bounceIn {
    0% {
        opacity: 0;
        transform: scale(0.3);
    }
    50% {
        opacity: 1;
        transform: scale(1.05);
    }
    70% {
        transform: scale(0.9);
    }
    100% {
        transform: scale(1);
    }
}


/* Scroll animations */

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}


/* Responsive Design for Featured Services */

@media (max-width: 768px) {
    .featured-row {
        flex-direction: column;
        gap: 1.5rem;
    }
    .featured-row .featured-card {
        max-width: 100%;
    }
    .featured-row-bottom .featured-card {
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .featured-services {
        padding: 3rem 0;
    }
    .featured-card {
        padding: 2rem 1.5rem;
    }
}


/* ===================================
   Service Modal
   =================================== */

.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.service-modal.active {
    opacity: 1;
    visibility: visible;
}

.service-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.service-modal-container {
    position: relative;
    max-width: 900px;
    max-height: 90vh;
    background: var(--bg-primary);
    border-radius: 25px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    margin: 50px auto;
    overflow: hidden;
    transform: scale(0.8) translateY(50px);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1;
}

.service-modal.active .service-modal-container {
    transform: scale(1) translateY(0);
}

.service-modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border: none;
    border-radius: 50%;
    color: #ffffff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.service-modal-close:hover {
    background: var(--secondary-color);
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 99, 235, 0.5);
}

.service-modal-content {
    padding: 0;
    overflow-y: auto;
    max-height: calc(90vh - 120px);
}

.service-modal-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
    position: relative;
}

.service-modal-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-modal:hover .service-modal-image img {
    transform: scale(1.05);
}

.service-modal-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    padding: 2rem 3rem;
    padding-top: 2rem;
    border-bottom: 2px solid var(--border-color);
    background: var(--bg-primary);
}

.service-modal-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: #ffffff;
    box-shadow: 0 10px 30px rgba(37, 99, 235, 0.3);
    flex-shrink: 0;
}

.service-modal-title {
    flex: 1;
}

.service-modal-title h2 {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
    font-weight: 700;
}

.service-modal-title p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.service-modal-body {
    margin-bottom: 2rem;
    padding: 0 3rem;
    padding-bottom: 2rem;
}

.service-modal-body p {
    color: var(--text-secondary);
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.service-modal-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.service-modal-feature {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 1rem;
    background: var(--bg-secondary);
    border-radius: 12px;
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
}

.service-modal-feature:hover {
    background: var(--bg-tertiary);
    transform: translateX(5px);
}

.service-modal-feature i {
    color: var(--success-color);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.service-modal-feature span {
    color: var(--text-primary);
    font-weight: 500;
}

.service-modal-footer {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 0;
    padding: 2rem 3rem;
    border-top: 2px solid var(--border-color);
    background: var(--bg-primary);
}

.service-modal-btn {
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-modal-btn-primary {
    background: var(--primary-color);
    color: #ffffff;
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.3);
}

.service-modal-btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.service-modal-btn-secondary {
    background: var(--bg-secondary);
    color: var(--text-primary);
    border: 2px solid var(--border-color);
}

.service-modal-btn-secondary:hover {
    background: var(--bg-tertiary);
    border-color: var(--primary-color);
    transform: translateY(-2px);
}


/* Responsive Modal */

@media (max-width: 768px) {
    .service-modal-container {
        max-width: 95%;
        margin: 20px auto;
        max-height: 95vh;
    }
    .service-modal-image {
        height: 200px;
    }
    .service-modal-content {
        max-height: calc(95vh - 80px);
    }
    .service-modal-header {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
        gap: 1rem;
    }
    .service-modal-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }
    .service-modal-title h2 {
        font-size: 1.5rem;
        margin-bottom: 0.3rem;
    }
    .service-modal-title p {
        font-size: 0.95rem;
    }
    .service-modal-body {
        padding: 1.5rem;
        padding-top: 1rem;
    }
    .service-modal-body p {
        font-size: 0.95rem;
        margin-bottom: 1.2rem;
    }
    .service-modal-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .service-modal-feature {
        padding: 0.8rem;
        font-size: 0.9rem;
    }
    .service-modal-feature i {
        font-size: 1.1rem;
    }
    .service-modal-footer {
        flex-direction: column;
        padding: 1.5rem;
    }
    .service-modal-btn {
        width: 100%;
        justify-content: center;
        padding: 0.9rem 2rem;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .service-modal-container {
        max-width: 100%;
        margin: 0;
        max-height: 100vh;
        border-radius: 0;
    }
    .service-modal-image {
        height: 180px;
    }
    .service-modal-content {
        max-height: 100vh;
    }
    .service-modal-close {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        top: 10px;
        right: 10px;
    }
    .service-modal-header {
        padding: 1.2rem;
        margin-bottom: 1rem;
        padding-bottom: 1rem;
    }
    .service-modal-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    .service-modal-title h2 {
        font-size: 1.3rem;
    }
    .service-modal-title p {
        font-size: 0.9rem;
    }
    .service-modal-body {
        padding: 1.2rem;
        padding-top: 0.8rem;
    }
    .service-modal-body p {
        font-size: 0.9rem;
    }
    .service-modal-feature {
        padding: 0.7rem;
        font-size: 0.85rem;
    }
    .service-modal-footer {
        padding: 1.2rem;
    }
    .service-modal-btn {
        padding: 0.85rem 1.5rem;
        font-size: 0.85rem;
    }
}