/* --- TAKSİ TEMASI CSS --- */
        :root {
            --taxi-yellow: #FFC107; /* Taksi Sarısı */
            --taxi-dark: #212121;   /* Koyu Gri/Siyah */
            --text-color: #333;
            --white: #ffffff;
            --whatsapp-green: #25D366;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif; }

        body { background-color: #f9f9f9; color: var(--text-color); padding-bottom: 80px; /* Mobil bar için boşluk */ }

        /* HEADER & NAV */
        header { background-color: var(--taxi-dark); padding: 15px 0; position: sticky; top: 0; z-index: 1000; }
        .container { max-width: 1100px; margin: 0 auto; padding: 0 20px; }
        .nav-wrapper { display: flex; justify-content: space-between; align-items: center; }
        .logo { color: var(--taxi-yellow); font-size: 24px; font-weight: bold; text-decoration: none; text-transform: uppercase; }
        .phone-display { color: var(--white); font-weight: bold; font-size: 18px; }

        /* HERO SECTION (H1 ALANI) */
        .hero {
            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://images.unsplash.com/photo-1549317661-bd32c8ce0db2?auto=format&fit=crop&w=1920&q=80');
            background-size: cover;
            background-position: center;
            color: var(--white);
            text-align: center;
            padding: 100px 20px;
        }

        /* H1 SEO ve Görünüm Ayarı */
        h1 { font-size: 2.5rem; margin-bottom: 15px; color: var(--taxi-yellow); text-shadow: 2px 2px 4px #000; }
        .hero p { font-size: 1.2rem; max-width: 800px; margin: 0 auto 30px auto; line-height: 1.6; }

        /* CONTENT SECTIONS */
        .section { padding: 50px 0; border-bottom: 1px solid #eee; }
        .section-title { font-size: 2rem; color: var(--taxi-dark); margin-bottom: 10px; border-left: 5px solid var(--taxi-yellow); padding-left: 15px; }
        .section-desc { font-size: 1.1rem; color: #555; margin-bottom: 30px; line-height: 1.6; }

        /* LINK CARD GRID (İÇ LİNKLEME YAPISI) */
        .grid-links { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; }
        .link-card {
            background: var(--white);
            padding: 20px;
            border-radius: 8px;
            box-shadow: 0 2px 5px rgba(0,0,0,0.1);
            border-top: 4px solid var(--taxi-yellow);
            transition: transform 0.2s;
            text-align: center;
        }
        .link-card:hover { transform: translateY(-5px); }
        .link-card h3 { margin-bottom: 10px; font-size: 1.3rem; }
        .link-card p { font-size: 0.9rem; color: #666; margin-bottom: 15px; }
        .link-card a {
            display: inline-block;
            text-decoration: none;
            color: var(--taxi-dark);
            font-weight: bold;
            background: var(--taxi-yellow);
            padding: 8px 15px;
            border-radius: 4px;
        }

        /* MOBILE STICKY BAR (ALT SABİT MENÜ) */
        .sticky-footer {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: var(--white);
            display: flex;
            box-shadow: 0 -2px 10px rgba(0,0,0,0.2);
            z-index: 9999;
            height: 60px;
        }
        .sticky-btn {
            flex: 1;
            display: flex;
            justify-content: center;
            align-items: center;
            text-decoration: none;
            font-weight: bold;
            font-size: 1.1rem;
            color: var(--white);
        }
        .btn-call { background-color: var(--taxi-dark); }
        .btn-whatsapp { background-color: var(--whatsapp-green); }

        /* RESPONSIVE */
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            .hero { padding: 60px 20px; }
        }