/*
 * TEMEL.CSS - SP GROUP Pure CSS Framework
 * Tailwind CSS yerine kullanılacak saf CSS dosyası
 * Versiyon: 1.0
 */

/* ============================================
   1. CSS RESET / NORMALIZE
   ============================================ */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    border: 0 solid #e5e7eb;
}

html {
    line-height: 1.5;
    -webkit-text-size-adjust: 100%;
    tab-size: 4;
    font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
    -webkit-tap-highlight-color: transparent;
}

body {
    margin: 0;
    line-height: inherit;
}

hr {
    height: 0;
    color: inherit;
    border-top-width: 1px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-size: inherit;
    font-weight: inherit;
}

a {
    color: inherit;
    text-decoration: inherit;
}

b,
strong {
    font-weight: bolder;
}

small {
    font-size: 80%;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    font-weight: inherit;
    line-height: inherit;
    color: inherit;
    margin: 0;
    padding: 0;
}

button,
[role="button"] {
    cursor: pointer;
}

:disabled {
    cursor: default;
}

img,
video {
    display: block;
    max-width: 100%;
    height: auto;
    vertical-align: middle;
}

[hidden] {
    display: none;
}

/* ============================================
   2. CSS DEĞİŞKENLERİ
   ============================================ */
:root {
    /* Ana Renkler */
    --sp-green: #059669;
    --sp-purple: #7c3aed;

    /* Gri Skalası */
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;

    /* Slate */
    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    /* Diğer Renkler */
    --white: #ffffff;
    --black: #000000;
    --red-500: #ef4444;
    --red-600: #dc2626;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --blue-500: #3b82f6;
    --blue-600: #2563eb;
    --purple-500: #a855f7;
    --purple-600: #9333ea;
    --orange-500: #f97316;
    --yellow-400: #facc15;
    --emerald-400: #34d399;
    --emerald-500: #10b981;
    --emerald-600: #059669;
    --violet-600: #7c3aed;

    /* Font */
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-display: 'Audiowide', cursive;

    /* Shadows */
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, .1), 0 4px 6px -4px rgba(0, 0, 0, .1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, .25);

    /* Breakpoints (referans) */
    /* sm: 640px, md: 768px, lg: 1024px, xl: 1280px */
}

/* ============================================
   3. LAYOUT UTILITIES
   ============================================ */

/* Display */
.block {
    display: block;
}

.inline-block {
    display: inline-block;
}

.inline {
    display: inline;
}

.flex {
    display: flex;
}

.inline-flex {
    display: inline-flex;
}

.grid {
    display: grid;
}

.hidden {
    display: none;
}

.table {
    display: table;
}

/* Position */
.static {
    position: static;
}

.fixed {
    position: fixed;
}

.absolute {
    position: absolute;
}

.relative {
    position: relative;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.top-0 {
    top: 0;
}

.right-0 {
    right: 0;
}

.bottom-0 {
    bottom: 0;
}

.left-0 {
    left: 0;
}

.top-4 {
    top: 1rem;
}

.right-4 {
    right: 1rem;
}

.bottom-4 {
    bottom: 1rem;
}

.left-4 {
    left: 1rem;
}

.top-6 {
    top: 1.5rem;
}

.right-6 {
    right: 1.5rem;
}

.bottom-6 {
    bottom: 1.5rem;
}

.top-20 {
    top: 5rem;
}

.bottom-20 {
    bottom: 5rem;
}

.left-20 {
    left: 5rem;
}

.right-20 {
    right: 5rem;
}

.bottom-24 {
    bottom: 6rem;
}

.top-40 {
    top: 10rem;
}

.bottom-40 {
    bottom: 10rem;
}

.top-full {
    top: 100%;
}

.top-1\/2 {
    top: 50%;
}

.left-1\/2 {
    left: 50%;
}

.top-1\/3 {
    top: 33.333333%;
}

.left-1\/3 {
    left: 33.333333%;
}

.right-1\/3 {
    right: 33.333333%;
}

.bottom-1\/3 {
    bottom: 33.333333%;
}

.top-1\/4 {
    top: 25%;
}

.left-1\/4 {
    left: 25%;
}

.right-1\/4 {
    right: 25%;
}

.bottom-1\/4 {
    bottom: 25%;
}

.right-32 {
    right: 8rem;
}

.bottom-32 {
    bottom: 8rem;
}

/* Z-Index */
.z-0 {
    z-index: 0;
}

.z-10 {
    z-index: 10;
}

.z-40 {
    z-index: 40;
}

.z-50 {
    z-index: 50;
}

.z-\[9999\] {
    z-index: 9999;
}

/* Flexbox */
.flex-col {
    flex-direction: column;
}

.flex-row {
    flex-direction: row;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-shrink-0 {
    flex-shrink: 0;
}

.flex-grow {
    flex-grow: 1;
}

.items-start {
    align-items: flex-start;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.justify-between {
    justify-content: space-between;
}

/* Grid */
.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gap-4 {
    gap: 1rem;
}

.gap-6 {
    gap: 1.5rem;
}

.gap-8 {
    gap: 2rem;
}

.gap-12 {
    gap: 3rem;
}

.gap-x-2 {
    column-gap: 0.5rem;
}

.gap-x-4 {
    column-gap: 1rem;
}

.gap-x-6 {
    column-gap: 1.5rem;
}

.gap-y-8 {
    row-gap: 2rem;
}

/* Container */
.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.max-w-md {
    max-width: 28rem;
}

.max-w-xl {
    max-width: 36rem;
}

.max-w-2xl {
    max-width: 42rem;
}

.max-w-3xl {
    max-width: 48rem;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-5xl {
    max-width: 64rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-7xl {
    max-width: 80rem;
}

.max-w-\[280px\] {
    max-width: 280px;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.mx-2 {
    margin-left: 0.5rem;
    margin-right: 0.5rem;
}

/* Overflow */
.overflow-hidden {
    overflow: hidden;
}

.overflow-y-auto {
    overflow-y: auto;
}

/* ============================================
   4. SPACING UTILITIES
   ============================================ */

/* Margin */
.m-0 {
    margin: 0;
}

.mt-1 {
    margin-top: 0.25rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-8 {
    margin-top: 2rem;
}

.mt-12 {
    margin-top: 3rem;
}

.mt-16 {
    margin-top: 4rem;
}

.mt-20 {
    margin-top: 5rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-10 {
    margin-bottom: 2.5rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.ml-1 {
    margin-left: 0.25rem;
}

.ml-3 {
    margin-left: 0.75rem;
}

.mr-1 {
    margin-right: 0.25rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.mr-3 {
    margin-right: 0.75rem;
}

.mr-4 {
    margin-right: 1rem;
}

.my-2 {
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
}

/* Padding */
.p-2 {
    padding: 0.5rem;
}

.p-3 {
    padding: 0.75rem;
}

.p-4 {
    padding: 1rem;
}

.p-6 {
    padding: 1.5rem;
}

.p-8 {
    padding: 2rem;
}

.px-2 {
    padding-left: 0.5rem;
    padding-right: 0.5rem;
}

.px-3 {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.py-1 {
    padding-top: 0.25rem;
    padding-bottom: 0.25rem;
}

.py-2 {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.py-3 {
    padding-top: 0.75rem;
    padding-bottom: 0.75rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.py-6 {
    padding-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.py-8 {
    padding-top: 2rem;
    padding-bottom: 2rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.py-16 {
    padding-top: 4rem;
    padding-bottom: 4rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-24 {
    padding-top: 6rem;
    padding-bottom: 6rem;
}

.pt-4 {
    padding-top: 1rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.pt-8 {
    padding-top: 2rem;
}

.pt-24 {
    padding-top: 6rem;
}

.pt-28 {
    padding-top: 7rem;
}

.pb-12 {
    padding-bottom: 3rem;
}

.pb-24 {
    padding-bottom: 6rem;
}

.pl-10 {
    padding-left: 2.5rem;
}

/* Space Between */
.space-x-2> :not([hidden])~ :not([hidden]) {
    margin-left: 0.5rem;
}

.space-x-3> :not([hidden])~ :not([hidden]) {
    margin-left: 0.75rem;
}

.space-x-4> :not([hidden])~ :not([hidden]) {
    margin-left: 1rem;
}

.space-x-6> :not([hidden])~ :not([hidden]) {
    margin-left: 1.5rem;
}

.space-x-10> :not([hidden])~ :not([hidden]) {
    margin-left: 2.5rem;
}

.space-y-2> :not([hidden])~ :not([hidden]) {
    margin-top: 0.5rem;
}

.space-y-3> :not([hidden])~ :not([hidden]) {
    margin-top: 0.75rem;
}

.space-y-4> :not([hidden])~ :not([hidden]) {
    margin-top: 1rem;
}

.space-y-6> :not([hidden])~ :not([hidden]) {
    margin-top: 1.5rem;
}

.space-y-8> :not([hidden])~ :not([hidden]) {
    margin-top: 2rem;
}

/* ============================================
   5. SIZING UTILITIES
   ============================================ */

/* Width */
.w-1 {
    width: 0.25rem;
}

.w-1\.5 {
    width: 0.375rem;
}

.w-2 {
    width: 0.5rem;
}

.w-3 {
    width: 0.75rem;
}

.w-4 {
    width: 1rem;
}

.w-5 {
    width: 1.25rem;
}

.w-6 {
    width: 1.5rem;
}

.w-8 {
    width: 2rem;
}

.w-9 {
    width: 2.25rem;
}

.w-10 {
    width: 2.5rem;
}

.w-12 {
    width: 3rem;
}

.w-14 {
    width: 3.5rem;
}

.w-16 {
    width: 4rem;
}

.w-20 {
    width: 5rem;
}

.w-24 {
    width: 6rem;
}

.w-28 {
    width: 7rem;
}

.w-32 {
    width: 8rem;
}

.w-40 {
    width: 10rem;
}

.w-48 {
    width: 12rem;
}

.w-56 {
    width: 14rem;
}

.w-72 {
    width: 18rem;
}

.w-80 {
    width: 20rem;
}

.w-96 {
    width: 24rem;
}

.w-full {
    width: 100%;
}

.w-px {
    width: 1px;
}

.min-w-80 {
    min-width: 20rem;
}

/* Height */
.h-1 {
    height: 0.25rem;
}

.h-1\.5 {
    height: 0.375rem;
}

.h-2 {
    height: 0.5rem;
}

.h-3 {
    height: 0.75rem;
}

.h-4 {
    height: 1rem;
}

.h-5 {
    height: 1.25rem;
}

.h-6 {
    height: 1.5rem;
}

.h-8 {
    height: 2rem;
}

.h-10 {
    height: 2.5rem;
}

.h-12 {
    height: 3rem;
}

.h-14 {
    height: 3.5rem;
}

.h-16 {
    height: 4rem;
}

.h-20 {
    height: 5rem;
}

.h-24 {
    height: 6rem;
}

.h-28 {
    height: 7rem;
}

.h-32 {
    height: 8rem;
}

.h-40 {
    height: 10rem;
}

.h-48 {
    height: 12rem;
}

.h-56 {
    height: 14rem;
}

.h-64 {
    height: 16rem;
}

.h-72 {
    height: 18rem;
}

.h-80 {
    height: 20rem;
}

.h-96 {
    height: 24rem;
}

.h-\[420px\] {
    height: 420px;
}

.h-full {
    height: 100%;
}

.max-h-60 {
    max-height: 15rem;
}

.max-h-\[90vh\] {
    max-height: 90vh;
}

.min-h-\[60px\] {
    min-height: 60px;
}

.min-h-screen {
    min-height: 100vh;
}

.aspect-video {
    aspect-ratio: 16 / 9;
}

/* ============================================
   6. TYPOGRAPHY
   ============================================ */

/* Font Family */
.font-sans {
    font-family: var(--font-sans);
}

.font-audiowide {
    font-family: var(--font-display);
}

/* Font Size */
.text-xs {
    font-size: 0.75rem;
    line-height: 1rem;
}

.text-sm {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.text-base {
    font-size: 1rem;
    line-height: 1.5rem;
}

.text-lg {
    font-size: 1.125rem;
    line-height: 1.75rem;
}

.text-xl {
    font-size: 1.25rem;
    line-height: 1.75rem;
}

.text-2xl {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-3xl {
    font-size: 1.875rem;
    line-height: 2.25rem;
}

.text-4xl {
    font-size: 2.25rem;
    line-height: 2.5rem;
}

.text-5xl {
    font-size: 3rem;
    line-height: 1;
}

.text-6xl {
    font-size: 3.75rem;
    line-height: 1;
}

.text-7xl {
    font-size: 4.5rem;
    line-height: 1;
}

/* Font Weight */
.font-medium {
    font-weight: 500;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

/* Text Align */
.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

/* Text Transform */
.uppercase {
    text-transform: uppercase;
}

.whitespace-nowrap {
    white-space: nowrap;
}

.underline {
    text-decoration-line: underline;
}

/* Line Height */
.leading-7 {
    line-height: 1.75rem;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

/* Letter Spacing */
.tracking-tight {
    letter-spacing: -0.025em;
}

.tracking-wider {
    letter-spacing: 0.05em;
}

/* ============================================
   7. COLOR UTILITIES
   ============================================ */

/* Text Colors */
.text-white {
    color: #ffffff;
}

.text-black {
    color: #000000;
}

.text-transparent {
    color: transparent;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-gray-500 {
    color: #6b7280;
}

.text-gray-600 {
    color: #4b5563;
}

.text-gray-700 {
    color: #374151;
}

.text-slate-400 {
    color: #94a3b8;
}

.text-slate-500 {
    color: #64748b;
}

.text-slate-600 {
    color: #475569;
}

.text-slate-700 {
    color: #334155;
}

.text-slate-800 {
    color: #1e293b;
}

.text-sp-green {
    color: var(--sp-green);
}

.text-sp-purple {
    color: var(--sp-purple);
}

.text-red-400 {
    color: #f87171;
}

.text-red-500 {
    color: #ef4444;
}

.text-red-600 {
    color: #dc2626;
}

.text-red-800 {
    color: #991b1b;
}

.text-green-300 {
    color: #86efac;
}

.text-green-500 {
    color: #22c55e;
}

.text-blue-200 {
    color: #bfdbfe;
}

.text-blue-300 {
    color: #93c5fd;
}

.text-blue-500 {
    color: #3b82f6;
}

.text-blue-600 {
    color: #2563eb;
}

.text-blue-800 {
    color: #1e40af;
}

.text-purple-300 {
    color: #d8b4fe;
}

.text-purple-500 {
    color: #a855f7;
}

.text-orange-300 {
    color: #fdba74;
}

.text-yellow-400 {
    color: #facc15;
}

.text-white\/60 {
    color: rgba(255, 255, 255, 0.6);
}

.text-white\/70 {
    color: rgba(255, 255, 255, 0.7);
}

.text-white\/80 {
    color: rgba(255, 255, 255, 0.8);
}

.text-white\/90 {
    color: rgba(255, 255, 255, 0.9);
}

/* Background Colors */
.bg-white {
    background-color: #ffffff;
}

.bg-black {
    background-color: #000000;
}

.bg-transparent {
    background-color: transparent;
}

.bg-gray-50 {
    background-color: #f9fafb;
}

.bg-gray-900 {
    background-color: #111827;
}

.bg-slate-50 {
    background-color: #f8fafc;
}

.bg-slate-100 {
    background-color: #f1f5f9;
}

.bg-stone-950 {
    background-color: #0c0a09;
}

.bg-\[#1a202c\] {
    background-color: #1a202c;
}

.bg-sp-green {
    background-color: var(--sp-green);
}

.bg-sp-purple {
    background-color: var(--sp-purple);
}

.bg-red-100 {
    background-color: #fee2e2;
}

.bg-red-500 {
    background-color: #ef4444;
}

.bg-red-600 {
    background-color: #dc2626;
}

.bg-green-400 {
    background-color: #4ade80;
}

.bg-green-500 {
    background-color: #22c55e;
}

.bg-blue-100 {
    background-color: #dbeafe;
}

.bg-blue-400 {
    background-color: #60a5fa;
}

.bg-blue-500 {
    background-color: #3b82f6;
}

.bg-blue-600 {
    background-color: #2563eb;
}

.bg-purple-400 {
    background-color: #c084fc;
}

.bg-purple-500 {
    background-color: #a855f7;
}

.bg-orange-400 {
    background-color: #fb923c;
}

.bg-orange-500 {
    background-color: #f97316;
}

.bg-yellow-400 {
    background-color: #facc15;
}

.bg-emerald-400 {
    background-color: #34d399;
}

.bg-indigo-500 {
    background-color: #6366f1;
}

.bg-black\/20 {
    background-color: rgba(0, 0, 0, 0.2);
}

.bg-black\/30 {
    background-color: rgba(0, 0, 0, 0.3);
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

.bg-white\/20 {
    background-color: rgba(255, 255, 255, 0.2);
}

.bg-white\/30 {
    background-color: rgba(255, 255, 255, 0.3);
}

.bg-opacity-10 {
    --tw-bg-opacity: 0.1;
}

.bg-opacity-70 {
    --tw-bg-opacity: 0.7;
}

/* ============================================
   8. BORDER UTILITIES
   ============================================ */

.border {
    border-width: 1px;
}

.border-2 {
    border-width: 2px;
}

.border-t {
    border-top-width: 1px;
}

.border-l-4 {
    border-left-width: 4px;
}

.border-dashed {
    border-style: dashed;
}

.border-transparent {
    border-color: transparent;
}

.border-gray-100 {
    border-color: #f3f4f6;
}

.border-gray-200 {
    border-color: #e5e7eb;
}

.border-gray-800 {
    border-color: #1f2937;
}

.border-slate-200 {
    border-color: #e2e8f0;
}

.border-sp-green {
    border-color: var(--sp-green);
}

.border-sp-purple {
    border-color: var(--sp-purple);
}

.border-red-500 {
    border-color: #ef4444;
}

.border-blue-500 {
    border-color: #3b82f6;
}

.border-purple-500 {
    border-color: #a855f7;
}

.border-white\/10 {
    border-color: rgba(255, 255, 255, 0.1);
}

.border-white\/20 {
    border-color: rgba(255, 255, 255, 0.2);
}

.border-sp-green\/20 {
    border-color: rgba(5, 150, 105, 0.2);
}

.border-sp-purple\/20 {
    border-color: rgba(124, 58, 237, 0.2);
}

.border-emerald-400\/20 {
    border-color: rgba(52, 211, 153, 0.2);
}

.border-emerald-400\/30 {
    border-color: rgba(52, 211, 153, 0.3);
}

.border-blue-400\/20 {
    border-color: rgba(96, 165, 250, 0.2);
}

.border-blue-400\/30 {
    border-color: rgba(96, 165, 250, 0.3);
}

.border-blue-500\/30 {
    border-color: rgba(59, 130, 246, 0.3);
}

.border-purple-400\/30 {
    border-color: rgba(192, 132, 252, 0.3);
}

.border-orange-400\/30 {
    border-color: rgba(251, 146, 60, 0.3);
}

.border-red-500\/30 {
    border-color: rgba(239, 68, 68, 0.3);
}

.border-sp-green\/30 {
    border-color: rgba(5, 150, 105, 0.3);
}

/* Border Radius */
.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.rounded-2xl {
    border-radius: 1rem;
}

.rounded-3xl {
    border-radius: 1.5rem;
}

.rounded-full {
    border-radius: 9999px;
}

/* ============================================
   9. EFFECTS & TRANSFORMS
   ============================================ */

/* Opacity */
.opacity-0 {
    opacity: 0;
}

.opacity-5 {
    opacity: 0.05;
}

.opacity-10 {
    opacity: 0.1;
}

.opacity-20 {
    opacity: 0.2;
}

.opacity-50 {
    opacity: 0.5;
}

.opacity-90 {
    opacity: 0.9;
}

.opacity-100 {
    opacity: 1;
}

/* Shadow */
.shadow-lg {
    box-shadow: var(--shadow-lg);
}

.shadow-2xl {
    box-shadow: var(--shadow-2xl);
}

/* Blur */
.blur {
    filter: blur(8px);
}

.blur-xl {
    filter: blur(24px);
}

.blur-2xl {
    filter: blur(40px);
}

.blur-3xl {
    filter: blur(64px);
}

.backdrop-blur-sm {
    backdrop-filter: blur(4px);
}

.backdrop-blur-xl {
    backdrop-filter: blur(24px);
}

/* Transform */
.transform {
    transform: translateX(var(--tw-translate-x, 0)) translateY(var(--tw-translate-y, 0)) rotate(var(--tw-rotate, 0)) scale(var(--tw-scale-x, 1), var(--tw-scale-y, 1));
}

.scale-0 {
    --tw-scale-x: 0;
    --tw-scale-y: 0;
    transform: scale(0);
}

.scale-100 {
    --tw-scale-x: 1;
    --tw-scale-y: 1;
    transform: scale(1);
}

.rotate-0 {
    --tw-rotate: 0deg;
}

.rotate-90 {
    --tw-rotate: 90deg;
    transform: rotate(90deg);
}

.-rotate-90 {
    --tw-rotate: -90deg;
    transform: rotate(-90deg);
}

.translate-x-full {
    --tw-translate-x: 100%;
    transform: translateX(100%);
}

.origin-bottom-right {
    transform-origin: bottom right;
}

/* Object Fit */
.object-cover {
    object-fit: cover;
}

.object-contain {
    object-fit: contain;
}

/* Pointer Events */
.pointer-events-none {
    pointer-events: none;
}

.cursor-pointer {
    cursor: pointer;
}

.resize-none {
    resize: none;
}

.resize {
    resize: both;
}

/* Mix Blend */
.mix-blend-multiply {
    mix-blend-mode: multiply;
}

/* ============================================
   10. TRANSITIONS & ANIMATIONS
   ============================================ */

.transition {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke, opacity, box-shadow, transform, filter, backdrop-filter;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-colors {
    transition-property: color, background-color, border-color, text-decoration-color, fill, stroke;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-opacity {
    transition-property: opacity;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.transition-transform {
    transition-property: transform;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
    transition-duration: 150ms;
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.ease-out {
    transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
}

/* Animations */
@keyframes ping {

    75%,
    100% {
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes pulse {
    50% {
        opacity: 0.5;
    }
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes slideUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }

    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }

    100% {
        opacity: 1;
    }
}

.animate-ping {
    animation: ping 1s cubic-bezier(0, 0, 0.2, 1) infinite;
}

.animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.floating-element {
    animation: float 6s ease-in-out infinite;
}

.animate-slide-up {
    animation: slideUp 0.8s ease-out forwards;
}

.animate-fade-in {
    animation: fadeIn 0.6s ease-out forwards;
}

/* ============================================
   11. GRADIENTS
   ============================================ */

.bg-gradient-to-r {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.bg-gradient-to-br {
    background-image: linear-gradient(to bottom right, var(--tw-gradient-stops));
}

.bg-gradient-to-tl {
    background-image: linear-gradient(to top left, var(--tw-gradient-stops));
}

.from-sp-green {
    --tw-gradient-from: #059669;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.from-sp-purple {
    --tw-gradient-from: #7c3aed;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.from-slate-900 {
    --tw-gradient-from: #0f172a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.from-white {
    --tw-gradient-from: #ffffff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.from-emerald-500 {
    --tw-gradient-from: #10b981;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.from-green-500 {
    --tw-gradient-from: #22c55e;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.from-blue-500 {
    --tw-gradient-from: #3b82f6;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.from-purple-500 {
    --tw-gradient-from: #a855f7;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.from-orange-500 {
    --tw-gradient-from: #f97316;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.from-red-500 {
    --tw-gradient-from: #ef4444;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.via-gray-100 {
    --tw-gradient-stops: var(--tw-gradient-from), #f3f4f6, var(--tw-gradient-to, transparent);
}

.via-gray-900 {
    --tw-gradient-stops: var(--tw-gradient-from), #111827, var(--tw-gradient-to, transparent);
}

.via-slate-800 {
    --tw-gradient-stops: var(--tw-gradient-from), #1e293b, var(--tw-gradient-to, transparent);
}

.via-emerald-400 {
    --tw-gradient-stops: var(--tw-gradient-from), #34d399, var(--tw-gradient-to, transparent);
}

.to-sp-purple {
    --tw-gradient-to: #7c3aed;
}

.to-transparent {
    --tw-gradient-to: transparent;
}

.to-black {
    --tw-gradient-to: #000000;
}

.to-white {
    --tw-gradient-to: #ffffff;
}

.to-gray-900 {
    --tw-gradient-to: #111827;
}

.to-emerald-500 {
    --tw-gradient-to: #10b981;
}

.to-emerald-600 {
    --tw-gradient-to: #059669;
}

.to-green-500 {
    --tw-gradient-to: #22c55e;
}

.to-blue-600 {
    --tw-gradient-to: #2563eb;
}

.to-purple-500 {
    --tw-gradient-to: #a855f7;
}

.to-violet-600 {
    --tw-gradient-to: #7c3aed;
}

.to-orange-500 {
    --tw-gradient-to: #f97316;
}

.to-pink-500 {
    --tw-gradient-to: #ec4899;
}

.to-red-500 {
    --tw-gradient-to: #ef4444;
}

.to-yellow-500 {
    --tw-gradient-to: #eab308;
}

.bg-clip-text {
    -webkit-background-clip: text;
    background-clip: text;
}

/* Text Gradient - Özel sınıf */
.text-gradient {
    background-image: linear-gradient(to right, var(--sp-green), var(--sp-purple));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Glass Effect - Özel sınıf */
.glass-effect {
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.2);
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* ============================================
   12. HOVER STATES
   ============================================ */

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:scale-110:hover {
    transform: scale(1.1);
}

.hover\:bg-gray-100:hover {
    background-color: #f3f4f6;
}

.hover\:bg-gray-50:hover {
    background-color: #f9fafb;
}

.hover\:bg-green-50:hover {
    background-color: #f0fdf4;
}

.hover\:bg-green-600:hover {
    background-color: #16a34a;
}

.hover\:bg-blue-50:hover {
    background-color: #eff6ff;
}

.hover\:bg-purple-50:hover {
    background-color: #faf5ff;
}

.hover\:bg-sp-green\/5:hover {
    background-color: rgba(5, 150, 105, 0.05);
}

.hover\:bg-white\/20:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.hover\:bg-white\/30:hover {
    background-color: rgba(255, 255, 255, 0.3);
}

.hover\:text-sp-green:hover {
    color: var(--sp-green);
}

.hover\:text-sp-purple:hover {
    color: var(--sp-purple);
}

.hover\:text-white:hover {
    color: #ffffff;
}

.hover\:text-green-600:hover {
    color: #16a34a;
}

.hover\:text-blue-600:hover {
    color: #2563eb;
}

.hover\:text-blue-800:hover {
    color: #1e40af;
}

.hover\:text-purple-600:hover {
    color: #9333ea;
}

.hover\:text-red-800:hover {
    color: #991b1b;
}

.hover\:border-sp-green:hover {
    border-color: var(--sp-green);
}

.hover\:border-sp-green\/30:hover {
    border-color: rgba(5, 150, 105, 0.3);
}

.hover\:border-sp-purple\/30:hover {
    border-color: rgba(124, 58, 237, 0.3);
}

.hover\:border-emerald-400\/30:hover {
    border-color: rgba(52, 211, 153, 0.3);
}

.hover\:border-blue-400\/30:hover {
    border-color: rgba(96, 165, 250, 0.3);
}

.hover\:shadow-xl:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 8px 10px -6px rgba(0, 0, 0, 0.1);
}

/* Hover Gradients */
.hover\:bg-gradient-to-r:hover {
    background-image: linear-gradient(to right, var(--tw-gradient-stops));
}

.hover\:from-sp-purple\/5:hover {
    --tw-gradient-from: rgba(124, 58, 237, 0.05);
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.hover\:from-green-50:hover {
    --tw-gradient-from: #f0fdf4;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.hover\:from-blue-50:hover {
    --tw-gradient-from: #eff6ff;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.hover\:from-green-600:hover {
    --tw-gradient-from: #16a34a;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.hover\:from-orange-600:hover {
    --tw-gradient-from: #ea580c;
    --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, transparent);
}

.hover\:to-sp-purple\/10:hover {
    --tw-gradient-to: rgba(124, 58, 237, 0.1);
}

.hover\:to-green-100:hover {
    --tw-gradient-to: #dcfce7;
}

.hover\:to-blue-100:hover {
    --tw-gradient-to: #dbeafe;
}

.hover\:to-emerald-600:hover {
    --tw-gradient-to: #059669;
}

.hover\:to-red-600:hover {
    --tw-gradient-to: #dc2626;
}

.hover\:to-yellow-600:hover {
    --tw-gradient-to: #ca8a04;
}

/* Group Hover */
.group:hover .group-hover\:scale-110 {
    transform: scale(1.1);
}

.group:hover .group-hover\:animate-pulse {
    animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

.group:hover .group-hover\:text-green-600 {
    color: #16a34a;
}

.group:hover .group-hover\:text-green-800 {
    color: #166534;
}

.group:hover .group-hover\:text-blue-600 {
    color: #2563eb;
}

.group:hover .group-hover\:text-purple-600 {
    color: #9333ea;
}

/* Focus States */
.focus\:outline-none:focus {
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.focus\:ring-4:focus {
    box-shadow: 0 0 0 4px var(--tw-ring-color);
}

.focus\:ring-sp-green:focus {
    --tw-ring-color: var(--sp-green);
}

.focus\:ring-purple-300:focus {
    --tw-ring-color: #d8b4fe;
}

.focus\:ring-red-500:focus {
    --tw-ring-color: #ef4444;
}

/* Disabled States */
.disabled\:cursor-not-allowed:disabled {
    cursor: not-allowed;
}

.disabled\:from-slate-300:disabled {
    --tw-gradient-from: #cbd5e1;
}

.disabled\:to-slate-400:disabled {
    --tw-gradient-to: #94a3b8;
}

/* ============================================
   13. RESPONSIVE - SM (640px+)
   ============================================ */

@media (min-width: 640px) {
    .sm\:block {
        display: block;
    }

    .sm\:flex-row {
        flex-direction: row;
    }

    .sm\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .sm\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .sm\:mb-4 {
        margin-bottom: 1rem;
    }

    .sm\:mb-6 {
        margin-bottom: 1.5rem;
    }

    .sm\:mb-8 {
        margin-bottom: 2rem;
    }

    .sm\:p-6 {
        padding: 1.5rem;
    }

    .sm\:p-12 {
        padding: 3rem;
    }

    .sm\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .sm\:py-24 {
        padding-top: 6rem;
        padding-bottom: 6rem;
    }

    .sm\:pb-32 {
        padding-bottom: 8rem;
    }

    .sm\:pt-32 {
        padding-top: 8rem;
    }

    .sm\:w-10 {
        width: 2.5rem;
    }

    .sm\:w-32 {
        width: 8rem;
    }

    .sm\:h-32 {
        height: 8rem;
    }

    .sm\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .sm\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .sm\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .sm\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .sm\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }

    .sm\:leading-none {
        line-height: 1;
    }

    .sm\:space-x-3> :not([hidden])~ :not([hidden]) {
        margin-left: 0.75rem;
    }

    .sm\:space-x-4> :not([hidden])~ :not([hidden]) {
        margin-left: 1rem;
    }

    .sm\:space-y-0> :not([hidden])~ :not([hidden]) {
        margin-top: 0;
    }
}

/* ============================================
   14. RESPONSIVE - MD (768px+)
   ============================================ */

@media (min-width: 768px) {
    .md\:block {
        display: block;
    }

    .md\:flex {
        display: flex;
    }

    .md\:flex-row {
        flex-direction: row;
    }

    .md\:grid-cols-2 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .md\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .md\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .md\:gap-8 {
        gap: 2rem;
    }

    .md\:gap-12 {
        gap: 3rem;
    }

    .md\:gap-x-8 {
        column-gap: 2rem;
    }

    .md\:mb-0 {
        margin-bottom: 0;
    }

    .md\:mb-4 {
        margin-bottom: 1rem;
    }

    .md\:mb-6 {
        margin-bottom: 1.5rem;
    }

    .md\:mb-8 {
        margin-bottom: 2rem;
    }

    .md\:mb-10 {
        margin-bottom: 2.5rem;
    }

    .md\:mb-12 {
        margin-bottom: 3rem;
    }

    .md\:mb-20 {
        margin-bottom: 5rem;
    }

    .md\:mr-6 {
        margin-right: 1.5rem;
    }

    .md\:p-8 {
        padding: 2rem;
    }

    .md\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .md\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .md\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .md\:py-32 {
        padding-top: 8rem;
        padding-bottom: 8rem;
    }

    .md\:pb-20 {
        padding-bottom: 5rem;
    }

    .md\:pt-32 {
        padding-top: 8rem;
    }

    .md\:pl-0 {
        padding-left: 0;
    }

    .md\:pl-8 {
        padding-left: 2rem;
    }

    .md\:pr-8 {
        padding-right: 2rem;
    }

    .md\:w-8 {
        width: 2rem;
    }

    .md\:w-16 {
        width: 4rem;
    }

    .md\:w-20 {
        width: 5rem;
    }

    .md\:w-1\/2 {
        width: 50%;
    }

    .md\:h-8 {
        height: 2rem;
    }

    .md\:h-16 {
        height: 4rem;
    }

    .md\:h-20 {
        height: 5rem;
    }

    .md\:max-w-\[320px\] {
        max-width: 320px;
    }

    .md\:text-left {
        text-align: left;
    }

    .md\:text-center {
        text-align: center;
    }

    .md\:text-right {
        text-align: right;
    }

    .md\:text-sm {
        font-size: 0.875rem;
        line-height: 1.25rem;
    }

    .md\:text-base {
        font-size: 1rem;
        line-height: 1.5rem;
    }

    .md\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .md\:text-xl {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }

    .md\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .md\:text-3xl {
        font-size: 1.875rem;
        line-height: 2.25rem;
    }

    .md\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .md\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .md\:text-6xl {
        font-size: 3.75rem;
        line-height: 1;
    }

    .md\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }

    .md\:text-8xl {
        font-size: 6rem;
        line-height: 1;
    }

    .md\:text-9xl {
        font-size: 8rem;
        line-height: 1;
    }

    .md\:rounded-2xl {
        border-radius: 1rem;
    }

    .md\:rounded-3xl {
        border-radius: 1.5rem;
    }
}

/* ============================================
   15. RESPONSIVE - LG (1024px+)
   ============================================ */

@media (min-width: 1024px) {
    .lg\:flex {
        display: flex;
    }

    .lg\:hidden {
        display: none;
    }

    .lg\:grid-cols-3 {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .lg\:grid-cols-4 {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .lg\:col-span-1 {
        grid-column: span 1 / span 1;
    }

    .lg\:col-span-2 {
        grid-column: span 2 / span 2;
    }

    .lg\:gap-8 {
        gap: 2rem;
    }

    .lg\:gap-12 {
        gap: 3rem;
    }

    .lg\:p-8 {
        padding: 2rem;
    }

    .lg\:p-10 {
        padding: 2.5rem;
    }

    .lg\:p-12 {
        padding: 3rem;
    }

    .lg\:p-16 {
        padding: 4rem;
    }

    .lg\:px-4 {
        padding-left: 1rem;
        padding-right: 1rem;
    }

    .lg\:px-6 {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }

    .lg\:px-8 {
        padding-left: 2rem;
        padding-right: 2rem;
    }

    .lg\:py-3 {
        padding-top: 0.75rem;
        padding-bottom: 0.75rem;
    }

    .lg\:py-4 {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }

    .lg\:py-20 {
        padding-top: 5rem;
        padding-bottom: 5rem;
    }

    .lg\:h-80 {
        height: 20rem;
    }

    .lg\:text-lg {
        font-size: 1.125rem;
        line-height: 1.75rem;
    }

    .lg\:text-2xl {
        font-size: 1.5rem;
        line-height: 2rem;
    }

    .lg\:text-4xl {
        font-size: 2.25rem;
        line-height: 2.5rem;
    }

    .lg\:text-5xl {
        font-size: 3rem;
        line-height: 1;
    }

    .lg\:text-7xl {
        font-size: 4.5rem;
        line-height: 1;
    }

    .lg\:text-8xl {
        font-size: 6rem;
        line-height: 1;
    }

    .lg\:rounded-xl {
        border-radius: 0.75rem;
    }

    .lg\:rounded-2xl {
        border-radius: 1rem;
    }

    .lg\:rounded-3xl {
        border-radius: 1.5rem;
    }
}

/* ============================================
   16. RESPONSIVE - XL (1280px+)
   ============================================ */

@media (min-width: 1280px) {
    .xl\:text-9xl {
        font-size: 8rem;
        line-height: 1;
    }

    .container {
        max-width: 1280px;
    }
}

/* ============================================
   17. CONTAINER RESPONSIVE
   ============================================ */

@media (min-width: 640px) {
    .container {
        max-width: 640px;
    }
}

@media (min-width: 768px) {
    .container {
        max-width: 768px;
    }
}

@media (min-width: 1024px) {
    .container {
        max-width: 1024px;
    }
}

@media (min-width: 1280px) {
    .container {
        max-width: 1280px;
    }
}

/* ============================================
   18. LIST UTILITIES
   ============================================ */

.list-disc {
    list-style-type: disc;
}

.list-inside {
    list-style-position: inside;
}

/* ============================================
   19. ORTAK STİLLER (ortak.css'ten taşındı)
   ========================================= */

/* GENEL AYARLAR & RESET */
html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

body>*:not(footer):not(nav):not(script):not(style) {
    flex-shrink: 0;
}

body>section,
body>main,
body>div:first-of-type {
    flex-grow: 1;
}

/* HEADER - GLASSMORPHISM EFEKTİ */
#navbar {
    background: transparent;
    transition: background 0.3s ease, backdrop-filter 0.3s ease, box-shadow 0.3s ease;
}

#navbar.scrolled {
    background: rgba(15, 23, 42, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

/* FOOTER TASARIMI */
.arka-plan-isik-mor {
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.1) 0%, rgba(124, 58, 237, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.arka-plan-isik-yesil {
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 350px;
    height: 350px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, rgba(5, 150, 105, 0) 70%);
    border-radius: 50%;
    filter: blur(80px);
    z-index: 0;
    pointer-events: none;
}

.sp-footer-wrapper {
    position: relative;
    background-color: #000000 !important;
    color: #9ca3af;
    font-family: 'Inter', sans-serif;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 4rem;
}

.sp-footer-kart {
    background: transparent !important;
    backdrop-filter: none !important;
    border: none !important;
    box-shadow: none !important;
    padding: 0;
    height: 100%;
    transition: transform 0.3s ease;
}

.sp-footer-kart img {
    display: block;
    max-width: 100%;
    height: auto;
    opacity: 1 !important;
    filter: none !important;
}

.sp-footer-kart:hover {
    transform: translateY(-5px);
    background: transparent !important;
}

.sp-footer-baslik {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: inline-block;
    color: #ffffff;
    position: relative;
}

.sp-footer-baslik::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 40px;
    height: 2px;
    background: #059669;
    border-radius: 2px;
}

.sp-link-listesi {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sp-link-ogesi {
    margin-bottom: 0.75rem;
}

.sp-link {
    text-decoration: none;
    color: #9ca3af;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    transition: all 0.2s ease;
}

.sp-link:hover {
    color: #ffffff;
    transform: translateX(4px);
}

.sp-link i {
    margin-right: 10px;
    font-size: 0.8rem;
    color: #059669;
    width: 16px;
    text-align: center;
}

.sp-iletisim-satir {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.25rem;
    color: #9ca3af;
}

.sp-iletisim-ikon {
    color: #059669;
    margin-right: 1rem;
    margin-top: 4px;
    font-size: 1.1rem;
}

.sp-iletisim-text {
    font-size: 0.95rem;
}

.sp-iletisim-text a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
    font-size: 0.95rem !important;
    font-weight: normal !important;
}

.sp-iletisim-text a:hover {
    color: #ffffff;
}

.sp-sosyal-alan {
    display: flex;
    gap: 0.75rem;
    margin-top: 1.5rem;
}

.sp-sosyal-buton {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
    color: #d1d5db;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    text-decoration: none;
    font-size: 0.9rem;
}

.sp-sosyal-buton:hover {
    background: #059669;
    border-color: #059669;
    color: #ffffff;
    transform: translateY(-2px);
}

.sp-alt-sinir {
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0.5rem 0 0.5rem 0;
}

.sp-alt-bilgi {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: #6b7280;
}

@media (min-width: 768px) {
    .sp-alt-bilgi {
        flex-direction: row;
    }
}

.sp-alt-link {
    color: #6b7280;
    text-decoration: none;
    transition: color 0.2s ease;
}

.sp-alt-link:hover {
    color: #ffffff;
}

.footer-theme-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #9ca3af;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.2s ease;
}

.footer-theme-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    color: #ffffff;
}

@media (max-width: 768px) {
    .sp-footer-kart {
        margin-bottom: 2rem;
    }
}

/* ============================================
   20. ANİMASYONLAR (animasyonlar.css'ten taşındı)
   ============================================ */

/* Button Hover Effects */
.btn-hover-lift {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.btn-hover-lift:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.btn-hover-lift:active {
    transform: translateY(0);
    box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}

/* Ripple Effect */
.ripple-effect {
    position: relative;
    overflow: hidden;
}

.ripple-effect::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    pointer-events: none;
    background-image: radial-gradient(circle, #fff 10%, transparent 10.01%);
    background-repeat: no-repeat;
    background-position: 50%;
    transform: scale(10, 10);
    opacity: 0;
    transition: transform 0.5s, opacity 0.5s;
}

.ripple-effect:active::after {
    transform: scale(0, 0);
    opacity: 0.3;
    transition: 0s;
}

/* Card Hover Animation */
.card-hover {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(124, 58, 237, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: inherit;
}

.card-hover:hover::before {
    opacity: 1;
}

/* Link Underline Animation */
.link-underline {
    position: relative;
    text-decoration: none;
}

.link-underline::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -2px;
    left: 0;
    background: linear-gradient(90deg, #059669, #7c3aed);
    transition: width 0.3s ease;
}

.link-underline:hover::after {
    width: 100%;
}

/* Input Focus Animation */
.input-focus {
    transition: all 0.3s ease;
}

.input-focus:focus {
    border-color: #7c3aed;
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.1);
}

/* Fade In Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeIn 0.5s ease-out;
}

.fade-in-delayed {
    animation: fadeIn 0.5s ease-out 0.3s backwards;
}

.fade-in-slow {
    animation: fadeIn 0.8s ease-out 0.6s backwards;
}

/* Slide In Animation */
@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in {
    animation: slideIn 0.5s ease-out;
}

/* Scale In Animation */
@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.scale-in {
    animation: scaleIn 0.3s ease-out;
}

/* Rotate In Animation */
@keyframes rotateIn {
    from {
        opacity: 0;
        transform: rotate(-10deg);
    }

    to {
        opacity: 1;
        transform: rotate(0);
    }
}

.rotate-in {
    animation: rotateIn 0.5s ease-out;
}

/* Bounce Animation */
@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-20px);
    }

    60% {
        transform: translateY(-10px);
    }
}

.bounce {
    animation: bounce 1s ease-in-out;
}

/* Pulse Animation */
@keyframes pulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.5;
    }
}

.pulse {
    animation: pulse 2s ease-in-out infinite;
}

/* Shimmer Animation */
@keyframes shimmer {
    0% {
        background-position: -1000px 0;
    }

    100% {
        background-position: 1000px 0;
    }
}

.shimmer {
    animation: shimmer 2s infinite;
    background: linear-gradient(to right, #f6f7f8 4%, #edeef1 25%, #f6f7f8 36%);
    background-size: 1000px 100%;
}

/* Skeleton Loading */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: 4px;
}

.skeleton-text {
    height: 16px;
    margin-bottom: 8px;
}

.skeleton-title {
    height: 24px;
    margin-bottom: 12px;
    width: 60%;
}

.skeleton-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

/* Spinner Animation */
@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.spinner {
    border: 3px solid rgba(0, 0, 0, 0.1);
    border-left-color: #7c3aed;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.spinner-sm {
    width: 20px;
    height: 20px;
    border-width: 2px;
}

.spinner-md {
    width: 32px;
    height: 32px;
    border-width: 3px;
}

.spinner-lg {
    width: 48px;
    height: 48px;
    border-width: 4px;
}

/* Progress Bar Animation */
@keyframes progress {
    from {
        width: 0%;
    }

    to {
        width: var(--progress, 100%);
    }
}

.progress-bar {
    height: 8px;
    background: #e5e7eb;
    border-radius: 4px;
    overflow: hidden;
}

.progress-bar-fill {
    height: 100%;
    background: linear-gradient(90deg, #059669, #7c3aed);
    animation: progress 1s ease-out forwards;
}

/* Toast Notification Animations */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }

    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }

    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

.toast {
    animation: slideInRight 0.3s ease-out;
}

.toast.toast-closing {
    animation: slideOutRight 0.3s ease-in;
}

/* Modal Animation */
@keyframes fadeInOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes fadeInContent {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-overlay {
    animation: fadeInOverlay 0.2s ease-out;
}

.modal-content {
    animation: fadeInContent 0.3s ease-out;
}

/* Dropdown Animation */
@keyframes dropdownFadeIn {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.dropdown-menu {
    animation: dropdownFadeIn 0.2s ease-out;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

/* Accessibility - Focus Styles */
*:focus-visible {
    outline: 2px solid #7c3aed;
    outline-offset: 2px;
    border-radius: 4px;
}

/* Accessibility - Skip to Content */
.skip-to-content {
    position: absolute;
    top: -40px;
    left: 0;
    background: #7c3aed;
    color: white;
    padding: 8px;
    text-decoration: none;
    z-index: 100;
    transition: top 0.3s ease;
}

.skip-to-content:focus {
    top: 0;
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

/* ============================================
   FIN - TEMEL.CSS (BİRLEŞTİRİLMİŞ)
   ============================================ */