/* Reset and Base Styles */
        /* Critical CSS for above-the-fold content */
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        /* Optimize for Core Web Vitals */
        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            line-height: 1.6;
            color: #333;
            background-color: #fff;
            overflow-x: hidden;
        }

        /* Optimize images */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        /* Optimize animations for performance */
        @media (prefers-reduced-motion: reduce) {
            *, *::before, *::after {
                animation-duration: 0.01ms !important;
                animation-iteration-count: 1 !important;
                transition-duration: 0.01ms !important;
            }
        }

        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            line-height: 1.6;
            color: #1a1a1a;
            background: #fafafa;
            text-rendering: optimizeLegibility;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        /* Custom Scrollbar */
        ::-webkit-scrollbar {
            width: 8px;
        }

        ::-webkit-scrollbar-track {
            background: #f1f1f1;
            border-radius: 10px;
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(135deg, #0a2681, #f5ff05);
            border-radius: 10px;
            transition: all 0.3s ease;
        }

        ::-webkit-scrollbar-thumb:hover {
            background: linear-gradient(135deg, #042071, #d9ff00);
        }

        /* Enhanced Animations */
        @keyframes fadeInUp {
            from {
                opacity: 0;
                transform: translateY(30px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes fadeInLeft {
            from {
                opacity: 0;
                transform: translateX(-30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes fadeInRight {
            from {
                opacity: 0;
                transform: translateX(30px);
            }
            to {
                opacity: 1;
                transform: translateX(0);
            }
        }

        @keyframes scaleIn {
            from {
                opacity: 0;
                transform: scale(0.8);
            }
            to {
                opacity: 1;
                transform: scale(1);
            }
        }

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

        /* Animation Classes */
        .animate-on-scroll {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-on-scroll.animated {
            opacity: 1;
            transform: translateY(0);
        }

        .animate-left {
            opacity: 0;
            transform: translateX(-50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-left.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-right {
            opacity: 0;
            transform: translateX(50px);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-right.animated {
            opacity: 1;
            transform: translateX(0);
        }

        .animate-scale {
            opacity: 0;
            transform: scale(0.8);
            transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .animate-scale.animated {
            opacity: 1;
            transform: scale(1);
        }

        /* Loading Animation */
        .loading {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: linear-gradient(135deg, #0f35ae, #d4ef00);
            display: flex;
            align-items: center;
            justify-content: center;
            z-index: 9999;
            transition: opacity 0.5s ease;
        }

        .loading.hidden {
            opacity: 0;
            pointer-events: none;
        }

        .loading-spinner {
            width: 50px;
            height: 50px;
            border: 3px solid rgba(255,255,255,0.3);
            border-top: 3px solid white;
            border-radius: 50%;
            animation: spin 1s linear infinite;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

/* Top Header */
    .top-header {
        background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
        padding: 12px 0;
        color: white;
        font-size: 13px;
        position: relative;
        z-index: 9999;
        animation: slideInFromTop 0.8s ease-out;
    }

    .top-header-container {
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 15px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

    .top-contact-info {
        display: flex;
        gap: 12px;
        align-items: center;
        flex-wrap: wrap;
    }

    .top-contact-item {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        white-space: nowrap;
    }

    .top-contact-item i {
        font-size: 12px;
        color: #fbbf24;
    }

    .top-contact-item a, 
    .top-contact-item span {
        color: white;
        font-size: 12px;
        font-weight: 500;
        text-decoration: none;
        transition: opacity 0.2s;
    }

    .top-contact-item a:hover {
        opacity: 0.8;
    }

    .top-social-links {
        display: flex;
        gap: 8px;
        align-items: center;
    }

    .top-social-link {
        color: white;
        font-size: 16px;
        width: 32px;
        height: 32px;
        border-radius: 50%;
        background: rgba(255,255,255,0.15);
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        text-decoration: none;
        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .top-social-link i {
        color: white;
        font-size: 16px;
        z-index: 2;
        position: relative;
    }

    .top-social-link::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        transition: left 0.6s ease;
    }

    .top-social-link:hover::before {
        left: 100%;
    }

    .top-social-link:hover {
        background: rgba(255,255,255,0.25);
        transform: scale(1.15) rotate(5deg);
        box-shadow: 0 4px 15px rgba(255,255,255,0.2);
    }

    .top-social-link.admin-link {
        background: linear-gradient(135deg, #dc2626, #ef4444);
    }

    .top-social-link.admin-link:hover {
        background: linear-gradient(135deg, #b91c1c, #dc2626);
        box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
    }

        .main-header {
            background: white;
            box-shadow: 0 4px 20px rgba(0,0,0,0.08);
            top: 0;
            z-index: 9998;
        }

        .header-content {
            max-width: 1400px;
            margin: 0 auto;
            padding: 20px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            text-align: center;
            flex: 1;
        }

        .logo h1 {
            font-size: 28px;
            font-weight: 800;
            background: linear-gradient(135deg, #142d7f, #d7e111);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 4px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .logo:hover h1 {
            transform: scale(1.05);
        }

        .logo p {
            font-size: 12px;
            color: #6b7280;
            font-weight: 500;
            letter-spacing: 1px;
        }

        .nav-left, .nav-right {
            flex: 1;
            display: flex;
            gap: 30px;
        }

        .nav-right {
            justify-content: flex-end;
        }

        .nav-item {
            color: #374151;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 10px 0;
            position: relative;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-item:hover {
            color: #1e40af;
            transform: translateY(-2px);
        }

        .nav-item::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: linear-gradient(135deg, #1e40af, #dc2626);
            transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .nav-item:hover::after {
            width: 100%;
        }


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

        /* Hero Slider Section */
        .hero-slider {
            position: relative;
            height: 100vh;
            overflow: hidden;
        }

        .slider-container {
            position: relative;
            height: 100%;
            width: 100%;
        }

        .slide {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            opacity: 0;
            transition: opacity 0.8s ease-in-out;
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* Background images are now set directly in HTML */

        .slide.active {
            opacity: 1;
        }

        .slide-content {
            position: relative;
            z-index: 2;
            text-align: center;
            color: white;
            max-width: 800px;
            padding: 0 20px;
        }

        .slide-content h1 {
            font-size: clamp(32px, 5vw, 56px);
            font-weight: 900;
            margin-bottom: 15px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
            animation: slideInDown 1s ease-out;
        }

        .slide-content h2 {
            font-size: clamp(18px, 3vw, 24px);
            font-weight: 600;
            margin-bottom: 15px;
            opacity: 0.9;
            animation: slideInUp 1s ease-out 0.2s both;
        }

        .slide-content p {
            font-size: clamp(14px, 2vw, 18px);
            margin-bottom: 30px;
            opacity: 0.8;
            animation: slideInUp 1s ease-out 0.4s both;
        }

        .hero-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            margin-bottom: 30px;
            animation: slideInUp 1s ease-out 0.6s both;
        }

        .btn {
            display: inline-block;
            padding: 15px 30px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.1rem;
            transition: all 0.3s ease;
            border: 2px solid transparent;
        }

        .btn-primary {
            background: #F7F716;
            color: black;
            box-shadow: 0 4px 15px rgba(220, 38, 38, 0.3);
        }

        .btn-primary:hover {
            background: #1c3bb9;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(220, 38, 38, 0.4);
        }

        .btn-secondary {
            background: transparent;
            color: white;
            border-color: white;
        }

        .btn-secondary:hover {
            background: white;
            color: #1e40af;
            transform: translateY(-2px);
        }

        .emergency-btn {
            display: inline-flex;
            align-items: center;
            gap: 12px;
            background: linear-gradient(135deg, #dc2626, #b91c1c);
            color: white;
            padding: 18px 36px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 18px;
            transition: all 0.3s ease;
            box-shadow: 0 10px 30px rgba(220, 38, 38, 0.3);
            animation: pulse 2s infinite;
        }

        .emergency-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 40px rgba(220, 38, 38, 0.4);
        }

        /* Slider Navigation */
        .slider-nav {
            position: absolute;
            bottom: 50px;
            left: 50%;
            transform: translateX(-50%);
            display: flex;
            align-items: center;
            gap: 30px;
            z-index: 10;
        }

        .prev-btn, .next-btn {
            background: rgba(255, 255, 255, 0.2);
            border: none;
            color: white;
            width: 50px;
            height: 50px;
            border-radius: 50%;
            cursor: pointer;
            transition: all 0.3s ease;
            backdrop-filter: blur(10px);
        }

        .prev-btn:hover, .next-btn:hover {
            background: rgba(255, 255, 255, 0.3);
            transform: scale(1.1);
        }

        .slider-dots {
            display: flex;
            gap: 10px;
        }

        .dot {
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.5);
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .dot.active {
            background: white;
            transform: scale(1.2);
        }

        /* Slide Animations */
        @keyframes slideInDown {
            from {
                opacity: 0;
                transform: translateY(-50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @keyframes slideInUp {
            from {
                opacity: 0;
                transform: translateY(50px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

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


        /* Detailed Services Section */
        .detailed-services {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .detailed-services-grid2 {
            display: grid;
            gap: 30px;
            margin-top: 60px;
        }

        .detailed-services-grid {
            display: grid;
            gap: 30px;
            margin-top: 60px;
        }

        .detailed-service-card {
            background: white;
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.08);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            border: 1px solid #f3f4f6;
        }

        .detailed-service-card:hover {
            transform: translateY(-10px);
            box-shadow: 0 20px 60px rgba(0,0,0,0.12);
        }

        .service-header {
            display: flex;
            align-items: center;
            gap: 15px;
            margin-bottom: 20px;
            padding-bottom: 15px;
            border-bottom: 2px solid #f3f4f6;
        }

        .service-header i {
            font-size: 32px;
            color: #1e40af;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }

        .service-header h3 {
            font-size: 20px;
            font-weight: 700;
            color: #1a1a1a;
            margin: 0;
        }

        .service-content p {
            color: #6b7280;
            line-height: 1.7;
            margin-bottom: 15px;
        }

        .service-content ul {
            list-style: none;
            padding: 0;
            margin-top: 15px;
        }

        .service-content li {
            color: #6b7280;
            padding: 8px 0;
            border-bottom: 1px solid #f3f4f6;
            position: relative;
            padding-left: 20px;
        }

        .service-content li:before {
            content: '✓';
            position: absolute;
            left: 0;
            color: #10b981;
            font-weight: bold;
        }

        .service-content li:last-child {
            border-bottom: none;
        }

        /* Services Section */
        .services {
            padding: 100px 0;
            background: white;
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
        }

        .section-header {
            text-align: center;
            margin-bottom: 80px;
        }

        .section-title {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .section-subtitle {
            font-size: 18px;
            color: #6b7280;
            max-width: 600px;
            margin: 0 auto;
        }


        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
            margin-bottom: 80px;
        }

        .service-card {
            background: white;
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            border: 1px solid #f3f4f6;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
            cursor: pointer;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 4px;
            background: linear-gradient(135deg, #1e40af, #dc2626);
            transform: translateX(-100%);
            transition: transform 0.4s ease;
        }

        .service-card:hover::before {
            transform: translateX(0);
        }

        .service-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 25px 80px rgba(0,0,0,0.15);
        }

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

        .service-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 28px;
            color: white;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .service-card h3 {
            font-size: 22px;
            font-weight: 700;
            color: #1a1a1a;
            margin-bottom: 16px;
        }

        .service-card p {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .service-image {
            width: 100%;
            height: 180px;
            border-radius: 16px;
            margin-bottom: 20px;
            overflow: hidden;
            position: relative;
        }

        .service-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

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

        /* Mobil için özel stiller */
        @media (max-width: 768px) {
            .services-grid {
                grid-template-columns: 1fr;
                gap: 25px;
            }
            
            .service-card {
                padding: 25px;
            }
            
            .service-card:hover {
                transform: translateY(-5px);
            }
            
            h1 {
                font-size: 2rem;
                margin: 30px 0;
            }
            
            .service-icon {
                width: 60px;
                height: 60px;
                font-size: 24px;
            }
        }

        @media (max-width: 480px) {
            .service-card {
                padding: 20px;
                border-radius: 20px;
            }
            
            .service-icon {
                width: 50px;
                height: 50px;
                font-size: 20px;
                border-radius: 15px;
            }
            
            .service-card h3 {
                font-size: 20px;
            }
            
            .service-image {
                height: 150px;
            }
        }

/* About Section - Görsel Optimizasyonu */
.about {
    padding: 60px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
}

.about-content {
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
}

.about-text h2 {
    font-size: 28px;
    font-weight: 800;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: center;
}

.about-text p {
    color: #6b7280;
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
    text-align: center;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
}

.feature-icon {
    min-width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    flex-shrink: 0;
}

.feature-content h3 {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.feature-content p {
    font-size: 14px;
    color: #6b7280;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 0;
}

/* Görsel için optimize stiller */
.about-image {
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    margin: 0 auto; /* Ortalamak için */
    order: -1; /* Mobilde resim üstte */
}

.about-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(30, 64, 175, 0.1), rgba(59, 130, 246, 0.1));
    border-radius: 16px;
    z-index: 1;
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

/* Tablet görünümü için */
@media (min-width: 576px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Masaüstü görünümü için */
@media (min-width: 992px) {
    .about {
        padding: 80px 0;
    }
    
    .about-content {
        grid-template-columns: 1fr 1fr;
        gap: 60px;
    }
    
    .about-text h2 {
        font-size: 36px;
        text-align: left;
    }
    
    .about-text p {
        font-size: 17px;
        text-align: left;
    }
    
    .about-image {
        order: 0; /* Normal sıralama */
        max-width: none;
    }
}

/* Büyük ekranlar için */
@media (min-width: 1200px) {
    .about {
        padding: 100px 0;
    }
    
    .about-content {
        gap: 80px;
    }
    

}

/* Çok küçük mobil cihazlar için */
@media (max-width: 360px) {
    .feature-item {
        flex-direction: column;
        text-align: center;
    }
    
    .feature-content p {
        text-align: center;
    }
    
    .about-image {
        height: 210px; /* Çok küçük ekranlarda daha da küçük */
    }
}

        /* Areas Section */
        .areas {
            padding: 100px 0;
            background: white;
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }

        .area-item {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
            padding: 32px 24px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .area-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .area-item:hover::before {
            left: 100%;
        }

        .area-item:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 50px rgba(30, 64, 175, 0.4);
        }

        .area-item:hover i {
            transform: scale(1.2) rotate(10deg);
        }

        .area-item i {
            font-size: 32px;
            margin-bottom: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .area-item h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }

        /* Contact Section */
        .contact {
            padding: 100px 0;
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            color: white;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 80px;
            align-items: center;
        }

        .contact-info h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            margin-bottom: 32px;
        }

        .contact-item {
            display: flex;
            align-items: center;
            gap: 16px;
            margin-bottom: 24px;
            padding: 20px;
            background: rgba(255,255,255,0.1);
            border-radius: 16px;
            backdrop-filter: blur(10px);
        }

        .contact-item i {
            width: 50px;
            height: 50px;
            background: rgba(255,255,255,0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .contact-item a {
            color: white;
            text-decoration: none;
            font-weight: 600;
            font-size: 18px;
        }

        .contact-form {
            background: white;
            padding: 40px;
            border-radius: 24px;
            box-shadow: 0 20px 60px rgba(0,0,0,0.1);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .contact-form:hover {
            transform: translateY(-5px);
            box-shadow: 0 30px 80px rgba(0,0,0,0.15);
        }

        .contact-form h3 {
            color: #1a1a1a;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 24px;
        }

        .form-group {
            margin-bottom: 24px;
        }

        .form-group input,
        .form-group textarea {
            width: 100%;
            padding: 16px;
            border: 2px solid #e5e7eb;
            border-radius: 12px;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            background: #fafafa;
        }

        .form-group input:focus,
        .form-group textarea:focus {
            outline: none;
            border-color: #1e40af;
            box-shadow: 0 0 0 4px rgba(30, 64, 175, 0.1);
            background: white;
            transform: translateY(-2px);
        }

        .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
            border: none;
            border-radius: 12px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s ease;
        }

        .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(30, 64, 175, 0.3);
        }

        /* Footer */
        .footer {
            background: #0f172a;
            color: white;
            padding: 60px 0 30px;
        }

        .footer-content {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 40px;
            margin-bottom: 40px;
        }

        .footer-section h4 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            color: #fbbf24;
        }

        .footer-section p,
        .footer-section li {
            color: #cbd5e1;
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .footer-section ul {
            list-style: none;
        }

        .footer-links a {
            color: white;
            text-decoration: none; 
            font-weight: bold; 
        }
        
        .footer-links p {
            color: white;
            font-weight: bold;
        }

        .footer-section a {
            color: white;
            text-decoration: none;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
        }

        .footer-section a::before {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 1px;
            background: #fbbf24;
            transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .footer-section a:hover::before {
            width: 100%;
        }

        .footer-section a:hover {
            color: #fbbf24;
            transform: translateX(5px);
        }

        .footer-bottom {
            border-top: 1px solid #334155;
            padding-top: 30px;
            text-align: center;
            color: #94a3b8;
        }

        /* WhatsApp Float */
        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            width: 60px;
            height: 60px;
            background: #25d366;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 28px;
            text-decoration: none;
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            animation: bounce 2s infinite;
        }

        .whatsapp-float:hover {
            transform: scale(1.15) rotate(5deg);
            box-shadow: 0 15px 50px rgba(37, 211, 102, 0.6);
        }

        @keyframes bounce {
            0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
            40% { transform: translateY(-10px); }
            60% { transform: translateY(-5px); }
        }

        /* Progress Bar */
        .progress-bar {
            position: fixed;
            top: 0;
            left: 0;
            width: 0%;
            height: 3px;
            background: linear-gradient(135deg, #0f35ae, #d4ef00);
            z-index: 10000;
            transition: width 0.1s ease;
        }

        .fab-container {
            position: fixed;
            bottom: 100px; 
            right: 30px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 16px;
            align-items: center;
        }

        .fab {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 24px;
            cursor: pointer;
            box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }
        

        .fab::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .fab:hover::before {
            left: 100%;
        }

        .fab:hover {
            transform: scale(1.1) rotate(5deg);
            box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
        }

        .fab.phone-fab {
    background: linear-gradient(135deg, #0011de 0%, #dae40f 100%);
   
        }

        .fab.phone-fab:hover {
            box-shadow: 0 12px 35px rgba(220, 38, 38, 0.4);
        }

        .fab.arrow-fab {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
        }

        .fab.whatsapp-fab {
            background: #25d366;
            font-size: 28px;
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.4);
            animation: bounce 2s infinite;
        }

        /* Stats Section */
        .stats {
            padding: 80px 0;
            background: linear-gradient(135deg, #1e40af 0%, #1e3a8a 100%);
            color: white;
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 40px;
            text-align: center;
        }

        .stat-item {
            padding: 30px;
            background: rgba(255,255,255,0.1);
            border-radius: 20px;
            backdrop-filter: blur(10px);
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .stat-item:hover {
            transform: translateY(-5px);
            background: rgba(255,255,255,0.15);
        }

        .stat-number {
            font-size: 48px;
            font-weight: 900;
            color: #fbbf24;
            margin-bottom: 10px;
            display: block;
        }

        .stat-label {
            font-size: 18px;
            font-weight: 600;
        }

/* Call to Action Enhancement */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #0011de 0%, #dae40f 100%);
   
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
            animation: float 15s ease-in-out infinite;
        }

.cta-content {
    position: relative;
    z-index: 2;
        }

        .cta-content h2 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
        }

        .cta-content p {
            font-size: 18px;
            margin-bottom: 40px;
            opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
        }

        .cta-buttons {
            display: flex;
            gap: 20px;
            justify-content: center;
            flex-wrap: wrap;
        }

        .cta-btn {
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 10px;
            position: relative;
            overflow: hidden;
        }

.cta-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

.cta-btn:hover::before {
            left: 100%;
        }

.cta-btn.primary {
    background: black;
    color: #dc2626;
    box-shadow: 0 8px 25px rgba(255,255,255,0.3);
}

.cta-btn.primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,255,255,0.4);
}

.cta-btn.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-btn.secondary:hover {
    background: white;
    color: #000000;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255,255,255,0.2);
}

.cta-btn i {
    font-size: 20px;
}

@keyframes float {
    0%, 100% { transform: translateY(0px); }
    50% { transform: translateY(-10px); }
}

/* 404 Error Page */
.error-page {
    padding: 120px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
    min-height: 80vh;
            display: flex;
            align-items: center;
}

.error-content {
            text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.error-animation {
    position: relative;
    margin-bottom: 40px;
}

.error-number {
    font-size: clamp(120px, 20vw, 200px);
            font-weight: 900;
    background: linear-gradient(135deg, #dc2626, #b91c1c);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 20px;
    animation: errorPulse 2s ease-in-out infinite;
}

.error-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: rgba(220, 38, 38, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: errorFloat 3s ease-in-out infinite;
}

.error-icon i {
    font-size: 40px;
    color: #dc2626;
}

.error-text h1 {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
    color: #1a1a1a;
            margin-bottom: 20px;
        }

.error-text p {
            font-size: 18px;
    color: #6b7280;
    line-height: 1.7;
            margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
        }

.error-actions {
            display: flex;
            gap: 20px;
            justify-content: center;
    margin-bottom: 60px;
            flex-wrap: wrap;
        }

.error-btn {
            padding: 16px 32px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 700;
            font-size: 16px;
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            display: inline-flex;
            align-items: center;
            gap: 10px;
    position: relative;
    overflow: hidden;
}

.error-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.6s ease;
}

.error-btn:hover::before {
    left: 100%;
}

.error-btn.primary {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.3);
        }

.error-btn.primary:hover {
            transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.4);
}

.error-btn.secondary {
    background: transparent;
    color: #1e40af;
    border: 2px solid #1e40af;
}

.error-btn.secondary:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(30, 64, 175, 0.2);
}

.error-btn i {
    font-size: 20px;
}

.error-suggestions {
            background: white;
    padding: 40px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
            border: 1px solid #f3f4f6;
        }

.error-suggestions h3 {
    font-size: 24px;
            font-weight: 700;
            color: #1a1a1a;
    margin-bottom: 24px;
}

.suggestion-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.suggestion-links a {
    color: #1e40af;
    text-decoration: none;
    font-weight: 600;
    padding: 12px 24px;
    border-radius: 12px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
    overflow: hidden;
        }

.suggestion-links a::before {
    content: '';
            position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(30, 64, 175, 0.1), transparent);
    transition: left 0.6s ease;
}

.suggestion-links a:hover::before {
    left: 100%;
}

.suggestion-links a:hover {
    background: #1e40af;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(30, 64, 175, 0.2);
}

@keyframes errorPulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

@keyframes errorFloat {
    0%, 100% { transform: translate(-50%, -50%) translateY(0px); }
    50% { transform: translate(-50%, -50%) translateY(-10px); }
}

        /* FAQ Section */
        .faq-section {
            padding: 80px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        }

        .faq-container {
            max-width: 800px;
            margin: 50px auto 0;
        }

        .faq-item {
            background: #fff;
            border-radius: 15px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
            margin-bottom: 20px;
            overflow: hidden;
            transition: all 0.3s ease;
            border: 1px solid #e2e8f0;
        }

        .faq-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
        }

        .faq-question {
            padding: 25px 30px;
            background: linear-gradient(135deg, #1e40af 0%, #3b82f6 100%);
            color: #fff;
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            transition: all 0.3s ease;
        }

        .faq-icon {
            display: flex;
            align-items: center;
            margin-right: 15px;
        }

        .faq-icon i {
            font-size: 24px;
            margin-right: 10px;
        }

        .faq-question h3 {
            margin: 0;
            font-size: 18px;
            font-weight: 600;
            flex: 1;
        }

        .expand-icon {
            font-size: 24px;
            transition: transform 0.3s ease;
        }

        .faq-item.active .expand-icon {
            transform: rotate(180deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.5s ease;
        }

        .faq-item.active .faq-answer {
            max-height: 2000px;
        }

        .answer-content {
            padding: 30px;
        }

        .answer-content p {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 20px;
            font-size: 16px;
        }

        .benefit-item {
            background: #f8fafc;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 15px;
            border-left: 4px solid #3b82f6;
        }

        .benefit-item h4 {
            color: #1e40af;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 10px 0;
            display: flex;
            align-items: center;
        }

        .benefit-item h4 i {
            margin-right: 8px;
            font-size: 20px;
        }

        .benefit-item p {
            color: #6b7280;
            line-height: 1.6;
            margin: 0;
            font-size: 14px;
        }


        /* Google Maps Section */
        .maps-section {
            padding: 100px 0;
            background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
            position: relative;
            overflow: hidden;
        }

        .maps-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(45deg, rgba(30, 64, 175, 0.05) 0%, rgba(59, 130, 246, 0.05) 100%);
            pointer-events: none;
        }

        .map-container {
            position: relative;
            border-radius: 25px;
            overflow: hidden;
            box-shadow: 
                0 25px 80px rgba(0,0,0,0.15),
                0 10px 30px rgba(30, 64, 175, 0.1),
                inset 0 1px 0 rgba(255,255,255,0.8);
            margin-top: 40px;
            background: white;
            padding: 8px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .map-container::before {
            content: '';
            position: absolute;
            top: -2px;
            left: -2px;
            right: -2px;
            bottom: -2px;
            background: linear-gradient(45deg, #1e40af, #3b82f6, #60a5fa, #93c5fd);
            border-radius: 27px;
            z-index: -1;
            opacity: 0;
            transition: opacity 0.4s ease;
        }

        .map-container:hover {
            transform: translateY(-10px) scale(1.02);
            box-shadow: 
                0 35px 100px rgba(0,0,0,0.2),
                0 15px 40px rgba(30, 64, 175, 0.15),
                inset 0 1px 0 rgba(255,255,255,0.9);
        }

        .map-container:hover::before {
            opacity: 1;
        }

        .map-container iframe {
            border-radius: 20px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            filter: drop-shadow(0 4px 8px rgba(0,0,0,0.1));
        }

        .map-container:hover iframe {
            filter: drop-shadow(0 8px 16px rgba(0,0,0,0.15));
        }

        /* Map Info Overlay */
        .map-info {
            position: absolute;
            top: 20px;
            left: 20px;
            background: rgba(255, 255, 255, 0.95);
            backdrop-filter: blur(10px);
            padding: 15px 20px;
            border-radius: 15px;
            box-shadow: 0 8px 25px rgba(0,0,0,0.1);
            border: 1px solid rgba(255,255,255,0.2);
            z-index: 10;
            transition: all 0.3s ease;
        }

        .map-info h4 {
            margin: 0 0 5px 0;
            color: #1e40af;
            font-weight: 700;
            font-size: 16px;
        }

        .map-info p {
            margin: 0;
            color: #6b7280;
            font-size: 14px;
        }

        .map-container:hover .map-info {
            transform: translateY(-5px);
            box-shadow: 0 12px 35px rgba(0,0,0,0.15);
        }

        /* Map Loading Animation */
        .map-container::after {
            content: '';
            position: absolute;
            top: 50%;
            left: 50%;
            width: 40px;
            height: 40px;
            margin: -20px 0 0 -20px;
            border: 3px solid #f3f4f6;
            border-top: 3px solid #1e40af;
            border-radius: 50%;
            animation: spin 1s linear infinite;
            z-index: 5;
        }

        .map-container.loaded::after {
            display: none;
        }

        @keyframes spin {
            0% { transform: rotate(0deg); }
            100% { transform: rotate(360deg); }
        }

        /* Responsive Map */
        @media (max-width: 768px) {
            .map-container {
                margin: 20px 10px;
                padding: 5px;
            }
            
            .map-info {
                top: 10px;
                left: 10px;
                padding: 10px 15px;
            }
            
            .map-info h4 {
                font-size: 14px;
            }
            
            .map-info p {
                font-size: 12px;
            }
        }

        .service-category {
            background: #f0f9ff;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 15px;
            border-left: 4px solid #0ea5e9;
        }

        .service-category h4 {
            color: #0369a1;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 10px 0;
            display: flex;
            align-items: center;
        }

        .service-category h4 i {
            margin-right: 8px;
            font-size: 20px;
        }

        .service-category p {
            color: #6b7280;
            line-height: 1.6;
            margin: 0;
            font-size: 14px;
        }

        .services-list {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .service-group {
            background: #f8fafc;
            border-radius: 10px;
            padding: 20px;
            border-left: 4px solid #10b981;
        }

        .service-group h4 {
            color: #047857;
            font-size: 16px;
            font-weight: 600;
            margin: 0 0 15px 0;
            display: flex;
            align-items: center;
        }

        .service-group h4 i {
            margin-right: 8px;
            font-size: 20px;
        }

        .service-group ul {
            margin: 0;
            padding-left: 20px;
        }

        .service-group li {
            color: #6b7280;
            line-height: 1.6;
            margin-bottom: 5px;
            font-size: 14px;
        }

        .response-time {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
            margin-top: 20px;
        }

        .time-item {
            background: #fef3c7;
            border-radius: 10px;
            padding: 20px;
            text-align: center;
            border-left: 4px solid #f59e0b;
        }

        .time-item i {
            font-size: 32px;
            color: #d97706;
            margin-bottom: 10px;
        }

        .time-item h4 {
            color: #92400e;
            font-size: 18px;
            font-weight: 600;
            margin: 0 0 5px 0;
        }

        .time-item p {
            color: #92400e;
            font-size: 14px;
            margin: 0;
        }

/* Mobile Responsive */
@media (max-width: 768px) {
    .top-header {
        padding: 8px 0;
        font-size: 12px;
    }
    
    .top-header-container {
        padding: 0 10px;
        flex-direction: column;
        gap: 8px;
    }
    
    .top-contact-info {
        gap: 8px;
            justify-content: center;
    }
    
    .top-social-links {
        gap: 8px;
    }
    
    .top-contact-item i {
        font-size: 11px;
    }

    .top-social-link {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }

    .detailed-services-grid {
        gap: 20px;
    }
    
    .detailed-services-grid2 {
        gap: 20px;
    }

    .detailed-service-card {
        padding: 20px;
    }

    .top-social-link i {
            font-size: 14px;
            }

            .header-content {
                flex-direction: column;
                gap: 20px;
            }

            .nav-left, .nav-right {
                display: none;
            }


            .logo {
                order: -1;
            }

            .hero-slider {
                height: 40vh;
            }

            
            .services-grid {
                gap: 30px;
            }

            .service-card {
                padding: 30px 20px;
            }

            .service-card:hover {
                transform: translateY(-5px) scale(1.01);
            }



        /* Areas Section */
        .areas {
            padding: 100px 0;
            background: white;
        }

        .areas-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
            gap: 24px;
            margin-top: 60px;
        }

        .area-item {
            background: linear-gradient(135deg, #1e40af, #3b82f6);
            color: white;
            padding: 32px 24px;
            border-radius: 20px;
            text-align: center;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
            position: relative;
            overflow: hidden;
        }

        .area-item::before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
            transition: left 0.6s ease;
        }

        .area-item:hover::before {
            left: 100%;
        }

        .area-item:hover {
            transform: translateY(-8px) scale(1.05);
            box-shadow: 0 20px 50px rgba(30, 64, 175, 0.4);
        }

        .area-item:hover i {
            transform: scale(1.2) rotate(10deg);
        }

        .area-item i {
            font-size: 32px;
            margin-bottom: 16px;
            transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        }

        .area-item h4 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
        }


            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-form:hover {
                transform: translateY(-2px);
            }

            .footer-content {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .whatsapp-float {
                bottom: 20px;
                right: 20px;
                width: 50px;
                height: 50px;
                font-size: 24px;
            }

            .area-item:hover {
                transform: translateY(-3px) scale(1.02);
            }

            .fab-container {
                bottom: 80px;
                right: 20px;
            }

            .fab {
                width: 50px;
                height: 50px;
                font-size: 20px;
            }

            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }

            .stat-number {
                font-size: 36px;
            }

            .cta-buttons {
                flex-direction: column;
                align-items: center;
            }

            .cta-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .cta-content h2 {
                font-size: 24px;
            }
            
            .cta-content p {
                font-size: 16px;
            }
            
            .error-page {
                padding: 80px 0;
            }
            
            .error-number {
                font-size: 100px;
            }
            
            .error-actions {
                flex-direction: column;
                align-items: center;
            }
            
            .error-btn {
                width: 100%;
                max-width: 300px;
                justify-content: center;
            }
            
            .suggestion-links {
                flex-direction: column;
                align-items: center;
            }
            
            .suggestion-links a {
                width: 100%;
                max-width: 250px;
                text-align: center;
            }

            /* FAQ Mobile Styles */
            .faq-container {
                max-width: 100%;
                padding: 0 20px;
            }

            .faq-item {
                margin-bottom: 15px;
            }

            .faq-question {
                padding: 20px;
            }

            .faq-question h3 {
                font-size: 16px;
            }

            .answer-content {
                padding: 20px;
            }

            .services-list {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .response-time {
                grid-template-columns: 1fr;
                gap: 15px;
            }

            .benefit-item,
            .service-category,
            .service-group,
            .time-item {
                padding: 15px;
            }
        }

        @media (max-width: 480px) {

            .contact-form {
                padding: 24px;
            }

            .areas-grid {
                grid-template-columns: 1fr;
            }

            .stats-grid {
                grid-template-columns: 1fr;
            }

            .cta-section {
                padding: 60px 0;
            }
            
            .cta-content h2 {
                font-size: 20px;
            }
            
            .cta-content p {
                font-size: 14px;
            }
            
            .cta-btn {
                padding: 12px 24px;
                font-size: 14px;
            }
            
            .error-page {
                padding: 60px 0;
            }
            
            .error-number {
                font-size: 80px;
            }
            
            .error-text h1 {
                font-size: 20px;
            }
            
            .error-text p {
                font-size: 14px;
            }
            
            .error-suggestions {
                padding: 24px;
            }
            
            .error-suggestions h3 {
                font-size: 18px;
            }
        }

/* Services CTA Section */
.services-cta {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.services-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.services-cta .cta-content {
    position: relative;
    z-index: 2;
    max-width: 600px;
    margin: 0 auto;
}

.services-cta .cta-content h2 {
    color: #fff;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.services-cta .cta-content p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.services-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.services-cta .btn-primary {
    background: #fff;
    color: #1e40af;
    border: 2px solid #fff;
}

.services-cta .btn-primary:hover {
    background: transparent;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}

.services-cta .btn i {
    font-size: 1.2rem;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    padding: 100px 0 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.1)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header .container {
    position: relative;
    z-index: 2;
}

.page-header h1 {
    color: #fff;
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-header p {
    color: rgba(255,255,255,0.9);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
}

/* Services Overview Styles */
.services-overview {
    padding: 80px 0;
    background: #f8fafc;
}

.services-overview .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-overview .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e1e1e;
    margin-bottom: 1rem;
}

.services-overview .section-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 768px) {
    .services-cta .cta-content h2 {
        font-size: 2rem;
    }
    
    .services-cta .cta-content p {
        font-size: 1rem;
    }
    
    .page-header h1 {
        font-size: 2.5rem;
    }
    
    .page-header p {
        font-size: 1.1rem;
    }
    
    .services-overview .section-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .services-cta .cta-content h2 {
        font-size: 1.8rem;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .services-overview .section-title {
        font-size: 1.8rem;
    }
}

/* Message Notifications */
.message {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #fff;
    border-radius: 8px;
    padding: 15px 20px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    max-width: 400px;
}

.message.show {
    transform: translateX(0);
}

.message-success {
    border-left: 4px solid #10b981;
    color: #065f46;
}

.message-error {
    border-left: 4px solid #ef4444;
    color: #991b1b;
}

.message-info {
    border-left: 4px solid #3b82f6;
    color: #1e40af;
}

.message i {
    font-size: 20px;
}

.message-success i {
    color: #10b981;
}

.message-error i {
    color: #ef4444;
}

.message-info i {
    color: #3b82f6;
}

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

.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #f3f3f3;
    border-top: 2px solid #3498db;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Form Improvements */
.form-group {
    position: relative;
    margin-bottom: 20px;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-group.error input,
.form-group.error textarea {
    border-color: #ef4444;
}

.form-group.error .error-message {
    color: #ef4444;
    font-size: 0.875rem;
    margin-top: 5px;
    display: block;
}

/* Button Loading State */
.btn.loading {
    position: relative;
    color: transparent;
}

.btn.loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 16px;
    height: 16px;
    margin: -8px 0 0 -8px;
    border: 2px solid transparent;
    border-top: 2px solid currentColor;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

/* Responsive Message */
@media (max-width: 768px) {
    .message {
        top: 10px;
        right: 10px;
        left: 10px;
        max-width: none;
    }
}

/* Hizmetler için resim alanı stilleri */
.service-image-container {
    position: relative;
    width: 100%;
    min-height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.service-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(30,64,175,0.08);
    background: #f3f4f6;
    display: flex;
    align-items: center;
    justify-content: center;
}
.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.service-image-upload {
    width: 400px;
    height: 240px;
    border: 2px dashed #667eea;
    border-radius: 12px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: border-color 0.2s;
    position: relative;
}
.service-image-upload:hover {
    border-color: #1e40af;
    background: #e0e7ff;
}
.upload-placeholder {
    text-align: center;
    color: #667eea;
    font-size: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}
.upload-placeholder i {
    font-size: 48px;
    margin-bottom: 8px;
}
.upload-placeholder span {
    font-size: 16px;
    font-weight: 600;
}
.upload-placeholder small {
    font-size: 13px;
    color: #6b7280;
}
.image-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(30,64,175,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.2s;
    pointer-events: none;
    border-radius: 12px;
}
.service-image:hover .image-overlay,
.service-image:focus-within .image-overlay {
    opacity: 1;
    pointer-events: all;
}
.change-image-btn {
    background: linear-gradient(135deg, #667eea, #1e40af);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 12px rgba(30,64,175,0.20);
    transition: background 0.2s, transform 0.2s;
    min-width: 120px;
    justify-content: center;
}
.change-image-btn:hover {
    background: linear-gradient(135deg, #1e40af, #667eea);
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 16px rgba(30,64,175,0.30);
}

.services-grid {
    display: flex;
    flex-wrap: wrap;       /* Satır taşarsa alt satıra geç */
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

/* Her bir hizmet kartının genişliği */
.services-grid .service-card {
    flex: 0 0 calc((100% / 3) - 13.33px); /* 3 kolon, gap hesaba katıldı */
    box-sizing: border-box;
}

.services-grid2 {
    display: grid;
    gap: 40px;
    margin-bottom: 80px;
    grid-template-columns: 1fr;
}

.service-card {
    background: white;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    border: 1px solid #f3f4f6;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #0f35ae, #d4ef00);
    transform: translateX(-100%);
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: translateX(0);
}

.service-card:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 25px 80px rgba(0,0,0,0.15);
}

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

.service-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    font-size: 32px;
    color: white;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card h3 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
}

.service-card p {
    color: #6b7280;
    line-height: 1.7;
    margin-bottom: 24px;
}

.service-image {
    width: 100%;
    height: 200px;
    border-radius: 16px;
    margin-bottom: 20px;
    overflow: hidden;
    position: relative;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

/* Mevcut grid/flex ayarları zaten var, mobil için ekleyelim */
@media (max-width: 1024px) {
    /* 3 kolon → 2 kolon */
    .services-grid .service-card {
        flex: 0 0 calc((100% / 2) - 10px);
    }
}

@media (max-width: 768px) {
    /* 2 kolon → 1 kolon */
    .services-grid .service-card {
        flex: 0 0 100%;
    }

    .services-grid {
        gap: 15px;
        margin-top: 15px;
    }

    .service-card {
        padding: 25px;
        border-radius: 16px;
    }

    .service-icon {
        width: 60px;
        height: 60px;
        font-size: 28px;
        border-radius: 16px;
        margin-bottom: 16px;
    }

    .service-card h3 {
        font-size: 20px;
        margin-bottom: 12px;
    }

    .service-card p {
        font-size: 14px;
        margin-bottom: 16px;
    }

    .service-image {
        height: 150px;
        margin-bottom: 16px;
    }
}

/* Detaylı hizmetler için mobil */
@media (max-width: 768px) {
    .detailed-services-grid {
        display: flex;
        flex-direction: column;
        gap: 20px;
    }

    .detailed-service-card {
        padding: 20px;
    }

    .service-header h3 {
        font-size: 18px;
    }

    .service-content p {
        font-size: 14px;
    }

    .service-features ul li {
        font-size: 13px;
    }

    .service-cta .btn {
        font-size: 14px;
        padding: 10px 16px;
        margin-bottom: 10px;
        display: block;
        width: 100%;
        text-align: center;
    }
}

/* Hizmet bölgeleri için mobil */
@media (max-width: 768px) {
    .areas-grid {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .area-card {
        padding: 20px;
    }

    .area-image {
        height: 120px;
    }
}

/* Contact CTA için mobil */
@media (max-width: 768px) {
    .contact-cta .cta-buttons {
        display: flex;
        flex-direction: column;
        gap: 10px;
    }

    .contact-cta .btn-lg {
        width: 100%;
        padding: 12px 0;
        font-size: 16px;
    }
}


/* Masaüstü görünümü için medya sorgusu */
@media (min-width: 768px) {
    .services-grid2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Büyük ekranlar için ek medya sorgusu */
@media (min-width: 1024px) {
    .services-grid2 {
        grid-template-columns: repeat(3, 1fr);
    }
}

.form-group {
    width: 100%;
    max-width: 400px; /* istersen genişlik ayarla */
    margin: 10px auto;
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    font-size: 16px;
    border: 2px solid #007bff;
    border-radius: 8px;
    background-color: white;
    color: #333;
    appearance: none; /* varsayılan arrow gizle */
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml;charset=US-ASCII,%3csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M1 1L6 6L11 1' stroke='%23007bff' stroke-width='2'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 12px center;
    background-size: 12px 8px;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: #0056b3;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    background-color: #f0f8ff;
}

.form-control option {
    color: #333;
    background-color: white;
}


.slide-content h1,
.slide-content h2,
.slide-content p,
.slide-content .emergency-btn {
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7); /* koyu gölge */
    border: 1px solid rgba(255, 255, 255, 0.3); /* ince beyaz kenarlık */
    padding: 5px 10px; /* kenarlıkla metin arasında boşluk */
    border-radius: 6px; /* kenarlık köşelerini yumuşatır */
    display: inline-block;
    background-color: rgba(0, 0, 0, 0.3); /* arka plan opaklığı */
    color: white;
}

/* Mobil cihazlar için */
@media (max-width: 768px) {
    .slide-content {
        padding: 24px 20px;
        max-width: 100%;
    }

    .slide-content h1 {
        font-size: 24px;
    }

    .slide-content h2 {
        font-size: 20px;
    }

    .slide-content p {
        font-size: 16px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        
    }

    .hero-buttons a {
        margin-bottom: 10px;
        width: 100%;
        max-width: 250px;
    }
}

/* Blog Detail Styles */
.blog-detail {
    padding: 2rem 0;
}

.blog-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
    color: #666;
}

.blog-breadcrumb a {
    color: #007bff;
    text-decoration: none;
}

.blog-breadcrumb a:hover {
    text-decoration: underline;
}

.blog-detail-header {
    margin-bottom: 2rem;
}

.blog-detail-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin: 1rem 0;
    color: #333;
    line-height: 1.3;
}

.blog-detail-meta {
    display: flex;
    gap: 1.5rem;
    color: #666;
    font-size: 0.9rem;
}

.blog-detail-meta span {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.blog-detail-image-container {
    margin-bottom: 2rem;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.blog-detail-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.blog-detail-body {
    margin-bottom: 3rem;
}

.blog-detail-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.blog-detail-text h2,
.blog-detail-text h3,
.blog-detail-text h4 {
    margin: 2rem 0 1rem;
    color: #222;
}

.blog-detail-text p {
    margin-bottom: 1.5rem;
}

.blog-detail-text ul,
.blog-detail-text ol {
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.blog-detail-text li {
    margin-bottom: 0.5rem;
}

.blog-detail-actions {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid #eee;
}

.blog-share {
    margin-bottom: 3rem;
    padding: 2rem 0;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}

.blog-share h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
}

.share-buttons {
    display: flex;
    gap: 1rem;
}

.share-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.share-btn.facebook {
    background-color: #3b5998;
    color: white;
}

.share-btn.twitter {
    background-color: #1da1f2;
    color: white;
}

.share-btn.whatsapp {
    background-color: #25d366;
    color: white;
}

.share-btn:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

/* Sidebar Styles */
.blog-sidebar {
    width: 350px;
    margin-left: 2rem;
}

.sidebar-widget {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    margin-bottom: 2rem;
}

.sidebar-widget h3 {
    margin-bottom: 1rem;
    font-size: 1.2rem;
    color: #333;
}

.popular-posts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.popular-post:hover {
    transform: translateX(5px);
}

.popular-post-image {
    width: 80px;
    height: 60px;
    border-radius: 4px;
    overflow: hidden;
    flex-shrink: 0;
}

.popular-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.popular-post-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.popular-post-content span {
    font-size: 0.8rem;
    color: #666;
}

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

.category-list li {
    margin-bottom: 0.8rem;
}

.category-list a {
    display: flex;
    justify-content: space-between;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
}

.category-list a:hover {
    color: #007bff;
}

.category-list span {
    background: #f8f9fa;
    padding: 0.2rem 0.5rem;
    border-radius: 12px;
    font-size: 0.8rem;
}

.contact-widget {
    background: linear-gradient(135deg, #007bff, #0056b3);
    color: white;
    text-align: center;
}

.contact-widget h3,
.contact-widget p {
    color: white;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: white;
    color: #007bff;
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

/* Related Posts */
.related-posts {
    padding: 3rem 0;
    background: #f8f9fa;
}

.related-posts h2 {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 2rem;
    color: #333;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.related-post-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.related-post-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.related-post-image {
    height: 200px;
    overflow: hidden;
}

.related-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.related-post-card:hover .related-post-image img {
    transform: scale(1.05);
}

.related-post-content {
    padding: 1.5rem;
}

.related-post-content h3 {
    margin: 1rem 0;
    font-size: 1.2rem;
    line-height: 1.4;
}

.related-post-content h3 a {
    color: #333;
    text-decoration: none;
}

.related-post-content h3 a:hover {
    color: #007bff;
}

.related-post-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.5;
}

.read-more-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    color: #007bff;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.read-more-link:hover {
    gap: 0.5rem;
}

.no-related-posts {
    text-align: center;
    color: #666;
    font-style: italic;
}

/* Container Layout */
.blog-detail .container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.blog-detail-content {
    flex: 1;
    max-width: 800px;
}

/* Responsive Design */
@media (max-width: 968px) {
    .blog-detail .container {
        flex-direction: column;
    }
    
    .blog-sidebar {
        width: 100%;
        margin-left: 0;
        margin-top: 2rem;
    }
    
    .blog-detail-title {
        font-size: 2rem;
    }
    
    .blog-detail-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 768px) {
    .share-buttons {
        flex-direction: column;
    }
    
    .blog-detail-image img {
        height: 300px;
    }
    
    .related-posts-grid {
        grid-template-columns: 1fr;
    }
}


.ustam-button {
    display: inline-block;
    background: linear-gradient(135deg, #FFD700, #1e40af);
    color: white !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    padding: 12px 24px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.3);
    line-height: 1.3;
    white-space: nowrap;
}


.ustam-button:hover {
    background: linear-gradient(135deg, #FFA500, #0066CC);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 165, 0, 0.4);
}


/* Masaüstünde normal menü göster */
.desktop-menu {
  display: flex;
  list-style: none;
  gap: 20px;
  margin: 20px;
}

.desktop-menu a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.desktop-menu a:hover {
  color: #ff6b6b;
}

/* Mobil menü butonu - varsayılan olarak gizli */
.tikaniklik-menu-btn {
  display: none;
}

/* Mobil menü - varsayılan olarak gizli */
.tikaniklik-menu {
  display: none;
}

.tikaniklik-close-btn {
  display: none;
}

/* Mobil menü içeriği - varsayılan olarak gizli */
.tikaniklik-menu-content {
  display: none;
}

/* Mobil cihazlar için medya sorgusu */
@media (max-width: 768px) {
  /* Mobil menü butonunu göster */
  .tikaniklik-menu-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
    margin: 20px;
    position: relative;
    transition: all 0.3s ease;

    color: white;
  }
  
  .tikaniklik-menu-btn.hidden {
    opacity: 0;
    visibility: hidden;
  }
  
  /* Mobil menüyü göster */
  .tikaniklik-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    transition: all 0.3s ease;
    z-index: 1000;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    opacity: 0;
    visibility: hidden;
    padding-left: 40px;
  }
  
  .tikaniklik-menu.active {
    opacity: 1;
    visibility: visible;
  }
  
  /* Mobil menü içeriğini göster */
  .tikaniklik-menu-content {
    text-align: left;
    transform: translateY(-20px);
    transition: transform 0.3s ease;
    width: 80%;
    margin-top: 40px;
    display: block;
  }
  
  .tikaniklik-menu.active .tikaniklik-menu-content {
    transform: translateY(0);
  }
  
  .tikaniklik-menu ul {
    list-style: none;
    width: 100%;
  }
  
  .tikaniklik-menu li {
    margin-bottom: 25px;
  }
  
  .tikaniklik-menu a {
    color: white;
    text-decoration: none;
    font-size: 24px;
    display: block;
    padding: 10px 0;
    transition: all 0.3s ease;
    text-align: left;
    font-weight: 500;
  }
  
  .tikaniklik-menu a:hover {
    color: #ff6b6b;
    padding-left: 10px;
  }
  
  /* Kapatma butonunu göster */
  .tikaniklik-close-btn {
    position: absolute;
    top: 25px;
    left: 25px;
    font-size: 30px;
    color: white;
    background: #ff6b6b;
    border: none;
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1002;
    box-shadow: 0 4px 10px rgba(0,0,0,0.2);
    transition: all 0.3s ease;
  }
  
  .tikaniklik-close-btn:hover {
    background: #ff5252;
    transform: scale(1.1);
  }
  
  /* Masaüstü menüyü mobilde gizle */
  .desktop-menu {
    display: none;
  }
}