 :root {
            --primary: #404e36;
            --primary-light: #5d6d4f;
            --vizon: #7d7461;
            --bej: #e5d3b3;
            --krem: #fcf8f2;
            --yazi-koyu: #2d2d2d;
            --yazi-gri: #595758;
        }

        body {
            font-family: 'Montserrat', sans-serif;
            background-color: var(--krem);
            color: var(--yazi-koyu);
            overflow-x: hidden;
            scroll-behavior: smooth;
        }

        h1, h2, h3, .serif {
            font-family: 'Playfair Display', serif;
        }

        .logo-text {
            font-family: 'Alex Brush', cursive;
            font-size: 2.4rem;
            color: var(--primary);
        }

        /* Sayfa Geçişleri */
        .page-content {
            display: none;
            opacity: 0;
            transition: opacity 0.5s ease-in-out;
        }
        .page-content.active {
            display: block;
            opacity: 1;
        }

        .nav-link {
            position: relative;
            transition: all 0.3s;
        }
        .nav-link::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s;
        }
        .nav-link:hover::after, .nav-active::after {
            width: 100%;
        }
        .nav-active {
            color: var(--primary) !important;
            font-weight: 700;
        }

        .btn-elegant {
            background-color: var(--primary);
            color: white;
            padding: 1rem 2.5rem;
            border-radius: 50px;
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
            display: inline-block;
        }
        .btn-elegant:hover {
            background-color: var(--primary-light);
            transform: translateY(-5px);
            box-shadow: 0 15px 30px rgba(64, 78, 54, 0.2);
        }

        /* Glassmorphism Elements */
        .glass-card {
            background: rgba(255, 255, 255, 0.7);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255, 255, 255, 0.3);
            border-radius: 2rem;
            transition: all 0.4s ease;
        }
        .glass-card:hover {
            background: rgba(255, 255, 255, 0.9);
            transform: translateY(-10px);
            box-shadow: 0 20px 40px rgba(0,0,0,0.05);
        }

        /* Hero Styling */
        .hero-section {
            height: 95vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(252, 248, 242, 0.8), rgba(252, 248, 242, 0.8)), url('images/ankara-psikolog.jpg');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        .floating-badge {
            animation: float 4s ease-in-out infinite;
        }

        @keyframes float {
            0% { transform: translateY(0px); }
            50% { transform: translateY(-15px); }
            100% { transform: translateY(0px); }
        }

        .whatsapp-float {
            position: fixed;
            bottom: 30px;
            right: 30px;
            background: #25D366;
            color: white;
            width: 65px;
            height: 65px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 30px;
            box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
            z-index: 1000;
            transition: transform 0.3s ease;
        }
        .whatsapp-float:hover {
            transform: scale(1.1) rotate(10deg);
        }

        .custom-shape-divider-bottom {
            position: absolute;
            bottom: 0;
            left: 0;
            width: 100%;
            overflow: hidden;
            line-height: 0;
        }

        .custom-shape-divider-bottom svg {
            position: relative;
            display: block;
            width: calc(100% + 1.3px);
            height: 150px;
        }

        .custom-shape-divider-bottom .shape-fill {
            fill: #fcf8f2;
        }

               .mosaic-bg {
            position: relative;
            background-color: #fcfbf7; /* Yumuşak bir zemin rengi */
            /* CSS ile oluşturulmuş hafif mozaik/grid dokusu */
            background-image: 
                linear-gradient(30deg, #e5d3b3 12%, transparent 12.5%, transparent 87%, #e5d3b3 87.5%, #e5d3b3),
                linear-gradient(150deg, #e5d3b3 12%, transparent 12.5%, transparent 87%, #e5d3b3 87.5%, #e5d3b3),
                linear-gradient(30deg, #e5d3b3 12%, transparent 12.5%, transparent 87%, #e5d3b3 87.5%, #e5d3b3),
                linear-gradient(150deg, #e5d3b3 12%, transparent 12.5%, transparent 87%, #e5d3b3 87.5%, #e5d3b3),
                linear-gradient(60deg, #e5d3b3 25%, transparent 25.5%, transparent 75%, #e5d3b3 75%, #e5d3b3),
                linear-gradient(60deg, #e5d3b3 25%, transparent 25.5%, transparent 75%, #e5d3b3 75%, #e5d3b3);
            background-size: 80px 140px;
            background-position: 0 0, 0 0, 40px 70px, 40px 70px, 0 0, 40px 70px;
            /* Desenin çok baskın olmaması için opaklık ekliyoruz */
        }

        /* Mozaik deseninin üzerine hafif bir katman ekleyerek içeriği okunur kılıyoruz */
        .mosaic-bg::before {
            content: "";
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(252, 251, 247, 0.92); /* Mozaik deseninin şiddetini buradan ayarlayabilirsiniz */
            z-index: 0;
        }

                .card-modern {
            background: white;
            padding: 1.4rem;
            border-radius: 1.5rem;
            box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.05);
            transition: all 0.3s ease;
            border: 1px solid rgba(229, 211, 179, 0.2);
            position: relative;
            z-index: 1;
        }

        .card-modern:hover {
            transform: translateY(-5px);
            box-shadow: 0 20px 40px -15px rgba(64, 78, 54, 0.1);
        }
                .content-wrapper {
            position: relative;
            z-index: 10;
        }
        .borderalt {
            border-bottom: 2px dashed var(--primary-light);
        }
        .instagram {
            background: #833ab4;
            background: linear-gradient(
            to right,
             #833ab4,#fd1d1d,#fcb045
            );
        }
        .whatsapp {
            background: #25D366;
            background: linear-gradient(
            to right,
             #25D366,#25D366,#25D366
            );
        }
        .linkedin {
            background: #0072b1;
            background: linear-gradient(
            to right,
             #0072b1,#0072b1,#0072b1
            );
        }

        .liste {
            list-style: circle;
        }

        .blog-content p { margin-bottom: 1.5rem; line-height: 1.8; font-size: 1rem; color: #4b5563; }
        .blog-content h2 { font-family: 'Playfair Display', serif; font-size: 1.2rem; margin-top: 2.5rem; margin-bottom: 1.25rem; color: #1f2937; }
        .blog-content blockquote { font-family: 'Playfair Display', serif; font-style: italic; border-left: 4px solid #404e36; padding-left: 1.5rem; margin: 2rem 0; font-size: 1.5rem; color: #404e36; }
        .blog-content ul { margin-bottom: 1.5rem; list-style: none; padding-left: 0;}
        .blog-content li { position: relative; padding-left: 1.5rem; margin-bottom: 0.75rem; color: #4b5563; font-size: 1rem; }
        .blog-content li::before { content: "✨"; color: #404e36; font-weight: bold; position: absolute; left: 0; }