    body { background-color: #f8fafc; }

    /* Devasa Taşırmalı (Overlapping) Ana Kart */
    .premium-contact-wrapper {
        margin-top: -100px; /* Hero alanından yukarı taşırır */
        z-index: 1;
        position: relative;
        border-radius: 1.5rem;
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15);
        background: #ffffff;
        overflow: hidden;
    }

    /* Sol Panel - Karanlık Bilgi Alanı */
    .contact-dark-panel {
        background: linear-gradient(145deg, #0f172a 0%, #1e293b 100%);
        color: #ffffff;
        position: relative;
        overflow: hidden;
    }
    
    /* Karanlık panel içine dekoratif yuvarlaklar */
    .contact-dark-panel::before {
        content: '';
        position: absolute;
        top: -15%;
        right: -15%;
        width: 300px;
        height: 300px;
        background: rgba(255, 255, 255, 0.03);
        border-radius: 50%;
    }
    .contact-dark-panel::after {
        content: '';
        position: absolute;
        bottom: -10%;
        left: -10%;
        width: 200px;
        height: 200px;
        background: rgba(13, 110, 253, 0.1);
        border-radius: 50%;
    }

    .dark-icon-box {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(255, 255, 255, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.25rem;
        color: #60a5fa; /* Açık mavi */
        backdrop-filter: blur(5px);
        transition: transform 0.3s ease;
    }
    .info-row:hover .dark-icon-box {
        transform: scale(1.1);
        background: rgba(255, 255, 255, 0.2);
        color: #ffffff;
    }

    /* Sağ Panel - Floating (Yüzen) Form Yapısı */
    .form-floating > .form-control,
    .form-floating > .form-control-plaintext,
    .form-floating > .form-select {
        border-radius: 0.75rem;
        border: 2px solid #e2e8f0;
        background-color: #f8fafc;
        box-shadow: none !important;
        transition: all 0.3s ease;
    }
    .form-floating > .form-control:focus {
        border-color: #0d6efd;
        background-color: #ffffff;
    }
    .form-floating > label {
        color: #64748b;
        font-weight: 500;
        padding-left: 1.25rem;
    }

    /* Harita Konteyneri (Görünmezlik Hatası İçin Kesin Çözüm) */
    .premium-map-container {
        width: 100%;
        height: 450px;
        border-radius: 1.5rem;
        overflow: hidden;
        box-shadow: 0 15px 30px -5px rgba(0,0,0,0.1);
        position: relative;
        background: #e2e8f0; /* Harita yüklenene kadar gri durur */
    }
    /* Google iframe kodlarını zorla tam ekrana yayar */
    .premium-map-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100% !important;
        height: 100% !important;
        border: none !important;
    }