/* ==================================
   GRL Outdoor - Modern CSS Styles
   ================================== */

/* Reset & Base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    cursor: default;
}

/* Better Hover Effects (replaced custom cursor) */
a, button, .service-card {
    cursor: pointer;
    transition: all 0.3s ease;
}

a:hover, button:hover {
    opacity: 0.9;
}

.service-card {
    cursor: pointer;
}

.service-card:hover {
    cursor: pointer;
    transform: translateY(-8px);
}

/* ==================================
   Enhanced Hero Section (Şehir Işıkları Style)
   ================================== */
.hero-enhanced {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: subtle-zoom 20s ease-in-out infinite alternate;
}

@keyframes subtle-zoom {
    0% { transform: scale(1.05); }
    100% { transform: scale(1.1); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 35, 50, 0.95) 0%, rgba(42, 63, 95, 0.9) 50%, rgba(26, 35, 50, 0.95) 100%);
    z-index: 1;
}

/* Grid Pattern Overlay */
.grid-pattern {
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    width: 100%;
    height: 100%;
    animation: grid-move 30s linear infinite;
}

@keyframes grid-move {
    0% { background-position: 0 0; }
    100% { background-position: 50px 50px; }
}

/* Fade-in Animations */
@keyframes fade-in-down {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fade-in {
    from { opacity: 0; }
    to { opacity: 1; }
}

.animate-fade-in-down {
    animation: fade-in-down 0.8s ease-out;
}

.animate-fade-in-up {
    animation: fade-in-up 0.8s ease-out;
}

.animate-fade-in {
    animation: fade-in 1s ease-out;
}

/* Hero Stats */
.hero-stats-card {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}

.hero-stats-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-5px);
}

/* CTA Button Enhancements */
.cta-primary {
    position: relative;
    overflow: hidden;
}

.cta-primary::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;
}

.cta-primary:hover::before {
    width: 300px;
    height: 300px;
}

/* Scroll Indicator */
@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(10px); }
}

.animate-bounce {
    animation: bounce 2s ease-in-out infinite;
}

/* Header - Transparent by default */
#header {
    background: transparent;
    border-bottom: 1px solid transparent;
}

/* Header Logo - Shadow for visibility on transparent background */
#header .logo img {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    transition: filter 0.3s ease;
}

/* Header Links - White text when transparent */
#header .nav-link-modern {
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

#header .nav-link-modern::after {
    background: white;
}

/* Mobile Menu Button - White when transparent */
#header #mobile-menu-btn {
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

/* Header Scroll Effect - Solid background */
#header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
    border-bottom-color: rgba(0, 0, 0, 0.05);
}

#header.scrolled nav {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

/* Header Logo - Clean when scrolled */
#header.scrolled .logo img {
    filter: none;
}

/* Header Links - Dark when scrolled */
#header.scrolled .nav-link-modern {
    color: #1a2332;
    text-shadow: none;
}

#header.scrolled .nav-link-modern::after {
    background: #00d9a3;
}

#header.scrolled #mobile-menu-btn {
    color: #1a2332;
    filter: none;
}

/* Mobile Menu Open State - Force solid background */
#header.menu-open {
    background: rgba(255, 255, 255, 0.98) !important;
    backdrop-filter: blur(12px);
    box-shadow: 0 4px 20px -2px rgba(0, 0, 0, 0.08);
}

#header.menu-open .logo img {
    filter: none;
}

#header.menu-open #mobile-menu-btn {
    color: #1a2332;
    filter: none;
}

#header.menu-open .nav-link-modern {
    color: #1a2332;
    text-shadow: none;
}

/* Mobile Menu Styling */
.mobile-menu {
    background: white;
    border-radius: 1rem;
    padding: 0.5rem;
    margin-top: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Footer Logo */
footer .footer-logo {
    filter: none;
    mix-blend-mode: normal;
}

/* Footer Service List - Modern Compact */
.footer-service-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 2rem;
    padding: 0;
    margin: 0 auto; /* Ortalamak için */
    list-style: none;
    max-width: 400px; /* Çok genişlemesini önle */
}

.footer-service-list li a {
    color: #9ca3af;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    line-height: 1.4;
    justify-content: flex-start; /* İçerik sola dayalı kalsın */
}

.footer-service-list li a::before {
    content: '›';
    margin-right: 6px;
    color: #00d9a3;
    font-weight: bold;
    font-size: 1.1rem;
    line-height: 0;
    opacity: 0.7;
    transition: all 0.2s ease;
    position: relative;
    top: -1px;
}

.footer-service-list li a:hover {
    color: white;
    transform: translateX(4px);
}

.footer-service-list li a:hover::before {
    opacity: 1;
    transform: translateX(-2px);
}

@media (max-width: 640px) {
    .footer-service-list {
        grid-template-columns: 1fr;
    }
}

/* Footer Headings */
.footer-heading {
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #00d9a3, transparent);
}

/* Footer Social Icons */
.footer-social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: #9ca3af;
    transition: all 0.3s ease;
}

.footer-social-icon:hover {
    background: linear-gradient(135deg, #00d9a3, #00b386);
    border-color: #00d9a3;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 217, 163, 0.3);
}

/* Footer Service List - Refined */
.footer-service-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.footer-service-list li a {
    color: #9ca3af;
    font-size: 0.875rem;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    line-height: 1.6;
    padding: 0.25rem 0;
}

.footer-service-list li a::before {
    content: '›';
    margin-right: 8px;
    color: #00d9a3;
    font-weight: bold;
    font-size: 1.1rem;
    opacity: 0.6;
    transition: all 0.2s ease;
}

.footer-service-list li a:hover {
    color: white;
    padding-left: 6px;
}

.footer-service-list li a:hover::before {
    opacity: 1;
    margin-right: 12px;
}

/* Footer Region List - Elegant & Minimal */
.footer-region-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-region-list li a {
    display: block;
    padding: 0.4rem 0;
    color: #9ca3af;
    font-size: 0.9rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 2px solid transparent;
    padding-left: 0.75rem;
    position: relative;
}

.footer-region-list li a:hover {
    color: white;
    border-left-color: #00d9a3;
    padding-left: 1rem;
    background: linear-gradient(90deg, rgba(0, 217, 163, 0.05), transparent);
}

/* Footer Contact List */
.footer-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    color: #9ca3af;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    line-height: 1.6;
}

.footer-contact-item:hover {
    color: white;
}

.footer-contact-item svg {
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-contact-item:hover svg {
    transform: scale(1.1);
}

/* Contact Form Styles */
.contact-form-group {
    display: flex;
    flex-direction: column;
}

.contact-form-label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a2332;
    margin-bottom: 0.5rem;
}

.contact-form-label svg {
    color: #00d9a3;
    flex-shrink: 0;
}

.contact-form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: white;
}

.contact-form-input:focus {
    outline: none;
    border-color: #00d9a3;
    box-shadow: 0 0 0 4px rgba(0, 217, 163, 0.1);
    transform: translateY(-1px);
}

.contact-form-input::placeholder {
    color: #9ca3af;
}

/* Contact Info Cards */
.contact-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem 1.5rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 1rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-info-card:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(0, 217, 163, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.contact-info-icon {
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #00d9a3, #00b386);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(0, 217, 163, 0.3);
}

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

/* Modern Navigation Links */
.nav-link-modern {
    color: #1a2332;
    font-weight: 500;
    font-size: 0.9375rem;
    padding: 0.625rem 1rem;
    border-radius: 0.5rem;
    transition: all 0.2s ease;
    display: inline-block;
    text-decoration: none;
    position: relative;
}

.nav-link-modern:hover {
    color: #00d9a3;
    background: rgba(0, 217, 163, 0.05);
}

.nav-link-modern::after {
    content: '';
    position: absolute;
    bottom: 0.375rem;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 70%;
    height: 2px;
    background: #00d9a3;
    border-radius: 2px;
    transition: transform 0.3s ease;
}

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

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, #00d9a3, #00b386);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 217, 163, 0.3);
}

/* Modern Primary Button */
.btn-primary-modern {
    background: linear-gradient(135deg, #00d9a3, #00b386);
    color: white;
    padding: 0.625rem 1.5rem;
    border-radius: 0.625rem;
    font-weight: 600;
    font-size: 0.9375rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-block;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(0, 217, 163, 0.2);
}

.btn-primary-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 217, 163, 0.35);
    background: linear-gradient(135deg, #00e5b0, #00c090);
}

.btn-primary-large {
    background: linear-gradient(135deg, #00d9a3, #00b386);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.625rem;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    pointer-events: auto; /* Tıklanabilir */
}

.btn-primary-large:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(0, 217, 163, 0.4);
}

.btn-secondary-large {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.625rem;
    font-weight: 700;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
    border: 2px solid rgba(255, 255, 255, 0.3);
    pointer-events: auto; /* Tıklanabilir */
}

.btn-secondary-large:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-2px);
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate-fade-in {
    animation: fadeIn 0.8s ease-out;
}

.animate-fade-in-delay {
    animation: fadeIn 0.8s ease-out 0.2s both;
}

.animate-fade-in-delay-2 {
    animation: fadeIn 0.8s ease-out 0.4s both;
}

.animate-fade-in-delay-3 {
    animation: fadeIn 0.8s ease-out 0.6s both;
}

/* Region Badges */
.region-badge {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 0.75rem 1.25rem;
    border-radius: 0.75rem;
    font-weight: 500;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.region-badge:hover {
    background: rgba(0, 217, 163, 0.2);
    border-color: #00d9a3;
    transform: translateY(-3px);
}

/* Region Badge Compact (for Hero) */
.region-badge-compact {
    position: relative;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: white;
    padding: 0.4rem 0.875rem;
    border-radius: 0.625rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    overflow: hidden;
}

.region-badge-compact::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 217, 163, 0.4), rgba(0, 217, 163, 0.1));
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
    z-index: -1;
}

.region-badge-compact:hover {
    background: rgba(0, 217, 163, 0.2);
    border-color: rgba(0, 217, 163, 0.6);
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 8px 20px rgba(0, 217, 163, 0.3);
    color: #fff;
}

.region-badge-compact:hover::before {
    width: 200px;
    height: 200px;
}

.region-badge-compact:active {
    transform: translateY(-2px) scale(1.02);
}

/* Icon animation on hover */
.region-badge-compact::after {
    content: '📍';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0;
    transition: all 0.3s ease;
}

.region-badge-compact:hover::after {
    opacity: 1;
    left: 12px;
}

.region-badge-compact:hover {
    padding-left: 2rem;
}

@media (max-width: 768px) {
    .hero-regions {
        margin-top: 1.5rem !important;
    }

    .region-badge-compact {
        padding: 0.35rem 0.7rem;
        font-size: 0.7rem;
    }
    
    .region-badge-compact:hover {
        padding-left: 1.5rem;
    }
}

/* Modern Value Cards */
.value-card-modern {
    background: white;
    padding: 2.5rem;
    border-radius: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #00d9a3, #00b386);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.value-card-modern:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(0, 217, 163, 0.15);
    border-color: rgba(0, 217, 163, 0.2);
}

.card-number {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 217, 163, 0.08);
    line-height: 1;
    transition: all 0.3s ease;
}

.value-card-modern:hover .card-number {
    color: rgba(0, 217, 163, 0.15);
    transform: scale(1.1);
}

.icon-wrapper-modern {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.1), rgba(0, 179, 134, 0.1));
    border-radius: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #00d9a3;
    margin-bottom: 1.5rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card-modern:hover .icon-wrapper-modern {
    background: linear-gradient(135deg, #00d9a3, #00b386);
    color: white;
    transform: rotate(-5deg) scale(1.05);
    box-shadow: 0 10px 30px rgba(0, 217, 163, 0.3);
}

.icon-wrapper-modern svg {
    transition: all 0.3s ease;
}

.value-card-modern:hover .icon-wrapper-modern svg {
    transform: scale(1.1);
}

.feature-badge {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(0, 217, 163, 0.05);
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 500;
    color: #1a2332;
    transition: all 0.3s ease;
}

.feature-badge svg {
    color: #00d9a3;
    flex-shrink: 0;
}

.value-card-modern:hover .feature-badge {
    background: rgba(0, 217, 163, 0.1);
    transform: translateX(5px);
}

.stat-bar {
    margin-top: 1.5rem;
    height: 6px;
    background: rgba(0, 217, 163, 0.1);
    border-radius: 3px;
    overflow: hidden;
}

.stat-progress {
    height: 100%;
    background: linear-gradient(90deg, #00d9a3, #00b386);
    border-radius: 3px;
    animation: progressLoad 1.5s ease-out;
}

.stat-progress-95 {
    width: 95%;
}

.stat-progress-98 {
    width: 98%;
}

.stat-progress-100 {
    width: 100%;
}

@keyframes progressLoad {
    from {
        width: 0;
    }
}

.stat-box {
    text-align: center;
    padding: 1.5rem;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.stat-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0, 217, 163, 0.15);
}

/* Category Tabs */
.category-tab {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 0.75rem;
    font-weight: 600;
    color: #1a2332;
    transition: all 0.3s ease;
    cursor: pointer;
}

.category-tab:hover {
    border-color: #00d9a3;
    color: #00d9a3;
}

.category-tab.active {
    background: linear-gradient(135deg, #00d9a3, #00b386);
    border-color: #00d9a3;
    color: white;
}

/* Service Cards with Images */
.service-card {
    background: white;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    cursor: pointer;
    display: block;
    text-decoration: none;
    border: 2px solid transparent;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
    border-color: #00d9a3;
}

.service-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.4s ease;
    display: block;
    background: #f3f4f6;
}

/* Image loading fallback */
.service-image img[src] {
    opacity: 0;
    animation: fadeInImage 0.5s ease forwards;
}

@keyframes fadeInImage {
    to {
        opacity: 1;
    }
}

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

.service-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.3), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover .service-image::after {
    opacity: 1;
}

.service-content {
    padding: 1.5rem;
}

.service-link {
    color: #00d9a3;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    transition: all 0.3s ease;
}

.service-card:hover .service-link {
    transform: translateX(5px);
}

/* Map Points */
.map-point {
    transition: all 0.3s ease;
    cursor: pointer;
}

.map-point:hover {
    transform: translateX(10px);
}

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

.pulse {
    animation: pulse 2s infinite;
}

/* Region Info Cards */
.region-info-card {
    background: white;
    padding: 1.5rem;
    border-radius: 1rem;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    border-left: 4px solid #00d9a3;
}

.region-info-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
}

/* Form Inputs */
.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e5e7eb;
    border-radius: 0.5rem;
    font-size: 1rem;
    transition: all 0.3s ease;
    font-family: 'Poppins', sans-serif;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #00d9a3;
    box-shadow: 0 0 0 3px rgba(0, 217, 163, 0.1);
}

/* Mobile Menu */
.mobile-menu {
    animation: slideDown 0.3s ease-out;
}

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

@media (max-width: 1024px) {
    .mobile-menu.active {
        display: block;
    }
}

/* Hamburger Menu Animation */
.hamburger-line {
    transition: all 0.3s ease;
}

/* Responsive Typography */
@media (max-width: 768px) {
    h1 {
        font-size: 2rem !important;
    }
    
    h2 {
        font-size: 1.75rem !important;
    }
    
    .btn-primary-large,
    .btn-secondary-large {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
}

/* Smooth Transitions */
a, button, .service-card, .value-card {
    -webkit-tap-highlight-color: transparent;
}

/* Loading State */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Scroll to Top Button (optional) */
.scroll-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 3rem;
    height: 3rem;
    background: linear-gradient(135deg, #00d9a3, #00b386);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    opacity: 0;
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.scroll-to-top.visible {
    opacity: 1;
}

.scroll-to-top:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 217, 163, 0.4);
}

/* Selection Color */
::selection {
    background-color: #00d9a3;
    color: white;
}

::-moz-selection {
    background-color: #00d9a3;
    color: white;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #00d9a3, #00b386);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: #00b386;
}

/* Image Placeholder */
.image-placeholder {
    background: linear-gradient(135deg, #f3f4f6, #e5e7eb);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9ca3af;
    font-weight: 600;
}

/* Badge */
.badge {
    display: inline-block;
    padding: 0.375rem 0.75rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.badge-accent {
    background: linear-gradient(135deg, #00d9a3, #00b386);
    color: white;
}

.badge-primary {
    background: #1a2332;
    color: white;
}

/* Gradient Text */
.gradient-text {
    background: linear-gradient(135deg, #00d9a3, #00b386);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Grid Auto Fit */
.grid-auto-fit {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

/* Backdrop Blur Support */
@supports (backdrop-filter: blur(10px)) {
    .backdrop-blur {
        backdrop-filter: blur(10px);
    }
}

/* Service Modal Styles */
.service-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.service-modal.hidden {
    display: none;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(26, 35, 50, 0.8);
    backdrop-filter: blur(8px);
    animation: fadeIn 0.3s ease;
}

.modal-container {
    position: relative;
    background: white;
    border-radius: 1.5rem;
    max-width: 900px;
    width: 100%;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    animation: slideUp 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 10;
    display: flex;
    flex-direction: column;
}

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

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    z-index: 20;
    background: white;
    border-radius: 50%;
    width: 2.5rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #1a2332;
    transition: all 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
}

.modal-close:hover {
    background: #1a2332;
    color: white;
    transform: rotate(90deg);
}

.modal-content {
    overflow-y: auto;
    flex: 1;
    scrollbar-width: thin;
    scrollbar-color: #00d9a3 #f1f1f1;
}

.modal-content::-webkit-scrollbar {
    width: 8px;
}

.modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb {
    background: #00d9a3;
    border-radius: 4px;
}

.modal-content::-webkit-scrollbar-thumb:hover {
    background: #00b386;
}

/* Modal Content Styles */
.modal-header {
    margin-bottom: 2rem;
    padding: 0 3rem;
}

.modal-header .modal-image-banner {
    margin: 0 -3rem;
    padding: 0;
    width: calc(100% + 6rem);
    margin-bottom: 2rem;
}

.modal-image-banner {
    width: 100%;
    height: 420px;
    overflow: hidden;
    position: relative;
    flex-shrink: 0;
    background: linear-gradient(135deg, #1a2332 0%, #2d3748 100%);
}

.modal-image-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    display: block;
}

.modal-image-banner::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 50%, transparent 100%);
    pointer-events: none;
}

.modal-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.modal-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: #1a2332;
    margin-bottom: 0.5rem;
}

.modal-subtitle {
    font-size: 1.125rem;
    color: #6b7280;
}

.modal-badge {
    display: inline-block;
    background: linear-gradient(135deg, #00d9a3, #00b386);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.modal-section {
    margin-bottom: 2.5rem;
    padding: 0 3rem;
}

.modal-section h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 1rem;
}

.modal-section p {
    color: #4b5563;
    line-height: 1.75;
    margin-bottom: 1rem;
}

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

.feature-card {
    background: linear-gradient(135deg, #f9fafb, #ffffff);
    padding: 1.5rem;
    border-radius: 1rem;
    border: 2px solid #e5e7eb;
    transition: all 0.3s ease;
}

.feature-card:hover {
    border-color: #00d9a3;
    transform: translateY(-4px);
    box-shadow: 0 12px 24px rgba(0, 217, 163, 0.15);
}

.feature-card h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #1a2332;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.9375rem;
    color: #6b7280;
    margin: 0;
}

.advantage-list {
    list-style: none;
    padding: 0;
}

.advantage-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #4b5563;
    line-height: 1.6;
}

.advantage-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #00d9a3;
    font-weight: bold;
    font-size: 1.25rem;
}

.cta-banner {
    background: linear-gradient(135deg, #00d9a3, #00b386);
    padding: 2rem;
    border-radius: 1rem;
    text-align: center;
    margin: 2rem 3rem 3rem 3rem;
}

.cta-banner h3 {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

.cta-banner .btn {
    background: white;
    color: #00b386;
    padding: 0.875rem 2rem;
    border-radius: 0.75rem;
    font-weight: 700;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
}

.cta-banner .btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
}

/* Responsive Modal */
@media (max-width: 768px) {
    .modal-header {
        padding: 0 1.5rem;
    }
    
    .modal-header .modal-image-banner {
        width: calc(100% + 3rem);
        margin: 0 -1.5rem 1.5rem -1.5rem;
        height: 280px;
        border-radius: 1rem 1rem 0 0;
    }
    
    .modal-section {
        padding: 0 1.5rem;
    }
    
    .cta-banner {
        margin: 2rem 1.5rem 2rem 1.5rem;
    }
    
    .modal-image-banner::after {
        height: 60px;
    }
    
    .modal-title {
        font-size: 2rem;
    }
    
    .modal-icon {
        font-size: 3rem;
    }
    
    .feature-grid {
        grid-template-columns: 1fr;
    }
}

/* Print Styles */
@media print {
    .custom-cursor,
    .custom-cursor-follower,
    header,
    footer,
    .service-modal {
        display: none;
    }
}

/* Accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Focus Visible */
a:focus-visible,
button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid #00d9a3;
    outline-offset: 2px;
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    .custom-cursor,
    .custom-cursor-follower {
        display: none;
    }
}

/* High Contrast Mode */
@media (prefers-contrast: high) {
    .service-card,
    .value-card {
        border: 3px solid currentColor;
    }
}

/* Dark Mode (Optional - for future) */
@media (prefers-color-scheme: dark) {
    /* Dark mode styles can be added here if needed */
}

/* ==================================
   Hero Carousel System (Şehir Işıkları Style)
   ================================== */
.hero-section {
    height: 100vh;
    min-height: 100vh;
    max-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-section .container {
    width: 100%;
    padding-top: 100px;
    padding-bottom: 60px;
}

.hero-section .max-w-4xl {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

/* Hero Top Badge - Üst Etiket */
.hero-top-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    border: 2px solid rgba(0, 217, 163, 0.3);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2),
                0 0 30px rgba(0, 217, 163, 0.2);
    transition: all 0.3s ease;
}

.hero-top-badge:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(0, 217, 163, 0.5);
    transform: translateY(-2px);
}

/* Hero Main Title - Ana Başlık */
.hero-main-title {
    font-size: clamp(1.75rem, 4.5vw, 3.5rem);
    font-weight: 900;
    color: white;
    margin-bottom: 1rem;
    line-height: 1.15;
    letter-spacing: -0.02em;
    text-shadow: 
        0 2px 10px rgba(0, 0, 0, 0.8),
        0 4px 20px rgba(0, 0, 0, 0.6),
        0 8px 40px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 217, 163, 0.2);
    animation: fadeIn 0.8s ease-out 0.2s both;
}

/* Hero Subtitle - Alt Başlık */
.hero-subtitle {
    font-size: clamp(0.9rem, 1.8vw, 1.1rem);
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 1.5rem;
    max-width: 38rem;
    margin-left: auto;
    margin-right: auto;
    font-weight: 400;
    line-height: 1.7;
    text-shadow: 
        0 2px 8px rgba(0, 0, 0, 0.6),
        0 4px 16px rgba(0, 0, 0, 0.4);
    animation: fadeIn 0.8s ease-out 0.4s both;
}

/* Hero Phone CTA - Telefon Numarası */
.hero-phone-cta {
    margin-bottom: 1.75rem;
    pointer-events: none; /* Arrow'ları engelleme */
}

.hero-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.25), rgba(0, 179, 134, 0.25));
    backdrop-filter: blur(12px);
    padding: 0.75rem 1.5rem;
    pointer-events: auto; /* Link tıklanabilir */
    border-radius: 0.875rem;
    border: 2px solid rgba(0, 217, 163, 0.4);
    color: white;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.3),
        0 0 40px rgba(0, 217, 163, 0.2);
    position: relative;
    overflow: hidden;
}

.hero-phone-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.2), rgba(0, 179, 134, 0.2));
    opacity: 0;
    transition: opacity 0.4s ease;
}

.hero-phone-link:hover {
    background: linear-gradient(135deg, rgba(0, 217, 163, 0.4), rgba(0, 179, 134, 0.4));
    border-color: rgba(0, 217, 163, 0.7);
    transform: translateY(-4px) scale(1.02);
    box-shadow: 
        0 8px 30px rgba(0, 0, 0, 0.4),
        0 0 60px rgba(0, 217, 163, 0.4);
}

.hero-phone-link:hover::before {
    opacity: 1;
}

.hero-phone-link:active {
    transform: translateY(-2px) scale(1);
}

.hero-phone-link svg {
    flex-shrink: 0;
    animation: phoneRing 2s ease-in-out infinite;
}

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

/* Hero Regions - Bölgeler */
.hero-regions {
    margin-top: 1rem;
    position: relative;
    z-index: 15;
    pointer-events: none; /* Arrow'ları engelleme */
}

.hero-regions * {
    pointer-events: auto; /* İçerik tıklanabilir */
}

.hero-regions-label {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-regions-label svg {
    color: #00d9a3;
    filter: drop-shadow(0 0 8px rgba(0, 217, 163, 0.6));
}

.hero-region-badge {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(8px);
    color: rgba(255, 255, 255, 0.95);
    border-radius: 0.625rem;
    font-size: 0.8125rem;
    font-weight: 500;
    border: 1px solid rgba(255, 255, 255, 0.15);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: default;
    text-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}

.hero-region-badge:hover {
    background: rgba(0, 217, 163, 0.2);
    border-color: rgba(0, 217, 163, 0.5);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 217, 163, 0.3);
}

/* Responsive - Mobil */
@media (max-width: 768px) {
    .hero-top-badge {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
    
    .hero-main-title {
        margin-bottom: 0.75rem;
    }
    
    .hero-subtitle {
        margin-bottom: 1.25rem;
    }
    
    .hero-phone-link {
        padding: 0.75rem 1.25rem;
        gap: 0.625rem;
    }
    
    .hero-phone-link svg {
        width: 1.25rem;
        height: 1.25rem;
    }
    
    .hero-phone-link .text-lg {
        font-size: 1rem;
    }
    
    .hero-regions-label {
        font-size: 0.75rem;
    }
    
    .hero-region-badge {
        padding: 0.4rem 0.8rem;
        font-size: 0.75rem;
        font-size: 0.8125rem;
    }
}

/* Hero Highlight Text - Özel Vurgulu Metin */
.hero-highlight-text {
    display: inline-block;
    position: relative;
    font-weight: 900;
    letter-spacing: -0.02em;
    background: linear-gradient(135deg, #00f5d4 0%, #00d9a3 50%, #4ade80 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: none;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.3));
    animation: gradientShift 6s ease-in-out infinite;
}

/* Hafif glow sadece arkada */
.hero-highlight-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 245, 212, 0.15) 0%, rgba(0, 217, 163, 0.15) 50%, rgba(74, 222, 128, 0.15) 100%);
    filter: blur(25px);
    z-index: -1;
    border-radius: 10px;
}

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

/* Mobil optimizasyon */
@media (max-width: 768px) {
    .hero-highlight-text {
        filter: drop-shadow(0 2px 6px rgba(0, 0, 0, 0.3));
    }
    
    .hero-highlight-text::before {
        filter: blur(20px);
        opacity: 0.8;
    }
}

.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: translateX(0) scale(1.01);
    filter: blur(0px);
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
    will-change: opacity, transform;
}

.hero-slide.active {
    opacity: 1;
    transform: translateX(0) scale(1);
    filter: blur(0px);
    pointer-events: auto;
}

.hero-slide.prev {
    transform: translateX(0) scale(0.99);
    filter: blur(0px);
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4, 0, 0.2, 1), transform 1.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.hero-slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    transform-origin: center center;
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}

/* Aktif slayt için smooth zoom animasyonu */
.hero-slide.active img {
    animation: smoothZoom 15s ease-in-out forwards;
}

@keyframes smoothZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.06);
    }
}

/* 3D Parallax Image Effect */
.hero-parallax-image {
    will-change: transform;
    transition: transform 0.8s ease-out;
    transform-style: preserve-3d;
}

.hero-slide-overlay {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(circle at 30% 70%, rgba(0, 217, 163, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 70% 30%, rgba(59, 130, 246, 0.1) 0%, transparent 30%),
        linear-gradient(
            135deg,
            rgba(26, 35, 50, 0.5) 0%,
            rgba(42, 63, 95, 0.6) 50%,
            rgba(26, 35, 50, 0.5) 100%
        );
    z-index: 1;
    animation: overlayBreath 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes overlayBreath {
    0%, 100% { opacity: 0.88; }
    50% { opacity: 0.92; }
}

/* Zoom Animation for Active Slide */
@keyframes heroSlideZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.08);
    }
}

/* Animated Glow Effects */
.hero-ambient-effects {
    opacity: 0.15;
}

.hero-glow {
    animation-duration: 8s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-in-out;
}

.hero-glow-1 {
    animation-name: glowFloat1;
}

.hero-glow-2 {
    animation-name: glowFloat2;
    animation-duration: 10s;
}

.hero-glow-3 {
    animation-name: glowFloat3;
    animation-duration: 12s;
    opacity: 0.5;
}

@keyframes glowFloat1 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    25% {
        transform: translate(20px, -30px) scale(1.1);
    }
    50% {
        transform: translate(-15px, -20px) scale(0.9);
    }
    75% {
        transform: translate(30px, 10px) scale(1.05);
    }
}

@keyframes glowFloat2 {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(-25px, 20px) scale(1.15);
    }
    66% {
        transform: translate(15px, -15px) scale(0.95);
    }
}

@keyframes glowFloat3 {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
    }
    50% {
        transform: translate(-50%, -50%) scale(1.2);
    }
}

/* Carousel Navigation Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 50;
    width: 60px;
    height: 60px;
    background: rgba(0, 217, 163, 0.2);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 217, 163, 0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    cursor: pointer;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    opacity: 0.7;
    pointer-events: auto;
}

.hero-arrow:hover {
    background: rgba(0, 217, 163, 0.4);
    transform: translateY(-50%) scale(1.1);
    opacity: 1;
    border-color: rgba(0, 217, 163, 0.6);
}

.hero-arrow-left {
    left: 30px;
}

.hero-arrow-right {
    right: 30px;
}

/* Carousel Indicators with Progress */
.hero-indicators {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    display: flex;
    gap: 12px;
    pointer-events: auto;
}

.hero-indicator {
    position: relative;
    width: 50px;
    height: 4px;
    border-radius: 2px;
    background: rgba(255, 255, 255, 0.25);
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    padding: 0;
    overflow: hidden;
}

.indicator-progress {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, rgba(0, 217, 163, 0.8), rgba(0, 217, 163, 1));
    transition: width 0.1s linear;
    border-radius: 2px;
}

.hero-indicator.active .indicator-progress {
    animation: progressFill 12s linear forwards;
}

@keyframes progressFill {
    from { width: 0%; }
    to { width: 100%; }
}

.hero-indicator:hover {
    background: rgba(255, 255, 255, 0.4);
    transform: scaleY(1.5);
}

.hero-indicator.active {
    background: rgba(0, 217, 163, 0.3);
}


/* Responsive Carousel */
@media (max-width: 768px) {
    .hero-section {
        height: 100vh;
        min-height: 100vh;
        max-height: 100vh;
    }

    .hero-section .container {
        padding-top: 100px;
        padding-bottom: 50px;
        pointer-events: none !important;
    }
    
    .hero-section .container > * {
        pointer-events: none !important; /* Tüm içerik arrow'ları engellemesin */
    }
    
    /* Sadece tıklanabilir elementler aktif */
    .hero-section .container a,
    .hero-section .container button:not(.hero-arrow) {
        pointer-events: auto !important;
    }

    .hero-arrow {
        width: 45px;
        height: 45px;
        opacity: 0.5;
        z-index: 50 !important;
        pointer-events: auto !important;
    }
    
    .hero-arrow-left {
        left: 15px;
    }
    
    .hero-arrow-right {
        right: 15px;
    }
    
    .hero-arrow svg {
        width: 20px;
        height: 20px;
    }
    
    .hero-indicators {
        bottom: 15px;
        gap: 8px;
        z-index: 50 !important;
        pointer-events: auto !important;
    }
    
    .hero-indicator {
        width: 35px;
        height: 3px;
    }
    
}

