:root {
    /* Modern renk paleti */
    --primary: #6366F1;      /* Indigo */
    --primary-dark: #4F46E5;  /* Koyu Indigo */
    --primary-light: #A5B4FC; /* Açık Indigo */
    
    /* Nötr renkler */
    --text-dark: #111827;    /* Koyu gri */
    --text-medium: #374151;  /* Orta gri */
    --text-light: #6B7280;   /* Açık gri */
    
    /* Arka plan renkleri */
    --bg-light: #F9FAFB;     /* Açık arka plan */
    --bg-white: #FFFFFF;     /* Beyaz */
    
    /* Aksan renkleri */
    --success: #10B981;      /* Yeşil */
    --warning: #F59E0B;      /* Turuncu */
    --error: #EF4444;        /* Kırmızı */
    
    /* Slider renkleri - Yumuşak zıt tonlar */
    --slider-gradient-1: rgba(147, 51, 234, 0.85);    /* Soft Purple */
    --slider-gradient-2: rgba(79, 70, 229, 0.85);     /* Soft Indigo */
    --slider-gradient-3: rgba(236, 72, 153, 0.85);    /* Soft Pink */
    --slider-overlay: rgba(17, 24, 39, 0.15);          /* Soft Dark */
    
    /* Slide content renkleri */
    --content-bg-1: rgba(255, 255, 255, 0.08);
    --content-bg-2: rgba(255, 255, 255, 0.04);
    --content-border: rgba(255, 255, 255, 0.15);
    --content-shadow: rgba(0, 0, 0, 0.2);
    
    /* Header renkleri */
    --header-bg: rgba(255, 255, 255, 0.9);
    --header-bg-scroll: rgba(255, 255, 255, 0.95);
    --header-height: 80px;
    
    /* Font ailesi değişkenleri */
    --font-primary: 'Space Grotesk', sans-serif;    /* Logo ve başlıklar için */
    --font-secondary: 'Outfit', sans-serif;         /* Genel metin için */
    
    /* Slide 1 - Hotspot */
    --slide1-gradient-1: #4F46E5;  /* Indigo */
    --slide1-gradient-2: #7C3AED;  /* Purple */
    --slide1-content-1: rgba(79, 70, 229, 0.1);  /* Indigo transparent */
    --slide1-content-2: rgba(124, 58, 237, 0.15);  /* Purple transparent */
    
    /* Slide 2 - WiFi */
    --slide2-gradient-1: #0EA5E9;  /* Sky Blue */
    --slide2-gradient-2: #2DD4BF;  /* Teal */
    --slide2-content-1: rgba(14, 165, 233, 0.1);  /* Sky Blue transparent */
    --slide2-content-2: rgba(45, 212, 191, 0.15);  /* Teal transparent */
    
    /* Slide 3 - Security */
    --slide3-gradient-1: #EC4899;  /* Pink */
    --slide3-gradient-2: #F43F5E;  /* Rose */
    --slide3-content-1: rgba(236, 72, 153, 0.1);  /* Pink transparent */
    --slide3-content-2: rgba(244, 63, 94, 0.15);  /* Rose transparent */
    
    /* Slide 1 - Hotspot */
    --slide1-bg-1: rgba(250, 245, 255, 0.97);   /* Soft Purple */
    --slide1-bg-2: rgba(245, 240, 255, 0.97);   /* Softer Purple */
    --slide1-content-1: rgba(139, 92, 246, 0.95); /* Vibrant Purple */
    --slide1-content-2: rgba(124, 58, 237, 0.95); /* Deep Purple */
    
    /* Slide 2 - WiFi */
    --slide2-bg-1: rgba(245, 247, 255, 0.97);   /* Soft Blue */
    --slide2-bg-2: rgba(240, 245, 255, 0.97);   /* Softer Blue */
    --slide2-content-1: rgba(99, 102, 241, 0.95); /* Vibrant Blue */
    --slide2-content-2: rgba(79, 70, 229, 0.95);  /* Deep Blue */
    
    /* Slide 3 - Electric Indigo */
    --slide3-bg-1: rgba(243, 244, 255, 0.97);   /* Soft Indigo */
    --slide3-bg-2: rgba(238, 242, 255, 0.97);   /* Softer Indigo */
    --slide3-content-1: rgba(129, 140, 248, 0.95); /* Vibrant Indigo */
    --slide3-content-2: rgba(104, 117, 245, 0.95); /* Deep Indigo */
}

/* Reset ve genel stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-secondary);
    line-height: 1.6;
    color: var(--text-medium);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Header ve navigasyon */
header {
    position: fixed;
    width: 100%;
    height: 90px;
    background: var(--header-bg);
    backdrop-filter: blur(10px);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    top: 0;
    left: 0;
}

/* Main container */
main {
    width: 100%;
    padding-top: 90px;
    position: relative;
    overflow-x: hidden;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 5%;
    max-width: 1400px;
    margin: 0 auto;
    height: 100%;
}

/* Logo container */
.logo {
    height: 100px;
    display: flex;
    align-items: center;
    padding: 5px 0;
}

/* Logo image */
.logo-img {
    height: 90px;
    width: auto;
    object-fit: contain;
    transition: transform 0.3s ease;
}

/* Logo hover efekti */
.logo:hover .logo-img {
    transform: scale(1.05);
}

/* Responsive ayarlar */
@media (max-width: 1200px) {
    header {
        height: 80px;
    }
    .logo {
        height: 85px;
    }
    .logo-img {
        height: 75px;
    }
    .slider {
        height: calc(100vh - 80px);
    }
    main {
        padding-top: 80px;
    }
}

@media (max-width: 768px) {
    header {
        height: 70px;
    }
    .logo {
        height: 75px;
    }
    .logo-img {
        height: 65px;
    }
    .slider {
        height: calc(100vh - 70px);
    }
    main {
        padding-top: 70px;
    }
}

@media (max-width: 480px) {
    header {
        height: 60px;
    }
    .logo {
        height: 65px;
    }
    .logo-img {
        height: 55px;
    }
    .slider {
        height: calc(100vh - 60px);
    }
    main {
        padding-top: 60px;
    }
}

/* Logo SVG */
.logo-svg {
    height: 100%;
    width: auto;
    max-width: 200px;
}

/* Logo yazı stilleri */
.logo-letter {
    font-family: var(--font-primary);
    font-weight: 700;
    opacity: 0;
    transform: translateY(5px);
    animation: letterAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* Logo gradient ayarları */
#logoGradient stop:first-child {
    stop-color: var(--primary);
    stop-opacity: 1;
}

#logoGradient stop:last-child {
    stop-color: var(--primary-dark);
    stop-opacity: 0.95;
}

/* Logo animasyonları */
.logo-letter:nth-child(1) { animation-delay: 0.2s; }
.logo-letter:nth-child(2) { animation-delay: 0.3s; }
.logo-letter:nth-child(3) { animation-delay: 0.4s; }
.logo-letter:nth-child(4) { animation-delay: 0.5s; }

@keyframes letterAppear {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo hover efektleri */
.logo:hover .logo-letter {
    animation: letterGlow 2s ease-in-out infinite;
}

@keyframes letterGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    }
    50% {
        filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
    }
}

/* Responsive ayarlar */
@media (max-width: 768px) {
    .logo-svg {
        max-width: 160px;
    }
}

.logo-text-main {
    font-family: var(--font-primary);
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.5px;
    fill: url(#logoGradient);
}

/* WiFi sinyali animasyonları */
.wifi-signal {
    fill: none;
    stroke: url(#wifiGradient);
    stroke-width: 4;
    stroke-linecap: round;
    stroke-linejoin: round;
    opacity: 0.9;
    transform-origin: center;
    animation: wifiPulse 2s ease-in-out infinite;
}

.wifi-signal:nth-child(2) {
    animation-delay: 0.2s;
}

.wifi-signal:nth-child(3) {
    animation-delay: 0.4s;
}

.connection-point {
    fill: var(--primary);
    filter: drop-shadow(0 0 4px var(--primary-light));
    animation: connectionPulse 1.5s ease-in-out infinite;
}

@keyframes wifiPulse {
    0%, 100% {
        opacity: 0.4;
        transform: scale(0.95);
    }
    50% {
        opacity: 0.9;
        transform: scale(1);
    }
}

@keyframes connectionPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 4px var(--primary-light));
    }
    50% {
        transform: scale(1.3);
        filter: drop-shadow(0 0 8px var(--primary));
    }
}

/* Logo hover efekti */
.logo:hover .wifi-signal {
    animation-duration: 1.5s;
}

.logo:hover .connection-point {
    animation-duration: 1s;
}

/* Logo responsive */
@media (max-width: 768px) {
    .logo {
        width: 160px;
        height: 40px;
    }

    .logo-text-main {
        font-size: 40px;
    }

    .wifi-signal {
        stroke-width: 3;
    }
}

.nav-links {
    display: flex;
    gap: 4rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links li {
    position: relative;
    perspective: 1000px;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-medium);
    font-weight: 500;
    font-size: 1rem;
    padding: 0.6rem 1.2rem;
    border-radius: 12px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    background: transparent;
    letter-spacing: -0.01em;
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 12px;
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.08),
        rgba(99, 102, 241, 0.12)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.nav-links a:hover {
    color: var(--primary);
    transform: translateY(-1px);
}

.nav-links a:hover::before {
    opacity: 1;
}

/* Aktif link stili */
.nav-links a.active {
    color: var(--primary);
    background: linear-gradient(
        135deg,
        rgba(99, 102, 241, 0.12),
        rgba(99, 102, 241, 0.16)
    );
    font-weight: 600;
}

.nav-links a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 20px;
    height: 2px;
    background: var(--primary);
    transform: translateX(-50%) scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.nav-links a.active:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Link hover feedback */
.nav-links a:active {
    transform: translateY(0);
}

/* Link focus stili */
.nav-links a:focus {
    outline: none;
    box-shadow: 0 0 0 2px rgba(99, 102, 241, 0.3);
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .nav-links a {
        padding: 0.8rem 1.5rem;
        width: 100%;
        text-align: center;
    }
    
    .nav-links a::before {
        border-radius: 8px;
    }
}

/* Slider container */
.slider {
    position: relative;
    overflow: hidden;
    height: calc(100vh - 90px);
    min-height: 600px;
    max-height: 900px;
    touch-action: pan-y pinch-zoom;
    user-select: none;
}

/* Slides container */
.slides {
    display: flex;
    height: 100%;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    width: 300%;
    will-change: transform;
}

/* Her bir slide */
.slide {
    width: 33.333%;
    flex-shrink: 0;
    height: 100%;
    position: relative;
    overflow: hidden;
    cursor: grab;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    background-size: cover;
    background-position: center;
    transition: opacity 0.4s ease;
}

.slide.dragging {
    cursor: grabbing;
    filter: brightness(0.95);
}

/* Slide 1 - Hotspot */
.slide:nth-child(1) {
    background: linear-gradient(
        135deg,
        var(--slide1-bg-1),
        var(--slide1-bg-2)
    );
}

/* Slide 2 - WiFi */
.slide:nth-child(2) {
    background: linear-gradient(
        135deg,
        var(--slide2-bg-1),
        var(--slide2-bg-2)
    );
}

/* Slide 3 - Security */
.slide:nth-child(3) {
    background: linear-gradient(
        135deg,
        var(--slide3-bg-1),
        var(--slide3-bg-2)
    );
}

/* Slide içerik */
.slide-content {
    max-width: min(900px, 90%);
    width: 100%;
    margin: 0 auto;
    padding: clamp(1rem, 2vw, 1.5rem);
    background: linear-gradient(
        135deg,
        var(--slide1-content-1),
        var(--slide1-content-2)
    );
    border-radius: clamp(20px, 3vw, 30px);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(79, 70, 229, 0.2);
    box-shadow: 
        0 20px 50px var(--content-shadow),
        0 0 0 1px rgba(79, 70, 229, 0.2);
    text-align: center;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
    z-index: 2;
    margin-bottom: 1rem;
    position: relative;
    overflow: hidden;
}

/* Slide content üst border efekti */
.slide-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
}

/* Slide content köşe efekti */
.slide-content::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50px;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.1),
        transparent
    );
    opacity: 0.5;
    border-top-left-radius: clamp(20px, 3vw, 30px);
    border-top-right-radius: clamp(20px, 3vw, 30px);
}

/* Slide arka plan overlay */
.slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgb(255, 255, 255),
        rgb(255, 255, 255)
    );
    z-index: 1;
}

/* Slide başlık ve metin stilleri */
.slide-content h1 {
    color: white;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.slide-content p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    margin-bottom: 1rem;
}

/* Aktif slide için içerik animasyonu */
.slide.active .slide-content {
    animation: slideIn 0.5s forwards;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .slide-content {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .slide-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }

    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .slide-icon {
        margin-bottom: 0.8rem;
        font-size: 2.2rem;
    }
}

/* Slide icon */
.slide-icon {
    font-size: clamp(2.5rem, 4vw, 4rem);
    margin-bottom: 1rem;
    color: white;
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    animation: iconPulse 2s ease-in-out infinite;
}

/* Özellikler listesi */
.slide-features {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin: 2.5rem 0;
    flex-wrap: wrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.slide-features span {
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.08),
        rgba(255, 255, 255, 0.03)
    );
    padding: 0.9rem 1.6rem;
    border-radius: 100px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: -0.01em;
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.slide-features span::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.03)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slide-features span:hover {
    transform: translateY(-2px);
    background: linear-gradient(
        135deg,
        rgba(255, 255, 255, 0.12),
        rgba(255, 255, 255, 0.05)
    );
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
}

.slide-features span:hover::before {
    opacity: 1;
}

.slide-features i {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .slide-features {
        gap: 1rem;
        margin: 2rem 0;
    }

    .slide-features span {
        padding: 0.8rem 1.4rem;
        font-size: 0.9rem;
        width: calc(50% - 0.5rem);
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .slide-features {
        gap: 0.8rem;
    }

    .slide-features span {
        width: 100%;
        padding: 0.8rem 1.2rem;
        font-size: 0.85rem;
    }
}

/* CTA Button modern tasarım */
.cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: clamp(0.8rem, 2vw, 1.2rem) clamp(2rem, 3vw, 3rem);
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 600;
    color: white;
    background: linear-gradient(135deg, 
        var(--primary), 
        var(--primary-dark)
    );
    border: none;
    border-radius: 100px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(99, 102, 241, 0.3);
    font-family: var(--font-primary);
    letter-spacing: -0.01em;
    margin-top: 0;
    margin-bottom: 6rem;
    min-width: 200px;
    z-index: 2;
}

/* Hover efekti için gradient overlay */
.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0)
    );
    opacity: 0;
    transition: opacity 0.3s ease;
}

/* İkon stilleri */
.cta-button i {
    font-size: 1.2em;
    transition: transform 0.3s ease;
    margin-left: 0.2rem;
}

/* Hover efektleri */
.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(99, 102, 241, 0.4);
}

.cta-button:hover::before {
    opacity: 1;
}

.cta-button:hover i {
    transform: translateX(4px);
}

/* Active durumu */
.cta-button:active {
    transform: translateY(1px);
    box-shadow: 0 5px 15px rgba(99, 102, 241, 0.3);
}

/* Focus durumu */
.cta-button:focus {
    outline: none;
    box-shadow: 
        0 0 0 3px rgba(99, 102, 241, 0.3),
        0 8px 20px rgba(99, 102, 241, 0.3);
}

/* Loading durumu */
.cta-button.loading {
    pointer-events: none;
    opacity: 0.8;
}

.cta-button.loading i {
    animation: buttonLoading 1s infinite;
}

@keyframes buttonLoading {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(4px);
    }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .cta-button {
        padding: 0.9rem 2rem;
        font-size: 1rem;
        width: calc(100% - 2rem);
        max-width: 300px;
        margin-bottom: 5rem;
    }
}

@media (max-width: 480px) {
    .cta-button {
        padding: 0.8rem 1.8rem;
        font-size: 0.95rem;
        margin-bottom: 4rem;
    }
}

/* Dark mode desteği */
@media (prefers-color-scheme: dark) {
    .cta-button {
        background: linear-gradient(135deg, 
            var(--primary-dark),
            var(--primary)
        );
        box-shadow: 0 8px 20px rgba(99, 102, 241, 0.2);
    }
}

/* Hizmetler section */
.services {
    padding-top: 8rem;
    background: var(--bg-light);
}

.services h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.section-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    color: #666;
    font-size: 1.125rem;
    line-height: 1.7;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.service-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(99, 102, 241, 0.03),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.service-features {
    list-style: none;
    text-align: left;
    margin: 1.5rem 0;
}

.service-features li {
    margin-bottom: 0.8rem;
    color: #555;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.service-features i {
    color: var(--success);
    font-size: 0.9rem;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 1rem;
}

.service-link i {
    font-size: 0.9rem;
}

/* Özellikler section */
.features {
    padding: 5rem 1rem;
    background: linear-gradient(to bottom, var(--bg-light), #EEF2FF);
}

.features h2 {
    text-align: center;
    margin-bottom: 1rem;
    font-size: 2.5rem;
    color: #2c3e50;
}

.features-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.feature {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature:hover {
    transform: translateY(-10px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.feature-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.15);
    transform: rotate(-5deg);
}

.feature-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.feature-icon::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: inherit;
    border-radius: inherit;
    filter: blur(10px);
    opacity: 0.5;
    z-index: -1;
    transition: all 0.4s ease;
}

.feature-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

/* Feature kartı hover efektleri */
.feature:hover .feature-icon {
    transform: rotate(0deg) translateY(-5px);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.feature:hover .feature-icon::after {
    opacity: 0.7;
    transform: scale(1.1);
}

.feature:hover .feature-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
    animation: iconFloat 2s ease-in-out infinite;
}

.feature h3 {
    color: #2c3e50;
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature p {
    color: #666;
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.feature-list {
    list-style: none;
    text-align: left;
    margin-top: 1.5rem;
}

.feature-list li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: #555;
}

.feature-list i {
    color: var(--success);
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .features-container {
        grid-template-columns: 1fr;
        padding: 1rem;
    }

    .feature {
        padding: 2rem;
    }
}

/* Modern Footer */
footer {
    background: linear-gradient(
        135deg,
        var(--text-dark),
        rgba(17, 24, 39, 0.95)
    );
    color: white;
    padding: 1.5rem;
    font-size: 0.85rem;
    position: relative;
    overflow: hidden;
}

footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(
        to right,
        transparent,
        rgba(255, 255, 255, 0.1),
        transparent
    );
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1.5rem;
}

.footer-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    font-family: var(--font-primary);
    font-size: 1.1rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.9), 
        rgba(255, 255, 255, 0.7)
    );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.footer-tagline {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 500;
}

.footer-contact {
    text-align: right;
    font-size: 0.8rem;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.footer-contact a:hover {
    color: white;
}

.footer-contact i {
    font-size: 0.9rem;
}

.footer-bottom {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.75rem;
}

/* Responsive footer */
@media (max-width: 768px) {
    footer {
        padding: 1.2rem;
    }

    .footer-content {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }

    .footer-info {
        flex-direction: column;
        gap: 0.3rem;
    }

    .footer-contact {
        text-align: center;
    }

    .footer-bottom {
        margin-top: 0.8rem;
        padding-top: 0.8rem;
    }
}

/* Responsive tasarım */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .burger {
        display: block;
    }
    
    .hero-content h1 {
        font-size: 2rem;
    }
}

/* Burger menu */
.burger {
    display: none;
    cursor: pointer;
    padding: 0.5rem;
    margin: -0.5rem;
    transition: transform 0.3s ease;
}

.burger:hover {
    transform: scale(1.1);
}

.burger div {
    width: 25px;
    height: 2px;
    background: var(--text-dark);
    margin: 6px;
    transition: all 0.3s ease;
    border-radius: 2px;
}

/* Mobil menü */
@media screen and (max-width: 768px) {
    .nav-links {
        position: fixed;
        right: -100%;
        top: 80px;
        height: calc(100vh - 80px);
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(10px);
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
        gap: 2rem;
    }

    .nav-links.nav-active {
        right: 0;
    }

    .nav-links li {
        opacity: 0;
        transform: translateX(50px);
    }

    .nav-links.nav-active li {
        opacity: 1;
        transform: translateX(0);
        transition: all 0.5s ease;
    }

    .nav-links li:nth-child(1) { transition-delay: 0.2s; }
    .nav-links li:nth-child(2) { transition-delay: 0.3s; }
    .nav-links li:nth-child(3) { transition-delay: 0.4s; }

    .burger {
        display: block;
    }

    .toggle .line1 {
        transform: rotate(-45deg) translate(-6px, 6px);
    }

    .toggle .line2 {
        opacity: 0;
    }

    .toggle .line3 {
        transform: rotate(45deg) translate(-6px, -6px);
    }
}

/* Header scroll efekti */
@keyframes slideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-scroll {
    animation: slideDown 0.5s ease forwards;
}

@keyframes wifiPulse {
    0% { 
        opacity: 0.4;
        stroke-width: 2;
    }
    50% { 
        opacity: 1;
        stroke-width: 3;
    }
    100% { 
        opacity: 0.4;
        stroke-width: 2;
    }
}

@keyframes connectionPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.5); opacity: 0.5; }
    100% { transform: scale(1); opacity: 1; }
}

/* Detay sayfası stilleri */
.detail-hero {
    height: 400px;
    margin-top: calc(-1 * var(--header-height));
    background: linear-gradient(var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: calc(var(--header-height) + 30px);
}

.detail-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.detail-content h2 {
    color: var(--text-dark);
    margin: 2rem 0 1rem;
}

.detail-content ul {
    list-style: none;
}

.detail-content ul li {
    margin-bottom: 1rem;
    padding-left: 1.5rem;
    position: relative;
}

.detail-content ul li:before {
    content: "•";
    color: var(--primary);
    position: absolute;
    left: 0;
}

/* Header scroll animasyonu */
@keyframes headerSlideDown {
    from {
        transform: translateY(-100%);
        opacity: 0;
    }
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.header-visible {
    animation: headerSlideDown 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* Logo animasyonu */
@keyframes logoFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

.logo:hover .logo-svg {
    animation: logoFloat 2s ease-in-out infinite;
}

/* Header animasyonlu çizimler */
header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 0% 0%, var(--header-gradient-1) 0%, transparent 50%),
        radial-gradient(circle at 100% 100%, var(--header-gradient-2) 0%, transparent 50%);
    z-index: -1;
    animation: headerGlow 8s ease-in-out infinite alternate;
}

header::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(60deg, transparent 25%, var(--header-pattern) 25.5%, transparent 26%),
        linear-gradient(-60deg, transparent 25%, var(--header-pattern) 25.5%, transparent 26%);
    background-size: 60px 60px;
    z-index: -1;
    opacity: 0.5;
    animation: headerPattern 60s linear infinite;
}

/* Header animasyonları */
@keyframes headerGlow {
    0% {
        opacity: 0.4;
        transform: scale(1);
    }
    50% {
        opacity: 0.6;
        transform: scale(1.05);
    }
    100% {
        opacity: 0.4;
        transform: scale(1);
    }
}

@keyframes headerPattern {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 1000px 0;
    }
}

/* Logo hover animasyonu */
.logo:hover .logo-svg {
    animation: logoHover 1s ease-in-out;
}

@keyframes logoHover {
    0% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-5px) scale(1.05);
    }
    100% {
        transform: translateY(0) scale(1);
    }
}

/* Slider düzeltmeleri */
.slider {
    height: 100vh;
    position: relative;
    overflow: hidden;
}

.slides {
    height: 100%;
    width: 300%;
    display: flex;
    transition: transform 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.slide {
    width: 33.333%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: calc(var(--header-height) + 2rem) 2rem 6rem;
    background-size: cover;
    background-position: center;
    position: relative;
    flex-shrink: 0;
    transition: opacity 0.4s ease;
}

/* Slider kontrolleri düzeltmeleri */
.slider-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
    padding: 1rem;
}

/* Slider animasyonları düzeltmeleri */
.slide.active .slide-content {
    opacity: 0;
    transform: translateY(20px);
    animation: slideContentFadeIn 0.8s forwards 0.3s;
}

@keyframes slideContentFadeIn {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Diğer section'lar için */
section:not(.slider) {
    padding-top: 5rem;
    position: relative;
    z-index: 2;
}

/* Service icon stilleri */
.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    margin: 0 auto 2rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 10px 20px rgba(99, 102, 241, 0.15);
}

.service-icon::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 2px;
    background: linear-gradient(135deg, rgba(255,255,255,0.4), rgba(255,255,255,0.1));
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.service-icon i {
    font-size: 2.2rem;
    color: white;
    transition: all 0.3s ease;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}

.service-card:hover .service-icon {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 30px rgba(99, 102, 241, 0.2);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.service-card:hover .service-icon i {
    transform: scale(1.1);
    filter: drop-shadow(0 4px 6px rgba(0,0,0,0.2));
}

/* Service card stillerini güncelle */
.service-card {
    background: var(--bg-white);
    border: 1px solid rgba(0, 0, 0, 0.08);
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        45deg,
        transparent,
        rgba(99, 102, 241, 0.03),
        transparent
    );
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.1);
    border-color: rgba(99, 102, 241, 0.2);
}

.service-card:hover::before {
    transform: translateX(100%);
}

.service-card h3 {
    color: var(--text-dark);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.service-card p {
    color: var(--text-medium);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

@keyframes iconFloat {
    0%, 100% {
        transform: translateY(0) scale(1.1);
    }
    50% {
        transform: translateY(-5px) scale(1.1);
    }
}

/* Aktif slide için içerik animasyonları */
.slide.active .slide-content h1,
.slide.active .slide-content p,
.slide.active .slide-features,
.slide.active .cta-button {
    opacity: 1;
    transform: translateY(0);
}

/* Animasyonlar */
@keyframes iconPulse {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.3));
    }
    50% {
        transform: scale(1.1);
        filter: drop-shadow(0 0 30px rgba(255, 255, 255, 0.5));
    }
}

/* Responsive düzenlemeler */
@media (max-width: 768px) {
    .slide-content {
        padding: 0.8rem;
        margin-bottom: 0.8rem;
    }

    .slide-content h1 {
        font-size: 1.8rem;
        margin-bottom: 0.4rem;
    }

    .slide-content p {
        font-size: 0.9rem;
        margin-bottom: 0.8rem;
    }

    .slide-features span {
        padding: 0.8rem 1.5rem;
        font-size: 0.95rem;
    }

    .cta-button {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
} 

/* Logo animasyonları */
.logo-shape {
    transform-origin: center;
    animation: shapePulse 3s ease-in-out infinite;
}

.logo-lines {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    animation: linesDraw 2s forwards;
}

.logo-dot {
    opacity: 0;
    transform-origin: center;
    animation: dotAppear 0.5s forwards 1.5s;
}

@keyframes shapePulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.02);
        filter: brightness(1.1);
    }
}

@keyframes linesDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes dotAppear {
    from {
        opacity: 0;
        transform: scale(0);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Logo hover efektleri */
.logo:hover .logo-shape {
    animation: shapeGlow 2s ease-in-out infinite;
}

.logo:hover .logo-lines {
    animation: linesGlow 2s ease-in-out infinite;
}

.logo:hover .logo-dot {
    animation: dotPulse 2s ease-in-out infinite;
}

@keyframes shapeGlow {
    0%, 100% {
        filter: brightness(1) drop-shadow(0 0 5px rgba(99, 102, 241, 0.3));
    }
    50% {
        filter: brightness(1.1) drop-shadow(0 0 15px rgba(99, 102, 241, 0.5));
    }
}

@keyframes linesGlow {
    0%, 100% {
        opacity: 0.6;
        stroke-width: 3;
    }
    50% {
        opacity: 0.8;
        stroke-width: 4;
    }
}

@keyframes dotPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.2);
        filter: brightness(1.2);
    }
} 

/* Logo animasyonları */
.logo-circle {
    stroke-dasharray: 250;
    stroke-dashoffset: 250;
    animation: circleDraw 2s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

.network-points .point {
    opacity: 0;
    transform: scale(0);
    animation: pointAppear 0.5s forwards;
}

.point:nth-child(1) { animation-delay: 0.5s; }
.point:nth-child(2) { animation-delay: 0.7s; }
.point:nth-child(3) { animation-delay: 0.9s; }
.point:nth-child(4) { animation-delay: 1.1s; }
.point:nth-child(5) { animation-delay: 1.3s; }

.network-lines path {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    opacity: 0.6;
    animation: lineDraw 1.5s forwards;
    animation-delay: 1.5s;
}

@keyframes circleDraw {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pointAppear {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    60% {
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes lineDraw {
    to {
        stroke-dashoffset: 0;
        opacity: 0.8;
    }
}

/* Logo hover efektleri */
.logo:hover .network-points .point {
    animation: pointPulse 2s infinite;
}

.logo:hover .network-lines path {
    animation: lineGlow 2s infinite;
}

.logo:hover .logo-circle {
    animation: circleGlow 2s infinite;
}

@keyframes pointPulse {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.2);
        filter: brightness(1.3);
    }
}

@keyframes lineGlow {
    0%, 100% {
        opacity: 0.8;
        stroke-width: 2;
    }
    50% {
        opacity: 1;
        stroke-width: 3;
    }
}

@keyframes circleGlow {
    0%, 100% {
        filter: drop-shadow(0 0 5px rgba(99, 102, 241, 0.3));
    }
    50% {
        filter: drop-shadow(0 0 15px rgba(99, 102, 241, 0.5));
    }
} 

/* Logo animasyonları */
.wifi-signals .signal {
    stroke-dasharray: 100;
    stroke-dashoffset: 100;
    opacity: 0;
    animation: signalWave 1.5s forwards cubic-bezier(0.4, 0, 0.2, 1);
}

.signal-1 { animation-delay: 0.2s; }
.signal-2 { animation-delay: 0.4s; }
.signal-3 { animation-delay: 0.6s; }

.center-dot {
    opacity: 0;
    transform-origin: center;
    animation: dotPulse 1s forwards 0.8s;
}

@keyframes signalWave {
    0% {
        opacity: 0;
        stroke-dashoffset: 100;
    }
    50% {
        opacity: 1;
    }
    100% {
        opacity: 0.8;
        stroke-dashoffset: 0;
    }
}

@keyframes dotPulse {
    0% {
        opacity: 0;
        transform: scale(0);
    }
    50% {
        transform: scale(1.2);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* Logo hover efektleri */
.logo:hover .signal {
    animation: signalGlow 2s infinite;
}

.logo:hover .center-dot {
    animation: dotGlow 2s infinite;
}

@keyframes signalGlow {
    0%, 100% {
        opacity: 0.8;
        filter: drop-shadow(0 0 3px rgba(99, 102, 241, 0.3));
    }
    50% {
        opacity: 1;
        filter: drop-shadow(0 0 8px rgba(99, 102, 241, 0.5));
    }
}

@keyframes dotGlow {
    0%, 100% {
        transform: scale(1);
        filter: brightness(1);
    }
    50% {
        transform: scale(1.3);
        filter: brightness(1.2);
    }
} 

/* Logo yazı stilleri */
.logo-letter {
    font-family: var(--font-primary);
    font-weight: 700;
    opacity: 0;
    transform: translateY(5px);
    animation: letterAppear 0.6s cubic-bezier(0.4, 0, 0.2, 1) forwards;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
}

/* Logo animasyonları */
.logo-letter:nth-child(1) { animation-delay: 0.2s; }
.logo-letter:nth-child(2) { animation-delay: 0.3s; }
.logo-letter:nth-child(3) { animation-delay: 0.4s; }
.logo-letter:nth-child(4) { animation-delay: 0.5s; }

@keyframes letterAppear {
    0% {
        opacity: 0;
        transform: translateY(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Logo hover efektleri */
.logo:hover .logo-letter {
    animation: letterGlow 2s ease-in-out infinite;
}

@keyframes letterGlow {
    0%, 100% {
        filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
    }
    50% {
        filter: drop-shadow(0 4px 12px rgba(99, 102, 241, 0.3));
    }
} 

/* Pages klasöründeki sayfalar için logo yolu düzeltmesi */
.pages-header .logo-img {
    content: url('../images/logo.png');
}

/* Pages klasöründeki sayfalar için header link düzeltmeleri */
.pages-header .nav-links a {
    color: var(--text-medium);
}

/* Pages klasöründeki sayfalar için responsive düzeltmeler */
@media (max-width: 768px) {
    .pages-header .nav-links {
        top: 120px;
    }
} 

/* Slider kontrolleri */
.slider-controls {
    position: absolute;
    bottom: 3rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 1rem;
    z-index: 10;
    padding: 1rem;
}

.slider-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.slider-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.1);
}

.slider-dot.active {
    background: white;
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.4);
}

/* Slider navigasyon butonları */
.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
    z-index: 10;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.slider-button {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(5px);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: auto;
    transition: all 0.3s ease;
    transform: scale(0.9);
}

.slider-button:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1);
}

.slider-button i {
    color: white;
    font-size: 1.5rem;
}

/* Progress bar */
.slider-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.2);
    z-index: 10;
    overflow: hidden;
}

.progress-bar {
    height: 100%;
    background: linear-gradient(
        to right,
        var(--slide1-content-1),
        var(--slide1-content-2)
    );
    width: 0;
    transition: width 0.3s linear;
}

/* Responsive düzenlemeler */
@media (max-width: 1200px) {
    .slider {
        height: calc(100vh - 100px);
    }
}

@media (max-width: 768px) {
    .slider {
        height: calc(100vh - 90px);
        min-height: 500px;
    }

    .slide-content {
        padding: 2rem;
    }

    .slider-button {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 480px) {
    .slider {
        height: calc(100vh - 80px);
        min-height: 400px;
    }

    .slider-nav {
        padding: 0 1rem;
    }

    .slider-button {
        width: 35px;
        height: 35px;
    }
} 