        /* Sayfa arka plan */
        body {
            margin: 0;
            font-family: 'Poppins', sans-serif;
            background: linear-gradient(to bottom, #1a0a2b, #0d0415);
            overflow-x: hidden;
        }

        html {
            scroll-behavior: smooth;
            overflow-x: hidden;
            /* yumuşak kaydırma */
        }

        .hero {
            position: relative;
            width: 100%;
            height: 100vh;
            /* tam ekran */
            overflow: hidden;
        }

        .hero-text {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            text-align: center;
            max-width: 100%;
            color: #fff;
        }

        .hero-text h1 {
            font-size: 2.4rem;
            color: #ffd700;
            /* altın rengi */
            font-family: 'Cinzel', serif;
        }

        .hero-text p {
            font-size: 1.2rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .hero-btn {
            display: inline-block;
            padding: 25px 25px;
            background: linear-gradient(135deg, #d4af37, #b88a2d);
            color: #1a1a1a;
            text-decoration: none;
            border-radius: 25px;
            font-weight: bold;
            transition: background 0.3s ease;
        }

        .hero-btn:hover {
            background: linear-gradient(135deg, #f0d77d, #d4af37);
        }

        .hero-anasayfa-resim {
            height: 100%;
            background: url('images/index-arka-plan.jpg') no-repeat center center/cover;
        }

        /* Mobil uyum */
        @media (max-width: 768px) {
            .hero-text h1 {
                font-size: 2rem;
            }

            .hero-text p {
                font-size: 1rem;
            }

            .hero-btn {
                padding: 10px 20px;
                font-size: 0.9rem;
            }

        }

        /* Üst header - mor geçişli */
        .top-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            background: linear-gradient(to right,
                    purple 0%,
                    transparent 30%,
                    transparent 70%,
                    #a64b2a 100%);

            padding: 0;
            text-align: center;
            z-index: 1000;
            backdrop-filter: blur(20px);
        }

        .top-header .logo img {
            height: 90px;
        }

        /* Nav Header */
        .nav-header {
            position: fixed;
            top: -100px;
            left: 0;
            width: 100%;
            z-index: 1000;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
            transition: top 1s ease;
            background: linear-gradient(135deg, #1a1a1a, #2a1a2f);
            color: #fff;
        }

        .nav-header ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            justify-content: center;
        }

        .nav-header li {
            position: relative;
        }

        .nav-header a {
            text-decoration: none;
            padding: 25px 30px;
            display: block;
            color: #fff;
            font-weight: bold;
        }

        .nav-header a:hover {
            color: #ff4da6;
            /* hover olunca pembe ton */
            background-color: rgba(255, 255, 255, 0.2);
            /* hafif şeffaf arka plan */
        }

        /* Hamburger gizli (masaüstü) */
        .hamburger {
            display: none;
            padding: 10px 15px;
            font-size: 28px;
            cursor: pointer;

        }

        /* Mobil görünüm */
        @media (max-width: 768px) {
            .nav-header ul {
                position: absolute;
                top: 100%;
                left: 0;
                width: 100%;
                flex-direction: column;
                background: white;
                overflow: hidden;
                max-height: 0;
                opacity: 0;
                transition: max-height 0.4s ease, opacity 0.4s ease;
                box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
            }

            .nav-header a {
                background: linear-gradient(135deg, #1a1a1a, #2a1a2f);
            }

            .nav-header ul.active {
                max-height: 500px;
                /* Menü yüksekliği */
                opacity: 1;
            }

            .nav-header li {
                margin: 0;
                border-top: 1px solid rgba(0, 0, 0, 0.1);
                text-align: center;
            }

            .hamburger {
                display: block;
            }
        }

        /* Alt header aktif olunca aşağı iner */
        .nav-header.show {
            top: 90px;
            /* üst header yüksekliği kadar boşluk */
        }

        /* Test için ekstra içerik */
        /* Genel alan */
        #hizmetlerimiz {
            padding: 10px 20px;
            background: linear-gradient(135deg, #1a1a1a, #2a1a2f);
            text-align: center;
            color: #fff;
            border-top: 2px solid rgba(212, 175, 55, 0.3);
            padding-bottom: 50px;
        }

        #hizmetlerimiz h2 {
            font-size: 2.5rem;
            margin-bottom: 50px;
            color: #d4af37;
            text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
        }

        /* Grid yapısı */
        .hizmetler-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 25px;
        }

        /* Kart tasarımı */
        .hizmet-kutu {
            background: rgba(255, 255, 255, 0.05);
            border-radius: 15px;
            padding: 0;
            text-align: center;
            position: relative;
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.1);
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease, transform 1s ease, box-shadow 0.3s ease;
            overflow: hidden;
        }

        .hizmet-kutu:hover {
            box-shadow: 0 0 25px rgba(212, 175, 55, 0.3);
        }

        /* Scroll animasyonu için visible sınıfı */
        .hizmet-kutu.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Görsel */
        .hizmet-kutu img {
            width: 100%;
            height: 250px;
            object-fit: cover;
            transition: transform 0.5s ease, box-shadow 0.5s ease, filter 0.5s ease;
        }

        .hizmet-kutu img:hover {
            transform: scale(1.05) translateY(-5px);
            filter: brightness(1.05);
        }

        /* Başlık */
        .hizmet-kutu h3 {
            margin: 15px 0 10px;
            font-size: 1.4rem;
            color: #f8e9c1;
        }

        /* Açıklama */
        .hizmet-kutu p {
            font-size: 0.95rem;
            color: #ddd;
            line-height: 1.4;
        }

        /* Ok ikonu */
        .ok-icon {
            position: absolute;
            bottom: 15px;
            right: 15px;
            font-size: 1.2rem;
            opacity: 0;
            color: #d4af37;
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        .hizmet-kutu:hover .ok-icon {
            opacity: 1;
            transform: translateX(4px);
        }

        /* Responsive başlık */
        @media (max-width: 500px) {
            #hizmetlerimiz h2 {
                font-size: 2rem;
            }
        }

        .about-section {
            padding: 80px 20px;
            color: #fff;
            background: linear-gradient(to bottom, #2b0a2f, #1a0a2b);
            border-top: 2px solid rgba(212, 175, 55, 0.3);
        }

        .about-container {
            display: flex;
            align-items: center;
            gap: 50px;
            max-width: 1200px;
            margin: 0 auto 60px;
            flex-wrap: wrap;
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease, transform 1s ease;
        }

        .about-container.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .about-container.reverse {
            flex-direction: row-reverse;
        }

        .about-container.full-width {
            flex-direction: column;
            text-align: center;
            margin-bottom: 0;
        }

        .about-img {
            flex: 1;
            max-width: 450px;
            overflow: hidden;
            border-radius: 2px;
        }

        .about-img img {
            width: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .about-text {
            flex: 1;
            min-width: 300px;
        }

        .about-text h2 {
            font-size: 2rem;
            color: #ffd700;
            /* altın başlık */
            margin-bottom: 15px;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
        }

        .about-text p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 20px;
        }

        .about-text ul li {
            margin-bottom: 8px;
        }

        .whatsapp-btn {
            display: inline-block;
            margin-top: 15px;
            padding: 10px 22px;
            background: linear-gradient(135deg, #d4af37, #b88a2d);
            color: #1a1a1a;
            text-decoration: none;
            border-radius: 30px;
            font-weight: bold;
            transition: background 0.3s ease;
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .whatsapp-btn:hover {
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
            background: linear-gradient(135deg, #f0d77d, #d4af37);
        }

        /* Mobil uyum */
        @media (max-width: 768px) {

            .about-container,
            .about-container.reverse {
                flex-direction: column;
            }

            .about-text,
            .about-img {
                margin-top: -45px;
                width: 100%;
            }

        }

        /* FOOTER GENEL */
        .site-footer {
            background: linear-gradient(135deg, #0d0415 0%, #1a0a2b 100%);
            color: #ddd;
            border-top: 2px solid rgba(212, 175, 55, 0.3);
            padding: 60px 20px 20px;
        }

        .footer-container {
            display: flex;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
            gap: 200px;
        }

        .footer-col {
            flex: 1;
            min-width: 250px;
        }

        .footer-col h3 {
            color: #ffd700;
            margin-bottom: 15px;
            font-size: 1.5rem;
        }

        .footer-col p,
        .footer-col ul,
        .footer-col li {
            font-size: 0.95rem;
            line-height: 1.6;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
        }

        .footer-col ul li {
            margin-bottom: 8px;
        }

        .footer-col ul li a {
            color: #ddd;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer-col ul li a:hover {
            color: #ffd700;
        }

        /* Sosyal ikonlar */
        .social-icons {
            display: flex;
            gap: 12px;
            margin-top: 10px;
        }

        .social-icon {
            display: inline-flex;
            justify-content: center;
            align-items: center;
            width: 40px;
            height: 40px;
            border-radius: 50%;
            color: #fff;
            font-size: 20px;
            text-decoration: none;
            transition: background-color 0.3s ease, color 0.3s ease, transform 0.3s;
        }

        .social-icon:hover {
            transform: scale(1.2);
        }

        /* Renkler */
        .social-icon.whatsapp {
            background-color: #25D366;
        }

        .social-icon.instagram {
            background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
        }

        .social-icon.facebook {
            background-color: #3b5998;
        }

        /* Footer alt yazı */
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 15px 75px;
            font-size: 14px;
            color: #333;
            border-top: 1px solid rgba(255, 215, 0, 0.2);
            flex-wrap: wrap;
            margin-top: 10px;
            margin-bottom: -10px;
        }

        .footer-bottom a {
            color: #0066cc;
            text-decoration: none;
            margin: 0 5px;
        }

        .footer-bottom a:hover {
            color: aqua;
        }

        .footer-bottom-left,
        .footer-bottom-right {
            margin: 5px 0;
        }


        /* Sabit sol alt WhatsApp */
        .fixed-whatsapp {
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 50px;
            height: 50px;
            background: #25D366;
            color: white;
            font-size: 30px;
            text-align: center;
            line-height: 50px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 9999;
            transition: transform 0.3s;
        }

        .fixed-whatsapp:hover {
            transform: scale(1.1);
        }

        /* Sabit sağ telefon */
        .fixed-phone {
            margin-bottom: 65px;
            position: fixed;
            bottom: 20px;
            left: 20px;
            width: 50px;
            height: 50px;
            background: linear-gradient(135deg, #d4af37, #b88a2d);
            color: #1a1a1a;
            font-size: 28px;
            text-align: center;
            line-height: 50px;
            border-radius: 50%;
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
            z-index: 9999;
            transition: transform 0.3s;
        }

        .fixed-phone:hover {
            transform: scale(1.1);
        }

        #scrollToTopBtn {
            position: fixed;
            bottom: 20px;
            right: 20px;
            z-index: 100;
            background: linear-gradient(135deg, #d4af37, #b88a2d);
            color: #fff;
            border: none;
            width: 50px;
            height: 50px;
            font-size: 18px;
            border-radius: 50%;
            cursor: pointer;
            box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
            opacity: 0;
            pointer-events: none;
            transform: translateX(50px);
            transition: opacity 0.3s ease, transform 0.3s ease;
        }

        /* Buton aktif olduğunda görünür ve animasyonlu olur */
        #scrollToTopBtn.show {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        /* Hover efekti */
        #scrollToTopBtn:hover {
            transform: scale(1.1);
        }

        /* Mobil uyum */
        @media (max-width: 768px) {
            .footer-container {
                flex-direction: column;
                gap: 25px;
            }

            .social-icons a {
                margin-right: 10px;
            }
        }

        /* İletişim Bölümü */
        .contact-section {
            background: linear-gradient(to bottom, #2b0a2f, #1a0a2b);
            color: #fff;
            border-top: 2px solid rgba(212, 175, 55, 0.3);
            padding: 80px 20px;
        }

        .contact-container {
            display: flex;
            max-width: 1200px;
            margin: 0 auto;
            gap: 50px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .contact-text {
            flex: 1;
            min-width: 300px;
        }

        .contact-text h2 {
            font-size: 2rem;
            color: #ffd700;
            margin-bottom: 15px;
        }

        .contact-text p {
            font-size: 1rem;
            line-height: 1.6;
            margin-bottom: 25px;
        }

        .contact-buttons {
            display: flex;
            gap: 15px;
            flex-wrap: wrap;
            margin-bottom: 20px;
        }

        .contact-btn {
            padding: 12px 25px;
            border-radius: 30px;
            font-weight: bold;
            text-decoration: none;
            transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            /* ikon ile yazı arası */
            font-size: 1rem;
        }

        .contact-btn.whatsapp {
            background-color: #25D366;
            color: #fff;
            box-shadow: 0 5px 15px rgba(37, 211, 102, 0.5);
        }

        .contact-btn.phone {
            background: linear-gradient(135deg, #d4af37, #b88a2d);
            color: #1a1a1a;
            box-shadow: 0 5px 15px rgba(212, 175, 55, 0.5);
        }

        .contact-btn.email {
            background: linear-gradient(135deg, #6a0dad, #9b30ff);
            color: #fff;
            box-shadow: 0 5px 15px rgba(155, 48, 255, 0.5);
        }

        /* Hover efektleri */
        .contact-btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 25px rgba(0, 0, 0, 0.35);
        }

        /* Form */
        .contact-form {
            flex: 1;
            min-width: 300px;
            display: flex;
            flex-direction: column;
            gap: 15px;
        }

        .contact-form input,
        .contact-form textarea {
            padding: 12px 15px;
            border-radius: 8px;
            border: none;
            font-size: 1rem;
            outline: none;
            resize: none;
        }

        .contact-form input:focus,
        .contact-form textarea:focus {
            box-shadow: 0 0 10px #ffd700;
        }

        .contact-form button {
            padding: 12px 25px;
            background: #ffd700;
            border: none;
            border-radius: 25px;
            font-weight: bold;
            cursor: pointer;
            transition: transform 0.3s, background 0.3s;
        }

        .contact-form button:hover {
            transform: scale(1.05);
            background: #e6c200;
        }

        /* Mobil uyum */
        @media (max-width: 768px) {
            .contact-container {
                flex-direction: column;
                gap: 30px;
            }

            .contact-text,
            .contact-form {
                min-width: 100%;
            }
        }

        .latest-section {
            background: linear-gradient(180deg, #1E1623, #301931, #4A1F44);
            color: #fff;
            border-top: 2px solid rgba(212, 175, 55, 0.3);
            text-align: center;
        }

        .section-title {
            font-size: 2.5rem;
            color: #ffd700;
            text-shadow: 0 0 10px rgba(255, 215, 0, 0.7);
        }

        .latest-container {
            display: flex;
            gap: 30px;
            padding: 50px 0;
            justify-content: center;
            flex-wrap: wrap;
        }

        .son-eklenen-kutu {
            background: linear-gradient(to bottom, #1A141E, #2C182C, #3B1538, #4B103F);
            padding: 5px;
            text-align: center;
            position: relative;
            box-shadow: 0 0 20px rgba(212, 175, 55, 0.25), 0 10px 25px rgba(0, 0, 0, 0.5);
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 1s ease, transform 1s ease, box-shadow 0.4s ease;
            width: 400px;
            border: 1px solid rgba(212, 175, 55, 0.3);
        }

        .son-eklenen-kutu:hover {
            box-shadow: 0 0 35px rgba(212, 175, 55, 0.6), 0 15px 35px rgba(0, 0, 0, 0.6);

            transform: translateY(-5px) scale(1.03);
            border-color: rgba(212, 175, 55, 0.6);
        }

        /* Tablet ve küçük ekranlar için */
        @media (max-width: 768px) {
            .son-eklenen-kutu {
                width: 90%;
                /* Sabit genişlik yerine esnek yüzde */
                padding: 10px;
                font-size: 14px;
                transform: translateY(20px);
            }

            .son-eklenen-kutu:hover {
                transform: translateY(-3px) scale(1.02);
                box-shadow: 0 0 25px rgba(212, 175, 55, 0.5), 0 10px 20px rgba(0, 0, 0, 0.5);
                border-color: rgba(212, 175, 55, 0.5);
            }
        }

        /* Küçük telefonlar için */
        @media (max-width: 480px) {
            .son-eklenen-kutu {
                width: 95%;
                padding: 8px;
                font-size: 13px;
                transform: translateY(15px);
            }

            .son-eklenen-kutu:hover {
                transform: translateY(-2px) scale(1.01);
                box-shadow: 0 0 20px rgba(212, 175, 55, 0.4), 0 8px 15px rgba(0, 0, 0, 0.4);
                border-color: rgba(212, 175, 55, 0.4);
            }
        }

        .kutu-img {
            width: 100%;
            height: 250px;
            margin-bottom: 15px;
            overflow: hidden;
        }

        .kutu-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .kutu-img img:hover {
            transform: scale(1.05);
            box-shadow: 0 0 15px rgba(212, 175, 55, 0.5);
        }



        .son-eklenen-kutu.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* Mobil uyum */
        @media (max-width: 768px) {
            .latest-container {
                flex-direction: column;
                align-items: center;
            }
        }

        .sss-section {
            padding: 60px 20px;
            background: linear-gradient(to bottom, #1a0a2b, #0d0415);
            border-top: 2px solid rgba(212, 175, 55, 0.3);
            text-align: center;
        }

        .sss-container {
            max-width: 900px;
            margin: auto;
        }

        .sss-item {
            border-bottom: 1px solid rgba(212, 175, 55, 0.2);
        }

        .sss-soru {
            background: none;
            color: #fff;
            padding: 18px;
            width: 100%;
            text-align: left;
            font-size: 1.1rem;
            font-weight: bold;
            border: none;
            outline: none;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
            transition: background 0.3s ease;
        }

        .sss-soru:hover {
            background: rgba(212, 175, 55, 0.15);
        }

        .sss-soru::after {
            content: '+';
            font-size: 1.4rem;
            transition: transform 0.3s ease;
        }

        .sss-soru.active::after {
            content: '-';
        }

        .sss-cevap {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease;
            background: rgba(255, 255, 255, 0.05);
            padding: 0 18px;
        }

        .sss-cevap p {
            padding: 15px 0;
            color: #ddd;
            line-height: 1.5;
        }

        .istatistikler {
            border-top: 2px solid rgba(212, 175, 55, 0.3);
            padding: 50px 20px;
            color: #fdfaf3;
            text-align: center;
        }

        .istatistik-container {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        .istatistik-kutu {
            min-width: 180px;
        }

        .istatistik-sayi {
            font-size: 3rem;
            font-weight: bold;
            color: #d4af37;
        }

        .istatistik-kutu p {
            margin-top: 8px;
            font-size: 1.1rem;
        }

        /* Mobil uyum */
        @media (max-width: 600px) {
            .istatistik-container {
                flex-direction: column;
                gap: 20px;
            }

            .istatistik-sayi {
                font-size: 2.2rem;
            }
        }

        /* Yorumlar konteyneri */
        .reviews-container {
            border-top: 2px solid rgba(212, 175, 55, 0.3);
            padding: 20px;
        }

        /* Müşteri Yorum kutusu */
        .customer-review {
            background-color: #fff;
            border: 1px solid #ddd;
            border-radius: 10px;
            padding: 20px;
            margin-bottom: 20px;
            display: flex;
            flex-direction: column;
            box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
        }

        /* Profil bilgisi */
        .profile {
            display: flex;
            align-items: center;
            margin-bottom: 15px;
        }

        .profile-img {
            width: 50px;
            height: 50px;
            border-radius: 50%;
            margin-right: 15px;
        }

        .customer-name {
            font-size: 18px;
            font-weight: bold;
        }

        /* Yorum metni */
        .review-message {
            font-size: 16px;
            margin: 15px 0;
        }

        blockquote {
            font-size: 18px;
            font-style: italic;
            margin: 0;
            padding: 0 10px;
            border-left: 4px solid #007bff;
        }

        /* Yıldızlar */
        .review-stars {
            display: flex;
            gap: 5px;
        }

        .star {
            font-size: 20px;
            color: #ccc;
            /* Boş yıldız rengi (gri) */
        }

        .filled {
            color: #f39c12;
            /* Dolu yıldız rengi (altın sarısı) */
        }

        /* Ana kapsayıcı */
        .hizmetler-yazisi {
            border-top: 2px solid rgba(212, 175, 55, 0.3);
            display: grid;
            place-items: center;
            padding: 20px;
        }

        .hizmetler-yazisi>* {
            width: 100%;
            max-width: 960px;
        }

        /* Hero alanı */
        .hizmetler-yazisi-hero {
            margin-top: 90px;
            margin-bottom: 32px;
            text-align: left;
        }

        .hizmetler-yazisi-hero h1 {
            font-size: clamp(32px, 5vw, 48px);
            line-height: 1.15;
            margin-bottom: 10px;
            letter-spacing: 0.5px;
            background: linear-gradient(90deg, #b88a5a, #8e6a44);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }


        .hizmetler-yazisi-lead {
            font-size: clamp(16px, 2vw, 18px);
            color: #6b6256;
        }

        /* Bölümler */
        .hizmetler-yazisi-section {
            border: 1px solid #e9e3d9;
            border-radius: 16px;
            padding: 24px;
            margin-bottom: 32px;
            box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
        }

        .hizmetler-yazisi-section h2 {
            font-size: clamp(22px, 3.2vw, 30px);
            margin-bottom: 10px;
        }

        .hizmetler-yazisi-section h3 {
            font-size: clamp(18px, 2.6vw, 22px);
            margin-bottom: 8px;
            color: #3a332a;
        }

        .hizmetler-yazisi-section p {
            margin: 10px 0;
            font-size: clamp(15px, 1.8vw, 17px);
        }

        /* Kartlı alt grid */
        .hizmetler-yazisi-altgrid {
            display: grid;
            gap: 20px;
        }

        .hizmetler-yazisi-card {
            background: #fffdf9;
            border: 1px solid #e9e3d9;
            border-radius: 16px;
            padding: 20px;
            transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
        }

        .hizmetler-yazisi-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 14px 28px rgba(0, 0, 0, .1);
            border-color: #e2d7c6;
        }

        /* Görsel blok */
        .hizmetler-yazisi-media {
            margin-bottom: 32px;
            border-radius: 2px;
            overflow: hidden;
            border: 1px solid #e9e3d9;
            background: #fff;
            box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
        }

        .hizmetler-yazisi-media img {
            object-fit: contain;
            display: block;
            width: 100%;
            height: 360px;
        }

        .hizmetler-yazisi-media figcaption {
            padding: 12px 16px;
            font-size: 0.95rem;
            color: #6b6256;
            background: #fffaf2;
            border-top: 1px solid #e9e3d9;
        }

        /* Responsive grid */
        @media (min-width: 640px) {
            .hizmetler-yazisi-altgrid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 960px) {
            .hizmetler-yazisi-altgrid {
                grid-template-columns: repeat(3, 1fr);
            }
        }

        .hidden-left,
        .hidden-right {
            opacity: 0;
            transition: all 0.7s ease;
        }

        .hidden-left {
            transform: translateX(-100px);
            /* soldan gelsin */
        }

        .hidden-right {
            transform: translateX(100px);
            /* sağdan gelsin */
        }

        .hidden-left.visible,
        .hidden-right.visible {
            opacity: 1;
            transform: translateX(0);
            /* orijinal yerine dönsün */
        }

        a {
            text-decoration: none;
            color: #ffd700;
        }

        /* Genel yapı */
        .icerik {
            border-top: 2px solid rgba(212, 175, 55, 0.3);
            margin: auto;
            color: #f5f5f5;
            line-height: 1.6;
        }

        /* Bölümler */
        .icerik .bolum {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin: 50px 0;
            flex-wrap: wrap;
        }

        /* Resim ve Metin sırası dönüşümü */
        .icerik .bolum:nth-child(even) .resim {
            order: 2;
        }

        .icerik .bolum:nth-child(even) .metin {
            order: 1;
        }

        /* Metin */
        .icerik .metin {
            flex: 1;
            padding: 10px;
        }

        .icerik .metin h2 {
            font-size: 2rem;
            margin-bottom: 10px;
            text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
        }

        .icerik .metin p {
            font-size: 1.1rem;
            color: #e0dfe6;
        }

        /* Kare Resim Kutusu */
        .icerik .resim {
            flex: 1;
            max-width: 500px;
            aspect-ratio: 1 / 1;
            overflow: hidden;
            box-sizing: border-box;
        }

        .icerik .resim img {
            width: 500px;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }

        .icerik .resim img:hover {
            transform: scale(1.05);
        }

        /* CTA Bölümü */
        .icerik .cta {
            text-align: center;
            padding: 50px 20px;
        }

        .icerik .cta h2 {
            font-size: 2rem;
            margin-bottom: 20px;
        }

        .icerik .cta p {
            font-size: 1.1rem;
        }

        .icerik .cta .btn {
            display: inline-block;
            margin-top: 25px;
            padding: 14px 28px;
            background: #6b2f2f;
            color: #fff;
            text-decoration: none;
            font-weight: bold;
            transition: 0.3s;
        }

        .icerik .cta .btn:hover {
            background: #4e1f1f;
        }

        /* Mobil Görünüm */
        @media (max-width: 900px) {

            /* Resim ve Metin sırası dönüşümü */
            .icerik .bolum:nth-child(even) .resim {
                order: 1;
            }

            .icerik .bolum:nth-child(even) .metin {
                order: 2;
            }

            .icerik .bolum {
                flex-direction: column;
            }

            .icerik .bolum .resim {
                order: 1;
                max-width: 90%;
                margin: 0 auto 20px auto;
            }

            .icerik .bolum .metin {
                order: 2;
                padding: 10px;
            }

            .icerik .metin h2 {
                font-size: 1.6rem;
            }

            .icerik .metin p {
                font-size: 1rem;
            }

            .icerik .cta h2 {
                font-size: 1.6rem;
            }

            .icerik .cta p {
                font-size: 1rem;
            }

            .icerik .cta .btn {
                padding: 16px 30px;
                font-size: 1rem;
                display: block;
                margin: 20px auto 0 auto;
            }
        }

        /* Hemen ara bölümüne stil */
        .hemen-ara {
            border-top: 2px solid rgba(212, 175, 55, 0.3);
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            height: 300px;
            background-color: #515151;
            color: #fff;
            text-align: center;
            padding: 20px;
        }

        /* Telefon numarası ve simge stil */
        .hemen-ara-phone-number {
            font-size: 32px;
            font-weight: 600;
            margin: 0;
            padding: 0;
        }

        .hemen-ara-phone-number i {
            margin-right: 10px;
            font-size: 27px;
        }

        /* Açıklama stil */
        .hemen-ara-description {
            max-width: 1100px;
            margin-top: 30px;
            margin-bottom: 30px;
            font-size: 16px;
            font-weight: 300;
        }

        /* İletişim butonu */
        .hemen-ara-btn {
            padding: 13px 32px;
            background-color: #fff;
            color: #2c2c2c;
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            border-radius: 4px;
            border: 2px solid #fff;
            /* Beyaz kenar çizgisi */
            position: relative;
            overflow: hidden;
            /* Butonun içindeki içerik dışarı taşmasın */
            transition: color 0.4s ease;
        }

        /* Hover durumunda butonun ortasından başlayarak siyah arka plan */
        .hemen-ara-btn::before {
            content: '';
            position: absolute;
            top: 0;
            left: 50%;
            width: 0;
            height: 100%;
            background-color: #262626;
            transition: width 0.4s ease, left 0.4s ease;
            z-index: 0;
        }

        /* Hover olunca butonun ortasından kenarlara doğru siyah yayılacak */
        .hemen-ara-btn:hover::before {
            width: 100%;
            left: 0;
        }

        /* Buton hover durumunda yazı rengini beyaza döndür */
        .hemen-ara-btn:hover {
            color: #fff;
        }

        /* Butonun üstündeki metni öne getirmek için */
        .hemen-ara-btn span {
            position: relative;
            z-index: 1;
        }

        /* Loader stil */
        #loader {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #1a0a2b;
            display: flex;
            flex-direction: column;
            /* orb ve yazıyı dikey sırala */
            justify-content: center;
            align-items: center;
            z-index: 9999;
        }

        .orb {
            width: 80px;
            height: 80px;
            border-radius: 50%;
            background: radial-gradient(circle, #ff4d4d, #800080);
            box-shadow: 0 0 20px #ff4d4d, 0 0 40px #800080;
            animation: pulse 1.5s infinite alternate, float 3s infinite ease-in-out;
        }

        .loader-text {
            margin-top: 20px;
            color: #ff80ff;
            font-size: 1.2rem;
            font-weight: bold;
            text-shadow: 0 0 10px #ff4dff, 0 0 20px #800080;
            animation: blink 1.5s infinite;
            text-align: center;
        }

        /* Yazının hafif yanıp sönmesi */
        @keyframes blink {

            0%,
            50%,
            100% {
                opacity: 1;
            }

            25%,
            75% {
                opacity: 0.5;
            }
        }

        /* Orb animasyonları */
        @keyframes pulse {
            0% {
                transform: scale(1);
                opacity: 0.8;
            }

            100% {
                transform: scale(1.3);
                opacity: 1;
            }
        }

        @keyframes float {
            0% {
                transform: translateY(0);
            }

            50% {
                transform: translateY(-15px);
            }

            100% {
                transform: translateY(0);
            }
        }

        /* İçerik açılma animasyonu */
        #content {
            opacity: 0;
            transform: translateY(20px);
            transition: opacity 1s ease, transform 1s ease;
        }

        #content.visible {
            opacity: 1;
            transform: translateY(0);
        }

        .gizlilik-cerez {
            background-color: #fff8e1;
            border: 1px solid #b8860b;
            padding: 20px;
            max-width: 1200px;
            margin: 40px auto;
            font-family: Arial, sans-serif;
            color: #333;
            border-radius: 8px;
            box-shadow: 0 0 10px rgba(184, 134, 11, 0.3);
        }

        .gizlilik-cerez h2 {
            color: #b8860b;
            margin-bottom: 10px;
        }

        .gizlilik-cerez p {
            line-height: 1.6;
        }

        .gizlilik-cerez a {
            color: #b8860b;
            text-decoration: none;
        }

        .gizlilik-cerez a:hover {
            text-decoration: underline;
        }

        ::selection {
            background: purple;
            /* Mavi ton */
            color: white;
        }