
       
        *,
        *:hover,
        *:active,
        *:focus {
            cursor: url('dosyalar/mouse.png'), auto !important;
        }

        body {
            margin: 0;
            font-family: Arial, Helvetica, sans-serif;
            background: #fff;
            cursor: url('dosyalar/mouse.png'), auto;
        }

        .header {
            display: flex;
            flex-direction: column;
            align-items: center;
            margin-top: 40px;
            margin-bottom: 60px;
            position: relative;
        }
        .title {
            text-align: center;
            font-size: 6rem;
            font-weight: bold;
            opacity: 0;
            transform: scale(0.5);
            animation: title-appear 1.2s cubic-bezier(0.23, 1, 0.32, 1) forwards;
            cursor: url('dosyalar/mouse.png'), auto;
        }
        @keyframes title-appear {
            0% { opacity: 0; transform: scale(0.5); }
            70% { opacity: 1; transform: scale(1.1); }
            100% { opacity: 1; transform: scale(1); }
        }

        .instagram {
            position: absolute;
            top: 0;
            right: 40px;
            cursor: url('dosyalar/mouse.png'), auto;
        }
        .instagram-icon {
            width: 60px;
            height: 60px;
            border: 3px solid #000;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: #fff;
        }
        .instagram-icon svg { width: 32px; height: 32px; }

        .buttons {
            display: flex;
            justify-content: center;
            gap: 100px;
            margin-top: 60px;
            margin-bottom: 120px;
        }
        .btn {
            background: #f5f5f5;
            border: 3px solid #333;
            border-radius: 12px;
            box-shadow: 5px 7px 0px #333;
            font-size: 2rem;
            padding: 30px 80px;
            cursor: url('dosyalar/mouse.png'), pointer;
            transition: box-shadow 0.2s;
        }
        .btn:hover { box-shadow: 2px 3px 0px #333; }

        .contact {
            position: absolute;
            left: 30px;
            bottom: 30px;
            font-size: 1.3rem;
            color: #000;
        }
        .contact-title { font-family: 'Courier New', Courier, monospace; font-weight: bold; font-size: 1.7rem; }
        .contact-phone, .contact-mail { font-family: 'Courier New', Courier, monospace; font-weight: bold; font-size: 1.1rem; }

        /* Randevu butonu (sağ alt) */
        .appt-btn {
            position: fixed;
            right: 24px;
            bottom: 24px;
            z-index: 999;
            background: #f5f5f5;
            border: 3px solid #333;
            border-radius: 12px;
            box-shadow: 5px 7px 0px #333;
            padding: 14px 20px;
            font-size: 1.1rem;
            cursor: url('dosyalar/mouse.png'), pointer;
        }
        .appt-btn:hover { box-shadow: 2px 3px 0px #333; }

        /* Modal */
        .modal-backdrop {
            display: none;
            position: fixed;
            inset: 0;
            background: rgba(0,0,0,0.4);
            align-items: center;
            justify-content: center;
            z-index: 1000;
        }
        .modal {
            background: #fff;
            border: 3px solid #333;
            border-radius: 12px;
            box-shadow: 6px 8px 0 rgba(0,0,0,0.6);
            width: 92%;
            max-width: 520px;
            padding: 20px;
        }
        .modal h2 { margin: 0 0 12px 0; text-align: center; font-size: 1.6rem; }
        .form-row { display: flex; gap: 10px; margin-bottom: 10px; }
        .form-row .half { flex: 1; }
        input[type="text"], input[type="email"], input[type="date"], input[type="time"], textarea {
            width: 100%;
            padding: 8px;
            border: 2px solid #222;
            border-radius: 8px;
            font-size: 0.95rem;
            box-sizing: border-box;
        }
        textarea { resize: vertical; min-height: 80px; }
        .modal-actions { display:flex; gap:10px; justify-content:center; margin-top:12px; }
        .modal .submit, .modal .cancel {
            background: #f5f5f5;
            border: 3px solid #333;
            border-radius: 10px;
            padding: 8px 16px;
            cursor: url('dosyalar/mouse.png'), pointer;
            font-weight: bold;
        }
        .success-msg { text-align:center; color: green; margin-top:8px; font-weight:bold; display:none; }

        @media (max-width:900px) {
            .title { font-size: 3rem; }
            .buttons { gap: 30px; }
            .btn { padding: 20px 30px; font-size: 1.2rem; }
            .instagram { right: 10px; }
            .appt-btn { right: 12px; bottom: 12px; padding: 10px 14px; font-size: 1rem; }
        }
