: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);
    background-image: url("data:image/svg+xml,%3Csvg width='240' height='240' viewBox='0 0 240 240' xmlns='http://www.w3.org/2000/svg'%3E %3Cg stroke='%23d4af37' fill='none' stroke-width='1.5' opacity='0.12'%3E %3C!-- Türk Kahvesi Cezvesi --%3E %3Cpath d='M30 45 L50 45 L45 65 L35 65 Z M50 48 L65 42 M32 65 H48'/%3E %3C!-- Taş Fırın Pizza Dilimi --%3E %3Cpath d='M125 25 L165 25 L145 65 Z M122 23 Q145 17 168 23'/%3E %3Ccircle cx='140' cy='35' r='3' fill='%23d4af37'/%3E %3Ccircle cx='150' cy='45' r='3' fill='%23d4af37'/%3E %3C!-- Matematiksel Gerçek Selçuklu 8 Köşeli Yıldızı --%3E %3Crect x='170' y='25' width='30' height='30'/%3E %3Crect x='170' y='25' width='30' height='30' transform='rotate(45 185 40)'/%3E %3C!-- Türk Bayrağı İnce Ay-Yıldız Motifi --%3E %3Cpath d='M30 170 A14 14 0 1 0 54 192 A18 18 0 1 1 30 170'/%3E %3Cpolygon points='60,175 62,181 67,181 63,184 65,189 60,186 55,189 57,184 53,181 58,181' fill='%23d4af37'/%3E %3C!-- Çini Baklava Motifleri --%3E %3Cpath d='M150 160 L165 145 L180 160 L165 175 Z M165 145 V175 M150 160 H180'/%3E %3C/g%3E %3C/svg%3E");
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    animation: bgScroll 60s linear infinite;
}

@keyframes bgScroll {
    from { background-position: 0 0; }
    to { background-position: 1000px 1000px; }
}

/* Ü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;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(15, 23, 42, 0.3) 0%, rgba(15, 23, 42, 0.8) 100%);
}

.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);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.lang-selector button:hover,
.lang-selector button.active {
    background: #fff;
    color: var(--text-main);
}

/* Ana Konteyner */
.dashboard {
    max-width: 1200px;
    margin: -60px auto 40px;
    padding: 0 20px;
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 24px;
    position: relative;
    z-index: 5;
}

/* Kart Genel Stil (Gerçek Selçuklu 8 Köşeli Yıldız Çini Motifi) */
.card {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.25);
    margin-bottom: 24px;
    position: relative;
    overflow: hidden;
}

.card::before, .card::after {
    content: '';
    position: absolute;
    width: 44px;
    height: 44px;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cg stroke='%23d4af37' fill='none' stroke-width='2' opacity='0.25'%3E%3Crect x='30' y='30' width='40' height='40'/%3E%3Crect x='30' y='30' width='40' height='40' transform='rotate(45 50 50)'/%3E%3Ccircle cx='50' cy='50' r='8'/%3E%3C/g%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    pointer-events: none;
}
.card::before {
    top: 8px;
    left: 8px;
}
.card::after {
    bottom: 8px;
    right: 8px;
    transform: rotate(180deg);
}

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

.badges {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.badge {
    background: rgba(212, 175, 55, 0.1);
    color: var(--primary-dark);
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.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: 220px;
    height: 170px;
    object-fit: contain;
    margin-bottom: 2px;
    animation: softFloat 4s ease-in-out infinite;
}

@keyframes softFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.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: 16px;
    justify-content: center;
    margin-top: 24px;
    flex-wrap: wrap;
}

.social-btn {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--bg-color);
    color: var(--primary-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--border-color);
}

.social-btn:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.social-btn.insta:hover { color: #fff; background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); border-color: transparent; }
.social-btn.wp:hover { color: #fff; background: #25D366; border-color: transparent; }
.social-btn.tel:hover { color: #fff; background: var(--primary-dark); border-color: transparent; }
.social-btn.tg:hover { color: #fff; background: #0088cc; border-color: transparent; }
.social-btn.tk:hover { color: #fff; background: #000; border-color: transparent; }

/* 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: linear-gradient(135deg, #d97706 0%, #b45309 100%);
    color: #ffffff !important;
    font-weight: 800;
    box-shadow: 0 4px 14px rgba(217, 119, 6, 0.35);
    border: none;
}
.btn-primary:hover {
    background: linear-gradient(135deg, #b45309 0%, #92400e 100%);
    box-shadow: 0 6px 18px rgba(180, 83, 9, 0.45);
    transform: translateY(-2px);
}

.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 & Tablet Responsive Kuralları (Strict Mobile Fixes) */
html, body {
    overflow-x: hidden !important;
    width: 100% !important;
    max-width: 100vw !important;
    position: relative;
}

*, *::before, *::after {
    box-sizing: border-box !important;
}

img, iframe, video, object, embed, table {
    max-width: 100% !important;
}

.dashboard > *, aside.left-col, main.main-content, .card, section {
    min-width: 0;
}

@media (max-width: 992px) {
    .dashboard {
        grid-template-columns: 1fr !important;
        margin-top: -40px !important;
        padding: 0 16px !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    .top-banner {
        height: 200px !important;
    }

    .lang-selector {
        top: 12px !important;
        right: 12px !important;
        gap: 4px !important;
        max-width: calc(100% - 24px) !important;
        flex-wrap: wrap !important;
        justify-content: flex-end !important;
    }

    .lang-selector button {
        padding: 4px 8px !important;
        font-size: 0.75rem !important;
    }

    .gallery-grid {
        grid-template-columns: repeat(2, 1fr) !important;
    }

    .gallery-grid img:last-child {
        display: none !important;
    }
}

@media (max-width: 500px) {
    .dashboard {
        padding: 0 12px !important;
        margin-top: -30px !important;
    }

    .card {
        padding: 16px 14px !important;
        border-radius: 14px !important;
        margin-bottom: 16px !important;
    }

    .gallery-grid {
        grid-template-columns: 1fr !important;
    }

    .gallery-grid img:last-child {
        display: block !important; 
    }

    .gallery-grid img { height: 180px !important; }
    
    .reviews-header {
        flex-direction: column !important;
        gap: 12px !important;
    }

    .rating-badge {
        text-align: left !important;
    }

    .map-buttons {
        flex-direction: column !important;
        gap: 8px !important;
    }

    .map-buttons .map-link {
        width: 100% !important;
        text-align: center !important;
        justify-content: center !important;
    }
}

/* 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: 92%;
    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);
}

