/* Modern ve Dinamik Tasarım - Geliştirilmiş Renk Paleti */
:root {
    /* Ana Renkler */
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --primary-dark: #5b21b6;
    
    /* İkincil Renkler */
    --secondary: #ec4899;
    --secondary-light: #f472b6;
    --secondary-dark: #be185d;
    
    /* Nötr Renkler */
    --dark: #0f172a;
    --darker: #020617;
    --light: #f8fafc;
    --gray: #94a3b8;
    
    /* Gradient Tanımları */
    --gradient-primary: linear-gradient(135deg, var(--primary), var(--primary-light));
    --gradient-secondary: linear-gradient(135deg, var(--secondary), var(--secondary-light));
    --gradient-dark: linear-gradient(135deg, var(--darker), var(--dark));
    --gradient-accent: linear-gradient(135deg, var(--primary), var(--secondary));
    
    /* Glass Efektleri */
    --glass-bg: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    
    /* Gölge Efektleri */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.15);
    --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.2);
    --shadow-glow: 0 0 20px rgba(124, 58, 237, 0.4);
    --shadow-glow-strong: 0 0 30px rgba(124, 58, 237, 0.6);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Poppins', 'Segoe UI', sans-serif;
    line-height: 1.6;
    background-color: var(--darker);
    color: var(--light);
}

/* Temel tipografi için akışkan ölçek */
h1, h2, h3 {
    line-height: 1.2;
}

h1 { font-size: clamp(2rem, 4vw + 1rem, 4.5rem); }
h2 { font-size: clamp(1.5rem, 2.5vw + 0.8rem, 2.5rem); }
h3 { font-size: clamp(1.2rem, 1.8vw + 0.6rem, 2rem); }
p  { font-size: clamp(1rem, 1.2vw + 0.4rem, 1.1rem); }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

/* Modern Header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(12px);
    padding: 1.2rem 0;
    border-bottom: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-sm);
}

#header.scrolled {
    background: rgba(15, 23, 42, 0.98);
    box-shadow: var(--shadow-md);
    padding: 0.8rem 0;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

/* Hamburger Menü - Masaüstünde Gizli */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    cursor: pointer;
    padding: 5px;
    border-radius: 5px;
    transition: all 0.3s ease;
    z-index: 10000;
}

.hamburger span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--light);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 2px;
}

.hamburger:hover {
    background: rgba(124, 58, 237, 0.1);
}

.hamburger:hover span {
    background-color: var(--primary-light);
}

/* Hamburger Aktif Durumu (X Şekli) */
.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: scale(0);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}


.logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    text-decoration: none;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo:hover {
    transform: scale(1.05);
}

.logo-img {
    height: 45px;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.4));
}

.logo span {
    font-size: 1.8rem;
    font-weight: 700;
    background: linear-gradient(135deg, 
        #f0f9ff 0%,
        #e0f2fe 50%,
        #bae6fd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
    letter-spacing: 0.5px;
    position: relative;
}

.logo span::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, 
        transparent,
        rgba(124, 58, 237, 0.5),
        transparent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.logo:hover span::after {
    transform: scaleX(1);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    color: var(--light);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    padding: 0.8rem 1.5rem;
    border-radius: 12px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.nav-links a::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.nav-links a:hover::before {
    opacity: 0.15;
}

.nav-links a.active {
    color: var(--space-light);
    background: rgba(74, 144, 226, 0.15);
}

/* Hero Section - Modern Tasarım */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--darker);
    position: relative;
    overflow: hidden;
    padding: 2rem;
}

/* Page Hero Section - Alt sayfalar için */
.page-hero {
    padding: 80px 0 40px 0;
    background: var(--darker);
    text-align: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 200px;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(124, 58, 237, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.page-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    margin: 0 auto 0.8rem auto;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    width: 100%;
    max-width: 800px;
    display: block;
}

.page-hero p {
    font-size: 1rem;
    color: var(--light);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    text-align: center;
    width: 100%;
    display: block;
}

.hero::before {
    content: '';
    position: absolute;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, var(--primary) 0%, transparent 70%);
    opacity: 0.15;
    animation: rotate 30s linear infinite;
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: url('images/stars.png') repeat;
    opacity: 0.1;
    animation: move-twink-back 200s linear infinite;
}

.hero-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 3rem;
    position: relative;
    z-index: 2;
    background: rgba(15, 23, 42, 0.3);
    backdrop-filter: blur(10px);
    border-radius: 30px;
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    animation: fadeInUp 1s ease;
}

.hero-content h1 {
    font-size: 4.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 2rem;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: heroTitleAnimation 2.5s ease-out 0.5s both;
    text-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
    position: relative;
    overflow: hidden;
}

.hero-content h1::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    animation: shimmerEffect 3s ease-in-out 3s infinite;
    z-index: 1;
}

@keyframes heroTitleAnimation {
    0% {
        opacity: 0;
        transform: translateY(60px) scale(0.7) rotateX(90deg);
        filter: blur(15px);
    }
    30% {
        opacity: 0.5;
        transform: translateY(30px) scale(0.85) rotateX(45deg);
        filter: blur(8px);
    }
    70% {
        opacity: 0.8;
        transform: translateY(10px) scale(0.95) rotateX(10deg);
        filter: blur(3px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1) rotateX(0deg);
        filter: blur(0);
    }
}

@keyframes shimmerEffect {
    0% {
        left: -100%;
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    100% {
        left: 100%;
        opacity: 0;
    }
}

.hero-content p {
    font-size: 1.4rem;
    line-height: 1.6;
    color: var(--light);
    margin-bottom: 3rem;
    opacity: 0.9;
    animation: heroTextAnimation 1.5s ease-out 1s both;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
}

@keyframes heroTextAnimation {
    0% {
        opacity: 0;
        transform: translateX(-50px) translateY(20px);
        filter: blur(5px);
    }
    60% {
        opacity: 0.7;
        transform: translateX(10px) translateY(5px);
        filter: blur(2px);
    }
    100% {
        opacity: 0.9;
        transform: translateX(0) translateY(0);
        filter: blur(0);
    }
}

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    animation: heroButtonsAnimation 1.2s ease-out 1.5s both;
}

@keyframes heroButtonsAnimation {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(0.8);
        filter: blur(10px);
    }
    70% {
        opacity: 0.8;
        transform: translateY(-5px) scale(1.05);
        filter: blur(2px);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
        filter: blur(0);
    }
}

.cta-button {
    padding: 1.2rem 2.5rem;
    border-radius: 16px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.cta-button.primary {
    background: var(--gradient-primary);
    color: var(--light);
    box-shadow: var(--shadow-md);
}

.cta-button.secondary {
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary-light);
    box-shadow: 0 0 20px rgba(124, 58, 237, 0.2);
}

.cta-button::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cta-button:hover {
    transform: translateY(-5px) scale(1.05);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cta-button.primary:hover {
    box-shadow: var(--shadow-glow);
}

.cta-button.secondary:hover {
    background: rgba(124, 58, 237, 0.1);
    border-color: var(--primary);
    box-shadow: 0 0 30px rgba(124, 58, 237, 0.3);
}

.cta-button:hover::before {
    transform: translateX(100%);
}

/* Modern Cards */
.features {
    padding: 6rem 0;
    background: var(--space-dark);
    position: relative;
}

.features::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/stars.png') repeat;
    opacity: 0.05;
    animation: move-twink-back 200s linear infinite;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.feature-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 2.5rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.5s ease;
    z-index: -1;
}

.feature-card:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

.feature-card:hover::before {
    opacity: 0.1;
}

.feature-icon {
    font-size: 3rem;
    color: var(--space-light);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(74, 144, 226, 0.3));
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-light);
}

.feature-card p {
    color: var(--text-gray);
    font-size: 1rem;
    line-height: 1.7;
}

/* Footer */
footer {
    background: var(--space-dark);
    padding: 4rem 0 2rem;
    position: relative;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-bottom: 2rem;
}

.footer-info {
    max-width: 350px;
}

.footer-logo {
    height: 45px;
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 8px rgba(74, 144, 226, 0.3));
}

.footer-links h4,
.footer-contact h4,
.social-links h4 {
    color: var(--space-light);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a {
    color: var(--text-light);
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 1.1rem;
    display: inline-block;
}

.footer-links ul li a:hover {
    color: var(--space-light);
    transform: translateX(5px);
}

.footer-contact p {
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--text-gray);
}

.social-icons {
    display: flex;
    gap: 1.5rem;
}

.social-icons a {
    color: var(--text-light);
    font-size: 1.5rem;
    transition: all 0.3s ease;
    text-decoration: none;
}

.social-icons a:hover {
    color: var(--space-light);
    transform: translateY(-3px);
    text-decoration: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    margin-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-gray);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes move-twink-back {
    from {
        background-position: 0 0;
    }
    to {
        background-position: -10000px 5000px;
    }
}

/* Modern Animations */
@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.05);
    }
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    #header {
        padding: 0.8rem 0;
    }

    .page-hero {
        padding: 70px 0 30px 0;
        min-height: 150px;
    }

    .page-hero h1 {
        font-size: 1.8rem;
        max-width: 100%;
        padding: 0 1rem;
    }

    .page-hero p {
        font-size: 0.9rem;
        padding: 0 1rem;
        max-width: 100%;
    }

    /* Mobilde hamburger'i göster */
    .hamburger {
        display: flex;
    }

    /* Mobilde nav-links'i gizle */
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        height: auto;
        max-height: 400px;
        background: rgba(15, 23, 42, 0.98);
        backdrop-filter: blur(20px);
        padding: 2rem 1rem;
        display: flex;
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 1.5rem;
        transform: translateX(-100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 9998;
        overflow-y: auto;
    }

    .nav-links.active {
        transform: translateX(0);
    }

    .nav-links li {
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        display: block;
        width: 100%;
        padding: 1.5rem;
        font-size: 1.2rem;
        border-radius: 10px;
        transition: all 0.3s ease;
    }

    .nav-links a:hover {
        background: rgba(124, 58, 237, 0.2);
        transform: scale(1.05);
    }


/* Diğer stilleriniz... */
.hero-content {
    padding: 2rem;
}

.hero-content h1 {
    font-size: 2.5rem;
}

.hero-content p {
    font-size: 1.1rem;
}

.hero-buttons {
    flex-direction: column;
    gap: 1rem;
}

.cta-button {
    width: 100%;
    text-align: center;
}

.footer-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 2rem;
}

.footer-info {
    margin: 0 auto;
}

.social-icons {
    justify-content: center;
}

.hero h1 {
    font-size: 3rem;
}

.feature-card,
.service-card,
.pricing-card,
.contact-form {
    padding: 1.5rem;
    }
}

/* Tablet kırılımı */
@media (max-width: 1024px) {
    .container {
        padding: 0 16px;
    }

    .nav-links {
        gap: 1.5rem;
    }

    .features-grid,
    .services-grid,
    .pricing-grid,
    .stats-grid {
        gap: 2rem;
    }
}

/* Mobil kırılımı */
@media (max-width: 768px) {
    nav {
        padding: 0 12px;
    }

    .logo-img {
        height: 36px;
    }

    .logo span {
        font-size: 1.4rem;
    }

    .hero {
        padding: 1.5rem;
    }

    .hero-content {
        padding: 1.5rem;
        border-radius: 20px;
    }

    .features {
        padding: 4rem 0;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .footer-bottom {
        padding-top: 1.5rem;
        margin-top: 1.5rem;
    }
}

/* Küçük mobil kırılımı */
@media (max-width: 480px) {
    .nav-links a {
        padding: 0.6rem 1rem;
        font-size: 1rem;
    }

    .cta-button {
        padding: 1rem 1.2rem;
        border-radius: 12px;
        font-size: 1rem;
    }

    .service-card,
    .pricing-card,
    .contact-info,
    .contact-form,
    .feature-card,
    .stat-item {
        border-radius: 18px;
        padding: 1.25rem;
    }
}

/* Hizmetler Sayfası Stilleri */
.services {
    padding: 8rem 0 6rem;
    background: var(--space-dark);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/stars.png') repeat;
    opacity: 0.05;
    animation: move-twink-back 200s linear infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
    padding: 0 2rem;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: relative;
    display: flex;
    flex-direction: column;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
        rgba(74, 144, 226, 0.1),
        rgba(74, 144, 226, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

.service-card:hover::before {
    opacity: 1;
}

.service-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.service-card:hover .service-image {
    transform: scale(1.1);
}

.service-content {
    padding: 2.5rem;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02));
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-light);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--space-light), transparent);
    border-radius: 2px;
}

.service-content p {
    color: var(--text-gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
    flex-grow: 1;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    justify-content: center;
}

.service-feature {
    background: rgba(74, 144, 226, 0.1);
    border: 1px solid rgba(74, 144, 226, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    color: var(--text-light);
    transition: all 0.3s ease;
    font-weight: 500;
    backdrop-filter: blur(5px);
}

.service-feature:hover {
    transform: translateY(-3px);
    background: rgba(74, 144, 226, 0.2);
    border-color: rgba(74, 144, 226, 0.4);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.2);
}

.service-cta {
    display: inline-block;
    padding: 1.2rem 2rem;
    background: linear-gradient(45deg, 
        var(--space-blue),
        var(--space-light));
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    text-align: center;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.service-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}

.service-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(255, 255, 255, 0.2),
        rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.service-cta:hover::after {
    transform: translateX(100%);
}

/* Fiyat Bilgisi Sayfası Stilleri */
.pricing {
    padding: 8rem 0 6rem;
    background: var(--space-dark);
    position: relative;
}

.pricing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/stars.png') repeat;
    opacity: 0.05;
    animation: move-twink-back 200s linear infinite;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.pricing-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 3rem;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    box-shadow: var(--glass-shadow);
}

.pricing-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

.pricing-card.popular::before {
    content: 'En Popüler';
    position: absolute;
    top: 1.5rem;
    right: -3rem;
    background: var(--gradient-accent);
    color: white;
    padding: 0.8rem 4rem;
    transform: rotate(45deg);
    font-weight: 600;
    letter-spacing: 1px;
}

.pricing-header {
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.pricing-price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--space-light);
    margin-bottom: 0.5rem;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text-gray);
}

.pricing-features {
    margin: 2rem 0;
}

.pricing-features ul {
    list-style: none;
    padding: 0;
}

.pricing-features li {
    transition: all 0.3s ease;
    position: relative;
    padding-left: 2rem;
}

.pricing-features li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--space-light);
    transition: all 0.3s ease;
}

.pricing-features li:hover {
    transform: translateX(5px);
    color: var(--text-light);
}

.pricing-features li:hover::before {
    transform: translateX(5px);
}

.pricing-cta {
    display: inline-block;
    padding: 1rem 2rem;
    background: linear-gradient(45deg, 
        var(--space-blue),
        var(--space-light));
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(74, 144, 226, 0.3);
}

.pricing-cta::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg,
        rgba(255, 255, 255, 0.1),
        rgba(255, 255, 255, 0));
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.pricing-cta:hover::after {
    transform: translateX(100%);
}

/* İletişim Sayfası Stilleri */
.contact {
    padding: 8rem 0 6rem;
    background: var(--space-dark);
    position: relative;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('images/stars.png') repeat;
    opacity: 0.05;
    animation: move-twink-back 200s linear infinite;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    background: linear-gradient(135deg, 
        rgba(255, 255, 255, 0.05),
        rgba(74, 144, 226, 0.05));
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 2.5rem;
    border: 1px solid rgba(74, 144, 226, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    animation: glow 3s infinite;
}

.contact-info:hover {
    transform: translateY(-10px) scale(1.02);
    background: linear-gradient(135deg,
        rgba(255, 255, 255, 0.1),
        rgba(74, 144, 226, 0.1));
    border-color: rgba(74, 144, 226, 0.3);
    box-shadow: 0 15px 40px rgba(74, 144, 226, 0.2);
}

.contact-info h3 {
    font-size: 1.8rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.contact-details {
    margin-bottom: 2rem;
}

.contact-item {
    transition: all 0.3s ease;
    padding: 1rem;
    border-radius: 10px;
}

.contact-item:hover {
    background: linear-gradient(135deg,
        rgba(74, 144, 226, 0.1),
        rgba(74, 144, 226, 0.2));
    transform: translateX(5px);
}

.contact-item i {
    transition: all 0.3s ease;
}

.contact-item:hover i {
    transform: scale(1.2);
    color: var(--space-light);
}

.social-links {
    margin-top: 2rem;
}

.social-links h4 {
    color: var(--text-light);
    margin-bottom: 1rem;
}

.social-icons {
    display: flex;
    gap: 1rem;
}

.social-icons a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg,
        rgba(74, 144, 226, 0.1),
        rgba(74, 144, 226, 0.2));
    border-radius: 50%;
    border: 1px solid rgba(74, 144, 226, 0.2);
    color: var(--text-light);
    transition: all 0.3s ease;
}

.social-icons a:hover {
    background: linear-gradient(45deg,
        var(--space-blue),
        var(--space-light));
    transform: translateY(-3px) rotate(360deg);
    box-shadow: 0 5px 15px rgba(74, 144, 226, 0.3);
}

.contact-form {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    padding: 3rem;
    border: 1px solid var(--glass-border);
    animation: glow 3s infinite;
    box-shadow: var(--glass-shadow);
}

.form-group {
    margin-bottom: 1.8rem;
    position: relative;
}

.form-group.float .float-label {
    position: absolute;
    top: 50%;
    left: 14px;
    transform: translateY(-50%);
    color: var(--gray);
    background: transparent;
    padding: 0 6px;
    pointer-events: none;
    transition: all 0.2s ease;
}

.form-control {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    color: var(--text-light);
    transition: all 0.3s ease;
}

.form-control:focus {
    border-color: var(--primary-light);
    box-shadow: 0 0 0 3px rgba(124, 58, 237, 0.2);
}

/* Floating label aktif durumları */
.form-group.float .form-control:focus + .float-label,
.form-group.float .form-control:not(:placeholder-shown) + .float-label,
.form-group.float select.form-control:valid + .float-label {
    top: -8px;
    transform: none;
    font-size: 0.8rem;
    color: var(--primary-light);
    background: var(--darker);
    padding: 0 6px;
    margin-left: 6px;
}

/* Select elemanı için küçük ok ve placeholder davranışı */
.form-group.float select.form-control {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    color-scheme: dark;
    background-color: rgba(255, 255, 255, 0.05);
    color: var(--text-light);
    background-image: linear-gradient(45deg, transparent 50%, var(--gray) 50%),
      linear-gradient(135deg, var(--gray) 50%, transparent 50%);
    background-position: calc(100% - 20px) calc(50% - 3px), calc(100% - 15px) calc(50% - 3px);
    background-size: 5px 5px, 5px 5px;
    background-repeat: no-repeat;
}

.form-group.float select.form-control:focus {
    background-image: linear-gradient(45deg, transparent 50%, var(--primary-light) 50%),
      linear-gradient(135deg, var(--primary-light) 50%, transparent 50%);
    outline: none;
}

/* Select açılır menü (options) koyu tema */
.form-group.float select.form-control option,
.form-group.float select.form-control optgroup {
    background-color: var(--dark);
    color: var(--light);
}

textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.submit-btn {
    background: var(--gradient-primary);
    border-radius: 16px;
    padding: 1.2rem 2.5rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: var(--shadow-md);
}

.submit-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .service-card,
    .pricing-card,
    .contact-info,
    .contact-form {
        padding: 1.5rem;
    }

    .pricing-price {
        font-size: 2.5rem;
    }

    .service-card {
        margin: 0 1rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .service-feature {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .service-image {
        height: 220px;
    }
}

/* İletişim formu için ek responsive düzenlemeler */
@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .form-card h3 {
        font-size: 1.4rem;
        margin-bottom: 1rem;
        text-align: center;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group.float .float-label {
        left: 12px;
    }

    .form-control {
        padding: 1rem;
        border-radius: 12px;
    }

    .submit-button,
    .submit-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .form-control {
        padding: 0.9rem;
        font-size: 0.95rem;
    }

    .form-group.float .form-control:focus + .float-label,
    .form-group.float .form-control:not(:placeholder-shown) + .float-label,
    .form-group.float select.form-control:valid + .float-label {
        top: -6px;
        font-size: 0.75rem;
    }
}

/* Genel Animasyonlar ve Efektler */
@keyframes glow {
    0% {
        box-shadow: 0 0 5px rgba(96, 165, 250, 0.5);
    }
    50% {
        box-shadow: 0 0 20px rgba(96, 165, 250, 0.8);
    }
    100% {
        box-shadow: 0 0 5px rgba(96, 165, 250, 0.5);
    }
}

/* Modern Stats Section */
.stats {
    padding: 6rem 0;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.stats::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.stat-item {
    text-align: center;
    padding: 2.5rem;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 24px;
    border: 1px solid var(--glass-border);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.stat-item::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.stat-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

.stat-item:hover::before {
    opacity: 0.1;
}

.stat-number {
    font-size: 3.5rem;
    font-weight: 800;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 1rem;
    line-height: 1;
    position: relative;
    display: inline-block;
}

.stat-number::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, 
        transparent,
        var(--primary-light),
        transparent);
    border-radius: 2px;
}

.stat-label {
    font-size: 1.2rem;
    color: var(--light);
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.9;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    color: var(--primary-light);
    transform: scale(1.05);
}

/* Responsive Stats */
@media (max-width: 768px) {
    .stats {
        padding: 4rem 0;
    }

    .stats-grid {
        gap: 2rem;
    }

    .stat-item {
        padding: 2rem;
    }

    .stat-number {
        font-size: 2.5rem;
    }

    .stat-label {
        font-size: 1.1rem;
    }
}

/* Modern Hizmetler Sayfası Stilleri */
.services-page {
    padding: 8rem 0 6rem;
    background: var(--darker);
    position: relative;
    overflow: hidden;
}

.services-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at center, var(--primary) 0%, transparent 70%);
    opacity: 0.1;
    animation: pulse 4s ease-in-out infinite;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 30px;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid var(--glass-border);
    box-shadow: var(--glass-shadow);
    position: relative;
    cursor: pointer;
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

.service-icon {
    padding: 2rem;
    text-align: center;
    background: linear-gradient(135deg, 
        rgba(124, 58, 237, 0.1),
        rgba(124, 58, 237, 0.05));
}

.service-icon i {
    font-size: 3.5rem;
    color: var(--primary-light);
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.3));
    transition: all 0.4s ease;
}

.service-card:hover .service-icon i {
    transform: scale(1.1) rotate(5deg);
    color: var(--primary);
}

.service-content {
    padding: 2.5rem;
    background: linear-gradient(180deg,
        rgba(255, 255, 255, 0.05),
        rgba(255, 255, 255, 0.02));
}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--light);
    font-weight: 700;
    position: relative;
    padding-bottom: 1rem;
    text-align: center;
}

.service-content h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: linear-gradient(to right, transparent, var(--primary-light), transparent);
    border-radius: 2px;
}

.service-content p {
    color: var(--gray);
    margin-bottom: 2rem;
    line-height: 1.8;
    font-size: 1.1rem;
    text-align: center;
}

.service-features {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.feature {
    background: rgba(124, 58, 237, 0.1);
    border: 1px solid rgba(124, 58, 237, 0.2);
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    font-size: 1rem;
    color: var(--light);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.feature i {
    font-size: 1.1rem;
    color: var(--primary-light);
}

.feature:hover {
    transform: translateY(-3px);
    background: rgba(124, 58, 237, 0.2);
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.2);
}

.service-details {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    z-index: 9997;
    display: none;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.service-details.active {
    display: block;
    opacity: 1;
}

.details-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    height: 100%;
    overflow-y: auto;
}

.details-content h2 {
    font-size: 2.5rem;
    color: var(--light);
    margin-bottom: 3rem;
    text-align: center;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.details-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.detail-item {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    border-radius: 20px;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--glass-border);
    transition: all 0.4s ease;
}

.detail-item:hover {
    transform: translateY(-10px);
    border-color: var(--primary-light);
    box-shadow: var(--shadow-glow);
}

.detail-item i {
    font-size: 2.5rem;
    color: var(--primary-light);
    margin-bottom: 1.5rem;
    filter: drop-shadow(0 0 10px rgba(124, 58, 237, 0.3));
}

.detail-item h4 {
    font-size: 1.3rem;
    color: var(--light);
    margin-bottom: 1rem;
}

.detail-item p {
    color: var(--gray);
    line-height: 1.6;
}

.details-cta {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: var(--gradient-primary);
    color: var(--light);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-right: 1rem;
}

.details-cta:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.close-details {
    display: inline-block;
    padding: 1.2rem 2.5rem;
    background: transparent;
    color: var(--light);
    border: 2px solid var(--primary-light);
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.close-details:hover {
    background: rgba(124, 58, 237, 0.1);
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.2);
}

/* Responsive Tasarım */
@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
        padding: 0 1rem;
    }

    .service-card {
        margin: 0 1rem;
    }

    .service-content {
        padding: 1.5rem;
    }

    .service-content h3 {
        font-size: 1.5rem;
    }

    .service-content p {
        font-size: 1rem;
    }

    .feature {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
    }

    .details-content {
        padding: 2rem 1rem;
    }

    .details-content h2 {
        font-size: 2rem;
    }

    .detail-item {
        padding: 1.5rem;
    }

    .details-cta,
    .close-details {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }
}

/* Şehirlerarası Nakliyat Kartı Özel Efektleri */
.service-card[data-service="intercity"] {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.1),
        rgba(124, 58, 237, 0.05));
}

.service-card[data-service="intercity"] .service-icon {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.15),
        rgba(124, 58, 237, 0.1));
}

.service-card[data-service="intercity"] .service-icon i {
    animation: truck-move 3s ease-in-out infinite;
}

.service-card[data-service="intercity"] .feature {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.15),
        rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.service-card[data-service="intercity"] .feature:hover {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.25),
        rgba(124, 58, 237, 0.2));
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.service-card[data-service="intercity"] .feature i {
    animation: icon-bounce 2s ease-in-out infinite;
}

/* Evden Eve Nakliyat Kartı Özel Efektleri */
.service-card[data-service="home"] {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.1),
        rgba(124, 58, 237, 0.05));
}

.service-card[data-service="home"] .service-icon {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.15),
        rgba(124, 58, 237, 0.1));
}

.service-card[data-service="home"] .service-icon i {
    animation: home-pulse 2s ease-in-out infinite;
}

.service-card[data-service="home"] .feature {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.15),
        rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.service-card[data-service="home"] .feature:hover {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.25),
        rgba(124, 58, 237, 0.2));
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.service-card[data-service="home"] .feature i {
    animation: icon-rotate 3s ease-in-out infinite;
}

/* Depolama Hizmeti Kartı Özel Efektleri */
.service-card[data-service="storage"] {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.1),
        rgba(124, 58, 237, 0.05));
}

.service-card[data-service="storage"] .service-icon {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.15),
        rgba(124, 58, 237, 0.1));
}

.service-card[data-service="storage"] .service-icon i {
    animation: warehouse-shake 4s ease-in-out infinite;
}

.service-card[data-service="storage"] .feature {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.15),
        rgba(124, 58, 237, 0.1));
    border: 1px solid rgba(124, 58, 237, 0.3);
}

.service-card[data-service="storage"] .feature:hover {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.25),
        rgba(124, 58, 237, 0.2));
    border-color: rgba(124, 58, 237, 0.5);
    box-shadow: 0 5px 15px rgba(124, 58, 237, 0.3);
}

.service-card[data-service="storage"] .feature i {
    animation: icon-shake 2s ease-in-out infinite;
}

/* Tüm Kartlar İçin Ortak Detay Öğeleri */
.service-card .detail-item {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.1),
        rgba(124, 58, 237, 0.05));
    border: 1px solid rgba(124, 58, 237, 0.2);
}

.service-card .detail-item:hover {
    background: linear-gradient(135deg,
        rgba(124, 58, 237, 0.15),
        rgba(124, 58, 237, 0.1));
    border-color: rgba(124, 58, 237, 0.4);
    box-shadow: 0 8px 25px rgba(124, 58, 237, 0.25);
}

.service-card .detail-item i {
    animation: icon-pulse 2s ease-in-out infinite;
}

/* Yeni Animasyonlar */
@keyframes truck-move {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(10px);
    }
}

@keyframes home-pulse {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

@keyframes warehouse-shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-5deg);
    }
    75% {
        transform: rotate(5deg);
    }
}

@keyframes icon-bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-5px);
    }
}

@keyframes icon-rotate {
    0%, 100% {
        transform: rotate(0deg);
    }
    50% {
        transform: rotate(180deg);
    }
}

@keyframes icon-shake {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
} 

/* WhatsApp Kayan Buton */
.whatsapp-float {
    position: fixed;
    right: 20px;
    bottom: 20px;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #25D366;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.35);
    text-decoration: none;
    z-index: 10001; /* header(9999)'ın üstünde */
    transition: transform 0.2s ease, box-shadow 0.3s ease, background 0.3s ease;
    animation: whatsappFloat 4s ease-in-out infinite;
}

.whatsapp-float i {
    font-size: 26px;
}

.whatsapp-float:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 14px 30px rgba(37, 211, 102, 0.45);
}

/* Scroll edildiğinde kısa wiggle efekti */
.whatsapp-float.wiggle {
    animation: whatsappWiggle 0.6s ease;
}

@keyframes whatsappFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes whatsappWiggle {
    0%   { transform: rotate(0deg) translateY(-2px); }
    25%  { transform: rotate(8deg) translateY(-2px); }
    50%  { transform: rotate(0deg) translateY(-2px); }
    75%  { transform: rotate(-8deg) translateY(-2px); }
    100% { transform: rotate(0deg) translateY(-2px); }
}