* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #10b981;
    --secondary-color: #34d399;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f9fafb;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
}

.navbar .container {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem 15px 1rem 0;
    max-width: 100%;
    width: 100%;
    margin: 0;
    gap: 2rem;
}

.logo {
    display: flex;
    align-items: center;
    height: 60px;
    width: 200px;
    transition: all 0.3s ease;
}

.logo-img {
    height: 100%;
    max-height: 60px;
    width: 200px;
    object-fit: contain;
    transition: all 0.3s ease;
}

.logo:hover .logo-img {
    transform: scale(1.05);
    filter: drop-shadow(0 2px 8px rgba(16, 185, 129, 0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    margin-left: 0;
    padding-left: 0;
    flex: 1;
}

.nav-menu a {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
    letter-spacing: 0.2px;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-color) 0%, #059669 100%);
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
}

.nav-menu a:hover {
    color: var(--primary-color);
    transform: translateY(-1px);
}

.nav-menu a:hover::after {
    width: 100%;
}

.btn-nav {
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    color: var(--white) !important;
    padding: 10px 24px;
    border-radius: 10px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-weight: 500;
    letter-spacing: 0.3px;
    box-shadow: 
        0 4px 12px rgba(16, 185, 129, 0.3),
        0 2px 4px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-nav::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-nav:hover::before {
    left: 100%;
}

.btn-nav:hover {
    background: linear-gradient(135deg, #059669 0%, var(--primary-color) 100%);
    color: var(--white) !important;
    transform: translateY(-3px);
    box-shadow: 
        0 8px 24px rgba(16, 185, 129, 0.4),
        0 4px 12px rgba(16, 185, 129, 0.3);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.nav-toggle span {
    width: 25px;
    height: 3px;
    background: var(--text-dark);
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    margin-top: 70px;
    padding: 120px 0 100px;
    background: 
        linear-gradient(135deg, rgba(10, 93, 84, 0.15) 0%, rgba(15, 118, 110, 0.12) 30%, rgba(16, 185, 129, 0.10) 60%, rgba(5, 150, 105, 0.12) 100%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.20) 0%, rgba(255, 255, 255, 0.15) 100%),
        url('background foto1.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-blend-mode: multiply, overlay, normal;
    color: var(--white);
    min-height: 95vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 150px;
    background: linear-gradient(180deg, transparent 0%, rgba(249, 250, 251, 0.3) 50%, rgba(249, 250, 251, 0.6) 100%);
    pointer-events: none;
    z-index: 1;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(251, 191, 36, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(245, 158, 11, 0.06) 0%, transparent 50%),
        linear-gradient(135deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.05) 100%);
    z-index: 0;
    pointer-events: none;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    opacity: 0.15;
}

.hero-pattern {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.12) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        linear-gradient(45deg, transparent 30%, rgba(251, 191, 36, 0.03) 50%, transparent 70%);
    animation: patternMove 25s ease-in-out infinite;
}

@keyframes patternMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

.hero .container {
    position: relative;
    z-index: 2;
    display: block;
    max-width: 900px;
    margin: 0;
    text-align: left;
}

.hero-content {
    animation: fadeInUp 1s ease;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.12);
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2.5rem;
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
    animation: slideInLeft 0.8s ease;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.hero-badge:hover {
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.4);
}

.badge-icon {
    font-size: 1.3rem;
    animation: pulse 2s ease-in-out infinite;
}

.badge-divider {
    opacity: 0.5;
    font-size: 0.8rem;
}

.hero-title {
    font-size: 4.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    line-height: 1.08;
    letter-spacing: -0.03em;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

.hero-title .title-line {
    display: block;
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.hero-title .title-line:nth-child(1) {
    animation-delay: 0.2s;
}

.hero-title .title-line:nth-child(2) {
    animation-delay: 0.4s;
}

.hero-title .title-line:nth-child(3) {
    animation-delay: 0.6s;
}

.hero-title .highlight {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 50%, #d97706 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    position: relative;
    filter: drop-shadow(0 2px 8px rgba(251, 191, 36, 0.3));
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #fbbf24 0%, #f59e0b 100%);
    border-radius: 2px;
    opacity: 0.6;
    animation: underlineExpand 1s ease 1.2s forwards;
    transform: scaleX(0);
    transform-origin: left;
}

@keyframes underlineExpand {
    to {
        transform: scaleX(1);
    }
}

.hero-subtitle {
    font-size: 1.35rem;
    margin-bottom: 3.5rem;
    opacity: 0.95;
    line-height: 1.85;
    font-weight: 400;
    animation: fadeInUp 1s ease 0.8s forwards;
    opacity: 0;
    letter-spacing: 0.2px;
}

.hero-subtitle strong {
    font-weight: 600;
    color: #fbbf24;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
    position: relative;
}

.text-accent {
    color: #fbbf24;
    font-weight: 600;
    text-shadow: 0 2px 8px rgba(251, 191, 36, 0.2);
}

/* Hero Stats */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    animation: fadeInUp 1s ease 1s forwards;
    opacity: 0;
}

.stat-item {
    text-align: center;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.stat-item:hover::before {
    left: 100%;
}

.stat-item:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ffffff 0%, #fbbf24 50%, #f59e0b 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 0.75rem;
    filter: drop-shadow(0 2px 4px rgba(251, 191, 36, 0.2));
    letter-spacing: -0.02em;
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.92;
    font-weight: 500;
    letter-spacing: 0.3px;
}

.hero-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 1s ease 1.2s forwards;
    opacity: 0;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1rem;
    opacity: 1;
    padding: 1rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text-dark);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.trust-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
    transform: scaleY(0);
    transition: transform 0.4s ease;
    transform-origin: top;
}

.trust-item:hover::before {
    transform: scaleY(1);
}

.trust-item:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(249, 250, 251, 1) 100%);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateX(8px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.2),
        0 3px 10px rgba(0, 0, 0, 0.15);
    padding-left: 1.5rem;
}

.trust-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.1) 100%);
    border-radius: 12px;
    font-size: 1.3rem;
    flex-shrink: 0;
    border: 1px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.trust-item:hover .trust-icon {
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.3) 0%, rgba(245, 158, 11, 0.2) 100%);
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 1.4s forwards;
    opacity: 0;
}

.btn {
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    border: none;
    cursor: pointer;
    font-size: 1.05rem;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    color: var(--primary-color);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 4px 16px rgba(0, 0, 0, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    border: 2px solid rgba(255, 255, 255, 0.5);
    font-weight: 700;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
    border-radius: 12px;
    z-index: -1;
}

.btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.2),
        0 4px 16px rgba(251, 191, 36, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    color: var(--white);
}

.btn-primary:hover::after {
    opacity: 1;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(8px);
    filter: brightness(1.2);
}

.btn-arrow {
    transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-secondary {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.9) 0%, rgba(5, 150, 105, 0.9) 100%);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 
        0 8px 32px rgba(0, 0, 0, 0.25),
        0 4px 16px rgba(16, 185, 129, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    font-weight: 600;
    letter-spacing: 0.3px;
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-secondary:hover::before {
    width: 300px;
    height: 300px;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, rgba(16, 185, 129, 1) 0%, rgba(5, 150, 105, 1) 100%);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 
        0 12px 40px rgba(0, 0, 0, 0.3),
        0 6px 20px rgba(16, 185, 129, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* Trust Badges */
.hero-trust-badges {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.6s forwards;
    opacity: 0;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    opacity: 1;
    padding: 0.65rem 1.25rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(249, 250, 251, 0.95) 100%);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    letter-spacing: 0.2px;
    color: var(--text-dark);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.15),
        0 2px 8px rgba(0, 0, 0, 0.1);
}

.trust-badge:hover {
    background: linear-gradient(135deg, rgba(255, 255, 255, 1) 0%, rgba(249, 250, 251, 1) 100%);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
    box-shadow: 
        0 6px 20px rgba(0, 0, 0, 0.2),
        0 3px 10px rgba(0, 0, 0, 0.15);
}

.badge-check {
    color: var(--primary-color);
    font-weight: bold;
    font-size: 1.1rem;
    text-shadow: 0 2px 4px rgba(16, 185, 129, 0.2);
    filter: drop-shadow(0 0 4px rgba(16, 185, 129, 0.3));
}

.hero-image {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.hero-visual {
    width: 100%;
    height: 500px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.06) 100%);
    border-radius: 28px;
    backdrop-filter: blur(30px) saturate(180%);
    -webkit-backdrop-filter: blur(30px) saturate(180%);
    border: 2px solid rgba(255, 255, 255, 0.25);
    animation: fadeIn 1.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 25px 80px rgba(0, 0, 0, 0.4),
        0 8px 32px rgba(0, 0, 0, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.hero-visual::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(251, 191, 36, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.legal-symbol {
    font-size: 11rem;
    opacity: 0.35;
    animation: float 4s ease-in-out infinite;
    z-index: 1;
    filter: drop-shadow(0 8px 24px rgba(0, 0, 0, 0.2));
    text-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

.floating-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.floating-element {
    position: absolute;
    font-size: 2.5rem;
    opacity: 0.3;
    animation: floatAround 6s ease-in-out infinite;
}

.element-1 {
    top: 15%;
    left: 20%;
    animation-delay: 0s;
}

.element-2 {
    top: 60%;
    right: 25%;
    animation-delay: 1.5s;
}

.element-3 {
    bottom: 20%;
    left: 15%;
    animation-delay: 3s;
}

.element-4 {
    top: 30%;
    right: 15%;
    animation-delay: 4.5s;
}

@keyframes floatAround {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    25% {
        transform: translate(20px, -20px) rotate(90deg);
    }
    50% {
        transform: translate(-15px, 15px) rotate(180deg);
    }
    75% {
        transform: translate(10px, 20px) rotate(270deg);
    }
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 2;
    animation: fadeIn 2s ease 2s forwards;
    opacity: 0;
}

.scroll-mouse {
    width: 24px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 12px;
    position: relative;
}

.scroll-wheel {
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease-in-out infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(16px);
    }
}

.scroll-text {
    font-size: 0.85rem;
    opacity: 0.7;
    font-weight: 500;
    letter-spacing: 0.1em;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

/* Work Areas Section */
.work-areas {
    padding: 100px 0;
    background: linear-gradient(180deg, rgba(249, 250, 251, 0.95) 0%, #ffffff 20%, var(--bg-light) 100%);
    position: relative;
}

.work-areas::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(16, 185, 129, 0.05) 0%, rgba(16, 185, 129, 0.02) 50%, transparent 100%);
    pointer-events: none;
}

.section-title {
    text-align: center;
    font-size: 2.75rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary-color) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.work-areas-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.work-areas-subtitle {
    font-size: 1.5rem;
    color: var(--primary-color);
    font-weight: 600;
    margin-bottom: 1rem;
}

.work-areas-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 1rem;
}

.work-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.work-area-card {
    background: var(--white);
    padding: 2.75rem;
    border-radius: 20px;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.08),
        0 1px 3px rgba(0, 0, 0, 0.05);
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    border: 2px solid rgba(229, 231, 235, 0.8);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.work-area-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, #fbbf24 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.work-area-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.05) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-area-card:hover::before {
    transform: scaleX(1);
}

.work-area-card:hover::after {
    opacity: 1;
}

.work-area-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(16, 185, 129, 0.3);
}

.work-area-card.highlight-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(52, 211, 153, 0.05) 100%);
    border: 2px solid var(--primary-color);
}

.work-area-card.highlight-card::before {
    transform: scaleX(1);
}

.work-area-badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 24px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 
        0 4px 12px rgba(16, 185, 129, 0.3),
        0 2px 4px rgba(16, 185, 129, 0.2);
    z-index: 2;
    transition: all 0.3s ease;
}

.work-area-card:hover .work-area-badge {
    transform: scale(1.05);
    box-shadow: 
        0 6px 16px rgba(16, 185, 129, 0.4),
        0 3px 8px rgba(16, 185, 129, 0.3);
}

.work-area-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: inline-block;
    transition: transform 0.3s ease;
}

.work-area-card:hover .work-area-icon {
    transform: scale(1.1) rotate(5deg);
}

.work-area-image {
    width: 100%;
    height: 220px;
    margin-bottom: 1.75rem;
    border-radius: 16px;
    overflow: hidden;
    position: relative;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.12),
        0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid rgba(255, 255, 255, 0.8);
}

.work-area-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(16, 185, 129, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.work-area-card:hover .work-area-image {
    transform: translateY(-8px);
    box-shadow: 
        0 16px 40px rgba(0, 0, 0, 0.15),
        0 4px 12px rgba(16, 185, 129, 0.2);
    border-color: rgba(16, 185, 129, 0.3);
}

.work-area-card:hover .work-area-image::after {
    opacity: 1;
}

.work-area-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.work-area-card:hover .work-area-img {
    transform: scale(1.08);
}

.work-area-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.work-area-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1rem;
}

/* About Section */
.about {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, rgba(255, 255, 255, 0.98) 50%, #ffffff 100%);
    position: relative;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
    margin-top: 2rem;
}

.about-subtitle {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-size: 1.1rem;
    line-height: 1.8;
}

.about-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 2.25rem;
    background: var(--white);
    border-radius: 16px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-left: 5px solid var(--primary-color);
    box-shadow: 
        0 4px 16px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleY(1);
    transition: transform 0.4s ease;
}

.info-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.info-card:hover::after {
    opacity: 1;
}

.info-card:hover {
    transform: translateX(8px);
    box-shadow: 
        0 12px 32px rgba(0, 0, 0, 0.1),
        0 4px 12px rgba(16, 185, 129, 0.15);
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
    border-left-color: var(--secondary-color);
}

.info-icon {
    font-size: 2.75rem;
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.12) 0%, rgba(52, 211, 153, 0.08) 100%);
    border-radius: 16px;
    border: 2px solid rgba(16, 185, 129, 0.15);
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.1);
}

.info-card:hover .info-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(52, 211, 153, 0.15) 100%);
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 6px 20px rgba(16, 185, 129, 0.2);
}

.info-content h4 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.info-content p {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.6;
    margin: 0;
}

/* Founders Section */
.founders-section {
    margin-top: 3rem;
}

.founders-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3rem;
    position: relative;
    display: inline-block;
    width: 100%;
}

.founders-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.founders-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.founder-card {
    background: var(--white);
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 24px;
    padding: 3rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.04);
    backdrop-filter: blur(10px);
}

.founder-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, #fbbf24 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.founder-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.founder-card:hover::before {
    transform: scaleX(1);
}

.founder-card:hover::after {
    opacity: 1;
}

.founder-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 24px 64px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(16, 185, 129, 0.3);
}

.founder-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #f3f4f6;
}

.founder-icon {
    font-size: 3rem;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.1) 100%);
    border-radius: 16px;
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.founder-badge {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.founder-name {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
    padding-left: 0.5rem;
    border-left: 4px solid var(--primary-color);
    padding-left: 1rem;
}

.founder-content {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.founder-description {
    color: var(--text-light);
    font-size: 1rem;
    line-height: 1.8;
    text-align: justify;
    margin: 0;
}

/* Blog Section */
.blog {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, rgba(249, 250, 251, 0.98) 50%, var(--bg-light) 100%);
    position: relative;
}

.blog-header {
    text-align: center;
    margin-bottom: 3rem;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
    font-size: 0.95rem;
    color: var(--text-light);
}

.breadcrumb a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #059669;
}

.breadcrumb span:last-child {
    color: var(--text-dark);
    font-weight: 500;
}

.featured-section {
    margin-bottom: 4rem;
}

.featured-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-posts-section {
    margin-top: 4rem;
}

.posts-count {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.blog-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.blog-card {
    background: var(--white);
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
}

.blog-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.blog-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.blog-card:hover::before {
    transform: scaleX(1);
}

.blog-card:hover::after {
    opacity: 1;
}

.blog-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(16, 185, 129, 0.3);
}

.blog-card.featured-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, rgba(52, 211, 153, 0.03) 100%);
    border: 2px solid rgba(16, 185, 129, 0.25);
    box-shadow: 
        0 8px 32px rgba(16, 185, 129, 0.1),
        0 2px 8px rgba(16, 185, 129, 0.08);
}

.blog-card.featured-card::before {
    transform: scaleX(1);
}

.blog-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1rem;
}

.blog-category {
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 0.3px;
    box-shadow: 
        0 4px 12px rgba(16, 185, 129, 0.3),
        0 2px 4px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.blog-card:hover .blog-category {
    transform: scale(1.05);
    box-shadow: 
        0 6px 16px rgba(16, 185, 129, 0.4),
        0 3px 8px rgba(16, 185, 129, 0.3);
}

.blog-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-light);
}

.blog-date,
.blog-views,
.blog-time {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.blog-card:hover .blog-card-title {
    color: var(--primary-color);
}

.blog-card-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.blog-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.blog-read-more:hover {
    color: #059669;
    transform: translateX(5px);
}

.blog-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    position: relative;
    z-index: 10;
}

.blog-author {
    color: var(--text-light);
    font-size: 0.9rem;
    font-weight: 500;
}

.blog-read-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-family: inherit;
    letter-spacing: 0.3px;
    box-shadow: 
        0 4px 12px rgba(16, 185, 129, 0.3),
        0 2px 4px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    z-index: 10;
}

.blog-read-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.blog-read-btn:hover::before {
    width: 300px;
    height: 300px;
}

.blog-read-btn:hover {
    background: linear-gradient(135deg, #059669 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 24px rgba(16, 185, 129, 0.4),
        0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Blog Filters */
.blog-filters {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.blog-search {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.search-input {
    flex: 1;
    padding: 12px 16px;
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.search-input:focus {
    outline: none;
    border-color: var(--primary-color);
}

.search-btn {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 12px 20px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.search-btn:hover {
    background: #059669;
    transform: scale(1.05);
}

.blog-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.category-btn {
    padding: 8px 16px;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.category-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.category-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Emsal Kararlar Section */
.emsal-kararlar {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, rgba(249, 250, 251, 0.98) 50%, var(--bg-light) 100%);
    position: relative;
}

.emsal-header {
    text-align: center;
    margin-bottom: 3rem;
}

.emsal-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.decisions-section {
    margin-top: 4rem;
}

.decisions-count {
    color: var(--text-light);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.decisions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.decision-card {
    background: var(--white);
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
}

.decision-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 50%, #fbbf24 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
    pointer-events: none;
    z-index: 0;
}

.decision-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.decision-card:hover::before {
    transform: scaleX(1);
}

.decision-card:hover::after {
    opacity: 1;
}

.decision-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(16, 185, 129, 0.3);
}

.decision-card.featured-card {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.03) 0%, rgba(52, 211, 153, 0.03) 100%);
    border: 2px solid rgba(16, 185, 129, 0.2);
}

.decision-card.featured-card::before {
    transform: scaleX(1);
}

.decision-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.decision-court-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 600;
}

.court-icon {
    font-size: 1.2rem;
    color: var(--primary-color);
}

.court-name {
    font-size: 0.95rem;
}

.decision-number-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
}

.decision-category {
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    width: fit-content;
    margin-bottom: 1.25rem;
    letter-spacing: 0.3px;
    box-shadow: 
        0 4px 12px rgba(16, 185, 129, 0.3),
        0 2px 4px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.decision-card:hover .decision-category {
    transform: scale(1.05);
    box-shadow: 
        0 6px 16px rgba(16, 185, 129, 0.4),
        0 3px 8px rgba(16, 185, 129, 0.3);
}

.decision-title {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.decision-card:hover .decision-title {
    color: var(--primary-color);
}

.decision-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.decision-views {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.decision-court {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.decision-number {
    background: rgba(16, 185, 129, 0.1);
    color: var(--primary-color);
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-block;
}

.decision-read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    margin-top: auto;
}

.decision-read-more:hover {
    color: #059669;
    transform: translateX(5px);
}

.decision-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
}

.decision-meta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    font-size: 0.85rem;
    color: var(--text-light);
}

.decision-date,
.decision-views {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.decision-read-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.3px;
    box-shadow: 
        0 4px 12px rgba(16, 185, 129, 0.3),
        0 2px 4px rgba(16, 185, 129, 0.2);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: none;
    cursor: pointer;
    font-family: inherit;
    display: block;
    width: 100%;
    text-align: center;
    box-sizing: border-box;
    z-index: 10;
}

.decision-read-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.decision-read-btn:hover::before {
    width: 300px;
    height: 300px;
}

.decision-read-btn:hover {
    background: linear-gradient(135deg, #059669 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 24px rgba(16, 185, 129, 0.4),
        0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Emsal Filters */
.emsal-filters {
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.emsal-search {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.emsal-filter-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.filter-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.filter-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.filter-btn {
    padding: 8px 16px;
    background: var(--white);
    border: 2px solid #e5e7eb;
    border-radius: 20px;
    color: var(--text-dark);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.filter-btn.active {
    background: var(--primary-color);
    color: var(--white);
    border-color: var(--primary-color);
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, rgba(255, 255, 255, 0.98) 50%, #ffffff 100%);
    position: relative;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.contact-info p {
    color: var(--text-light);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
    color: var(--text-dark);
    padding: 1.5rem;
    background: var(--white);
    border-radius: 16px;
    border: 2px solid rgba(229, 231, 235, 0.8);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.02);
}

.contact-item:hover {
    transform: translateX(8px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.contact-icon {
    font-size: 1.75rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.1) 0%, rgba(52, 211, 153, 0.08) 100%);
    border-radius: 12px;
    border: 2px solid rgba(16, 185, 129, 0.15);
    transition: all 0.3s ease;
}

.contact-item:hover .contact-icon {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(52, 211, 153, 0.15) 100%);
    transform: scale(1.1) rotate(5deg);
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.2);
}

.contact-item-content {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact-item-content strong {
    color: var(--text-dark);
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.contact-item-content span {
    color: var(--text-light);
    line-height: 1.6;
}

/* Randevu Section */
.randevu {
    padding: 6rem 0;
    background: linear-gradient(180deg, #f9fafb 0%, #ffffff 100%);
    position: relative;
}

.randevu-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.randevu-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.randevu-calendar-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(229, 231, 235, 0.8);
}

.calendar-container {
    width: 100%;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #e5e7eb;
}

.calendar-nav-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    cursor: pointer;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.calendar-nav-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 16px rgba(16, 185, 129, 0.4);
}

.calendar-nav-btn:active {
    transform: scale(0.95);
}

.calendar-month-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    text-transform: capitalize;
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.weekday {
    text-align: center;
    font-weight: 600;
    color: var(--text-light);
    font-size: 0.9rem;
    padding: 0.5rem;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 0.5rem;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    background: #f9fafb;
    border: 2px solid transparent;
    color: var(--text-dark);
}

.calendar-day:hover:not(.disabled):not(.selected) {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.3);
    transform: scale(1.05);
}

.calendar-day.disabled {
    color: #d1d5db;
    cursor: not-allowed;
    background: #f3f4f6;
}

.calendar-day.today {
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(52, 211, 153, 0.15) 100%);
    border-color: var(--primary-color);
    font-weight: 700;
}

.calendar-day.selected {
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.4);
    transform: scale(1.05);
}

.randevu-form-wrapper {
    background: var(--white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(229, 231, 235, 0.8);
}

.randevu-form h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.randevu-form .form-group {
    margin-bottom: 1.5rem;
}

.randevu-form .form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.randevu-form .form-group input,
.randevu-form .form-group select,
.randevu-form .form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    font-size: 1rem;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.randevu-form .form-group input:focus,
.randevu-form .form-group select:focus,
.randevu-form .form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 4px rgba(16, 185, 129, 0.1),
        0 4px 12px rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
}

.randevu-form .form-group input[readonly] {
    background: #f9fafb;
    cursor: pointer;
}

.randevu-form .form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231f2937' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.randevu-form .form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.randevu-form .btn {
    width: 100%;
    margin-top: 1rem;
    padding: 14px 24px;
    font-size: 1.1rem;
    font-weight: 600;
}

@media (max-width: 968px) {
    .randevu-content {
        grid-template-columns: 1fr;
    }
    
    .randevu-calendar-wrapper {
        order: 2;
    }
    
    .randevu-form-wrapper {
        order: 1;
    }
}

.map-container {
    margin-top: 4rem;
    padding-top: 3rem;
    border-top: 2px solid #e5e7eb;
}

.map-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    text-align: center;
}

.map-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 3px solid rgba(229, 231, 235, 0.8);
    transition: all 0.4s ease;
    position: relative;
}

.map-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05) 0%, transparent 100%);
    pointer-events: none;
    z-index: 1;
}

.map-wrapper:hover {
    box-shadow: 
        0 24px 72px rgba(0, 0, 0, 0.15),
        0 12px 32px rgba(16, 185, 129, 0.12);
    border-color: rgba(16, 185, 129, 0.3);
    transform: translateY(-4px);
}

.google-map {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: var(--white);
    font-size: 1rem;
    font-family: inherit;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    font-size: 1rem;
    font-family: inherit;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 
        0 0 0 4px rgba(16, 185, 129, 0.1),
        0 4px 12px rgba(16, 185, 129, 0.15);
    transform: translateY(-2px);
    background: #ffffff;
}

.form-group textarea {
    resize: vertical;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1f2937 0%, #111827 100%);
    color: var(--white);
    padding: 4rem 0 1.5rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(16, 185, 129, 0.3), transparent);
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    font-weight: 700;
    font-size: 1.3rem;
    background: linear-gradient(135deg, #ffffff 0%, rgba(16, 185, 129, 0.8) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: 0.3px;
}

.footer-logo {
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
}

.footer-logo-img {
    max-height: 50px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

.footer-logo:hover .footer-logo-img {
    filter: brightness(0) invert(1) drop-shadow(0 2px 8px rgba(16, 185, 129, 0.5));
    transform: scale(1.05);
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 0.75rem;
    transition: all 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    position: relative;
    padding-left: 0;
    letter-spacing: 0.2px;
}

.footer-section a::before {
    content: '→';
    position: absolute;
    left: -20px;
    opacity: 0;
    transition: all 0.3s ease;
    color: var(--primary-color);
}

.footer-section a:hover {
    color: var(--white);
    padding-left: 20px;
    transform: translateX(5px);
}

.footer-section a:hover::before {
    opacity: 1;
    left: 0;
}

.footer-bottom {
    text-align: center;
    padding-top: 2.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.95rem;
    letter-spacing: 0.3px;
    position: relative;
    z-index: 1;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .logo {
        height: 50px;
        width: 150px;
    }
    
    .logo-img {
        max-height: 50px;
        width: 150px;
    }
    
    .footer-logo-img {
        max-height: 40px;
    }
    
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: var(--shadow);
        padding: 2rem 0;
        gap: 1rem;
    }

    .nav-menu .btn-nav {
        display: inline-block;
        margin: 0.5rem auto;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding: 60px 0 40px;
        min-height: auto;
        background-attachment: scroll;
    }

    .hero .container {
        text-align: left;
    }

    .hero-title {
        font-size: 2.2rem;
    }

    .hero-title .title-line {
        display: block;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2rem;
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 1.5rem 0;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.85rem;
    }

    .hero-trust {
        grid-template-columns: 1fr;
        gap: 0.75rem;
    }

    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }

    .btn {
        width: 100%;
        justify-content: center;
    }

    .hero-trust-badges {
        justify-content: center;
        flex-wrap: wrap;
    }

    .hero-visual {
        height: 350px;
    }

    .legal-symbol {
        font-size: 6rem;
    }

    .floating-element {
        font-size: 2rem;
    }

    .scroll-indicator {
        bottom: 20px;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .about-subtitle {
        font-size: 1.8rem;
    }

    .info-card {
        padding: 1.5rem;
    }

    .founders-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .founder-card {
        padding: 2rem;
    }

    .founders-title {
        font-size: 1.75rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
    }

    .map-container {
        margin-top: 3rem;
        padding-top: 2rem;
    }

    .map-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .google-map {
        height: 350px;
    }

    .contact-item {
        flex-direction: column;
        align-items: flex-start;
    }

    .contact-icon {
        margin-top: 0;
    }

    .section-title {
        font-size: 2rem;
    }

    .work-areas-grid {
        grid-template-columns: 1fr;
    }

    .work-areas-subtitle {
        font-size: 1.3rem;
    }

    .work-areas-description {
        font-size: 1rem;
    }

    .featured-grid,
    .blog-posts-grid,
    .decisions-grid {
        grid-template-columns: 1fr;
    }

    .emsal-filter-row {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .decision-card {
        padding: 1.5rem;
    }

    .decision-title {
        font-size: 1.2rem;
    }

    .blog-card {
        padding: 1.5rem;
    }

    .blog-card-title {
        font-size: 1.2rem;
    }

    .blog-filters {
        padding: 1.5rem;
    }

    .blog-categories {
        gap: 0.5rem;
    }

    .category-btn {
        font-size: 0.85rem;
        padding: 6px 12px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1rem;
    }

    .hero-trust {
        gap: 0.8rem;
    }

    .trust-item {
        font-size: 0.85rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .legal-icon {
        font-size: 4rem;
    }

    .about-subtitle {
        font-size: 1.5rem;
    }

    .info-icon {
        font-size: 2rem;
        width: 50px;
        height: 50px;
    }

    .founders-section {
        margin-top: 2rem;
    }

    .founders-title {
        font-size: 1.5rem;
        margin-bottom: 2rem;
    }

    .founder-card {
        padding: 1.5rem;
    }

    .founder-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        margin-bottom: 1.25rem;
        padding-bottom: 1.25rem;
    }

    .founder-icon {
        font-size: 2.5rem;
        width: 60px;
        height: 60px;
    }

    .founder-name {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }

    .founder-description {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .info-content h4 {
        font-size: 1.1rem;
    }

    .info-content p {
        font-size: 0.9rem;
    }

    .work-area-card {
        padding: 2rem;
    }

    .work-area-icon {
        font-size: 2.5rem;
    }

    .work-area-card h3 {
        font-size: 1.3rem;
    }

    .work-area-card p {
        font-size: 0.9rem;
    }

    .work-area-image {
        height: 180px;
    }

    .work-areas-subtitle {
        font-size: 1.1rem;
    }

    .work-areas-description {
        font-size: 0.95rem;
    }

    .decision-card {
        padding: 1.25rem;
    }

    .decision-title {
        font-size: 1.1rem;
    }

    .decision-excerpt {
        font-size: 0.9rem;
    }

    .decision-meta {
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    .emsal-search {
        flex-direction: column;
    }

    .search-input {
        width: 100%;
    }

    .blog-card {
        padding: 1.25rem;
    }

    .blog-card-title {
        font-size: 1.1rem;
    }

    .blog-card-excerpt {
        font-size: 0.9rem;
    }

    .blog-meta {
        font-size: 0.75rem;
        gap: 0.5rem;
    }

    .featured-title {
        font-size: 1.5rem;
    }

    .blog-search {
        flex-direction: column;
    }

    .search-input {
        width: 100%;
    }
}

/* Blog Modal */
.blog-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    overflow-y: auto;
}

.blog-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
}

.blog-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2001;
}

.blog-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    max-width: 900px;
    width: 100%;
    margin: 2rem auto;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2002;
    animation: modalSlideIn 0.3s ease;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.blog-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2003;
}

.blog-modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.blog-article {
    max-width: 100%;
}

.blog-article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.blog-article-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.blog-article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.9rem;
    color: var(--text-light);
    margin-top: 1rem;
}

.blog-article-date,
.blog-article-time,
.blog-article-author {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.blog-article-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.blog-article-body {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1.05rem;
}

.blog-article-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.blog-article-body p:last-child {
    margin-bottom: 0;
}

.blog-article-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.blog-article-body h3:first-child {
    margin-top: 0;
}

@media (max-width: 768px) {
    .blog-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .blog-article-title {
        font-size: 1.6rem;
    }

    .blog-article-body {
        font-size: 1rem;
    }

    .blog-article-meta {
        flex-direction: column;
        gap: 0.75rem;
    }

    .blog-modal-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
}

/* Bilgi Bankası Section */
.bilgi-bankasi {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, rgba(255, 255, 255, 0.98) 50%, #ffffff 100%);
    position: relative;
}

.bilgi-bankasi-header {
    text-align: center;
    margin-bottom: 3rem;
}

.bilgi-bankasi-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

.bilgi-bankasi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
}

.bilgi-card {
    background: var(--white);
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 20px;
    padding: 2.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.06),
        0 1px 4px rgba(0, 0, 0, 0.04);
    position: relative;
    overflow: hidden;
}

.bilgi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    z-index: 0;
}

.bilgi-card::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(16, 185, 129, 0.06) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
    z-index: 0;
}

.bilgi-card:hover::before {
    transform: scaleX(1);
}

.bilgi-card:hover::after {
    opacity: 1;
}

.bilgi-card:hover {
    transform: translateY(-10px);
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        0 8px 24px rgba(16, 185, 129, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border-color: rgba(16, 185, 129, 0.3);
}

.bilgi-card-header {
    margin-bottom: 1rem;
}

.bilgi-category {
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    color: var(--white);
    padding: 8px 18px;
    border-radius: 24px;
    font-size: 0.85rem;
    font-weight: 700;
    display: inline-block;
    letter-spacing: 0.3px;
    box-shadow: 
        0 4px 12px rgba(16, 185, 129, 0.3),
        0 2px 4px rgba(16, 185, 129, 0.2);
    transition: all 0.3s ease;
}

.bilgi-card:hover .bilgi-category {
    transform: scale(1.05);
    box-shadow: 
        0 6px 16px rgba(16, 185, 129, 0.4),
        0 3px 8px rgba(16, 185, 129, 0.3);
}

.bilgi-card-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.bilgi-card:hover .bilgi-card-title {
    color: var(--primary-color);
}

.bilgi-card-excerpt {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.bilgi-card-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #e5e7eb;
    position: relative;
    z-index: 10;
}

.bilgi-read-btn {
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    color: var(--white);
    padding: 12px 24px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: none;
    cursor: pointer;
    font-family: inherit;
    width: 100%;
    letter-spacing: 0.3px;
    box-shadow: 
        0 4px 12px rgba(16, 185, 129, 0.3),
        0 2px 4px rgba(16, 185, 129, 0.2);
    position: relative;
    overflow: hidden;
    display: block;
    text-align: center;
    box-sizing: border-box;
    z-index: 10;
}

.bilgi-read-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.bilgi-read-btn:hover::before {
    width: 300px;
    height: 300px;
}

.bilgi-read-btn:hover {
    background: linear-gradient(135deg, #059669 0%, var(--primary-color) 100%);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 24px rgba(16, 185, 129, 0.4),
        0 4px 12px rgba(16, 185, 129, 0.3);
}

/* Bilgi Bankası Modal */
.bilgi-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    overflow-y: auto;
}

.bilgi-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
}

.bilgi-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2001;
}

.bilgi-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    max-width: 1000px;
    width: 100%;
    margin: 2rem auto;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2002;
    animation: modalSlideIn 0.3s ease;
}

.bilgi-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2003;
}

.bilgi-modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.bilgi-article {
    max-width: 100%;
}

.bilgi-article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.bilgi-article-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.bilgi-article-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.bilgi-article-body {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1.05rem;
}

.bilgi-article-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.bilgi-article-body p:last-child {
    margin-bottom: 0;
}

.bilgi-article-body h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--primary-color);
}

.bilgi-article-body h3:first-child {
    margin-top: 0;
}

.bilgi-article-body ul {
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
}

.bilgi-article-body li {
    margin-bottom: 0.75rem;
    line-height: 1.8;
}

.bilgi-article-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .bilgi-bankasi-grid {
        grid-template-columns: 1fr;
    }

    .bilgi-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .bilgi-article-title {
        font-size: 1.6rem;
    }

    .bilgi-article-body {
        font-size: 1rem;
    }

    .bilgi-modal-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
}

/* Emsal Kararlar Category Filter */
.emsal-category-filter {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.category-filter-btn {
    padding: 12px 28px;
    background: var(--white);
    border: 2px solid rgba(229, 231, 235, 0.8);
    border-radius: 30px;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
    letter-spacing: 0.3px;
    box-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.04),
        0 1px 3px rgba(0, 0, 0, 0.02);
    position: relative;
    overflow: hidden;
}

.category-filter-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(16, 185, 129, 0.1);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.category-filter-btn:hover::before {
    width: 300px;
    height: 300px;
}

.category-filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 4px 12px rgba(16, 185, 129, 0.15);
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.category-filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    color: var(--white);
    border-color: var(--primary-color);
    box-shadow: 
        0 6px 20px rgba(16, 185, 129, 0.35),
        0 3px 10px rgba(16, 185, 129, 0.25);
    transform: translateY(-2px);
}

.category-filter-btn.active:hover {
    transform: translateY(-4px);
    box-shadow: 
        0 10px 28px rgba(16, 185, 129, 0.4),
        0 5px 14px rgba(16, 185, 129, 0.3);
}

/* Decision Card Updates */
.decision-card[data-category] {
    display: flex;
}

.decision-card.hidden {
    display: none;
}

.decision-court-info {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 0.75rem;
    font-size: 0.95rem;
}

/* Emsal Kararlar Modal */
.decision-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2000;
    overflow-y: auto;
}

.decision-modal.active {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 2rem 1rem;
}

.decision-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(4px);
    z-index: 2001;
}

.decision-modal-content {
    position: relative;
    background: var(--white);
    border-radius: 16px;
    max-width: 1000px;
    width: 100%;
    margin: 2rem auto;
    padding: 3rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    z-index: 2002;
    animation: modalSlideIn 0.3s ease;
}

.decision-modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    background: #f3f4f6;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 2003;
}

.decision-modal-close:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(90deg);
}

.decision-article {
    max-width: 100%;
}

.decision-article-header {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid #e5e7eb;
}

.decision-article-category {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 1rem;
}

.decision-article-title {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.decision-article-meta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 2rem;
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 12px;
}

.decision-article-court {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
    color: var(--text-dark);
    font-weight: 600;
}

.decision-article-number {
    font-size: 0.95rem;
    color: var(--primary-color);
    font-weight: 600;
    font-family: 'Courier New', monospace;
}

.decision-article-body {
    color: var(--text-dark);
    line-height: 1.9;
    font-size: 1.05rem;
}

.decision-article-body p {
    margin-bottom: 1.5rem;
    text-align: justify;
}

.decision-article-body p:last-child {
    margin-bottom: 0;
}

.decision-article-body strong {
    color: var(--primary-color);
    font-weight: 600;
}

@media (max-width: 768px) {
    .emsal-category-filter {
        flex-direction: column;
        align-items: stretch;
    }

    .category-filter-btn {
        width: 100%;
    }

    .decision-modal-content {
        padding: 2rem 1.5rem;
        margin: 1rem;
    }

    .decision-article-title {
        font-size: 1.5rem;
    }

    .decision-article-body {
        font-size: 1rem;
    }

    .decision-modal-close {
        top: 1rem;
        right: 1rem;
        width: 35px;
        height: 35px;
        font-size: 1.3rem;
    }
}

/* Scroll to Top Button */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color) 0%, #059669 100%);
    color: var(--white);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 20px rgba(16, 185, 129, 0.4),
        0 2px 8px rgba(16, 185, 129, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 999;
}

.scroll-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-to-top:hover {
    background: linear-gradient(135deg, #059669 0%, var(--primary-color) 100%);
    transform: translateY(-5px);
    box-shadow: 
        0 6px 24px rgba(16, 185, 129, 0.5),
        0 4px 12px rgba(16, 185, 129, 0.4);
}

.scroll-to-top:active {
    transform: translateY(-2px) scale(0.95);
}

.scroll-to-top svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
}

@media (max-width: 768px) {
    .scroll-to-top {
        bottom: 20px;
        right: 20px;
        width: 45px;
        height: 45px;
    }
    
    .scroll-to-top svg {
        width: 20px;
        height: 20px;
    }
}
