/* HamamSpaAdvisor - Premium Ana Site Stilleri */

:root {
    --navy: #1a2744;
    --navy-light: #2a3a5c;
    --navy-dark: #0f1829;
    --gold: #c9a84c;
    --gold-light: #dfc06e;
    --gold-dark: #a88a3a;
    --cream: #f8f5f0;
    --cream-dark: #ede8df;
    --white: #ffffff;
    --text: #2c3345;
    --text-light: #6b7280;
    --text-muted: #9ca3af;
    --border: #e5e0d8;
    --shadow: 0 4px 24px rgba(26, 39, 68, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 39, 68, 0.12);
    --radius: 12px;
    --radius-sm: 8px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
}

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

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

a { color: var(--navy); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--gold); }

img { max-width: 100%; height: auto; display: block; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* ===== NAVBAR ===== */
.navbar-main {
    background: var(--white);
    border-bottom: 1px solid var(--border);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 0;
}

.navbar-main .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar-brand {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    display: flex;
    align-items: center;
    gap: 8px;
}

.navbar-brand span { color: var(--gold); }
.brand-icon { color: var(--gold); font-size: 1.2rem; }

.navbar-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.navbar-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--navy);
    margin: 5px 0;
    transition: var(--transition);
}

.navbar-menu {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 28px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: 0.01em;
}

.nav-links a:hover { color: var(--gold); }

.nav-actions { display: flex; align-items: center; gap: 12px; }

.btn-nav-outline {
    padding: 8px 20px;
    border: 1.5px solid var(--navy);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--navy);
    background: transparent;
}

.btn-nav-outline:hover { background: var(--navy); color: var(--white); }

.btn-nav-primary {
    padding: 8px 20px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    border: none;
}

.btn-nav-primary:hover { background: var(--navy-light); color: var(--white); }

.nav-icon-link { font-size: 1.1rem; color: var(--text-light); }
.nav-icon-link:hover { color: var(--gold); }

.nav-dropdown { position: relative; }

.nav-user-btn {
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
}

.nav-user-btn:hover { background: var(--cream); }

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    right: 0;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 200px;
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: var(--transition);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    font-size: 0.875rem;
    color: var(--text);
}

.nav-dropdown-menu a:hover { background: var(--cream); color: var(--navy); }
.nav-dropdown-menu hr { border: none; border-top: 1px solid var(--border); margin: 4px 0; }

/* Flash Messages */
.flash-message {
    padding: 12px 0;
    font-size: 0.875rem;
    font-weight: 500;
}

.flash-message .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flash-success { background: #ecfdf5; color: #065f46; }
.flash-error { background: #fef2f2; color: #991b1b; }
.flash-message button { background: none; border: none; cursor: pointer; opacity: 0.6; }

/* ===== HERO ===== */
.hero-section {
    position: relative;
    background: var(--navy-dark);
    padding: 100px 0 80px;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url('https://images.unsplash.com/photo-1540555700478-4be289fbecef?w=1920&h=800&fit=crop') center/cover;
    opacity: 0.15;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(15,24,41,0.95) 0%, rgba(26,39,68,0.85) 100%);
}

.hero-content {
    position: relative;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(201,168,76,0.15);
    border: 1px solid rgba(201,168,76,0.3);
    border-radius: 50px;
    color: var(--gold-light);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 600;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 16px;
}

.hero-content h1 em {
    font-style: italic;
    color: var(--gold);
}

.hero-content > p {
    color: rgba(255,255,255,0.7);
    font-size: 1.05rem;
    margin-bottom: 36px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-search {
    display: flex;
    gap: 8px;
    background: var(--white);
    padding: 8px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    max-width: 780px;
    margin: 0 auto 40px;
}

.search-input-wrap {
    flex: 2;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 16px;
}

.search-input-wrap i { color: var(--text-muted); }
.search-input-wrap input {
    border: none;
    outline: none;
    width: 100%;
    font-size: 0.95rem;
    font-family: var(--font-body);
    padding: 12px 0;
}

.search-select {
    flex: 1;
    border: none;
    border-left: 1px solid var(--border);
    padding: 12px 16px;
    font-size: 0.875rem;
    font-family: var(--font-body);
    color: var(--text);
    background: transparent;
    cursor: pointer;
    outline: none;
}

.btn-search {
    padding: 12px 32px;
    background: var(--gold);
    color: var(--navy-dark);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-search:hover { background: var(--gold-light); }

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.stat-item { text-align: center; }
.stat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--gold);
    font-weight: 700;
}
.stat-item span { color: rgba(255,255,255,0.6); font-size: 0.85rem; }

/* ===== SECTIONS ===== */
.section-header {
    text-align: center;
    margin-bottom: 48px;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.2rem;
    color: var(--navy);
    font-weight: 600;
    margin-bottom: 8px;
}

.section-header p { color: var(--text-light); font-size: 1rem; }

.section-header .section-link {
    float: right;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gold-dark);
    margin-top: -40px;
}

.section-categories,
.section-featured,
.section-top-rated,
.section-cities {
    padding: 80px 0;
}

.section-featured { background: var(--cream); }
.section-cities { background: var(--cream); }

/* Category Grid */
.category-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 16px;
}

.category-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 16px;
    text-align: center;
    transition: var(--transition);
}

.category-card:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.category-icon {
    width: 56px;
    height: 56px;
    background: var(--cream);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    font-size: 1.3rem;
    color: var(--gold-dark);
    transition: var(--transition);
}

.category-card:hover .category-icon { background: var(--navy); color: var(--gold); }
.category-card h3 { font-size: 0.95rem; font-weight: 600; color: var(--navy); }

/* Business Grid & Cards */
.business-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.business-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.business-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.business-card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.business-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.business-card:hover .business-card-image img { transform: scale(1.05); }

.badge-premium {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
}

.badge-featured {
    position: absolute;
    top: 12px;
    right: 12px;
    background: var(--navy);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 500;
}

.business-card-body { padding: 20px; }

.business-card-meta {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
    flex-wrap: wrap;
}

.category-tag {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.location-tag {
    font-size: 0.75rem;
    color: var(--text-light);
}

.business-card-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 8px;
}

.business-card-title a { color: var(--navy); }
.business-card-title a:hover { color: var(--gold-dark); }

.business-card-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.stars { color: var(--gold); font-size: 0.8rem; }
.stars-md { font-size: 1rem; }
.rating-score { font-weight: 700; font-size: 0.9rem; color: var(--navy); }
.rating-count { font-size: 0.8rem; color: var(--text-muted); }
.price-range { margin-left: auto; color: var(--gold-dark); font-weight: 600; font-size: 0.85rem; }

.business-card-desc {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-bottom: 16px;
    line-height: 1.5;
}

.business-card-actions { display: flex; gap: 8px; }

.btn-primary-sm {
    padding: 8px 16px;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary-sm:hover { background: var(--navy-light); color: var(--white); }

.btn-whatsapp-sm {
    padding: 8px 12px;
    background: #25d366;
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    font-weight: 500;
}

.btn-whatsapp-sm:hover { background: #1fb855; color: var(--white); }

/* City Grid */
.city-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 16px;
}

.city-card {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    height: 220px;
}

.city-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.city-card:hover img { transform: scale(1.08); }

.city-card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(15,24,41,0.85));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    color: var(--white);
}

.city-card-overlay h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
}

.city-card-overlay span { font-size: 0.8rem; opacity: 0.8; }

/* CTA */
.section-cta { padding: 60px 0; }

.cta-box {
    background: var(--navy);
    border-radius: var(--radius);
    padding: 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--white);
    margin-bottom: 8px;
}

.cta-content p { color: rgba(255,255,255,0.7); }

.btn-cta {
    padding: 14px 32px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: var(--radius-sm);
    font-weight: 600;
    white-space: nowrap;
    transition: var(--transition);
}

.btn-cta:hover { background: var(--gold-light); color: var(--navy-dark); }

/* ===== LISTING ===== */
.listing-section { padding: 40px 0 80px; }

.listing-header { margin-bottom: 32px; }
.listing-header h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
}
.listing-header p { color: var(--text-light); }

.listing-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 32px;
}

.listing-filters {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 24px;
    height: fit-content;
    position: sticky;
    top: 88px;
}

.filter-group { margin-bottom: 20px; }
.filter-group h4 {
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    margin-bottom: 8px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    cursor: pointer;
}

.listing-toolbar {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 24px;
}

.sort-form {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
}

.sort-form select {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 6px 12px;
    font-family: var(--font-body);
}

/* ===== DETAIL PAGE ===== */
.detail-hero {
    position: relative;
    height: 360px;
    background-size: cover;
    background-position: center;
}

.detail-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 20%, rgba(15,24,41,0.9));
}

.detail-hero-content {
    position: relative;
    display: flex;
    align-items: flex-end;
    gap: 20px;
    height: 100%;
    padding-bottom: 32px;
}

.detail-logo {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    border: 3px solid var(--white);
    object-fit: cover;
}

.detail-hero-content h1 {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--white);
    font-weight: 600;
}

.detail-badges { display: flex; gap: 8px; margin-bottom: 8px; }
.detail-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
    flex-wrap: wrap;
    margin-top: 8px;
}

.detail-meta .stars { color: var(--gold); }
.detail-meta .rating-score { color: var(--white); font-weight: 700; }
.separator { opacity: 0.4; }

.detail-actions {
    margin-left: auto;
    display: flex;
    gap: 8px;
    align-self: flex-end;
}

.btn-favorite {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--white);
    background: transparent;
    color: var(--white);
    cursor: pointer;
    font-size: 1.1rem;
    transition: var(--transition);
}

.btn-favorite.active,
.btn-favorite:hover { background: #e74c3c; border-color: #e74c3c; }

.btn-whatsapp {
    padding: 10px 20px;
    background: #25d366;
    color: var(--white);
    border-radius: var(--radius-sm);
    font-weight: 500;
    font-size: 0.9rem;
}

.detail-section { padding: 40px 0 80px; }

.detail-layout {
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 32px;
}

.detail-block {
    margin-bottom: 40px;
}

.detail-block h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--navy);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--cream-dark);
}

.detail-campaigns { margin-bottom: 24px; }

.campaign-banner {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
    color: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.campaign-discount {
    background: var(--gold);
    color: var(--navy-dark);
    padding: 4px 12px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    white-space: nowrap;
}

.services-list { display: flex; flex-direction: column; gap: 12px; }

.service-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: var(--cream);
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
}

.service-info h4 { font-size: 1rem; font-weight: 600; color: var(--navy); }
.service-info p { font-size: 0.85rem; color: var(--text-light); margin-top: 4px; }
.service-duration { font-size: 0.8rem; color: var(--text-muted); }
.service-price { font-size: 1.2rem; font-weight: 700; color: var(--gold-dark); white-space: nowrap; }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
}

.gallery-item {
    border-radius: var(--radius-sm);
    overflow: hidden;
    height: 120px;
}

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

/* Reviews */
.rating-breakdown {
    display: flex;
    gap: 40px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius);
    margin-bottom: 24px;
}

.rating-overall { text-align: center; }
.big-score {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--navy);
    display: block;
}

.rating-bars { flex: 1; }
.rating-bar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    font-size: 0.85rem;
}

.rating-bar-item span:first-child { width: 70px; color: var(--text-light); }
.rating-bar { flex: 1; height: 8px; background: var(--border); border-radius: 4px; overflow: hidden; }
.rating-bar-fill { height: 100%; background: var(--gold); border-radius: 4px; }

.review-item {
    padding: 20px 0;
    border-bottom: 1px solid var(--border);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.review-author { display: flex; align-items: center; gap: 12px; }

.review-avatar {
    width: 40px;
    height: 40px;
    background: var(--navy);
    color: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.review-reply {
    background: var(--cream);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    margin-top: 12px;
    border-left: 3px solid var(--gold);
}

.review-form-block {
    margin-top: 32px;
    padding: 24px;
    background: var(--cream);
    border-radius: var(--radius);
}

/* Sidebar */
.sidebar-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    margin-bottom: 20px;
}

.sidebar-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 16px;
}

.info-list { list-style: none; }
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.875rem;
    color: var(--text);
}

.info-list i { color: var(--gold); width: 16px; margin-top: 3px; }

.similar-section { margin-top: 60px; }
.similar-section h2 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 24px;
}

/* ===== FORMS & BUTTONS ===== */
.form-control {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: var(--transition);
    background: var(--white);
}

.form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.form-group { margin-bottom: 16px; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 6px;
    color: var(--text);
}

.btn-primary {
    padding: 12px 28px;
    background: var(--navy);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}

.btn-primary:hover { background: var(--navy-light); color: var(--white); }
.btn-block { width: 100%; }
.btn-outline {
    padding: 10px 20px;
    border: 1.5px solid var(--border);
    background: transparent;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    cursor: pointer;
    color: var(--text);
    display: inline-block;
    text-align: center;
}

.alert { padding: 12px 16px; border-radius: var(--radius-sm); margin-bottom: 16px; font-size: 0.875rem; }
.alert-danger { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; }
.alert-success { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; }
.alert-warning { background: #fffbeb; color: #92400e; border: 1px solid #fde68a; }

/* ===== AUTH ===== */
.auth-section { padding: 60px 0 80px; background: var(--cream); min-height: 70vh; }

.auth-card {
    max-width: 480px;
    margin: 0 auto;
    background: var(--white);
    border-radius: var(--radius);
    padding: 40px;
    box-shadow: var(--shadow);
}

.auth-header { text-align: center; margin-bottom: 32px; }
.auth-header h1 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--navy);
    margin-bottom: 8px;
}
.auth-header p { color: var(--text-light); font-size: 0.9rem; }
.auth-footer { text-align: center; margin-top: 24px; font-size: 0.875rem; color: var(--text-light); }

/* ===== PAGE SECTIONS ===== */
.page-section { padding: 40px 0 80px; }

.page-header-simple { margin-bottom: 32px; }
.page-header-simple h1 {
    font-family: var(--font-display);
    font-size: 2rem;
    color: var(--navy);
}
.page-header-simple p { color: var(--text-light); }

.content-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
}

.content-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--navy);
}

.empty-state {
    text-align: center;
    padding: 60px 20px;
    color: var(--text-light);
}

.empty-state i { font-size: 3rem; color: var(--border); margin-bottom: 16px; }
.empty-state h3 { color: var(--navy); margin-bottom: 8px; }
.empty-state p { margin-bottom: 24px; }

/* Profile */
.profile-sidebar {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px 24px;
    text-align: center;
}

.profile-avatar { font-size: 4rem; color: var(--navy); margin-bottom: 12px; }
.profile-sidebar h3 { font-size: 1.1rem; margin-bottom: 4px; }
.profile-sidebar > p { color: var(--text-light); font-size: 0.85rem; margin-bottom: 24px; }

.profile-menu { list-style: none; text-align: left; }
.profile-menu li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--text);
}
.profile-menu li.active a,
.profile-menu li a:hover { background: var(--cream); color: var(--navy); }

.review-item-mini {
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.business-card-wrapper { position: relative; }
.btn-remove-fav {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 2;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e74c3c;
    font-size: 0.9rem;
}

/* Table */
.table-custom { width: 100%; border-collapse: collapse; }
.table-custom th {
    text-align: left;
    padding: 12px 16px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-light);
    border-bottom: 2px solid var(--border);
}
.table-custom td {
    padding: 14px 16px;
    font-size: 0.875rem;
    border-bottom: 1px solid var(--border);
}

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}
.badge-warning { background: #fef3c7; color: #92400e; }
.badge-success { background: #d1fae5; color: #065f46; }
.badge-danger { background: #fee2e2; color: #991b1b; }
.badge-info { background: #dbeafe; color: #1e40af; }

/* Blog */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.blog-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}

.blog-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.blog-card-image { height: 200px; overflow: hidden; }
.blog-card-image img { width: 100%; height: 100%; object-fit: cover; }

.blog-card-body { padding: 20px; }
.blog-date { font-size: 0.75rem; color: var(--text-muted); }
.blog-card-body h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--navy);
    margin: 8px 0;
}

.blog-card-body p { font-size: 0.85rem; color: var(--text-light); }

.blog-article { max-width: 800px; margin: 0 auto; }
.back-link { display: inline-flex; align-items: center; gap: 6px; font-size: 0.875rem; color: var(--text-light); margin-bottom: 24px; }
.blog-article-image { border-radius: var(--radius); overflow: hidden; margin-bottom: 24px; }
.blog-article h1 { font-family: var(--font-display); font-size: 2.4rem; color: var(--navy); margin-bottom: 12px; }
.blog-meta { color: var(--text-muted); font-size: 0.85rem; margin-bottom: 32px; }
.blog-content { font-size: 1rem; line-height: 1.8; color: var(--text); }
.blog-content p { margin-bottom: 16px; }

/* Contact */
.contact-info-card {
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius);
    padding: 32px;
}

.contact-info-card h3 { font-family: var(--font-display); font-size: 1.4rem; margin-bottom: 24px; }
.contact-info-list { list-style: none; }
.contact-info-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.contact-info-list i { color: var(--gold); font-size: 1.1rem; margin-top: 2px; }
.contact-info-list strong { display: block; font-size: 0.8rem; opacity: 0.7; margin-bottom: 2px; }

/* Pagination */
.pagination-nav { margin-top: 32px; }
.pagination {
    display: flex;
    list-style: none;
    gap: 4px;
    justify-content: center;
}

.pagination li a,
.pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    color: var(--text);
    border: 1px solid var(--border);
}

.pagination li.active span { background: var(--navy); color: var(--white); border-color: var(--navy); }
.pagination li a:hover { background: var(--cream); }

/* ===== FOOTER ===== */
.site-footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.7);
    padding: 60px 0 0;
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 12px;
}
.footer-brand h3 span { color: var(--gold); }
.footer-brand p { font-size: 0.875rem; line-height: 1.6; margin-bottom: 20px; }

.footer-social { display: flex; gap: 12px; }
.footer-social a {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.7);
    font-size: 0.85rem;
    transition: var(--transition);
}
.footer-social a:hover { background: var(--gold); color: var(--navy-dark); border-color: var(--gold); }

.site-footer h5 {
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links { list-style: none; }
.footer-links li { margin-bottom: 8px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-links a:hover { color: var(--gold); }

.footer-contact { list-style: none; }
.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 0.85rem;
}
.footer-contact i { color: var(--gold); width: 16px; }

.footer-bottom {
    margin-top: 40px;
    padding: 20px 0;
    border-top: 1px solid rgba(255,255,255,0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.5); font-size: 0.8rem; }
.footer-bottom-links a:hover { color: var(--gold); }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .business-grid { grid-template-columns: repeat(2, 1fr); }
    .category-grid { grid-template-columns: repeat(3, 1fr); }
    .city-grid { grid-template-columns: repeat(3, 1fr); }
    .detail-layout { grid-template-columns: 1fr; }
    .listing-layout { grid-template-columns: 1fr; }
    .listing-filters { position: static; }
    .blog-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .navbar-toggle { display: block; }

    .navbar-menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: var(--white);
        flex-direction: column;
        padding: 20px;
        border-bottom: 1px solid var(--border);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        gap: 16px;
    }

    .navbar-menu.active { transform: translateY(0); opacity: 1; }
    .nav-links { flex-direction: column; gap: 12px; }
    .nav-actions { flex-direction: column; width: 100%; }
    .nav-actions .btn-nav-outline,
    .nav-actions .btn-nav-primary { width: 100%; text-align: center; }

    .hero-content h1 { font-size: 2.2rem; }
    .hero-search { flex-direction: column; }
    .search-select { border-left: none; border-top: 1px solid var(--border); }
    .hero-stats { gap: 24px; }

    .business-grid,
    .category-grid,
    .city-grid,
    .blog-grid { grid-template-columns: 1fr; }

    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .rating-breakdown { flex-direction: column; }
    .cta-box { flex-direction: column; text-align: center; }
    .detail-hero { height: 280px; }
    .detail-hero-content { flex-direction: column; align-items: flex-start; }
    .detail-actions { margin-left: 0; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* Select — premium görünüm custom-select.css + custom-select.js ile yüklenir */
.sort-form .custom-select { width: auto; min-width: 140px; }

/* Datepicker — custom-datepicker.css ile global */
.home-search-field .app-datepicker { width: 100%; }
