:root {
    --primary: #ffcc00;
    --primary-dark: #e6b800;
    --bg-color: #fffdf5;
    --card-bg: #ffffff;
    --text-main: #1f2937;
    --text-muted: #6b7280;
    
    --primary-hover: #1e293b;
    --secondary: #f8fafc;
    --secondary-hover: #f1f5f9;
    
    --border-color: #e5e7eb;
    --success: #10b981;
    --google-blue: #4285F4;
    --google-yellow: #FBBC05;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Plus Jakarta Sans', sans-serif;
    background-color: var(--bg-color);
    color: var(--text-main);
    min-height: 100vh;
}

/* Üst Dekoratif Banner */
.top-banner {
    width: 100%;
    height: 250px;
    position: relative;
    overflow: hidden;
}

.banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.banner-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1), var(--bg-color));
}

/* Ana Grid Yapısı (Dashboard Tipi) */
.dashboard {
    max-width: 1100px;
    margin: -100px auto 40px auto;
    padding: 0 20px;
    position: relative;
    z-index: 10;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 24px;
    align-items: start;
}

/* Kart Stilleri */
.card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(255,255,255,0.5);
    margin-bottom: 24px;
}

.card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 16px;
}

.m-0 { margin: 0 !important; }
.mt-3 { margin-top: 16px !important; }

/* SOL KOLON */
.left-col {
    display: flex;
    flex-direction: column;
}

.profile-card {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.profile-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: contain;
    border: 4px solid var(--card-bg);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    margin-bottom: 16px;
    background: #fff;
    padding: 12px;
}

.profile-name {
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 4px;
}

.profile-category {
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 16px;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #ecfdf5;
    color: #059669;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 20px;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    70% { box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
    100% { box-shadow: 0 0 0 0 rgba(16, 185, 129, 0); }
}

.social-row {
    display: flex;
    gap: 12px;
    justify-content: center;
    width: 100%;
}

.social-btn {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 12px;
    background: var(--bg-color);
    border-radius: 12px;
    color: var(--text-main);
    font-size: 1.4rem;
    text-decoration: none;
    transition: all 0.2s;
}

.social-btn:hover {
    background: var(--border-color);
    transform: translateY(-2px);
}

/* Butonlar */
.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 14px;
    border-radius: 14px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: all 0.2s;
    margin-bottom: 12px;
}
.btn:last-child { margin-bottom: 0; }

.btn i { font-size: 1.3rem; }

.btn-primary {
    background: var(--primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--primary-hover);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.2);
}

.btn-secondary {
    background: var(--bg-color);
    color: var(--text-main);
    border: 1px solid var(--border-color);
}
.btn-secondary:hover {
    background: var(--border-color);
}

.btn-outline {
    background: transparent;
    color: var(--google-blue);
    border: 1px solid var(--border-color);
    font-size: 0.95rem;
}
.btn-outline:hover {
    background: var(--secondary-hover);
}

/* Lokasyon */
.address-text {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
    margin-bottom: 16px;
}

.map-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.map-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 12px 6px;
    background: var(--bg-color);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.2s;
}
.map-link i { font-size: 1.4rem; color: var(--primary); }
.map-link:hover { background: var(--border-color); }

/* SAĞ KOLON */
.right-col {
    display: flex;
    flex-direction: column;
}

/* Galeri (3'lü resim veya tekli büyük) */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.gallery-grid img {
    width: 100%;
    height: 140px;
    object-fit: cover;
    border-radius: 12px;
    transition: transform 0.3s;
}
.gallery-grid img:hover {
    transform: scale(1.03);
}

/* Google Yorumlar Alanı */
.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--bg-color);
    margin-bottom: 16px;
}

.reviews-title-area {
    display: flex;
    align-items: center;
    gap: 8px;
}

.google-icon {
    color: var(--google-blue);
    font-size: 1.5rem;
}

.rating-badge {
    text-align: right;
}
.rating-badge .score {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
    line-height: 1;
}
.rating-badge .stars {
    color: var(--google-yellow);
    font-size: 1rem;
    margin: 4px 0;
}
.rating-badge .count {
    font-size: 0.8rem;
    color: var(--text-muted);
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-item {
    background: var(--bg-color);
    padding: 16px;
    border-radius: 16px;
}

.reviewer-info {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
}

.reviewer-avatar {
    width: 40px;
    height: 40px;
    background: #d1d5db;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #fff;
    font-size: 1.1rem;
}
.review-item:nth-child(1) .reviewer-avatar { background: #f87171; }
.review-item:nth-child(2) .reviewer-avatar { background: #60a5fa; }

.reviewer-name {
    font-weight: 700;
    font-size: 0.95rem;
}

.review-stars {
    color: var(--google-yellow);
    font-size: 0.8rem;
}

.review-text {
    font-size: 0.95rem;
    color: var(--text-main);
    line-height: 1.5;
}

/* Footer */
footer {
    text-align: center;
    padding: 20px;
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Mobil Uyum (Responsive) */
@media (max-width: 900px) {
    .dashboard {
        grid-template-columns: 1fr;
        margin-top: -50px;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid img:last-child {
        display: none; /* Mobilde 3. resmi gizle ki simetrik dursun */
    }
}

@media (max-width: 480px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    .gallery-grid img:last-child {
        display: block; 
    }
    .gallery-grid img { height: 180px; }
    
    .reviews-header {
        flex-direction: column;
        gap: 12px;
    }
    .rating-badge {
        text-align: left;
    }
}

/* Modals */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0,0,0,0.5);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-content {
    background: var(--card-bg);
    padding: 24px;
    border-radius: 16px;
    width: 90%;
    max-width: 500px;
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.close-modal {
    position: absolute;
    top: 16px; right: 16px;
    font-size: 24px;
    cursor: pointer;
    color: var(--text-muted);
}

.form-group {
    margin-bottom: 16px;
}
.form-row {
    display: flex; gap: 16px;
}
.form-row .form-group {
    flex: 1;
}

label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    font-size: 0.9rem;
}

input, textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-family: inherit;
    background: #f9f9f9;
}
input:focus, textarea:focus {
    outline: 2px solid var(--primary);
    background: #fff;
}

.form-result {
    margin-top: 12px;
    font-weight: 600;
    text-align: center;
}

/* Language Selector */
.lang-selector {
    position: absolute;
    top: 20px;
    right: 20px;
    display: flex;
    gap: 8px;
    z-index: 10;
}
.lang-selector button {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.4);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    cursor: pointer;
    font-weight: 600;
    backdrop-filter: blur(4px);
    transition: all 0.3s ease;
}
.lang-selector button:hover, .lang-selector button.active {
    background: #fff;
    color: var(--text-main);
}

/* Reviews Slider */
.reviews-slider {
    display: flex;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 12px;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
    scrollbar-color: var(--primary) transparent;
}
.reviews-slider::-webkit-scrollbar { height: 6px; }
.reviews-slider::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.review-card {
    flex: 0 0 85%;
    scroll-snap-align: center;
    background: #fff;
    padding: 16px;
    border-radius: 12px;
    border-left: 4px solid var(--primary);
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    text-decoration: none;
    color: inherit;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.review-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

