/* CSS Variables for Theme */

:root {
    --bg-primary: #0a0a0a;
    --bg-secondary: #1a1a1a;
    --text-primary: #ffffff;
    --text-secondary: #b0b0b0;
    --accent-color: #4a9eff;
    --accent-hover: #6bb0ff;
    --card-bg: rgba(255, 255, 255, 0.05);
    --card-border: rgba(255, 255, 255, 0.1);
    --shadow: rgba(0, 0, 0, 0.5);
}

[data-theme="light"] {
    --bg-primary: #ffffff;
    --bg-secondary: #f8f9fa;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --accent-color: #3b82f6;
    --accent-hover: #2563eb;
    --card-bg: rgba(255, 255, 255, 0.8);
    --card-border: rgba(0, 0, 0, 0.08);
    --shadow: rgba(0, 0, 0, 0.08);
}


/* Reset & Base Styles */

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
    min-height: 100vh;
}


/* Hide cursor only on pages with custom cursor */

body:has(#customCursor) {
    cursor: none;
}

body.loading {
    overflow: hidden;
}


/* Loading Screen */

.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg-primary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-screen.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loading-content {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.loading-container {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loading-title {
    font-family: 'Kalam', cursive;
    font-size: 4.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, #4a9eff, #8b5cf6, #ff6b9d, #ff9500, #ffd700, #4a9eff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    position: relative;
    z-index: 10;
    margin: 0;
    filter: drop-shadow(0 0 30px rgba(74, 158, 255, 0.6));
    letter-spacing: 4px;
}

.loading-ring-outer {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 4px solid transparent;
    border-top: 4px solid #4a9eff;
    border-right: 4px solid #8b5cf6;
    animation: spinRing 1.2s linear infinite;
    z-index: 1;
}

.loading-ring-inner {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 160px;
    height: 160px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom: 3px solid #ff6b9d;
    border-left: 3px solid #ff9500;
    animation: spinRing 0.8s linear infinite reverse;
    z-index: 2;
}

@keyframes spinRing {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }
    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

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

[data-theme="light"] .loading-screen {
    background: var(--bg-primary);
}

[data-theme="light"] .loading-title {
    background: linear-gradient(135deg, #3b82f6, #6366f1, #8b5cf6, #ec4899, #f59e0b, #3b82f6);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .loading-ring-outer {
    border-top-color: #3b82f6;
    border-right-color: #6366f1;
}

[data-theme="light"] .loading-ring-inner {
    border-bottom-color: #ec4899;
    border-left-color: #f59e0b;
}


/* Loading Screen Responsive */

@media (max-width: 768px) {
    .loading-logo {
        width: 150px;
        height: 150px;
    }
    .loading-title {
        font-size: 3rem;
    }
    .loading-ring {
        width: 135px;
        height: 135px;
    }
    .loading-subtitle {
        font-size: 1.2rem;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .loading-logo {
        width: 120px;
        height: 120px;
    }
    .loading-title {
        font-size: 2.5rem;
    }
    .loading-ring {
        width: 108px;
        height: 108px;
    }
    .loading-subtitle {
        font-size: 1rem;
        margin-top: 12px;
        letter-spacing: 2px;
    }
}


/* Custom cursor - only for pages with custom cursor element */

body:has(#customCursor) * {
    cursor: none !important;
}

body:has(#customCursor) {
    cursor: none;
}


/* Animated Background */

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    background-size: 400% 400%;
    animation: gradientShift 15s ease infinite;
    opacity: 0.1;
    transition: opacity 0.3s ease;
}

[data-theme="light"] body::before {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 25%, #f093fb 50%, #4facfe 75%, #00f2fe 100%);
    opacity: 0.05;
}

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


/* Floating Particles Background */

body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-image: radial-gradient(circle at 20% 50%, rgba(74, 158, 255, 0.15) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(139, 92, 246, 0.15) 0%, transparent 50%), radial-gradient(circle at 40% 20%, rgba(255, 107, 157, 0.1) 0%, transparent 50%);
    animation: floatParticles 20s ease-in-out infinite;
    pointer-events: none;
}

[data-theme="light"] body::after {
    background-image: radial-gradient(circle at 20% 50%, rgba(59, 130, 246, 0.08) 0%, transparent 50%), radial-gradient(circle at 80% 80%, rgba(99, 102, 241, 0.08) 0%, transparent 50%), radial-gradient(circle at 40% 20%, rgba(168, 85, 247, 0.05) 0%, transparent 50%);
}

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


/* Custom Cursor */

.custom-cursor {
    position: fixed;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--accent-color);
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: width 0.2s ease, height 0.2s ease, background 0.2s ease;
    mix-blend-mode: difference;
    box-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
}

.custom-cursor.hover {
    width: 30px;
    height: 30px;
    background: transparent;
    border: 2px solid var(--accent-color);
    box-shadow: 0 0 20px rgba(74, 158, 255, 0.8);
}

.custom-cursor.click {
    width: 20px;
    height: 20px;
    background: var(--accent-hover);
    box-shadow: 0 0 30px rgba(74, 158, 255, 1);
}


/* Cursor Trail */

.cursor-trail {
    position: fixed;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--accent-color) 0%, transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    opacity: 0.4;
    filter: blur(4px);
    transition: opacity 0.3s ease, transform 0.1s ease;
}


/* Cursor Click Effect */

.cursor-click-effect {
    position: fixed;
    width: 0;
    height: 0;
    border-radius: 50%;
    border: 2px solid var(--accent-color);
    pointer-events: none;
    z-index: 9997;
    transform: translate(-50%, -50%);
    opacity: 0;
}

.cursor-click-effect.animate {
    animation: clickRipple 0.6s ease-out;
}

@keyframes clickRipple {
    0% {
        width: 0;
        height: 0;
        opacity: 0.8;
        border-width: 3px;
    }
    50% {
        opacity: 0.4;
    }
    100% {
        width: 120px;
        height: 120px;
        opacity: 0;
        border-width: 1px;
    }
}


/* Falling Code Background Animation */

.falling-code-bg {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.code-column {
    position: absolute;
    top: -100%;
    width: 2px;
    height: 200%;
    background: linear-gradient(to bottom, transparent 0%, var(--accent-color) 10%, var(--accent-color) 20%, transparent 30%, transparent 100%);
    opacity: 0.15;
    filter: blur(1px);
    animation: fallCode 20s linear infinite;
}

[data-theme="light"] .code-column {
    background: linear-gradient(to bottom, transparent 0%, var(--accent-color) 10%, var(--accent-color) 20%, transparent 30%, transparent 100%);
    opacity: 0.08;
}

.code-column::before,
.code-column::after {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
    height: 20px;
    background: var(--accent-color);
    opacity: 0.3;
    filter: blur(2px);
}

.code-column::before {
    top: 20%;
    animation: codePulse 3s ease-in-out infinite;
}

.code-column::after {
    top: 60%;
    animation: codePulse 3s ease-in-out infinite 1.5s;
}

@keyframes fallCode {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(100vh);
    }
}

@keyframes codePulse {
    0%,
    100% {
        opacity: 0.2;
    }
    50% {
        opacity: 0.5;
    }
}


/* Content Wrapper for seamless flow */

.content-wrapper {
    position: relative;
    z-index: 1;
}


/* Kinetic Loader */

.kinetic {
    position: relative;
    height: 30px;
    width: 30px;
    flex-shrink: 0;
    margin-right: 12px;
}

.kinetic::before,
.kinetic::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 0;
    border: 15px solid transparent;
    border-bottom-color: var(--accent-color);
    animation: rotateA 2s ease-in-out infinite 0.5s, color-change 2s ease-in-out infinite 1s;
}

.kinetic::before {
    animation: rotateB 2s ease-in-out infinite, color-change 2s ease-in-out infinite;
}

@keyframes rotateA {
    0%,
    25% {
        transform: rotate(0deg);
    }
    50%,
    75% {
        transform: rotate(180deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes rotateB {
    0%,
    25% {
        transform: rotate(90deg);
    }
    50%,
    75% {
        transform: rotate(270deg);
    }
    100% {
        transform: rotate(450deg);
    }
}

@keyframes color-change {
    75% {
        border-bottom-color: var(--accent-hover);
    }
}

[data-theme="light"] .kinetic::before,
[data-theme="light"] .kinetic::after {
    border-bottom-color: var(--accent-color);
}


/* Navigation Menu */

.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: var(--card-bg);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--card-border);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.main-nav.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.15);
    background: rgba(var(--card-bg-rgb, 26, 26, 26), 0.95);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    gap: 20px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-logo a {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    text-decoration: none;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Kalam', cursive;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.nav-logo a:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 10px rgba(74, 158, 255, 0.5));
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 10px;
    align-items: center;
}

.nav-link {
    display: block;
    padding: 10px 20px;
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

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

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--accent-color);
    border-radius: 2px;
    transition: width 0.3s cubic-bezier(0.23, 1, 0.32, 1);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 30px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--accent-color);
    background: rgba(74, 158, 255, 0.1);
    transform: translateY(-2px);
}

.nav-link.active {
    background: rgba(74, 158, 255, 0.15);
    border: 1px solid rgba(74, 158, 255, 0.3);
}


/* Programlar Link Özel Stili */

.nav-link-programs {
    background: linear-gradient(135deg, #ff6b9d, #ff9500, #ffd700) !important;
    background-size: 200% 200% !important;
    color: white !important;
    -webkit-text-fill-color: white !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
    padding: 10px 24px !important;
    font-weight: 600 !important;
    animation: programsGradient 3s ease infinite !important;
    box-shadow: 0 4px 15px rgba(255, 107, 157, 0.3) !important;
}

.nav-link-programs::before {
    display: none !important;
}

.nav-link-programs:hover {
    background-position: 100% 0 !important;
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 8px 25px rgba(255, 107, 157, 0.5) !important;
    color: white !important;
    -webkit-text-fill-color: white !important;
}

.nav-link-programs.active {
    background: linear-gradient(135deg, #ff6b9d, #ff9500, #ffd700) !important;
    background-size: 200% 200% !important;
    color: white !important;
    -webkit-text-fill-color: white !important;
    box-shadow: 0 6px 20px rgba(255, 107, 157, 0.4) !important;
}

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

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


/* Mobile Menu Toggle */

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 10001;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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


/* Theme Toggle Button */

.theme-toggle {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 50%;
    width: 45px;
    height: 45px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex-shrink: 0;
}

.theme-toggle:hover {
    transform: scale(1.1);
    background: var(--accent-color);
    border-color: var(--accent-color);
}


/* Container */

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


/* Hero Section */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    padding: 20px;
    padding-top: 90px;
    /* Navigation için boşluk */
}

.hero-content {
    animation: fadeInUp 1s ease-out;
    z-index: 10;
    position: relative;
}


/* Hero Title Animated */

.hero-title-animated {
    font-size: 7rem;
    font-weight: 700;
    font-family: 'Kalam', cursive;
    margin-bottom: 3rem;
    margin-top: -25vh;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    position: relative;
    opacity: 0;
    animation: titleFadeIn 0.5s ease-out 1.5s forwards;
    letter-spacing: 2px;
}

.hero-title-animated .letter {
    display: inline-block;
    opacity: 0;
    transform: translate(0, 0) scale(0.5) rotate(0deg);
    background: linear-gradient(135deg, #4a9eff, #8b5cf6, #ff6b9d, #ff9500, #ffd700, #4a9eff);
    background-size: 400% 400%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: letterSplitMerge 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards, gradientShift 4s ease infinite;
    text-shadow: 0 0 30px rgba(74, 158, 255, 0.6), 0 0 60px rgba(74, 158, 255, 0.4), 0 0 90px rgba(139, 92, 246, 0.3);
    position: relative;
    filter: drop-shadow(0 0 10px rgba(74, 158, 255, 0.5));
    font-family: 'Kalam', cursive;
    font-weight: 700;
}

@keyframes titleFadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes letterSplitMerge {
    0% {
        opacity: 0;
        transform: translate(0, 0) scale(0.3) rotate(0deg);
    }
    30% {
        opacity: 0.8;
        transform: translate(var(--split-x, 0), var(--split-y, 0)) scale(0.8) rotate(var(--split-rotate, 0deg));
    }
    60% {
        opacity: 1;
        transform: translate(var(--merge-x, 0), var(--merge-y, 0)) scale(1.1) rotate(var(--merge-rotate, 0deg));
    }
    80% {
        transform: translate(0, 0) scale(1.05) rotate(0deg);
    }
    100% {
        opacity: 1;
        transform: translate(0, 0) scale(1) rotate(0deg);
    }
}

[data-theme="light"] .hero-title-animated .letter {
    background: linear-gradient(135deg, #1e40af, #6d28d9, #be185d, #c2410c, #a16207, #1e40af);
    background-size: 400% 400%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1)) drop-shadow(0 0 8px rgba(37, 99, 235, 0.2));
    text-shadow: none;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-title-animated .letter.space {
    width: 20px;
}

.hero-title-animated .letter:nth-child(1) {
    animation-delay: 1.5s;
    --split-x: -150px;
    --split-y: -100px;
    --split-rotate: -45deg;
    --merge-x: 50px;
    --merge-y: -30px;
    --merge-rotate: 15deg;
}

.hero-title-animated .letter:nth-child(2) {
    animation-delay: 1.6s;
    --split-x: 120px;
    --split-y: -80px;
    --split-rotate: 30deg;
    --merge-x: -30px;
    --merge-y: -20px;
    --merge-rotate: -10deg;
}

.hero-title-animated .letter:nth-child(3) {
    animation-delay: 1.7s;
    --split-x: -100px;
    --split-y: 120px;
    --split-rotate: 45deg;
    --merge-x: 40px;
    --merge-y: 30px;
    --merge-rotate: -15deg;
}

.hero-title-animated .letter:nth-child(4) {
    animation-delay: 1.8s;
    --split-x: 0;
    --split-y: 0;
    --split-rotate: 0deg;
    --merge-x: 0;
    --merge-y: 0;
    --merge-rotate: 0deg;
}

.hero-title-animated .letter:nth-child(5) {
    animation-delay: 1.9s;
    --split-x: 130px;
    --split-y: 100px;
    --split-rotate: -30deg;
    --merge-x: -40px;
    --merge-y: 25px;
    --merge-rotate: 12deg;
}

.hero-title-animated .letter:nth-child(6) {
    animation-delay: 2.0s;
    --split-x: -110px;
    --split-y: -90px;
    --split-rotate: 60deg;
    --merge-x: 35px;
    --merge-y: -25px;
    --merge-rotate: -18deg;
}

.hero-title-animated .letter:nth-child(7) {
    animation-delay: 2.1s;
    --split-x: 140px;
    --split-y: -70px;
    --split-rotate: -45deg;
    --merge-x: -45px;
    --merge-y: 20px;
    --merge-rotate: 20deg;
}

.hero-title-animated .letter:nth-child(8) {
    animation-delay: 2.2s;
    --split-x: -120px;
    --split-y: 110px;
    --split-rotate: 50deg;
    --merge-x: 50px;
    --merge-y: -35px;
    --merge-rotate: -22deg;
}

.hero-title-animated .letter:nth-child(9) {
    animation-delay: 2.3s;
    --split-x: 100px;
    --split-y: 130px;
    --split-rotate: -60deg;
    --merge-x: -35px;
    --merge-y: 30px;
    --merge-rotate: 18deg;
}

.hero-title-animated .letter:nth-child(10) {
    animation-delay: 2.4s;
    --split-x: -130px;
    --split-y: -110px;
    --split-rotate: 40deg;
    --merge-x: 45px;
    --merge-y: -28px;
    --merge-rotate: -15deg;
}

.hero-title-animated .letter:nth-child(11) {
    animation-delay: 2.5s;
    --split-x: 110px;
    --split-y: -100px;
    --split-rotate: -50deg;
    --merge-x: -40px;
    --merge-y: 25px;
    --merge-rotate: 20deg;
}

.hero-title-animated .letter:nth-child(12) {
    animation-delay: 2.6s;
    --split-x: -140px;
    --split-y: 100px;
    --split-rotate: 35deg;
    --merge-x: 50px;
    --merge-y: -30px;
    --merge-rotate: -20deg;
}

@keyframes letterSlideIn {
    0% {
        opacity: 0;
        transform: translateY(50px) rotateX(90deg) scale(0.5);
    }
    50% {
        opacity: 0.8;
        transform: translateY(-10px) rotateX(0deg) scale(1.1);
    }
    100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
    }
}

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


/* Hover efekti */

.hero-title-animated .letter:hover {
    animation: letterBounce 0.5s ease, gradientShift 1s ease infinite;
    filter: drop-shadow(0 0 20px rgba(74, 158, 255, 0.8)) drop-shadow(0 0 40px rgba(139, 92, 246, 0.6));
    transform: translateY(-5px) scale(1.15);
}

@keyframes letterBounce {
    0%,
    100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-15px) scale(1.2);
    }
}

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

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

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.3s both;
    margin-bottom: 30px;
}

.hero-service-buttons {
    display: flex;
    gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease-out 0.6s both;
    margin-top: 20px;
}

.btn-service {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(74, 158, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1.5px solid rgba(74, 158, 255, 0.3);
    border-radius: 30px;
    color: var(--text-primary);
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.3px;
}

.btn-service i {
    font-size: 1rem;
    color: var(--accent-color);
    transition: all 0.4s ease;
}

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

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

.btn-service:hover {
    background: rgba(74, 158, 255, 0.2);
    border-color: var(--accent-color);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 10px 25px rgba(74, 158, 255, 0.4), 0 5px 15px rgba(74, 158, 255, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: var(--accent-color);
}

.btn-service:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-hover);
}

.btn-service:active {
    transform: translateY(-1px) scale(1.02);
}

[data-theme="light"] .btn-service {
    background: rgba(59, 130, 246, 0.08);
    border-color: rgba(59, 130, 246, 0.25);
    color: var(--text-primary);
}

[data-theme="light"] .btn-service:hover {
    background: rgba(59, 130, 246, 0.15);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3), 0 5px 15px rgba(59, 130, 246, 0.2), inset 0 1px 0 rgba(255, 255, 255, 0.2);
}


/* Buttons - Premium Quality */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 42px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    perspective: 1000px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
}

.btn span {
    position: relative;
    z-index: 1;
}

.btn i {
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
    pointer-events: none;
}

.btn:hover::before {
    left: 100%;
}

.btn::after {
    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 ease, height 0.6s ease;
    pointer-events: none;
}

.btn:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #6bb0ff 50%, var(--accent-hover) 100%);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.4), 0 5px 15px rgba(74, 158, 255, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.25), inset 0 -2px 0 rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(74, 158, 255, 0.5);
    transform: translateY(0) rotateX(0deg);
    animation: buttonGlow 3s ease-in-out infinite;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, #8bc5ff 50%, var(--accent-color) 100%);
    background-position: 100% 0;
    transform: translateY(-5px) rotateX(8deg) scale(1.08);
    box-shadow: 0 20px 50px rgba(74, 158, 255, 0.6), 0 10px 25px rgba(74, 158, 255, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.35), inset 0 -3px 0 rgba(0, 0, 0, 0.2), 0 0 40px rgba(74, 158, 255, 0.8);
    animation: buttonGlowHover 1.5s ease-in-out infinite;
}

.btn-primary:hover i {
    transform: translateX(5px);
}

.btn-primary:active {
    transform: translateY(-2px) rotateX(4deg) scale(1.04);
    box-shadow: 0 8px 20px rgba(74, 158, 255, 0.5), 0 4px 10px rgba(74, 158, 255, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.25);
}

@keyframes buttonGlow {
    0%,
    100% {
        box-shadow: 0 10px 30px rgba(74, 158, 255, 0.4), 0 5px 15px rgba(74, 158, 255, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.25), inset 0 -2px 0 rgba(0, 0, 0, 0.15), 0 0 0 0 rgba(74, 158, 255, 0.5);
    }
    50% {
        box-shadow: 0 10px 30px rgba(74, 158, 255, 0.5), 0 5px 15px rgba(74, 158, 255, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.25), inset 0 -2px 0 rgba(0, 0, 0, 0.15), 0 0 30px rgba(74, 158, 255, 0.6);
    }
}

@keyframes buttonGlowHover {
    0%,
    100% {
        box-shadow: 0 20px 50px rgba(74, 158, 255, 0.6), 0 10px 25px rgba(74, 158, 255, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.35), inset 0 -3px 0 rgba(0, 0, 0, 0.2), 0 0 40px rgba(74, 158, 255, 0.8);
    }
    50% {
        box-shadow: 0 20px 50px rgba(74, 158, 255, 0.7), 0 10px 25px rgba(74, 158, 255, 0.6), inset 0 2px 0 rgba(255, 255, 255, 0.35), inset 0 -3px 0 rgba(0, 0, 0, 0.2), 0 0 60px rgba(74, 158, 255, 1);
    }
}

[data-theme="light"] .btn-primary {
    background: linear-gradient(135deg, var(--accent-color) 0%, #60a5fa 50%, var(--accent-hover) 100%);
    background-size: 200% 200%;
    color: white;
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3), 0 5px 15px rgba(59, 130, 246, 0.2), inset 0 2px 0 rgba(255, 255, 255, 0.25), inset 0 -2px 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(59, 130, 246, 0.4);
    animation: buttonGlowLight 3s ease-in-out infinite;
}

[data-theme="light"] .btn-primary:hover {
    background: linear-gradient(135deg, var(--accent-hover) 0%, #7ab8ff 50%, var(--accent-color) 100%);
    background-position: 100% 0;
    box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5), 0 10px 25px rgba(59, 130, 246, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.35), inset 0 -3px 0 rgba(0, 0, 0, 0.15), 0 0 40px rgba(59, 130, 246, 0.7);
    animation: buttonGlowHoverLight 1.5s ease-in-out infinite;
}

@keyframes buttonGlowLight {
    0%,
    100% {
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.3), 0 5px 15px rgba(59, 130, 246, 0.2), inset 0 2px 0 rgba(255, 255, 255, 0.25), inset 0 -2px 0 rgba(0, 0, 0, 0.1), 0 0 0 0 rgba(59, 130, 246, 0.4);
    }
    50% {
        box-shadow: 0 10px 30px rgba(59, 130, 246, 0.4), 0 5px 15px rgba(59, 130, 246, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.25), inset 0 -2px 0 rgba(0, 0, 0, 0.1), 0 0 30px rgba(59, 130, 246, 0.5);
    }
}

@keyframes buttonGlowHoverLight {
    0%,
    100% {
        box-shadow: 0 20px 50px rgba(59, 130, 246, 0.5), 0 10px 25px rgba(59, 130, 246, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.35), inset 0 -3px 0 rgba(0, 0, 0, 0.15), 0 0 40px rgba(59, 130, 246, 0.7);
    }
    50% {
        box-shadow: 0 20px 50px rgba(59, 130, 246, 0.6), 0 10px 25px rgba(59, 130, 246, 0.5), inset 0 2px 0 rgba(255, 255, 255, 0.35), inset 0 -3px 0 rgba(0, 0, 0, 0.15), 0 0 60px rgba(59, 130, 246, 0.8);
    }
}

.btn-secondary {
    background: rgba(74, 158, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--text-primary);
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.2), inset 0 0 0 rgba(74, 158, 255, 0), 0 0 0 0 rgba(74, 158, 255, 0.3);
    transform: translateY(0) rotateX(0deg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-secondary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    border-radius: 50px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.btn-secondary:hover {
    color: white;
    border-color: var(--accent-hover);
    background: rgba(74, 158, 255, 0.1);
    transform: translateY(-5px) rotateX(8deg) scale(1.08);
    box-shadow: 0 15px 40px rgba(74, 158, 255, 0.5), 0 8px 20px rgba(74, 158, 255, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.25), 0 0 30px rgba(74, 158, 255, 0.6);
}

.btn-secondary:hover i {
    transform: translateX(5px);
}

.btn-secondary:hover::after {
    opacity: 1;
    transform: scale(1);
}

.btn-secondary:active {
    transform: translateY(-2px) rotateX(4deg) scale(1.04);
}

[data-theme="light"] .btn-secondary {
    background: rgba(59, 130, 246, 0.05);
    backdrop-filter: blur(10px);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.15), inset 0 0 0 rgba(59, 130, 246, 0), 0 0 0 0 rgba(59, 130, 246, 0.2);
}

[data-theme="light"] .btn-secondary:hover {
    background: rgba(59, 130, 246, 0.1);
    color: white;
    box-shadow: 0 15px 40px rgba(59, 130, 246, 0.4), 0 8px 20px rgba(59, 130, 246, 0.3), inset 0 2px 0 rgba(255, 255, 255, 0.25), 0 0 30px rgba(59, 130, 246, 0.5);
}

.btn-outline {
    background: rgba(74, 158, 255, 0.05);
    backdrop-filter: blur(10px);
    color: var(--accent-color);
    border: 2px solid var(--accent-color);
    padding: 12px 28px;
    font-size: 0.85rem;
    box-shadow: 0 4px 15px rgba(74, 158, 255, 0.2), inset 0 0 0 rgba(74, 158, 255, 0), 0 0 0 0 rgba(74, 158, 255, 0.3);
    transform: translateY(0) rotateX(0deg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.btn-outline::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--accent-color) 0%, var(--accent-hover) 100%);
    border-radius: 50px;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    z-index: -1;
}

.btn-outline:hover {
    background: rgba(74, 158, 255, 0.1);
    color: white;
    border-color: var(--accent-hover);
    transform: translateY(-4px) rotateX(8deg) scale(1.06);
    box-shadow: 0 12px 35px rgba(74, 158, 255, 0.5), 0 6px 18px rgba(74, 158, 255, 0.4), inset 0 2px 0 rgba(255, 255, 255, 0.25), 0 0 25px rgba(74, 158, 255, 0.6);
}

.btn-outline:hover::after {
    opacity: 1;
    transform: scale(1);
}

.btn-outline:active {
    transform: translateY(-2px) rotateX(4deg) scale(1.03);
}

[data-theme="light"] .btn-outline {
    color: var(--accent-color);
    border-color: var(--accent-color);
}

[data-theme="light"] .btn-outline:hover {
    background: var(--accent-color);
    color: white;
}


/* Section Styles - Seamless flow */

section {
    padding: 100px 0;
    position: relative;
    background: transparent;
    transition: all 0.3s ease;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-primary);
    position: relative;
    padding-bottom: 20px;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #8b5cf6);
    border-radius: 2px;
}


/* Services Section - Modern Design */

.services {
    background: transparent;
    backdrop-filter: none;
    overflow: hidden;
    position: relative;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}


/* Modern Services Grid */

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

.service-card-modern {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 35px;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(15px);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    min-height: 380px;
}

.service-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--accent-color), #8b5cf6, #ff6b9d);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

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

.service-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.service-card-modern:hover .service-card-overlay {
    opacity: 1;
}

.service-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(74, 158, 255, 0.2), 0 0 40px rgba(74, 158, 255, 0.1);
    border-color: var(--accent-color);
}

.service-card-icon {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.icon-wrapper::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.5s ease, height 0.5s ease;
}

.service-card-modern:hover .icon-wrapper::before {
    width: 200px;
    height: 200px;
}

.service-card-modern:hover .icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(74, 158, 255, 0.5);
}

.service-number {
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    line-height: 1;
    font-family: 'Kalam', cursive;
    transition: opacity 0.5s ease;
}

.service-card-modern:hover .service-number {
    opacity: 0.25;
}

.service-card-content {
    position: relative;
    z-index: 1;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.service-card-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
    transition: color 0.3s ease;
}

.service-card-modern:hover .service-card-content h3 {
    color: var(--accent-color);
}

.service-card-content>p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 0.95rem;
    flex: 1;
}

.service-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: color 0.3s ease, transform 0.3s ease;
}

.service-features li i {
    color: var(--accent-color);
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.service-card-modern:hover .service-features li {
    color: var(--text-primary);
    transform: translateX(5px);
}

.service-card-modern:hover .service-features li i {
    transform: scale(1.2);
}


/* Services Slider - Compact Version */

.services-slider-compact {
    margin: 30px auto;
    max-width: 600px;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(15px);
    padding: 25px 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.slider-track-compact {
    display: flex;
    transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(0);
}

.slider-slide-compact {
    min-width: 100%;
    opacity: 0;
    transform: translateX(30px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.slider-slide-compact.active {
    opacity: 1;
    transform: translateX(0);
}

.slide-content-compact {
    text-align: center;
    padding: 10px 0;
}

.slide-content-compact i {
    font-size: 2rem;
    color: var(--accent-color);
    margin-bottom: 12px;
    display: block;
    animation: iconPulse 2s ease-in-out infinite;
}

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

.slide-content-compact h3 {
    font-size: 1.3rem;
    margin-bottom: 8px;
    color: var(--text-primary);
    font-weight: 600;
}

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

.slider-controls-compact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.slider-btn-prev,
.slider-btn-next {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.slider-btn-prev:hover,
.slider-btn-next:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    color: white;
    transform: scale(1.1);
}

.slider-btn-prev:active,
.slider-btn-next:active {
    transform: scale(0.95);
}

.slider-dots-compact {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.slider-dots-compact .dot-compact {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--card-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots-compact .dot-compact.active {
    background: var(--accent-color);
    transform: scale(1.4);
    box-shadow: 0 0 8px rgba(74, 158, 255, 0.5);
    width: 24px;
    border-radius: 4px;
}


/* Old Slider Styles - Keep for backward compatibility */

.services-slider {
    margin: 50px auto;
    max-width: 800px;
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(15px);
    padding: 40px;
}

.slider-track {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform: translateX(0);
}

.slider-slide {
    min-width: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.slider-slide.active {
    opacity: 1;
    transform: translateX(0);
}

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

.slide-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.slide-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.slider-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--card-border);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slider-dots .dot.active {
    background: var(--accent-color);
    transform: scale(1.3);
    box-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
}


/* Services List - Auto Scroll */

.services-scroll-wrapper {
    margin-top: 40px;
    overflow-x: hidden;
    overflow-y: hidden;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    position: relative;
}

.services-list {
    display: flex;
    gap: 30px;
    padding: 0 50px;
    list-style: none;
    margin: 0;
    width: fit-content;
    will-change: transform;
    cursor: default;
    transform: translateZ(0);
    /* GPU acceleration */
    backface-visibility: hidden;
}

[data-dragging="true"] .services-list {
    cursor: grabbing;
}

.services-list li {
    flex-shrink: 0;
}

.service-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 25px;
    padding: 40px 35px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(15px);
    min-width: 320px;
    max-width: 320px;
    width: 320px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s ease-out forwards;
    cursor: pointer;
}

.service-card::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.2), transparent);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    pointer-events: none;
    z-index: 0;
}

.service-card:hover::after {
    width: 300px;
    height: 300px;
}

.service-card:nth-child(1) {
    animation-delay: 0.1s;
}

.service-card:nth-child(2) {
    animation-delay: 0.2s;
}

.service-card:nth-child(3) {
    animation-delay: 0.3s;
}

.service-card:nth-child(4) {
    animation-delay: 0.4s;
}

.service-card:nth-child(5) {
    animation-delay: 0.5s;
}

.service-card:nth-child(6) {
    animation-delay: 0.6s;
}

.service-card:nth-child(7) {
    animation-delay: 0.7s;
}

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

.service-card a {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 20px;
    display: block;
    transition: all 0.4s ease;
}

.service-card a:hover {
    color: var(--accent-color);
}

.service-card a span {
    color: var(--accent-color);
    opacity: 0.7;
}

.service-image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 20px 0;
}

.service-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(74, 158, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.6s ease;
    pointer-events: none;
}

.service-card:hover::before {
    opacity: 1;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0%,
    100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

.service-card:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 20px 60px rgba(74, 158, 255, 0.4), 0 0 40px rgba(74, 158, 255, 0.2), inset 0 0 30px rgba(74, 158, 255, 0.1);
    border-color: var(--accent-color);
    border-width: 2px;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.service-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 25px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3);
}

[data-theme="light"] .service-image {
    background: linear-gradient(135deg, var(--accent-color), #60a5fa);
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.2);
}

.service-image::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
    filter: blur(15px);
}

.service-card:hover .service-image {
    transform: scale(1.15) rotate(360deg);
    box-shadow: 0 15px 40px rgba(74, 158, 255, 0.5), 0 0 30px rgba(74, 158, 255, 0.3);
}

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

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

.service-icon {
    font-size: 3rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.3));
    display: block;
}

.service-card:hover .service-icon {
    transform: scale(1.15) rotate(5deg);
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.6));
    color: #ffffff;
}

[data-theme="light"] .service-icon {
    color: white;
    filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.4));
}

[data-theme="light"] .service-card:hover .service-icon {
    filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.7));
}

.service-card h3 {
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--text-primary);
    transition: all 0.4s ease;
    font-weight: 600;
}

.service-card:hover h3 {
    color: var(--accent-color);
    transform: translateY(-3px);
    text-shadow: 0 0 20px rgba(74, 158, 255, 0.5);
}

.service-card p {
    color: var(--text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    transition: all 0.4s ease;
    margin-top: auto;
}

.service-card:hover p {
    color: var(--text-primary);
    transform: translateY(-2px);
}


/* Programs Preview Section */

.programs-preview {
    background: transparent;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 40px;
    width: 100%;
    max-width: 100%;
}

.program-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(15px);
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

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

.program-card:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 50px rgba(74, 158, 255, 0.3), 0 0 30px rgba(74, 158, 255, 0.2);
    border-color: var(--accent-color);
}

.program-image {
    width: 100%;
    height: 120px;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 15px 15px 0 0;
}

.program-card-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
    display: block;
}

.program-card:hover .program-card-image {
    transform: scale(1);
}

.program-placeholder {
    color: white;
    font-size: 1.2rem;
    font-weight: 600;
}

.program-card h3 {
    padding: 12px 12px 6px;
    font-size: 1rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 600;
}

.program-card p {
    padding: 0 12px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    flex: 1;
    line-height: 1.4;
    font-size: 0.85rem;
}

.program-price {
    padding: 0 12px;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.price-old {
    font-size: 0.85rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.7;
}

.price-new {
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Fallback for browsers that don't support gradient text */

@supports not (background-clip: text) {
    .price-new {
        color: var(--accent-color);
        background: none;
        -webkit-text-fill-color: var(--accent-color);
    }
}

.price-single {
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Fallback for browsers that don't support gradient text */

@supports not (background-clip: text) {
    .price-single {
        color: var(--accent-color);
        background: none;
        -webkit-text-fill-color: var(--accent-color);
    }
}

.price-free {
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-block;
    position: relative;
    color: #25D366;
    background: linear-gradient(135deg, #25D366, #128C7E);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Fallback for browsers that don't support gradient text */

@supports not (background-clip: text) {
    .price-free {
        color: #25D366;
        background: none;
        -webkit-text-fill-color: #25D366;
    }
}

.price-free::before {
    content: '✓';
    margin-right: 5px;
    color: #25D366;
    -webkit-text-fill-color: #25D366;
}

[data-theme="light"] .price-new,
[data-theme="light"] .price-single {
    background: linear-gradient(135deg, var(--accent-color), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-card .btn {
    margin: 0 12px 12px;
    margin-top: auto;
    padding: 8px 16px;
    font-size: 0.85rem;
}

.text-center {
    text-align: center;
    margin-top: 40px;
}


/* Websites Section */

.websites {
    background: transparent;
    backdrop-filter: none;
    overflow: hidden;
}

.websites-scroll-wrapper {
    margin-top: 50px;
    overflow-x: hidden;
    overflow-y: hidden;
    padding: 20px 0 40px;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    position: relative;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.websites-scroll-wrapper::-webkit-scrollbar {
    display: none;
}

.websites-scroll-wrapper {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.websites-grid {
    display: flex;
    gap: 30px;
    padding: 0 50px;
    width: max-content;
    flex-wrap: nowrap;
    transition: transform 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
    transform: translateZ(0);
    /* GPU acceleration */
    backface-visibility: hidden;
}

.website-card {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    backdrop-filter: blur(15px);
    min-width: 350px;
    max-width: 350px;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    opacity: 0;
    transform: translateX(30px);
    animation: slideInRight 0.8s ease-out forwards;
    position: relative;
}

.website-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.15), transparent);
    transition: left 0.8s ease;
    z-index: 1;
    pointer-events: none;
}

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

.website-card:nth-child(1) {
    animation-delay: 0.1s;
}

.website-card:nth-child(2) {
    animation-delay: 0.2s;
}

.website-card:nth-child(3) {
    animation-delay: 0.3s;
}

.website-card:nth-child(4) {
    animation-delay: 0.4s;
}

.website-card:nth-child(5) {
    animation-delay: 0.5s;
}

.website-card:nth-child(6) {
    animation-delay: 0.6s;
}

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

.website-card:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: var(--accent-color);
    box-shadow: 0 15px 40px rgba(74, 158, 255, 0.3);
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.website-preview {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    position: relative;
    overflow: hidden;
}

.website-screenshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.website-card:hover .website-screenshot {
    transform: scale(1.05);
}

.website-info {
    padding: 25px;
    text-align: center;
    background: var(--card-bg);
    border-top: 1px solid var(--card-border);
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.website-name {
    color: var(--text-primary);
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

@media (max-width: 768px) {
    .website-info {
        padding: 20px;
        gap: 12px;
    }
}

@media (max-width: 480px) {
    .website-info {
        padding: 15px;
        gap: 10px;
    }
}

.website-btn {
    width: 100%;
    justify-content: center;
    display: inline-flex;
    align-items: center;
    padding: 12px 20px;
    font-size: 0.95rem;
    margin-top: 5px;
}


/* Websites Section - Modern Design */

.websites-header {
    text-align: center;
    margin-bottom: 50px;
}

.websites-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-top: 15px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}


/* Modern Websites Grid */

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

.website-card-modern {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    backdrop-filter: blur(15px);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.website-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.05), rgba(139, 92, 246, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 1;
    pointer-events: none;
}

.website-card-modern:hover::before {
    opacity: 1;
}

.website-card-modern:hover {
    transform: translateY(-10px) scale(1.03);
    box-shadow: 0 25px 60px rgba(74, 158, 255, 0.25), 0 0 40px rgba(74, 158, 255, 0.15);
    border-color: var(--accent-color);
}

.website-image-wrapper {
    width: 100%;
    height: 280px;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
}

.website-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.website-card-modern:hover .website-image {
    transform: scale(1);
}

.website-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.website-card-modern:hover .website-overlay {
    opacity: 1;
}

.website-overlay-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: white;
    font-weight: 600;
    font-size: 1.1rem;
    transform: translateY(20px);
    transition: transform 0.5s ease;
}

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

.website-overlay-content i {
    font-size: 2.5rem;
    color: white;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 0.5));
}

.website-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
    z-index: 1;
    flex: 1;
}

.website-header-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.website-title {
    color: var(--text-primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin: 0;
    flex: 1;
    transition: color 0.3s ease;
}

.website-card-modern:hover .website-title {
    color: var(--accent-color);
}

.website-badge {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 10px rgba(37, 211, 102, 0.3);
    white-space: nowrap;
}

.website-link-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 12px 24px;
    background: var(--card-bg);
    border: 2px solid var(--accent-color);
    border-radius: 12px;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.website-link-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.2), transparent);
    transition: left 0.6s ease;
}

.website-link-btn:hover::before {
    left: 100%;
}

.website-link-btn:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.4);
}

.website-link-btn i {
    transition: transform 0.3s ease;
}

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


/* About Section */

.about {
    background: transparent;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

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

@media (max-width: 768px) {
    .about {
        padding: 30px 0;
    }
    .about-content p {
        font-size: 0.9rem;
        line-height: 1.6;
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 25px 0;
    }
    .about-content p {
        font-size: 0.85rem;
        line-height: 1.5;
        padding: 0 12px;
    }
}

@media (max-width: 375px) {
    .about {
        padding: 20px 0;
    }
    .about-content p {
        font-size: 0.8rem;
        line-height: 1.4;
        padding: 0 10px;
    }
}


/* Contact Section */

.contact {
    background: transparent;
    backdrop-filter: none;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 50px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px 35px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 15px;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
}

.contact-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.1), transparent);
    transition: left 0.6s ease;
}

.contact-info-item:hover::before {
    left: 100%;
}

.contact-info-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.3), 0 5px 15px rgba(74, 158, 255, 0.2);
    border-color: var(--accent-color);
}

.contact-info-item i {
    font-size: 1.5rem;
    color: var(--accent-color);
    transition: all 0.3s ease;
    min-width: 24px;
}

.contact-info-item:hover i {
    transform: scale(1.2) rotate(5deg);
    color: var(--accent-hover);
}

.contact-info-item a {
    color: var(--text-primary);
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
}

.contact-info-item a:hover {
    color: var(--accent-color);
}

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

.contact-info-item a:hover::after {
    width: 100%;
}

[data-theme="light"] .contact-info-item {
    background: rgba(255, 255, 255, 0.7);
    border-color: rgba(59, 130, 246, 0.2);
}

[data-theme="light"] .contact-info-item:hover {
    box-shadow: 0 10px 30px rgba(59, 130, 246, 0.25), 0 5px 15px rgba(59, 130, 246, 0.15);
    border-color: var(--accent-color);
}

.contact-form {
    max-width: 600px;
    margin: 0 auto;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 20px;
    padding: 40px;
    backdrop-filter: blur(15px);
}

.form-group {
    margin-bottom: 20px;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid var(--card-border);
    border-radius: 10px;
    background: var(--bg-secondary);
    color: var(--text-primary);
    font-size: 1rem;
    font-family: inherit;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(74, 158, 255, 0.1);
}

.form-group textarea {
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    margin-top: 10px;
}

.contact-form .btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none !important;
}


/* Form Notification */

.form-notification {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 0.95rem;
    font-weight: 500;
    opacity: 0;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid;
}

.form-notification.show {
    opacity: 1;
    transform: translateY(0);
}

.form-notification-success {
    background: rgba(37, 211, 102, 0.15);
    border-color: rgba(37, 211, 102, 0.3);
    color: #25D366;
}

.form-notification-error {
    background: rgba(239, 68, 68, 0.15);
    border-color: rgba(239, 68, 68, 0.3);
    color: #ef4444;
}

[data-theme="light"] .form-notification-success {
    background: rgba(37, 211, 102, 0.1);
    border-color: rgba(37, 211, 102, 0.2);
    color: #128C7E;
}

[data-theme="light"] .form-notification-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #dc2626;
}


/* Footer */

.footer {
    background: var(--card-bg);
    padding: 60px 0 30px;
    border-top: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
    margin-top: 80px;
}

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

.footer-section h4 {
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 20px;
    font-weight: 600;
}

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

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

.footer-section ul li {
    margin-bottom: 12px;
}

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

.footer-section ul li a:hover {
    color: var(--accent-color);
    transform: translateX(5px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--card-border);
}

.footer-bottom p {
    color: var(--text-secondary);
    margin: 0;
}


/* Scroll Progress Bar */

.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, var(--accent-color), #8b5cf6, var(--accent-color));
    background-size: 200% 100%;
    z-index: 10000;
    transition: width 0.1s ease;
    box-shadow: 0 0 10px rgba(74, 158, 255, 0.5);
    animation: progressGlow 2s ease infinite;
}

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


/* Programs Page Styles */

.back-button {
    display: inline-flex;
    align-items: center;
    margin: 20px 0;
    color: var(--accent-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    padding: 12px 24px;
    border-radius: 12px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.back-button:hover {
    background: rgba(74, 158, 255, 0.1);
    border-color: var(--accent-color);
    transform: translateX(-5px);
    box-shadow: 0 5px 15px rgba(74, 158, 255, 0.2);
}

.back-button svg {
    transition: transform 0.3s ease;
}

.back-button:hover svg {
    transform: translateX(-3px);
}

.programs-page {
    padding: 100px 0 80px;
    min-height: 100vh;
}

.page-header {
    text-align: center;
    margin-bottom: 60px;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6, #ff6b9d);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
    font-family: 'Kalam', cursive;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.programs-list {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.program-item {
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 25px;
    padding: 0;
    display: flex;
    gap: 0;
    backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    overflow: hidden;
    position: relative;
    margin-bottom: 40px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.program-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(74, 158, 255, 0.1), transparent);
    transition: left 0.6s ease;
    z-index: 1;
    pointer-events: none;
}

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

.program-item:hover {
    transform: translateY(-8px) scale(1.03);
    box-shadow: 0 20px 60px rgba(74, 158, 255, 0.3), 0 0 40px rgba(74, 158, 255, 0.2);
    border-color: var(--accent-color);
}

.program-item-image {
    width: 400px;
    height: 100%;
    min-height: 300px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    position: relative;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(74, 158, 255, 0.3), rgba(139, 92, 246, 0.3));
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: 2;
}

.program-item:hover .image-overlay {
    opacity: 1;
}

.program-item-image .program-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    filter: brightness(0.9);
}

.program-item:hover .program-item-image .program-image {
    transform: scale(1);
    filter: brightness(1);
}

.program-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 3;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.program-badge-free {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.program-badge-premium {
    background: linear-gradient(135deg, #ffd700, #ff9500);
    color: #1a1a1a;
}

.program-badge-standard {
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    color: white;
}

.program-item-content {
    flex: 1;
    padding: 40px;
    display: flex;
    flex-direction: column;
    position: relative;
}

.program-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 20px;
}

.program-item-content h3 {
    font-size: 2rem;
    margin: 0;
    color: var(--text-primary);
    font-weight: 700;
    flex: 1;
    transition: color 0.3s ease;
}

.program-item:hover .program-item-content h3 {
    color: var(--accent-color);
}

.program-icon {
    width: 60px;
    height: 60px;
    border-radius: 15px;
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 5px 20px rgba(74, 158, 255, 0.3);
}

.program-item:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(74, 158, 255, 0.5);
}

.program-item-content p {
    color: var(--text-secondary);
    margin-bottom: 25px;
    line-height: 1.8;
    font-size: 1.05rem;
    flex: 1;
}

.program-item-content .program-price {
    margin-bottom: 25px;
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.program-item-content .btn {
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: auto;
}

.program-item-content .btn i {
    transition: transform 0.3s ease;
}

.program-item-content .btn:hover i {
    transform: translateX(5px);
}

.program-item-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.program-item-buttons .btn {
    flex: 1;
    min-width: 140px;
}

.program-item-content .price-old {
    font-size: 1rem;
    color: var(--text-secondary);
    text-decoration: line-through;
    opacity: 0.7;
}

.program-item-content .price-new {
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.program-item-content .price-single {
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    color: var(--accent-color);
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Fallback for browsers that don't support gradient text */

@supports not (background-clip: text) {
    .program-item-content .price-new,
    .program-item-content .price-single {
        color: var(--accent-color);
        background: none;
        -webkit-text-fill-color: var(--accent-color);
    }
}

.program-item-content .price-free {
    font-size: 1.5rem;
    font-weight: 700;
    display: inline-block;
    position: relative;
    color: #25D366;
    background: linear-gradient(135deg, #25D366, #128C7E);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* Fallback for browsers that don't support gradient text */

@supports not (background-clip: text) {
    .program-item-content .price-free {
        color: #25D366;
        background: none;
        -webkit-text-fill-color: #25D366;
    }
}

.program-item-content .price-free::before {
    content: '✓';
    margin-right: 8px;
    color: #25D366;
    -webkit-text-fill-color: #25D366;
}

[data-theme="light"] .program-item-content .price-new,
[data-theme="light"] .program-item-content .price-single {
    background: linear-gradient(135deg, var(--accent-color), #6366f1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.feature-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--card-bg);
    border: 1px solid var(--card-border);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--accent-color);
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    font-weight: 500;
}

.feature-tag i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.feature-tag:hover {
    background: var(--accent-color);
    color: white;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 5px 15px rgba(74, 158, 255, 0.4);
    border-color: var(--accent-color);
}

.feature-tag:hover i {
    transform: scale(1.2) rotate(5deg);
}


/* Responsive Design */


/* Smooth Scroll Behavior */

html {
    scroll-behavior: smooth;
}


/* Selection Color */

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

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


/* Focus Visible for Accessibility */

*:focus-visible {
    outline: 2px solid var(--accent-color);
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }
    section {
        padding: 50px 0;
    }
    .section-title {
        margin-bottom: 30px;
        padding-bottom: 15px;
    }
    .hero-title-animated {
        font-size: 2.2rem;
        margin-top: -15vh;
        gap: 3px;
        padding: 0 15px;
        line-height: 1.1;
    }
    .hero-title-animated .letter {
        font-size: inherit;
    }
    .hero-title-animated .letter.space {
        width: 6px;
    }
    .section-title {
        font-size: 1.3rem;
        padding: 0 15px;
        margin-bottom: 20px;
    }
    /* Mobile Navigation */
    .nav-container {
        padding: 0 15px;
        height: 65px;
        gap: 15px;
    }
    .nav-menu {
        position: fixed;
        top: 65px;
        left: 0;
        width: 100%;
        height: calc(100vh - 65px);
        background: rgba(10, 10, 10, 0.85);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: flex-start;
        padding: 40px 20px 120px;
        gap: 10px;
        transform: translateX(-100%);
        transition: transform 0.3s cubic-bezier(0.23, 1, 0.32, 1);
        border-top: 1px solid var(--card-border);
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        overflow-y: auto;
    }
    [data-theme="light"] .nav-menu {
        background: rgba(255, 255, 255, 0.85);
    }
    .nav-menu::after {
        content: '';
        display: block;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 1px solid var(--card-border);
    }
    .nav-menu::after+.nav-actions {
        position: fixed;
        bottom: 20px;
        left: 0;
        right: 0;
        padding: 0 20px;
        display: flex;
        justify-content: center;
        z-index: 10002;
    }
    /* Mobilde tema butonu her zaman görünür */
    .nav-actions {
        position: relative;
        z-index: 10001;
    }
    .nav-menu.active {
        transform: translateX(0);
    }
    .nav-link {
        width: 100%;
        padding: 15px 20px;
        text-align: center;
        font-size: 1.1rem;
        border-radius: 15px;
        color: var(--text-primary) !important;
        background: transparent !important;
        opacity: 1 !important;
        -webkit-text-fill-color: var(--text-primary) !important;
    }
    .nav-link.active::after {
        display: none;
    }
    .nav-link.active {
        background: rgba(74, 158, 255, 0.2);
        border: 1px solid rgba(74, 158, 255, 0.4);
    }
    /* Mobilde Programlar linkini menü içine ekle */
    .nav-menu.active::before {
        content: '';
        display: block;
        order: 999;
    }
    .nav-actions {
        gap: 10px;
        flex-wrap: wrap;
    }
    .nav-link-programs {
        padding: 8px 18px !important;
        font-size: 0.9rem !important;
        display: inline-block;
    }
    /* Mobil menüde Programlar linki için özel stil */
    /* Mobilde Programlar linki için özel stil */
    @media (max-width: 768px) {
        .nav-actions .nav-link-programs {
            display: none;
        }
        .nav-link-programs-mobile {
            display: block !important;
            width: 100%;
            margin-top: 20px;
            padding: 15px 20px !important;
            text-align: center;
            font-size: 1.1rem !important;
            border-radius: 15px !important;
        }
    }
    .nav-toggle {
        display: flex;
    }
    .theme-toggle {
        width: 40px;
        height: 40px;
        font-size: 18px;
        display: none !important;
    }
    .nav-logo a {
        font-size: 1.1rem;
    }
    .hero {
        padding-top: 75px;
    }
    .programs-page {
        padding-top: 85px;
    }
    /* Modern Services Grid Responsive */
    .services-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    .service-card-modern {
        padding: 25px;
        min-height: 350px;
    }
    .icon-wrapper {
        width: 60px;
        height: 60px;
        font-size: 1.7rem;
    }
    .service-number {
        font-size: 3rem;
    }
    .service-card-content h3 {
        font-size: 1.3rem;
    }
    .services-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    /* Modern Websites Grid Responsive */
    .websites-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    .website-image-wrapper {
        height: 240px;
    }
    .website-title {
        font-size: 1.1rem;
    }
    .websites-subtitle {
        font-size: 1rem;
        padding: 0 15px;
    }
    /* Modern Websites Grid Responsive */
    .websites-grid-modern {
        grid-template-columns: 1fr;
        gap: 25px;
        margin-top: 40px;
    }
    .website-image-wrapper {
        height: 240px;
    }
    .website-content {
        padding: 20px;
    }
    .website-title {
        font-size: 1.1rem;
    }
    .website-link-btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .websites-header {
        margin-bottom: 35px;
    }
    .websites-subtitle {
        font-size: 0.95rem;
        padding: 0 12px;
    }
    .websites-grid-modern {
        gap: 20px;
        margin-top: 30px;
    }
    .website-image-wrapper {
        height: 200px;
    }
    .website-content {
        padding: 18px;
        gap: 12px;
    }
    .website-title {
        font-size: 1rem;
    }
    .website-link-btn {
        padding: 10px 18px;
        font-size: 0.8rem;
    }
    .hero-buttons {
        gap: 10px;
        margin-top: 20px;
        flex-direction: column;
        align-items: center;
    }
    .btn-primary,
    .btn-outline {
        padding: 10px 20px;
        font-size: 0.85rem;
        min-width: 140px;
    }
    .hero-service-buttons {
        gap: 6px;
        margin-top: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .btn-service {
        padding: 8px 12px;
        font-size: 0.7rem;
        gap: 5px;
    }
    .btn-service i {
        font-size: 0.9rem;
    }
    .service-card {
        min-width: 200px;
        max-width: 200px;
        padding: 20px 15px;
    }
    .service-card a {
        font-size: 0.95rem;
        margin-bottom: 12px;
    }
    .service-card p {
        font-size: 0.75rem;
        line-height: 1.4;
    }
    .service-image {
        width: 60px;
        height: 60px;
        margin-bottom: 12px;
    }
    .service-icon {
        font-size: 1.8rem;
    }
    .website-card {
        min-width: 220px;
        max-width: 220px;
    }
    .website-preview {
        height: 140px;
    }
    .website-name {
        font-size: 0.9rem;
    }
    .website-btn {
        font-size: 0.75rem;
        padding: 6px 12px;
    }
    .website-info {
        padding: 15px;
        gap: 10px;
    }
    .programs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        padding: 0 10px;
    }
    .program-card {
        max-width: 100%;
    }
    .program-image {
        height: 80px;
    }
    .program-card h3 {
        font-size: 0.85rem;
        padding: 8px 8px 4px;
        line-height: 1.3;
    }
    .program-card p {
        font-size: 0.7rem;
        padding: 0 8px;
        margin-bottom: 8px;
        line-height: 1.4;
    }
    .program-price {
        padding: 0 8px;
        margin-bottom: 8px;
    }
    .price-single,
    .price-free {
        font-size: 0.9rem;
    }
    .program-card .btn {
        padding: 6px 12px;
        font-size: 0.7rem;
        margin: 0 8px 8px;
    }
    .websites-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        padding: 0 10px;
    }
    .program-item {
        flex-direction: column;
        margin-bottom: 30px;
    }
    .program-item-image {
        width: 100%;
        height: 250px;
        min-height: 250px;
    }
    .program-item-content {
        padding: 25px;
    }
    .program-header {
        flex-direction: column;
        gap: 15px;
    }
    .program-icon {
        align-self: flex-start;
    }
    .page-title {
        font-size: 2rem;
    }
    .page-subtitle {
        font-size: 1rem;
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .program-item-content h3 {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }
    .program-item-content p {
        font-size: 0.95rem;
        margin-bottom: 18px;
        line-height: 1.7;
    }
    .program-header {
        margin-bottom: 15px;
    }
    .program-icon {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
    .program-features {
        gap: 6px;
        margin-bottom: 15px;
    }
    .feature-tag {
        padding: 4px 10px;
        font-size: 0.75rem;
    }
    .program-item-content .price-single,
    .program-item-content .price-free {
        font-size: 1.2rem;
    }
    .contact-form {
        padding: 25px 15px;
    }
    .contact-info {
        gap: 10px;
        margin-bottom: 20px;
    }
    .contact-info-item {
        padding: 10px 15px;
        gap: 8px;
        font-size: 0.85rem;
    }
    .contact-info-item i {
        font-size: 1rem;
    }
    .contact-info-item a {
        font-size: 0.8rem;
    }
    .form-group {
        margin-bottom: 15px;
    }
    .form-group label {
        font-size: 0.85rem;
        margin-bottom: 6px;
    }
    .form-group input,
    .form-group textarea {
        padding: 10px 12px;
        font-size: 0.85rem;
    }
    .form-group textarea {
        min-height: 100px;
    }
    .btn[type="submit"] {
        padding: 10px 20px;
        font-size: 0.85rem;
    }
    .contact-info {
        gap: 20px;
        margin-bottom: 30px;
    }
    .contact-info-item {
        padding: 15px 25px;
        gap: 12px;
    }
    .contact-info-item i {
        font-size: 1.3rem;
    }
    .contact-info-item a {
        font-size: 1rem;
    }
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    .btn {
        width: 100%;
        max-width: 300px;
    }
    .hero-service-buttons {
        gap: 10px;
        margin-top: 15px;
    }
    .btn-service {
        padding: 10px 18px;
        font-size: 0.75rem;
        gap: 8px;
    }
    .btn-service i {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 8px;
    }
    section {
        padding: 30px 0;
    }
    .section-title {
        margin-bottom: 25px;
        padding-bottom: 12px;
    }
    .hero-title-animated {
        font-size: 1.8rem;
        margin-top: -12vh;
        gap: 2px;
        padding: 0 12px;
        line-height: 1.1;
    }
    .hero-title-animated .letter {
        font-size: inherit;
    }
    .hero-title-animated .letter.space {
        width: 5px;
    }
    .section-title {
        font-size: 1.15rem;
        padding: 0 12px;
        margin-bottom: 15px;
    }
    .nav-container {
        height: 60px;
        padding: 0 10px;
        gap: 10px;
    }
    .nav-menu {
        top: 60px;
        height: calc(100vh - 60px);
        padding: 30px 15px;
    }
    .nav-actions {
        gap: 8px;
        flex-wrap: wrap;
    }
    .nav-link-programs {
        padding: 8px 16px !important;
        font-size: 0.85rem !important;
    }
    .theme-toggle {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }
    .nav-logo a {
        font-size: 1rem;
    }
    .hero {
        padding-top: 70px;
    }
    .programs-page {
        padding-top: 80px;
    }
    .hero-buttons {
        gap: 8px;
        margin-top: 15px;
    }
    .btn-primary,
    .btn-outline {
        padding: 9px 18px;
        font-size: 0.8rem;
        min-width: 130px;
    }
    .hero-service-buttons {
        gap: 5px;
        margin-top: 12px;
    }
    .btn-service {
        padding: 7px 10px;
        font-size: 0.65rem;
        gap: 4px;
    }
    .btn-service i {
        font-size: 0.85rem;
    }
    .service-card {
        min-width: 170px;
        max-width: 170px;
        padding: 18px 12px;
    }
    .service-card a {
        font-size: 0.85rem;
        margin-bottom: 10px;
    }
    .service-card p {
        font-size: 0.7rem;
        line-height: 1.3;
    }
    .service-image {
        width: 50px;
        height: 50px;
        margin-bottom: 10px;
    }
    .service-icon {
        font-size: 1.5rem;
    }
    .website-card {
        min-width: 200px;
        max-width: 200px;
    }
    .website-preview {
        height: 120px;
    }
    .website-name {
        font-size: 0.85rem;
    }
    .website-btn {
        font-size: 0.7rem;
        padding: 5px 10px;
    }
    .website-info {
        padding: 12px;
        gap: 8px;
    }
    .websites-header {
        margin-bottom: 30px;
    }
    .websites-subtitle {
        font-size: 0.9rem;
        padding: 0 10px;
    }
    .websites-grid-modern {
        gap: 18px;
        margin-top: 25px;
    }
    .website-image-wrapper {
        height: 180px;
    }
    .website-content {
        padding: 15px;
        gap: 10px;
    }
    .website-title {
        font-size: 0.95rem;
    }
    .website-badge {
        padding: 4px 10px;
        font-size: 0.65rem;
    }
    .website-link-btn {
        padding: 9px 16px;
        font-size: 0.75rem;
    }
    .kinetic {
        height: 25px;
        width: 25px;
        margin-right: 10px;
    }
    .kinetic::before,
    .kinetic::after {
        border: 12px solid transparent;
    }
    .hero-service-buttons {
        gap: 8px;
        margin-top: 12px;
    }
    .contact-info {
        gap: 12px;
        margin-bottom: 20px;
    }
    .contact-info-item {
        padding: 10px 16px;
        gap: 8px;
        flex: 1;
        min-width: 100%;
    }
    .contact-info-item i {
        font-size: 1.1rem;
    }
    .contact-info-item a {
        font-size: 0.85rem;
    }
    .btn-service {
        padding: 10px 16px;
        font-size: 0.7rem;
        gap: 6px;
        min-width: 50px;
    }
    .btn-service i {
        font-size: 0.85rem;
    }
    .btn-service span {
        display: none;
    }
    .contact-info {
        gap: 15px;
        margin-bottom: 25px;
    }
    .contact-info-item {
        padding: 12px 20px;
        gap: 10px;
        flex: 1;
        min-width: calc(50% - 7.5px);
    }
    .contact-info-item i {
        font-size: 1.2rem;
    }
    .contact-info-item a {
        font-size: 0.9rem;
    }
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 8px;
    }
    .program-image {
        height: 70px;
    }
    .program-card h3 {
        font-size: 0.8rem;
        padding: 6px 6px 3px;
    }
    .program-card p {
        font-size: 0.65rem;
        padding: 0 6px;
        margin-bottom: 6px;
    }
    .price-single,
    .price-free {
        font-size: 0.85rem;
    }
    .program-card .btn {
        padding: 5px 10px;
        font-size: 0.65rem;
        margin: 0 6px 6px;
    }
    .program-item-image {
        height: 150px;
    }
    .program-item-content h3 {
        font-size: 1.1rem;
    }
    .program-item-content p {
        font-size: 0.8rem;
    }
    .program-item-content .price-single,
    .program-item-content .price-free {
        font-size: 1.1rem;
    }
    .contact-form {
        padding: 20px 12px;
    }
    .contact-info {
        gap: 8px;
        margin-bottom: 15px;
    }
    .contact-info-item {
        padding: 8px 12px;
        gap: 6px;
        font-size: 0.8rem;
    }
    .contact-info-item i {
        font-size: 0.9rem;
    }
    .contact-info-item a {
        font-size: 0.75rem;
    }
    .form-group {
        margin-bottom: 12px;
    }
    .form-group label {
        font-size: 0.8rem;
        margin-bottom: 5px;
    }
    .form-group input,
    .form-group textarea {
        padding: 8px 10px;
        font-size: 0.8rem;
    }
    .form-group textarea {
        min-height: 90px;
    }
    .btn[type="submit"] {
        padding: 9px 18px;
        font-size: 0.8rem;
    }
}

@media (max-width: 375px) {
    .container {
        padding: 0 6px;
    }
    section {
        padding: 25px 0;
    }
    .section-title {
        margin-bottom: 20px;
        padding-bottom: 10px;
    }
    .hero-title-animated {
        font-size: 1.6rem;
        margin-top: -10vh;
        gap: 1px;
        padding: 0 10px;
        line-height: 1.1;
    }
    .hero-title-animated .letter.space {
        width: 4px;
    }
    .section-title {
        font-size: 1.05rem;
        padding: 0 10px;
        margin-bottom: 12px;
    }
    .theme-toggle {
        display: none;
    }
    .kinetic {
        height: 22px;
        width: 22px;
        margin-right: 8px;
    }
    .kinetic::before,
    .kinetic::after {
        border: 11px solid transparent;
    }
    .hero-buttons {
        gap: 6px;
        margin-top: 12px;
    }
    .btn-primary,
    .btn-outline {
        padding: 8px 16px;
        font-size: 0.75rem;
        min-width: 120px;
    }
    .hero-service-buttons {
        gap: 4px;
        margin-top: 10px;
    }
    .btn-service {
        padding: 6px 8px;
        font-size: 0.6rem;
        gap: 3px;
    }
    .btn-service i {
        font-size: 0.8rem;
    }
    .service-card {
        min-width: 160px;
        max-width: 160px;
        padding: 15px 10px;
    }
    .service-card a {
        font-size: 0.8rem;
        margin-bottom: 8px;
    }
    .service-card p {
        font-size: 0.65rem;
        line-height: 1.3;
    }
    .service-image {
        width: 45px;
        height: 45px;
        margin-bottom: 8px;
    }
    .service-icon {
        font-size: 1.3rem;
    }
    .website-card {
        min-width: 180px;
        max-width: 180px;
    }
    .website-preview {
        height: 110px;
    }
    .website-name {
        font-size: 0.8rem;
    }
    .website-btn {
        font-size: 0.65rem;
        padding: 4px 8px;
    }
    .website-info {
        padding: 10px;
        gap: 6px;
    }
    .kinetic {
        height: 20px;
        width: 20px;
        margin-right: 6px;
    }
    .kinetic::before,
    .kinetic::after {
        border: 10px solid transparent;
    }
    .hero-service-buttons {
        gap: 6px;
        margin-top: 10px;
    }
    .btn-service {
        padding: 8px 12px;
        font-size: 0.65rem;
        gap: 5px;
        min-width: 45px;
    }
    .btn-service i {
        font-size: 0.8rem;
    }
    .btn-service span {
        display: none;
    }
}

@media (max-width: 320px) {
    .hero-title-animated {
        font-size: 1.7rem;
        margin-top: -10vh;
        gap: 1px;
        padding: 0 8px;
    }
    .hero-title-animated .letter.space {
        width: 3px;
    }
}


/* Scroll Animations */

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


/* Intersection Observer Animation Class */

.fade-in-up {
    animation: fadeInUp 0.6s ease-out forwards;
}


/* Floating Action Buttons */

.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.floating-btn {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    border: none;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.floating-btn svg {
    width: 28px;
    height: 28px;
    transition: transform 0.3s ease;
}

.instagram-btn {
    background: linear-gradient(135deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    background-size: 200% 200%;
    color: white;
    animation: instagramGradient 3s ease infinite;
}

.instagram-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(225, 48, 108, 0.6);
    animation: instagramGradientHover 1.5s ease infinite;
}

.instagram-btn:hover svg {
    transform: scale(1.15) rotate(-5deg);
}

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

@keyframes instagramGradientHover {
    0%,
    100% {
        background-position: 0% 50%;
        box-shadow: 0 8px 25px rgba(225, 48, 108, 0.6);
    }
    50% {
        background-position: 100% 50%;
        box-shadow: 0 10px 30px rgba(225, 48, 108, 0.8);
    }
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.whatsapp-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-btn:hover svg {
    transform: rotate(15deg) scale(1.1);
}

.scroll-top-btn {
    background: linear-gradient(135deg, var(--accent-color), #8b5cf6);
    color: white;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.scroll-top-btn.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top-btn:hover {
    transform: scale(1.1) translateY(-5px);
    box-shadow: 0 8px 25px rgba(74, 158, 255, 0.5);
}

.scroll-top-btn:hover svg {
    transform: translateY(-3px);
}

.floating-btn .tooltip {
    position: absolute;
    right: 75px;
    background: var(--card-bg);
    color: var(--text-primary);
    padding: 8px 15px;
    border-radius: 8px;
    font-size: 0.85rem;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    pointer-events: none;
    border: 1px solid var(--card-border);
    backdrop-filter: blur(10px);
}

.floating-btn .tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 6px solid var(--card-border);
}

.floating-btn:hover .tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(-5px);
}


/* Pulse Animation */

@keyframes pulse {
    0%,
    100% {
        transform: scale(1);
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    }
    50% {
        transform: scale(1.05);
        box-shadow: 0 6px 20px rgba(37, 211, 102, 0.6);
    }
}

.whatsapp-btn {
    animation: pulse 2s ease-in-out infinite;
}


/* Responsive Floating Buttons */

@media (max-width: 768px) {
    .floating-buttons {
        bottom: 20px;
        right: 20px;
    }
    .floating-btn {
        width: 50px;
        height: 50px;
    }
    .floating-btn svg {
        width: 24px;
        height: 24px;
    }
    .floating-btn .tooltip {
        right: 65px;
        font-size: 0.75rem;
        padding: 6px 12px;
    }
}