* { margin: 0; padding: 0; box-sizing: border-box; font-family: "Fredoka"; }
        body { background-color: #0d0d0d; color: #fff; }

        /* NAVBAR */
        nav {
            display: flex; justify-content: space-between; align-items: center;
            padding: 20px 50px; background-color: #0d0d0d;
            border-bottom: 1px solid #222; position: sticky; top: 0; z-index: 100;
        }
           .logo {
            font-size: 24px;
            font-weight: 700;
            letter-spacing: 1px;
            position: absolute;
            left: 50%;
            transform: translateX(-50%); /* Logoyu tam ortalar */
        }
        .nav-links a { color: #ccc; text-decoration: none; margin: 0 15px; transition: 0.3s; }
        .nav-links a:hover, .nav-links a.active { color: #ccff00; } /* Neon Yeşil */

        /* İLETİŞİM DÜZENİ */
        .contact-container {
            max-width: 1100px;
            margin: 50px auto;
            padding: 20px;
            display: grid;
            grid-template-columns: 1fr 1fr; /* İkiye böl: Sol Bilgi, Sağ Form */
            gap: 50px;
        }

        /* SOL TARAF: BİLGİ KARTLARI */
        .contact-info h2 { font-size: 2.5rem; margin-bottom: 20px; }
        .contact-info p { color: #aaa; margin-bottom: 40px; }

        .info-box {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

        .icon {
            width: 50px; height: 50px;
            background-color: #1a1a1a;
            border: 1px solid #333;
            border-radius: 50%;
            display: flex; align-items: center; justify-content: center;
            color: #ccff00;
            font-size: 1.2rem;
            margin-right: 15px;
            transition: 0.3s;
        }
         .cart-icon {
            font-size: 18px;
            cursor: pointer;
        }

        .info-box:hover .icon {
            background-color: #ccff00;
            color: #000;
            box-shadow: 0 0 15px rgba(204, 255, 0, 0.4);
        }

        .details h4 { font-size: 1.1rem; margin-bottom: 5px; }
        .details span { color: #888; font-size: 0.9rem; }

        /* SAĞ TARAF: FORM */
        .contact-form {
            background-color: #1a1a1a;
            padding: 40px;
            border-radius: 20px;
            border: 1px solid #333;
        }

        .form-group { margin-bottom: 20px; }
        
        label { display: block; margin-bottom: 8px; color: #ccc; font-size: 0.9rem; }
        
        input, textarea {
            width: 100%;
            padding: 12px;
            background-color: #0d0d0d;
            border: 1px solid #333;
            border-radius: 8px;
            color: #fff;
            outline: none;
            transition: 0.3s;
        }

        /* Tıklayınca Yeşil Çerçeve */
        input:focus, textarea:focus {
            border-color: #ccff00;
            box-shadow: 0 0 10px rgba(204, 255, 0, 0.1);
        }

        textarea { height: 120px; resize: none; }

        .submit-btn {
            width: 100%;
            padding: 15px;
            background-color: #ccff00;
            color: #000;
            border: none;
            border-radius: 8px;
            font-weight: bold;
            font-size: 1rem;
            cursor: pointer;
            transition: 0.3s;
        }

        .submit-btn:hover {
            background-color: #b3e600;
            transform: translateY(-3px);
        }

        /* HARİTA ALANI */
        .map-container {
            margin-top: 50px;
            width: 100%;
            height: 300px;
            border-radius: 20px;
            overflow: hidden;
            border: 1px solid #333;
            filter: grayscale(100%) invert(90%); /* Haritayı siyah-beyaz yapar */
        }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            .contact-container { grid-template-columns: 1fr; }
        }