/* =================================================================
   PRD TEST CONTACT PREMIUM V4 - APPLE STYLE DARK & LIGHT
   ================================================================= */

:root {
    --prd-navy: #0f172a;
    --prd-blue: #2563eb;
    --prd-cyan: #0ea5e9;
    --prd-white: #ffffff;
    --prd-slate-50: #f8fafc;
    --prd-slate-200: #e2e8f0;
    --prd-slate-400: #94a3b8;
    --transition-smooth: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.prd-contact-universe {
    background-color: var(--prd-white);
    color: var(--prd-navy);
}

/* --- HERO PREMIUM --- */
.contact-hero-premium {
    position: relative;
    height: auto; /* İçeriğe göre esnesin */
    min-height: 70vh; /* En az ekranın %70'i */
    background: var(--prd-navy);
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
    color: white;
    /* Header (110px) + TopBar (44px) + Boşluk */
    padding-top: 180px;
    padding-bottom: 100px;
}

.animated-bg-gradient {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 30%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 80% 70%, rgba(14, 165, 233, 0.2) 0%, transparent 50%);
    filter: blur(80px);
    z-index: 1;
}

.hero-noise {
    position: absolute;
    inset: 0;
    background-image: url('https://www.transparenttextures.com/patterns/carbon-fibre.png');
    opacity: 0.05;
    z-index: 2;
}

.hero-content { position: relative; z-index: 10; }

.hero-badge-lux {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255,255,255,0.05);
    padding: 10px 25px;
    border-radius: 50px;
    border: 1px solid rgba(255,255,255,0.1);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    margin-bottom: 30px;
    backdrop-filter: blur(10px);
}

.pulse-dot {
    width: 8px; height: 8px;
    background: #10b981;
    border-radius: 50%;
    box-shadow: 0 0 10px #10b981;
    animation: pulse 2s infinite;
}

@keyframes pulse { 0% { transform: scale(0.9); opacity: 1; } 70% { transform: scale(2); opacity: 0; } 100% { transform: scale(0.9); opacity: 0; } }

.hero-title { font-size: 4.5rem; font-weight: 900; line-height: 1; letter-spacing: -3px; margin-bottom: 25px; }

.text-glow {
    color: #fff;
    text-shadow: 0 0 30px rgba(37, 99, 235, 0.6);
    background: linear-gradient(to right, #fff, var(--prd-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle { font-size: 1.3rem; color: var(--prd-slate-400); max-width: 700px; margin: 0 auto; font-weight: 300; }

/* --- GRID & CARDS --- */
.contact-main-grid { margin-top: -100px; padding-bottom: 120px; position: relative; z-index: 20; }
.master-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 40px; }

.contact-card-lux {
    background: white;
    padding: 35px;
    border-radius: 24px;
    border: 1px solid var(--prd-slate-200);
    display: flex;
    gap: 25px;
    margin-bottom: 20px;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 40px -15px rgba(0,0,0,0.05);
}

.contact-card-lux:hover { transform: translateY(-10px) scale(1.02); border-color: var(--prd-blue); box-shadow: 0 25px 50px -12px rgba(37, 99, 235, 0.15); }

.card-icon-wrap {
    width: 65px; height: 65px;
    background: var(--prd-slate-50);
    border-radius: 18px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.8rem; color: var(--prd-blue);
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.contact-card-lux:hover .card-icon-wrap { background: var(--prd-blue); color: white; transform: rotate(-10deg); }

.card-data h3 { font-size: 1.2rem; font-weight: 800; margin-bottom: 8px; color: var(--prd-navy); }
.card-data p { font-size: 1.05rem; line-height: 1.5; color: var(--text-body); }
.card-data a { text-decoration: none; color: inherit; font-weight: 600; }
.big-link { font-size: 1.4rem; color: var(--prd-blue) !important; }
.availability { display: block; font-size: 0.8rem; color: var(--prd-slate-400); margin-top: 10px; font-weight: 700; text-transform: uppercase; }

.whatsapp-premium { background: linear-gradient(135deg, #fff 0%, #f0fff4 100%); border-left: 6px solid #25d366; }

/* --- FORM GLASS --- */
.form-glass {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    padding: 60px;
    border-radius: 32px;
    border: 1px solid white;
    box-shadow: 0 50px 100px -20px rgba(15, 23, 42, 0.15);
}

.form-header h2 { font-size: 2.2rem; font-weight: 900; margin-bottom: 15px; letter-spacing: -1px; }
.form-header p { color: var(--prd-slate-400); margin-bottom: 45px; }

/* Form Bakım Uyarısı */
.form-maintenance-notice {
    background: rgba(254, 242, 242, 0.95);
    border: 1px solid #fecaca;
    border-left: 5px solid #ef4444;
    color: #991b1b;
    padding: 20px;
    border-radius: 12px;
    margin-bottom: 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    font-size: 0.95rem;
    line-height: 1.5;
    box-shadow: 0 10px 30px -10px rgba(239, 68, 68, 0.15);
}
.form-maintenance-notice i { font-size: 1.8rem; color: #ef4444; }

/* Pasif Form Stilleri */
.prd-smart-form.disabled-mode {
    opacity: 0.6;
    pointer-events: none; /* Tıklamayı engelle */
    filter: grayscale(0.8);
    user-select: none;
}

.prd-smart-form .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }

.floating-group { position: relative; margin-bottom: 35px; }
.floating-group i { position: absolute; left: 0; top: 15px; color: var(--prd-blue); font-size: 1.2rem; }

.floating-group input, .floating-group select, .floating-group textarea {
    width: 100%;
    padding: 15px 0 15px 40px;
    background: transparent;
    border: none;
    border-bottom: 2px solid var(--prd-slate-200);
    font-size: 1.1rem;
    transition: var(--transition-smooth);
    color: var(--prd-navy);
}

.floating-group label {
    position: absolute; left: 40px; top: 15px;
    color: var(--prd-slate-400);
    pointer-events: none;
    transition: var(--transition-smooth);
}

.floating-group input:focus ~ label,
.floating-group input:not(:placeholder-shown) ~ label,
.floating-group textarea:focus ~ label,
.floating-group textarea:not(:placeholder-shown) ~ label {
    top: -15px; left: 0; font-size: 0.85rem; color: var(--prd-blue); font-weight: 700;
}

.floating-group input:focus, .floating-group textarea:focus { border-bottom-color: var(--prd-blue); outline: none; }

/* Pasif Inputlar */
.prd-smart-form.disabled-mode input, 
.prd-smart-form.disabled-mode select, 
.prd-smart-form.disabled-mode textarea {
    background-color: rgba(241, 245, 249, 0.5);
    border-bottom-style: dashed;
}

.btn-prd-submit {
    width: 100%;
    padding: 25px;
    background: var(--prd-blue);
    border: none;
    border-radius: 18px;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
    overflow: hidden;
}

.prd-smart-form.disabled-mode .btn-prd-submit {
    background-color: var(--prd-slate-400);
    cursor: not-allowed;
}

.btn-text { font-size: 1.2rem; font-weight: 800; letter-spacing: 2px; }
.btn-prd-submit:hover { background: var(--prd-navy); transform: scale(1.02); }
.btn-prd-submit:hover .btn-icon { transform: translateX(10px); }

/* --- MAP --- */
.map-section-premium { position: relative; border-top: 1px solid var(--prd-slate-200); }
.map-label-lux {
    position: absolute; top: -25px; left: 50%; transform: translateX(-50%);
    background: var(--prd-navy); color: white; padding: 12px 40px;
    border-radius: 50px; font-weight: 800; z-index: 30; box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}
.map-frame { filter: grayscale(1) contrast(1.2) opacity(0.8); transition: var(--transition-smooth); }
.map-frame:hover { filter: grayscale(0) opacity(1); }

/* RESPONSIVE */
@media (max-width: 1100px) { 
    .master-grid { grid-template-columns: 1fr; } 
    .hero-title { font-size: 3rem; } 
}

@media (max-width: 992px) {
    .contact-hero-premium { padding-top: 130px; } /* Mobilde header daha kısa */
}