/* =====================================================
   USTA REHBERİ - ANA STIL DOSYASI
   ===================================================== */

/* CSS Değişkenleri */
:root {
    --primary-color: #C75B39;
    --primary-dark: #A84830;
    --primary-light: #E07B5C;
    --secondary-color: #2C3E50;
    --secondary-light: #34495E;
    --accent-color: #27AE60;
    --success-color: #27AE60;
    --warning-color: #F39C12;
    --danger-color: #E74C3C;
    --info-color: #3498DB;
    --dark-color: #1A1A2E;
    --light-color: #F8F9FA;
    --gray-100: #F5F5F5;
    --gray-200: #EEEEEE;
    --gray-300: #E0E0E0;
    --gray-500: #9E9E9E;
    --gray-700: #616161;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.1);
    --shadow-lg: 0 8px 24px rgba(0,0,0,0.12);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --transition: 0.3s ease;
}

/* Reset */
* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: 'Nunito', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--dark-color);
    background-color: var(--light-color);
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }

/* Navbar */
.navbar-custom {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--primary-dark) 100%);
    padding: 0.8rem 0;
    box-shadow: var(--shadow-md);
}
.navbar-custom .navbar-brand {
    font-weight: 800;
    font-size: 1.5rem;
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.navbar-custom .navbar-brand i { color: var(--warning-color); }
.navbar-custom .nav-link {
    color: rgba(255,255,255,0.9);
    font-weight: 600;
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
}
.navbar-custom .nav-link:hover {
    color: var(--white);
    background: rgba(255,255,255,0.1);
}
.navbar-custom .nav-link.active {
    color: var(--white);
    background: rgba(255,255,255,0.15);
}
.navbar-custom .navbar-toggler {
    border-color: rgba(255,255,255,0.3);
}
.navbar-custom .navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 0.9%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}
.btn-usta-kayit {
    background: var(--white) !important;
    color: var(--primary-color) !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
}
.btn-usta-kayit:hover {
    background: var(--warning-color) !important;
    color: var(--white) !important;
}
.dropdown-menu {
    border: none;
    box-shadow: var(--shadow-lg);
    border-radius: var(--radius-sm);
}
.dropdown-item { padding: 0.6rem 1.2rem; font-weight: 500; }
.dropdown-item:hover { background: var(--gray-100); color: var(--primary-color); }

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 5rem 0 4rem;
    color: var(--white);
}
.hero-title {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}
.search-box {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    max-width: 100%;
    margin: 0 auto;
}
.search-box .form-control, .search-box .form-select {
    border: 2px solid var(--gray-200);
    padding: 0.8rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
}
.search-box .form-control:focus, .search-box .form-select:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(199,91,57,0.1);
}
.btn-search {
    background: var(--primary-color);
    color: var(--white);
    font-weight: 700;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    border: none;
}
.btn-search:hover {
    background: var(--primary-dark);
    color: var(--white);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--secondary-color), var(--secondary-light));
    padding: 3rem 0;
    color: var(--white);
}
.page-header h1 {
    font-weight: 800;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}
.page-header .breadcrumb {
    background: none;
    padding: 0;
    margin: 0;
}
.page-header .breadcrumb-item a { color: rgba(255,255,255,0.8); }
.page-header .breadcrumb-item.active { color: var(--white); }
.page-header .breadcrumb-item + .breadcrumb-item::before { color: rgba(255,255,255,0.5); }

/* Stat Cards */
.stat-card {
    background: var(--white);
    padding: 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
}
.stat-card:hover { box-shadow: var(--shadow-md); transform: translateY(-3px); }
.stat-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.5rem;
}
.stat-number { font-size: 2rem; font-weight: 800; color: var(--primary-color); }
.stat-label { color: var(--gray-700); font-weight: 600; }

/* Hizmet Cards */
.hizmet-card {
    display: block;
    background: var(--white);
    padding: 2rem 1.5rem;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-bottom: 4px solid transparent;
    transition: var(--transition);
}
.hizmet-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-5px);
    border-bottom-color: var(--card-color, var(--primary-color));
}
.hizmet-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--card-color, var(--primary-color)), var(--card-color, var(--primary-light)));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--white);
    font-size: 1.8rem;
}
.hizmet-gorsel {
    width: 70px;
    height: 70px;
    margin: 0 auto 1rem;
    border-radius: var(--radius-md);
    overflow: hidden;
}
.hizmet-gorsel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}
.hizmet-card:hover .hizmet-gorsel img {
    transform: scale(1.1);
}

/* Overlay Efektli Hizmet Kartı */
.hizmet-card-overlay {
    display: block;
    position: relative;
    height: 180px;
    border-radius: var(--radius-md);
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}
.hizmet-card-overlay:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}
.hizmet-card-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--bg-image, none), linear-gradient(135deg, var(--card-color, var(--primary-color)) 0%, color-mix(in srgb, var(--card-color, var(--primary-color)) 70%, #000) 100%);
    background-size: cover;
    background-position: center;
    transition: var(--transition);
}
.hizmet-card-bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.7) 100%);
    transition: var(--transition);
}
.hizmet-card-overlay:hover .hizmet-card-bg {
    transform: scale(1.05);
}
.hizmet-card-overlay:hover .hizmet-card-bg::after {
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
}
.hizmet-card-content {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
}
.hizmet-card-overlay .hizmet-card-icon {
    width: 60px;
    height: 60px;
    background: rgba(255,255,255,0.2);
    backdrop-filter: blur(5px);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    color: var(--white);
    font-size: 1.6rem;
    border: 1px solid rgba(255,255,255,0.3);
    transition: var(--transition);
}
.hizmet-card-overlay:hover .hizmet-card-icon {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}
.hizmet-card-title {
    color: var(--white);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 0.3rem;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}
.hizmet-card-count {
    color: rgba(255,255,255,0.85);
    font-size: 0.9rem;
    margin: 0;
}

/* Mobil için tam genişlik */
@media (max-width: 767.98px) {
    .hizmet-card-overlay {
        height: 140px;
    }
    .hizmet-card-overlay .hizmet-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
        margin-bottom: 0.75rem;
    }
    .hizmet-card-title {
        font-size: 1rem;
    }
}

.hizmet-title { font-weight: 700; color: var(--dark-color); margin-bottom: 0.5rem; }
.hizmet-count { color: var(--gray-500); font-size: 0.9rem; }

.hizmet-card-lg {
    display: flex;
    flex-direction: column;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    height: 100%;
    transition: var(--transition);
}
.hizmet-card-lg:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.hizmet-card-icon {
    background: linear-gradient(135deg, var(--card-color), var(--card-color));
    color: var(--white);
    padding: 2rem;
    text-align: center;
    font-size: 3rem;
}
.hizmet-card-content { padding: 1.5rem; flex-grow: 1; }
.hizmet-card-content h4 { font-weight: 700; margin-bottom: 0.5rem; }
.hizmet-card-content p { color: var(--gray-500); font-size: 0.95rem; }
.hizmet-card-link {
    display: block;
    padding: 1rem 1.5rem;
    background: var(--gray-100);
    color: var(--primary-color);
    font-weight: 700;
    text-align: center;
}
.hizmet-card-link:hover { background: var(--primary-color); color: var(--white); }

/* Usta Cards */
.usta-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    transition: var(--transition);
}
.usta-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-3px); }
.usta-card-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}
.usta-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    position: relative;
}
.usta-avatar img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
.avatar-placeholder {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
}
.verified-badge {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 22px;
    height: 22px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
    border: 2px solid var(--white);
}
.usta-info { flex: 1; }
.usta-name { font-weight: 700; font-size: 1.1rem; margin-bottom: 0.25rem; }
.usta-location { color: var(--gray-500); font-size: 0.9rem; }
.usta-card-body { padding: 1.5rem; }
.usta-bio { color: var(--gray-700); font-size: 0.95rem; margin-bottom: 1rem; }
.usta-hizmetler { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.hizmet-badge {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}
.usta-card-footer { padding: 1rem 1.5rem; background: var(--gray-100); }
.usta-rating { margin-bottom: 1rem; }
.stars { display: inline-flex; gap: 2px; }
.rating-number { font-weight: 700; color: var(--dark-color); margin-left: 0.5rem; }
.review-count { color: var(--gray-500); font-size: 0.85rem; margin-left: 0.5rem; }
.usta-actions { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.btn-call {
    background: var(--success-color);
    color: var(--white);
    border: none;
    font-weight: 600;
}
.btn-call:hover { background: #219a52; color: var(--white); }
.btn-profile {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    font-weight: 600;
}
.btn-profile:hover { background: var(--primary-dark); color: var(--white); }

/* Usta Card Horizontal */
.usta-card-horizontal {
    display: flex;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
    overflow: hidden;
    transition: var(--transition);
}
.usta-card-horizontal:hover { box-shadow: var(--shadow-lg); }
.usta-card-left { padding: 1.5rem; display: flex; align-items: flex-start; }
.usta-avatar-lg {
    width: 100px;
    height: 100px;
    position: relative;
}
.usta-avatar-lg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.avatar-placeholder-lg {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
}
.avatar-placeholder-lg.empty-avatar {
    background: linear-gradient(135deg, #e67e22, #f39c12);
}
.verified-badge-lg {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 28px;
    height: 28px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.8rem;
    border: 3px solid var(--white);
}
.usta-card-center { flex: 1; padding: 1.5rem 0; }
.usta-name-lg { font-size: 1.3rem; font-weight: 700; margin-bottom: 0.5rem; }
.usta-name-lg a { color: var(--dark-color); }
.usta-name-lg a:hover { color: var(--primary-color); }
.usta-bio-lg { color: var(--gray-700); margin-bottom: 0.75rem; }
.usta-rating-lg { margin-bottom: 0.75rem; }
.usta-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.meta-item { color: var(--gray-500); font-size: 0.9rem; }
.meta-item i { margin-right: 0.3rem; color: var(--gray-500); }
.usta-card-right {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    justify-content: center;
    min-width: 180px;
    background: var(--gray-100);
}
.btn-show-phone {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
}
.btn-show-phone:hover { background: var(--primary-dark); color: var(--white); }
.btn-show-phone.revealed { background: var(--success-color); }
.btn-view-profile {
    background: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
}
.btn-view-profile:hover { background: var(--primary-color); color: var(--white); }
.btn-whatsapp {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 0.6rem 1rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-align: center;
}
.btn-whatsapp:hover { background: #1ebe57; color: var(--white); }

/* Filter Sidebar */
.filter-sidebar { position: sticky; top: 100px; }
.filter-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}
.filter-title { font-weight: 700; margin-bottom: 1.5rem; color: var(--dark-color); }
.filter-group { margin-bottom: 1.25rem; }
.filter-label { display: block; font-weight: 600; margin-bottom: 0.5rem; color: var(--gray-700); font-size: 0.9rem; }
.filter-buttons { display: flex; flex-direction: column; gap: 0.75rem; margin-top: 1.5rem; }
.btn-filter-apply {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
}
.btn-filter-apply:hover { background: var(--primary-dark); color: var(--white); }
.btn-filter-clear {
    background: var(--gray-200);
    color: var(--gray-700);
    border: none;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    font-weight: 600;
}
.btn-filter-clear:hover { background: var(--gray-300); }
.btn-filter-toggle {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
}

/* Select2 Custom Styles */
.filter-form .select2-container--bootstrap-5 .select2-selection {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 0.5rem 0.75rem;
    min-height: 46px;
    background: var(--white);
    transition: var(--transition);
}
.filter-form .select2-container--bootstrap-5 .select2-selection:hover {
    border-color: var(--primary-light);
}
.filter-form .select2-container--bootstrap-5.select2-container--focus .select2-selection,
.filter-form .select2-container--bootstrap-5.select2-container--open .select2-selection {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(199, 91, 57, 0.15);
}
.filter-form .select2-container--bootstrap-5 .select2-selection--single .select2-selection__rendered {
    color: var(--dark-color);
    font-weight: 500;
    padding-left: 0;
}
.filter-form .select2-container--bootstrap-5 .select2-selection--single .select2-selection__placeholder {
    color: var(--gray-500);
}
.filter-form .select2-container--bootstrap-5 .select2-selection--single .select2-selection__arrow {
    top: 50%;
    transform: translateY(-50%);
    right: 10px;
}
.filter-form .select2-container--bootstrap-5 .select2-selection--single .select2-selection__clear {
    margin-right: 25px;
}

/* Select2 Dropdown */
.select2-container--bootstrap-5 .select2-dropdown {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    margin-top: 4px;
    overflow: hidden;
}
.select2-container--bootstrap-5 .select2-search--dropdown {
    padding: 0.75rem;
    background: var(--gray-100);
    border-bottom: 1px solid var(--gray-200);
}
.select2-container--bootstrap-5 .select2-search--dropdown .select2-search__field {
    border: 2px solid var(--gray-300);
    border-radius: var(--radius-sm);
    padding: 0.6rem 0.75rem;
    font-size: 0.95rem;
}
.select2-container--bootstrap-5 .select2-search--dropdown .select2-search__field:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(199, 91, 57, 0.15);
    outline: none;
}
.select2-container--bootstrap-5 .select2-results__options {
    max-height: 280px;
    padding: 0.5rem 0;
}
.select2-container--bootstrap-5 .select2-results__option {
    padding: 0.6rem 1rem;
    font-size: 0.95rem;
    transition: var(--transition);
}
.select2-container--bootstrap-5 .select2-results__option--highlighted[aria-selected] {
    background: var(--primary-color);
    color: var(--white);
}
.select2-container--bootstrap-5 .select2-results__option[aria-selected=true] {
    background: rgba(199, 91, 57, 0.1);
    color: var(--primary-color);
    font-weight: 600;
}
.select2-container--bootstrap-5 .select2-results__option[aria-selected=true]:hover {
    background: var(--primary-color);
    color: var(--white);
}

/* Select2 Disabled State */
.filter-form .select2-container--bootstrap-5.select2-container--disabled .select2-selection {
    background: var(--gray-100);
    border-color: var(--gray-200);
    cursor: not-allowed;
}
.filter-form .select2-container--bootstrap-5.select2-container--disabled .select2-selection__rendered {
    color: var(--gray-500);
}

/* Profile Page */
.profile-cover {
    height: 250px;
    background-size: cover;
    background-position: center;
    position: relative;
}
.cover-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.5));
}
.profile-header {
    background: var(--white);
    padding: 0 0 2rem;
    border-bottom: 1px solid var(--gray-200);
    margin-top: -80px;
    position: relative;
    z-index: 10;
}
.profile-avatar-wrapper {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 1rem;
}
.profile-avatar {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
}
.profile-avatar-placeholder {
    width: 150px;
    height: 150px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 3rem;
    font-weight: 700;
    border: 5px solid var(--white);
    box-shadow: var(--shadow-md);
}
.profile-verified {
    position: absolute;
    bottom: 10px;
    right: 10px;
    width: 35px;
    height: 35px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1rem;
    border: 3px solid var(--white);
}
.profile-contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    max-width: 250px;
    margin: 1rem auto;
}
.btn-show-phone-lg {
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-align: center;
    display: block;
}
.btn-show-phone-lg:hover { background: var(--primary-dark); color: var(--white); }
.btn-whatsapp-lg {
    background: #25D366;
    color: var(--white);
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    text-align: center;
    display: block;
}
.btn-whatsapp-lg:hover { background: #1ebe57; color: var(--white); }
.profile-rating-box {
    text-align: center;
    padding: 1rem;
    background: var(--gray-100);
    border-radius: var(--radius-sm);
    max-width: 250px;
    margin: 1rem auto 0;
}
.rating-big { font-size: 2.5rem; font-weight: 800; color: var(--warning-color); }
.profile-info { padding-top: 1rem; }
.profile-name { font-size: 2rem; font-weight: 800; margin-bottom: 0.5rem; }
.profile-meta { display: flex; gap: 1.5rem; flex-wrap: wrap; margin-bottom: 1rem; color: var(--gray-500); }
.profile-services { display: flex; flex-wrap: wrap; gap: 0.5rem; margin-bottom: 1rem; }
.service-tag {
    display: inline-flex;
    align-items: center;
    background: var(--gray-100);
    color: var(--tag-color, var(--primary-color));
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}
.service-tag:hover { background: var(--tag-color, var(--primary-color)); color: var(--white); }
.profile-social { display: flex; gap: 0.75rem; }
.social-link {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    color: var(--white);
}
.social-link.instagram { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.social-link.facebook { background: #1877F2; }
.social-link.youtube { background: #FF0000; }
.social-link:hover { opacity: 0.8; color: var(--white); }

/* Profile Tabs */
.profile-tabs-section { background: var(--white); border-bottom: 1px solid var(--gray-200); }
.profile-tabs {
    border: none;
    gap: 0.5rem;
}
.profile-tabs .nav-link {
    border: none;
    color: var(--gray-700);
    font-weight: 600;
    padding: 1rem 1.5rem;
    border-bottom: 3px solid transparent;
    border-radius: 0;
}
.profile-tabs .nav-link:hover { color: var(--primary-color); }
.profile-tabs .nav-link.active {
    color: var(--primary-color);
    border-bottom-color: var(--primary-color);
    background: none;
}

/* Post Card */
.post-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    margin-bottom: 1.5rem;
}
.post-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}
.post-avatar { width: 45px; height: 45px; border-radius: 50%; object-fit: cover; }
.post-meta strong { display: block; font-weight: 700; }
.post-date { color: var(--gray-500); font-size: 0.85rem; }
.post-body { padding: 1.5rem; }
.post-footer {
    padding: 1rem 1.5rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    gap: 1.5rem;
}
.btn-post-action {
    background: none;
    border: none;
    color: var(--gray-500);
    font-weight: 600;
    cursor: pointer;
}
.btn-post-action:hover { color: var(--primary-color); }

/* Info Card */
.info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}
.info-card h5 { font-weight: 700; margin-bottom: 1rem; }
.info-list { list-style: none; padding: 0; margin: 0; }
.info-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--gray-200);
}
.info-list li:last-child { border-bottom: none; }
.info-list li i { color: var(--primary-color); margin-top: 0.2rem; }

/* Review Card */
.review-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
    margin-bottom: 1rem;
}
.review-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
}
.review-avatar {
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}
.review-meta { flex: 1; }
.review-meta strong { display: block; }
.review-date { color: var(--gray-500); font-size: 0.85rem; }
.review-body { color: var(--gray-700); }
.rating-summary-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    text-align: center;
}
.rating-big-number { font-size: 4rem; font-weight: 800; color: var(--warning-color); }

/* Star Rating Input */
.star-rating-input {
    display: flex;
    flex-direction: row-reverse;
    justify-content: flex-end;
    gap: 0.25rem;
}
.star-rating-input input { display: none; }
.star-rating-input label {
    cursor: pointer;
    font-size: 1.5rem;
    color: var(--gray-300);
}
.star-rating-input label:hover,
.star-rating-input label:hover ~ label,
.star-rating-input input:checked ~ label { color: var(--warning-color); }


/* Form Cards */
.form-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    overflow: hidden;
}
.form-card-header {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
    padding: 2rem;
}
.form-card-header h3 { margin-bottom: 0.5rem; }
.form-card-body { padding: 2rem; }
.form-section {
    margin-bottom: 2rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--gray-200);
}
.form-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.form-section-title {
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--gray-200);
}
.hizmet-check .form-check-label { font-weight: 500; }

/* Login Card */
.login-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 2.5rem;
}
.login-header h3 { margin-bottom: 0.5rem; }

/* Panel Sidebar */
.panel-sidebar {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    position: sticky;
    top: 100px;
}
.panel-user {
    text-align: center;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: var(--white);
}
.panel-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--white);
    margin-bottom: 1rem;
}
.panel-avatar-placeholder {
    width: 80px;
    height: 80px;
    background: rgba(255,255,255,0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    font-weight: 700;
    margin: 0 auto 1rem;
}
.panel-user h5 { margin-bottom: 0.5rem; }
.panel-nav { padding: 1rem 0; }
.panel-nav-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.8rem 1.5rem;
    color: var(--gray-700);
    font-weight: 600;
}
.panel-nav-item:hover { background: var(--gray-100); color: var(--primary-color); }
.panel-nav-item.active { background: var(--gray-100); color: var(--primary-color); }
.panel-nav-item i { width: 20px; text-align: center; }

/* Panel Cards */
.panel-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.panel-card-header {
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}
.panel-card-header h5 { margin: 0; font-weight: 700; }
.panel-card-body { padding: 1.5rem; }
.stat-card-panel {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 1.5rem;
}
.stat-icon-panel {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
}
.stat-info h4 { font-size: 1.5rem; font-weight: 800; margin: 0; }
.stat-info span { color: var(--gray-500); font-size: 0.9rem; }

/* Step Cards */
.step-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
    text-align: center;
    position: relative;
}
.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 35px;
    height: 35px;
    background: var(--primary-color);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.step-icon {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 2rem;
}
.step-card h5 { font-weight: 700; margin-bottom: 0.5rem; }
.step-card p { color: var(--gray-700); margin: 0; }

/* Feature Box */
.feature-box {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    padding: 2rem;
}
.feature-box:hover { box-shadow: var(--shadow-md); }
.feature-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}
.feature-box h4, .feature-box h5 { font-weight: 700; margin-bottom: 0.75rem; }

/* CTA Section */
.cta-section {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 4rem 0;
    color: var(--white);
}
.cta-section h3 { font-weight: 800; margin-bottom: 1rem; }
.cta-section .btn {
    background: var(--white);
    color: var(--primary-color);
    font-weight: 700;
    padding: 0.9rem 2.5rem;
    border-radius: var(--radius-sm);
    border: none;
}
.cta-section .btn:hover { background: var(--warning-color); color: var(--white); }

/* Footer */
.footer {
    background: var(--secondary-color);
    color: var(--white);
    padding: 4rem 0 0;
}
.footer h5 { font-weight: 700; margin-bottom: 1.5rem; }
.footer p { color: rgba(255,255,255,0.7); }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}
.social-links a:hover { background: var(--primary-color); }
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.5rem; }
.footer-links a { color: rgba(255,255,255,0.7); }
.footer-links a:hover { color: var(--white); }
.footer-contact li { display: flex; gap: 0.75rem; margin-bottom: 0.75rem; }
.footer-contact i { color: var(--primary-light); margin-top: 0.2rem; }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem 0;
    margin-top: 3rem;
}
.footer-bottom p { color: rgba(255,255,255,0.6); }
.footer-bottom-links {
    list-style: none;
    display: flex;
    gap: 1.5rem;
    margin: 0;
    padding: 0;
    flex-wrap: wrap;
}
.footer-bottom-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-bottom-links a:hover { color: var(--white); }

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
}
.whatsapp-float:hover { background: #1ebe57; color: var(--white); transform: scale(1.1); }

/* Empty State */
.empty-state {
    text-align: center;
    padding: 4rem 2rem;
    background: var(--white);
    border-radius: var(--radius-md);
}
.empty-reviews { text-align: center; padding: 3rem; color: var(--gray-500); }

/* Empty Result Card (Usta kartı tarzında) */
.empty-result-card {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 3rem 2rem;
    text-align: center;
    border: 2px dashed var(--gray-300);
}
.empty-result-content .empty-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}
.empty-result-content .empty-icon i {
    font-size: 2rem;
    color: var(--white);
}
.empty-result-content h4 {
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 0.75rem;
}
.empty-result-content p {
    color: var(--gray-600);
    margin-bottom: 0.5rem;
}
.empty-result-content .sub-text {
    color: var(--gray-500);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}
.empty-buttons {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    flex-wrap: wrap;
}
.empty-buttons .btn {
    padding: 0.6rem 1.25rem;
}

/* SEO Content Section */
.seo-content-section {
    padding: 3rem 0;
    background: var(--gray-100);
}
.seo-content-box {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.seo-content-box h2,
.seo-content-box h3,
.seo-content-box h4 {
    color: var(--primary-color);
    margin-top: 1.5rem;
    margin-bottom: 1rem;
}
.seo-content-box h2:first-child,
.seo-content-box h3:first-child,
.seo-content-box h4:first-child {
    margin-top: 0;
}
.seo-content-box p {
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: 1rem;
}
.seo-content-box ul,
.seo-content-box ol {
    color: var(--gray-700);
    margin-bottom: 1rem;
    padding-left: 1.5rem;
}
.seo-content-box li {
    margin-bottom: 0.5rem;
}

/* Error Page */
.error-page { padding: 3rem 0; }
.error-code { font-size: 8rem; font-weight: 800; color: var(--primary-color); line-height: 1; }

/* About Stats */
.about-stats-box {
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    padding: 2rem;
}
.about-stat h3 { font-weight: 800; color: var(--primary-color); margin-bottom: 0.25rem; }
.about-stat span { color: var(--gray-500); }

/* Contact Info */
.contact-form-wrapper {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}
.contact-info {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    padding: 2.5rem;
    border-radius: var(--radius-md);
    color: var(--white);
    height: 100%;
}
.contact-info h3 { color: var(--white); margin-bottom: 2rem; }
.contact-info-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255,255,255,0.15);
}
.contact-info-item:last-child { border-bottom: none; margin-bottom: 0; padding-bottom: 0; }
.contact-info-icon {
    width: 50px;
    height: 50px;
    background: rgba(255,255,255,0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    flex-shrink: 0;
}
.contact-info-content h5 {
    font-size: 0.9rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    opacity: 0.9;
    color: var(--white);
}
.contact-info-content p, .contact-info-content a { color: var(--white); margin: 0; }
.contact-info-content a:hover { text-decoration: underline; }

/* Content Box */
.content-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
}
.content-box h2, .content-box h3 { color: var(--primary-color); margin-top: 1.5rem; margin-bottom: 1rem; }
.content-box h2:first-child, .content-box h3:first-child { margin-top: 0; }
.content-box p { color: var(--gray-700); margin-bottom: 1rem; }

/* Sort Bar */
.sort-bar {
    background: var(--white);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-sm);
}
.sort-options { display: flex; gap: 0.5rem; }

/* Bolge List */
.bolge-list { display: flex; flex-wrap: wrap; gap: 0.5rem; }
.bolge-badge {
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}

/* Hizmet List */
.hizmet-list { display: flex; flex-wrap: wrap; gap: 1rem; }
.hizmet-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
}
.hizmet-item i { font-size: 1.2rem; }

/* Pagination */
.pagination-wrapper .pagination { margin: 0; }
.pagination .page-link {
    border: none;
    color: var(--gray-700);
    padding: 0.6rem 1rem;
    margin: 0 0.2rem;
    border-radius: var(--radius-sm);
}
.pagination .page-link:hover { background: var(--gray-200); }
.pagination .page-item.active .page-link {
    background: var(--primary-color);
    color: var(--white);
}

/* Section */
.section-padding { padding: 5rem 0; }
.section-padding-sm { padding: 3rem 0; }
.section-title { font-weight: 800; font-size: 2rem; margin-bottom: 0.5rem; }
.section-subtitle { color: var(--gray-500); font-size: 1.1rem; }

/* Utility */
.bg-primary { background-color: var(--primary-color) !important; }
.bg-success { background-color: var(--success-color) !important; }
.bg-warning { background-color: var(--warning-color) !important; }
.bg-info { background-color: var(--info-color) !important; }
.text-primary { color: var(--primary-color) !important; }

/* Success Box */
.success-box {
    background: var(--white);
    padding: 3rem;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

/* Responsive */
@media (max-width: 991px) {
    .hero-title { font-size: 2.2rem; }
    .hero-section { padding: 4rem 0 3rem; }
    .usta-card-horizontal { flex-direction: column; }
    .usta-card-left { justify-content: center; padding-bottom: 0; }
    .usta-card-center { padding: 1.5rem; text-align: center; }
    .usta-meta { justify-content: center; }
    .usta-card-right { min-width: auto; padding: 1.5rem; }
    .section-padding { padding: 3rem 0; }
}

@media (max-width: 767px) {
    .hero-title { font-size: 1.8rem; }
    .hero-subtitle { font-size: 1.1rem; }
    .section-title { font-size: 1.6rem; }
    .search-box { padding: 1rem; }
    .stat-number { font-size: 1.8rem; }
    .section-padding { padding: 2rem 0; }
    .page-header { padding: 2rem 0; }
    .page-header h1 { font-size: 1.5rem; }
}

/* ===========================================
   PROFİL SAYFA STİLLERİ (Mobil Öncelikli)
   =========================================== */

/* Header Section */
.profile-header-section {
    position: relative;
    padding-bottom: 2rem;
    background: var(--white);
}
.profile-header-bg {
    height: 120px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 0 0 50% 50% / 0 0 30px 30px;
}
.profile-header-content {
    text-align: center;
    margin-top: -60px;
}

/* Avatar */
.profile-avatar-wrapper {
    position: relative;
    width: 110px;
    height: 110px;
    margin: 0 auto 1rem;
}
.profile-avatar-img {
    width: 110px;
    height: 110px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.profile-avatar-placeholder {
    width: 110px;
    height: 110px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2.5rem;
    font-weight: 700;
    border: 4px solid var(--white);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}
.profile-verified {
    position: absolute;
    bottom: 5px;
    right: 5px;
    width: 26px;
    height: 26px;
    background: var(--success-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 0.7rem;
    border: 3px solid var(--white);
}

/* Name & Location */
.profile-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 0.25rem;
}
.profile-location {
    color: var(--gray-500);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* Rating Badge */
.profile-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
}
.profile-rating-badge .rating-value {
    font-weight: 800;
    color: var(--warning-color);
    font-size: 1.1rem;
}
.profile-rating-badge .rating-stars {
    color: var(--warning-color);
}
.profile-rating-badge .rating-count {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* Profile Sections */
.profile-section {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--gray-200);
}
.profile-section:last-child {
    border-bottom: none;
}

/* Section Title */
.section-title-sm {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}
.section-title-sm i {
    color: var(--primary-color);
}

/* Section Header Flex */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}
.section-header-flex .section-title-sm {
    margin-bottom: 0;
}
.view-all {
    color: var(--primary-color);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
}

/* Tags */
.tags-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}
.service-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: var(--gray-100);
    color: var(--tag-color, var(--primary-color));
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.85rem;
    transition: var(--transition);
}
.service-tag:hover {
    background: var(--tag-color, var(--primary-color));
    color: var(--white);
}
.location-tag {
    display: inline-flex;
    align-items: center;
    background: var(--gray-100);
    color: var(--gray-700);
    padding: 0.45rem 0.9rem;
    border-radius: 50px;
    font-size: 0.85rem;
}

/* Profile Buttons */
.profile-buttons-section {
    background: var(--gray-100);
    border-bottom: none;
}
.profile-buttons {
    display: flex;
    flex-direction: row;
    gap: 0.75rem;
}
.btn-profile-phone,
.btn-profile-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
}
.btn-profile-phone {
    background: var(--primary-color);
    color: var(--white);
}
.btn-profile-phone:hover,
.btn-profile-phone.revealed {
    background: var(--primary-dark);
    color: var(--white);
}
.btn-profile-whatsapp {
    background: #25D366;
    color: var(--white);
}
.btn-profile-whatsapp:hover {
    background: #1ebe57;
    color: var(--white);
}

/* About Box */
.about-box {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1rem;
}
.about-box p {
    color: var(--gray-700);
    line-height: 1.7;
    margin: 0;
}

/* Gallery Carousel */
.gallery-carousel {
    display: flex;
    gap: 0.75rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.5rem;
    cursor: grab;
}
.gallery-carousel::-webkit-scrollbar {
    height: 4px;
}
.gallery-carousel::-webkit-scrollbar-track {
    background: var(--gray-200);
    border-radius: 10px;
}
.gallery-carousel::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}
.gallery-item {
    flex: 0 0 auto;
    width: 140px;
    height: 140px;
    border-radius: var(--radius-md);
    overflow: hidden;
    scroll-snap-align: start;
}
.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Empty Gallery */
.empty-gallery {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 2rem;
    text-align: center;
    color: var(--gray-500);
}
.empty-gallery i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
}
.empty-gallery p {
    margin: 0;
    font-size: 0.9rem;
}

/* Review Count Badge */
.review-count-badge {
    background: var(--primary-color);
    color: var(--white);
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
}

/* Reviews List */
.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.review-item {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 1rem;
}
.review-item-header {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
}
.review-avatar {
    width: 42px;
    height: 42px;
    background: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}
.review-info {
    flex: 1;
}
.review-info strong {
    display: block;
    font-size: 0.95rem;
    color: var(--dark-color);
}
.review-stars {
    color: var(--warning-color);
    font-size: 0.8rem;
}
.review-date {
    color: var(--gray-500);
    font-size: 0.8rem;
}
.review-text {
    color: var(--gray-700);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Empty Reviews */
.empty-reviews-box {
    background: var(--gray-100);
    border-radius: var(--radius-md);
    padding: 2.5rem;
    text-align: center;
}
.empty-reviews-box i {
    font-size: 2.5rem;
    color: var(--gray-400);
    margin-bottom: 0.75rem;
    display: block;
}
.empty-reviews-box p {
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 0.25rem;
}
.empty-reviews-box span {
    font-size: 0.9rem;
    color: var(--gray-500);
}

/* Review Form */
.review-form-box {
    background: var(--white);
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.25rem;
    margin-top: 1.5rem;
}
.review-form-box h4 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--dark-color);
}
.review-form-box .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
}
.review-form-box .form-group {
    margin-bottom: 1rem;
}
.review-form-box label {
    display: block;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gray-700);
    margin-bottom: 0.4rem;
}
.review-form-box .form-control {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
}
.review-form-box .form-control:focus {
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(199,91,57,0.1);
}
.btn-submit-review {
    width: 100%;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    padding: 0.85rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
}
.btn-submit-review:hover {
    background: var(--primary-dark);
}

/* Social Links */
.social-links-list {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.social-link-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: var(--gray-100);
    padding: 0.75rem 1rem;
    border-radius: var(--radius-sm);
    color: var(--gray-700);
    transition: var(--transition);
}
.social-link-item:hover {
    background: var(--gray-200);
    color: var(--dark-color);
}
.social-link-item i {
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}
.social-link-item .fa-instagram { color: #E4405F; }
.social-link-item .fa-facebook { color: #1877F2; }
.social-link-item .fa-youtube { color: #FF0000; }

/* Mobile Responsive */
@media (max-width: 576px) {
    .profile-header-bg {
        height: 100px;
    }
    .profile-header-content {
        margin-top: -50px;
    }
    .profile-avatar-wrapper,
    .profile-avatar-img,
    .profile-avatar-placeholder {
        width: 100px;
        height: 100px;
    }
    .profile-avatar-placeholder {
        font-size: 2.2rem;
    }
    .profile-name {
        font-size: 1.35rem;
    }
    .btn-profile-phone,
    .btn-profile-whatsapp {
        padding: 0.8rem 0.5rem;
        font-size: 0.85rem;
    }
    .review-form-box .form-row {
        grid-template-columns: 1fr;
    }
    .gallery-item {
        width: 120px;
        height: 120px;
    }
}

/* Desktop Adjustments */
@media (min-width: 768px) {
    .profile-header-bg {
        height: 150px;
        border-radius: 0 0 50% 50% / 0 0 50px 50px;
    }
    .profile-header-content {
        margin-top: -70px;
    }
    .profile-avatar-wrapper,
    .profile-avatar-img,
    .profile-avatar-placeholder {
        width: 130px;
        height: 130px;
    }
    .profile-name {
        font-size: 1.75rem;
    }
    .profile-section {
        padding: 1.5rem 0;
    }
    .profile-buttons {
        max-width: 500px;
        margin: 0 auto;
    }
    .gallery-item {
        width: 180px;
        height: 180px;
    }
    .reviews-list {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }
}

/* ===========================================
   FOOTER SOL YASLI
   =========================================== */
.footer {
    text-align: left;
}
.footer h5 {
    text-align: left;
}
.footer-links {
    text-align: left;
}
.footer-bottom-links {
    justify-content: flex-start;
}

@media (max-width: 767px) {
    .footer {
        text-align: left;
    }
    .footer h5 {
        text-align: left;
    }
    .footer-links {
        text-align: left;
    }
    .footer-bottom-links {
        justify-content: flex-start;
    }
    .footer-bottom .text-md-end {
        text-align: left !important;
        margin-top: 1rem;
    }
}
/* ===========================================
   PROFİL SAYFA STİLLERİ - GÜNCELLENMIŞ
   =========================================== */

/* Rating Badge - Clickable */
.profile-rating-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
}
.profile-rating-badge:hover {
    background: var(--gray-200);
    transform: scale(1.02);
}
.profile-rating-badge .rating-value {
    font-weight: 800;
    color: var(--warning-color);
    font-size: 1.1rem;
}
.profile-rating-badge .rating-stars {
    color: var(--warning-color);
}
.profile-rating-badge .rating-count {
    color: var(--gray-500);
    font-size: 0.85rem;
}

/* Combined Services and Locations Row */
.profile-section-combined {
    padding: 1.25rem 0;
    border-bottom: 1px solid var(--gray-200);
}
.combined-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}
.combined-col h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark-color);
    margin-bottom: 1rem;
}
.combined-col h3 i {
    color: var(--primary-color);
}

/* Sticky Contact Buttons */
.sticky-contact-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    box-shadow: 0 -4px 12px rgba(0,0,0,0.1);
    padding: 0.75rem 0;
    z-index: 999;
}
.sticky-contact-buttons {
    display: flex;
    gap: 0.75rem;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 1rem;
}
.btn-sticky-phone,
.btn-sticky-whatsapp {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 0.75rem;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 0.9rem;
    transition: var(--transition);
    white-space: nowrap;
    border: none;
}
.btn-sticky-phone {
    background: var(--primary-color);
    color: var(--white);
}
.btn-sticky-phone:hover,
.btn-sticky-phone.revealed {
    background: var(--primary-dark);
    color: var(--white);
}
.btn-sticky-whatsapp {
    background: #25D366;
    color: var(--white);
}
.btn-sticky-whatsapp:hover {
    background: #1ebe57;
    color: var(--white);
}

/* Content Padding for Sticky Bar */
body.has-sticky-contact {
    padding-bottom: 80px;
}

/* Mobile Responsive for Combined Row */
@media (max-width: 767px) {
    .combined-row {
        /* Mobilde yan yana 2 sütun olması için 1fr 1fr yapıyoruz */
        grid-template-columns: 1fr 1fr; 
        gap: 0.75rem; /* Dar ekranlarda boşluğu biraz azaltıyoruz */
    }
    
    .combined-col:first-child {
        padding-bottom: 0; /* Alt alta olmadıkları için alt boşluğu kaldırdık */
        border-bottom: none; /* Alt çizgiyi kaldırdık */
        border-right: 1px solid var(--gray-200); /* İsteğe bağlı: Aralarına dikey çizgi */
        padding-right: 0.75rem;
    }

    .combined-col h3 {
        font-size: 0.85rem; /* Mobilde başlık boyutunu biraz küçültebilirsiniz */
        white-space: nowrap; /* Başlıkların tek satır kalması için */
    }

    .service-tag, .location-tag {
        font-size: 0.75rem; /* Etiket boyutlarını küçülterek sığmasını sağlıyoruz */
        padding: 0.3rem 0.6rem;
    }

    .sticky-contact-buttons {
        max-width: 100%;
    }
}

/* Tablet */
@media (min-width: 768px) and (max-width: 991px) {
    .sticky-contact-buttons {
        max-width: 700px;
    }
}

/* Desktop */
@media (min-width: 992px) {
    .sticky-contact-buttons {
        max-width: 800px;
    }
    .btn-sticky-phone,
    .btn-sticky-whatsapp {
        padding: 1rem 1.5rem;
        font-size: 1rem;
    }
}

/* =====================================================
   YENİ HERO & ARAMA & İSTATİSTİK DÜZENLEMELERİ
   ===================================================== */

/* Hero Section Arkaplan ve Overlay */
.hero-section {
    position: relative;
    background-image: url('/uploads/hero-bg.webp'); /* Görsel yolu */
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Parallax hissi için */
    z-index: 1;
}

/* Arkaplanı karartmak için overlay */
.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(199, 91, 57, 0.85), rgba(26, 26, 46, 0.85));
    z-index: -1;
}

/* Arama Kutusu Örnek Metinleri */
.search-examples {
    font-size: 0.85rem;
        color: #000000;
    margin-top: 0.8rem;
    text-align: left;
    padding-left: 0.5rem;
}
.search-examples span {
    color: var(--warning-color);
    font-weight: 600;
}

/* Autocomplete (Otomatik Tamamlama) Listesi */
.autocomplete-items {
    position: absolute;
    border: 1px solid #d4d4d4;
    border-bottom: none;
    border-top: none;
    z-index: 99;
    top: 100%;
    left: 0;
    right: 0;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    box-shadow: var(--shadow-lg);
    max-height: 250px;
    overflow-y: auto;
}
.autocomplete-items div {
    padding: 10px;
    cursor: pointer;
    background-color: #fff;
    border-bottom: 1px solid #d4d4d4;
    color: var(--dark-color);
    text-align: left;
    font-weight: 600;
}
.autocomplete-items div:hover {
    background-color: var(--gray-100);
    color: var(--primary-color);
}
.autocomplete-active {
    background-color: var(--primary-color) !important;
    color: #ffffff !important;
}

/* Hero İçi İstatistik Alanı */
.hero-stats-wrapper {
    margin-top: 3rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.stat-card-hero {
    text-align: center;
    color: var(--white);
    transition: var(--transition);
}
.stat-card-hero .stat-icon {
    background: rgba(255, 255, 255, 0.2);
    width: 50px;
    height: 50px;
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}
.stat-card-hero .stat-number {
    color: var(--white);
    font-size: 1.8rem;
    margin-bottom: 0;
}
.stat-card-hero .stat-label {
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    font-size: 0.9rem;
}

/* Mobil İstatistik Görünümü (4'lü yan yana) */
@media (max-width: 767.98px) {
    .hero-stats-wrapper {
        padding: 1rem 0.5rem;
        margin-top: 2rem;
    }
    
    /* Bootstrap row gap ayarını mobilde kısıyoruz */
    .hero-stats-wrapper .row {
        --bs-gutter-x: 0.5rem;
    }

    .stat-card-hero .stat-icon {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
        margin-bottom: 0.3rem;
    }
    .stat-card-hero .stat-number {
        font-size: 1.2rem;
    }
    .stat-card-hero .stat-label {
        font-size: 0.65rem;
        line-height: 1.2;
    }
}

/* =====================================================
   USTA KAYIT SLIDER (CTA SECTION)
   ===================================================== */

.usta-cta-section {
    padding: 3rem 0;
    /* Hafif gri bir zemin üzerinde kutunun patlaması için */
    background-color: #f8f9fa; 
}

.usta-cta-card {
    background: #fff;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

/* Slider İç Yapısı */
.usta-cta-row {
    height: 100%;
    min-height: 400px;
}

/* Sol Taraf (Resim Alanı) */
.usta-cta-image-col {
    background-color: #E67E22; /* Turuncu zemin (Referans resimdeki gibi) */
    display: flex;
    align-items: flex-end; /* Resmi aşağı yasla */
    justify-content: center;
    position: relative;
    overflow: hidden;
    min-height: 300px;
}

/* Farklı slaytlar için farklı arka plan renkleri */
.slide-bg-1 { background-color: #E67E22; } /* Turuncu */
.slide-bg-2 { background-color: #2980b9; } /* Mavi */
.slide-bg-3 { background-color: #27ae60; } /* Yeşil */

.usta-cta-image-col img {
    max-width: 90%;
    height: auto;
    object-fit: contain;
    max-height: 380px; /* Resmin taşmasını engelle */
    transition: transform 0.5s ease;
}

/* Hover efekti */
.usta-cta-card:hover .usta-cta-image-col img {
    transform: scale(1.05);
}

/* Sağ Taraf (Metin Alanı) */
.usta-cta-content-col {
    background-color: #FFE0B2; /* Açık şeftali rengi (Referans resimdeki sağ taraf) */
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
}

/* Farklı slaytlar için metin alanı renkleri */
.text-bg-1 { background-color: #FFE0B2; }
.text-bg-2 { background-color: #D6EAF8; }
.text-bg-3 { background-color: #D5F5E3; }

.usta-cta-title {
    font-size: 2rem;
    font-weight: 800;
    color: #000;
    margin-bottom: 0.5rem;
    line-height: 1.2;
}

.usta-cta-subtitle {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 1.5rem;
}

.usta-cta-text {
    color: #444;
    margin-bottom: 2rem;
    line-height: 1.6;
    max-width: 90%;
}

.btn-usta-black {
    background-color: #000;
    color: #fff;
    padding: 0.8rem 2rem;
    border-radius: 50px; /* Yuvarlak buton */
    font-weight: 700;
    display: inline-block;
    width: fit-content;
    border: 2px solid #000;
    transition: all 0.3s ease;
}

.btn-usta-black:hover {
    background-color: transparent;
    color: #000;
}

/* Carousel İndikatörleri (Noktalar) */
.usta-cta-section .carousel-indicators {
    bottom: 20px;
    right: 30px; /* Sağ alt köşeye al */
    left: auto;
    margin: 0;
}

.usta-cta-section .carousel-indicators button {
    background-color: #000;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    opacity: 0.3;
}

.usta-cta-section .carousel-indicators button.active {
    opacity: 1;
}

/* Mobil Uyumluluk */
@media (max-width: 991px) {
    .usta-cta-row {
        flex-direction: column; /* Mobilde alt alta */
    }
    
    .usta-cta-image-col {
        min-height: 250px;
        align-items: flex-end;
    }
    
    .usta-cta-image-col img {
        max-height: 240px;
    }
    
    .usta-cta-content-col {
        padding: 2rem;
        text-align: center; /* Mobilde metinleri ortala */
        align-items: center;
    }
    
    .usta-cta-title {
        font-size: 1.6rem;
    }
    
    .usta-cta-section .carousel-indicators {
        right: 0;
        left: 0;
        justify-content: center; /* Mobilde noktaları ortala */
        bottom: 10px;
    }
}

/* =====================================================
   HEADER & NAVBAR DÜZELTMESİ (KESİN ÇÖZÜM)
   ===================================================== */

/* 1. NAVBAR TEMEL */
.modern-navbar {
    background-color: #ffffff !important;
    padding: 0;
    min-height: 90px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    position: relative;
    z-index: 1030;
}

.modern-navbar .container {
    /* Konteynerin esnek yapıya sahip olmasını garantiye alalım */
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

/* 2. LOGO AYARLARI */
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-right: 2rem; /* Logodan sonra biraz boşluk */
    z-index: 1031; /* Logoyu her zaman üstte tut */
}

.logo-wrapper {
    width: 230px;
    display: flex;
    justify-content: left;
}

.brand-text {
    font-family: 'Nunito', sans-serif;
    font-size: 1.6rem;
    color: #333;
    line-height: 1;
    white-space: nowrap; /* Metnin alt satıra düşmesini engelle */
}

.fw-extrabold {
    font-weight: 800;
    color: var(--primary-color);
}

/* 3. MOBİL VE MASAÜSTÜ AYRIMI (KRİTİK BÖLÜM) */

/* --- MOBİL GÖRÜNÜM (991px ve altı) --- */
@media (max-width: 991.98px) {
    .offcanvas {
        background-color: #ffffff !important;
        width: 300px !important; /* Mobil menü genişliği */
    }

    .offcanvas-body {
        padding: 20px;
        display: flex;
        flex-direction: column; /* Mobilde alt alta sırala */
    }

    .navbar-nav {
        margin-bottom: 20px;
    }

    .nav-link-custom {
        padding: 15px 0;
        border-bottom: 1px solid #f0f0f0;
        display: block;
        width: 100%;
    }

    .auth-buttons {
        display: grid;
        grid-template-columns: 1fr; /* Butonlar tam genişlik */
        gap: 10px;
        margin-top: auto; /* En alta it */
    }
    
    .auth-buttons .btn {
        width: 100%;
        display: block;
        text-align: center;
    }
}

/* --- MASAÜSTÜ GÖRÜNÜM (992px ve üzeri) --- */
@media (min-width: 992px) {

    /* Offcanvas başlığını gizle */
    .offcanvas-header {
        display: none !important;
    }

    /* Offcanvas gövdesini yatay hizala */
    .offcanvas-body {
        display: flex !important;
        flex-direction: row !important; /* Yan yana sırala */
        align-items: center !important;
        justify-content: space-between !important;
        padding: 0 !important;
        width: 100% !important;
        overflow: visible !important;
        background: transparent !important;
    }

    /* Menü Linklerini Ortala */
    .navbar-nav {
        flex-direction: row !important;
        gap: 20px;
        margin: 0 auto !important; /* Tam ortaya hizalar */
        align-items: center;
    }

    .nav-link-custom {
        padding: 32px 5px !important; /* Navbar yüksekliğine göre ayar */
        font-size: 0.95rem;
        font-weight: 700;
        color: var(--secondary-color);
        text-transform: uppercase;
        white-space: nowrap;
        position: relative;
    }
    
    /* Hover Çizgisi */
    .nav-link-custom::after {
        content: '';
        position: absolute;
        bottom: 25px;
        left: 0;
        width: 0;
        height: 3px;
        background-color: var(--primary-color);
        transition: width 0.3s ease;
    }
    
    .nav-link-custom:hover::after,
    .nav-link-custom.active::after {
        width: 100%;
    }

    /* Buton Alanını Sağa Yasla */
    .auth-buttons {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 15px;
        margin-left: 0;
    }

    .auth-buttons .btn {
        width: auto !important;
        min-width: 120px;
        padding: 10px 25px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }

    /* Dropdown Düzeltmesi */
    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%);
        margin-top: 0;
        box-shadow: 0 10px 30px rgba(0,0,0,0.1);
        border: none;
        border-radius: 12px;
        min-width: 220px;
        display: none; /* JS/Hover ile açılacak */
    }

    .nav-item.dropdown:hover .dropdown-menu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
}

/* 4. BUTON STİLLERİ (Ortak) */
.btn-custom-outline {
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
}

.btn-custom-outline:hover {
    background-color: var(--primary-color);
    color: #fff;
}

.btn-custom-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: #fff;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(199, 91, 57, 0.3);
}

.btn-custom-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(199, 91, 57, 0.4);
    color: #fff;
}

/* 5. ANİMASYON */
@keyframes fadeIn {
    from { opacity: 0; transform: translate(-50%, 10px); }
    to { opacity: 1; transform: translate(-50%, 0); }
}

/* --- HİZMETLER MENÜ OKU DÜZELTMESİ --- */

/* 1. Bootstrap'in varsayılan üçgen okunu gizle */
.nav-link-custom.dropdown-toggle::after {
    display: none !important;
}

/* 2. Yeni eklediğimiz ikonun ayarları */
.nav-link-custom .arrow-icon {
    font-size: 0.75em; /* İkonu biraz küçültüp kibar gösterelim */
    margin-left: 6px;  /* Yazıdan biraz uzaklaştır */
    transition: transform 0.3s ease; /* Dönme animasyonu ekle */
    opacity: 0.7; /* Rengini hafif kır */
}

/* 3. Menü açıldığında (tıklandığında) ikon ters dönsün */
.nav-item.dropdown .show > .nav-link-custom .arrow-icon,
.nav-item.dropdown:hover > .nav-link-custom .arrow-icon {
    transform: rotate(180deg);
    opacity: 1;
    color: var(--primary-color);
}

/* =====================================================
   GÜNCEL MOBİL MENÜ TASARIMI VE HİZALAMA
   ===================================================== */

/* 1. Logo ve Butonu Aynı Eksende Hizala */
.navbar > .container {
    display: flex !important;
    align-items: center !important; /* Dikeyde tam ortalama */
    justify-content: space-between !important;
    min-height: 70px; /* Navbar yüksekliği */
}

/* Logo wrapper ayarı */
.logo-wrapper {
    display: flex;
    align-items: center;
    height: 100%;
}

.logo-wrapper img {
    max-height: 40px; /* Logo yüksekliği */
    width: auto;
}

/* 2. YENİ MENÜ BUTONU TASARIMI */
.mobile-menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #ffffff; /* Hafif gri arka plan */
    border: 2px solid #C75B39 !important;
    border-radius: 50px; /* Hap şeklinde yuvarlatılmış */
    padding: 5px 5px 5px 15px; /* İkon sağda, yazı solda dengeli boşluk */
    cursor: pointer;
    transition: all 0.3s ease;
}

/* "MENÜ" Yazısı */
.menu-label {
    font-size: 0.8rem;
    font-weight: 800;
    color: var(--secondary-color);
    letter-spacing: 0.5px;
    line-height: 1;
}

/* İkonun bulunduğu turuncu kutu */
.menu-icon-box {
    width: 32px;
    height: 32px;
    background-color: var(--primary-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    transition: transform 0.3s ease;
}

/* Buton Hover Efekti */
.mobile-menu-btn:hover {
    background-color: #fff;
    border-color: var(--primary-color) !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.mobile-menu-btn:hover .menu-label {
    color: var(--primary-color);
}

.mobile-menu-btn:hover .menu-icon-box {
    transform: rotate(180deg); /* Üzerine gelince ikon dönsün */
}

/* Masaüstünde bu butonu gizle */
@media (min-width: 992px) {
    .mobile-menu-btn {
        display: none !important;
    }
}

/* =====================================================
   NASIL ÇALIŞIR SAYFASI STİLLERİ
   ===================================================== */

/* Süreç Adımları (Process Rows) */
.process-row {
    position: relative;
    margin-bottom: 5rem;
}

/* Her satırın arasında çizgi efekti (Mobilde gizli) */
.process-row::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 3rem;
    background: repeating-linear-gradient(to bottom, var(--gray-300) 0, var(--gray-300) 5px, transparent 5px, transparent 10px);
    z-index: -1;
}

.process-row:last-child {
    margin-bottom: 0;
}
.process-row:last-child::after {
    display: none;
}

/* Adım Numarası */
.process-number {
    font-size: 3rem;
    font-weight: 900;
    color: var(--primary-light);
    opacity: 0.2;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.process-content h3 {
    font-weight: 800;
    color: var(--dark-color);
    margin-bottom: 1rem;
}

.process-content p {
    color: var(--gray-700);
    font-size: 1.05rem;
    margin-bottom: 1.5rem;
}

.process-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.process-list li {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
    font-weight: 600;
}

.process-list li i {
    color: var(--success-color);
    margin-right: 0.75rem;
}

/* Süreç Görseli (İkon Kutusu) */
.process-image {
    background: linear-gradient(135deg, var(--white), var(--light-color));
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    transition: var(--transition);
}

.process-image i {
    font-size: 6rem;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: var(--transition);
}

.process-image:hover {
    transform: translateY(-5px);
}

.process-image:hover i {
    transform: scale(1.1);
}

/* Özelleştirilmiş Accordion (SSS) */
.custom-accordion .accordion-button {
    background-color: var(--white);
    color: var(--dark-color);
    box-shadow: none;
    padding: 1.25rem;
}

.custom-accordion .accordion-button:not(.collapsed) {
    color: var(--primary-color);
    background-color: rgba(199, 91, 57, 0.05); /* Primary color opacity */
}

.custom-accordion .accordion-button:focus {
    box-shadow: none;
    border-color: rgba(199, 91, 57, 0.2);
}

.custom-accordion .accordion-button::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%232C3E50'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.custom-accordion .accordion-button:not(.collapsed)::after {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23C75B39'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

/* Mobilde çizgi gizleme */
@media (max-width: 991px) {
    .process-row::after {
        display: none;
    }
    .process-row {
        margin-bottom: 3rem;
    }
    .process-image {
        height: 200px;
    }
    .process-image i {
        font-size: 4rem;
    }
}

/* =====================================================
   YENİ USTA GİRİŞ SAYFASI (MOBİL UYUMLU SPLIT LAYOUT)
   ===================================================== */

/* Kart Yapısı */
.login-split-card {
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08) !important;
    background-color: var(--white);
    overflow: hidden;
    width: 100%; /* Kapsayıcıya tam oturması için */
}

/* Sol Taraf (Form) Düzenlemeleri */
.login-content {
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Mobilde dikey ortalamayı iptal edip üstten başlatmak daha iyidir */
}

/* Modern Input Grupları */
.login-form .input-group-text {
    border-color: #e0e0e0;
    background-color: #fff;
}

.login-form .form-control {
    border-color: #e0e0e0;
    padding: 0.75rem 0.75rem 0.75rem 0;
    font-size: 1rem;
    height: auto; /* Yükseklik sorunu olmaması için */
}

.login-form .form-control:focus {
    border-color: var(--primary-color);
    box-shadow: none;
}

.login-form .input-group:focus-within .input-group-text {
    border-color: var(--primary-color);
}

.login-form .input-group:focus-within i {
    color: var(--primary-color) !important;
}

/* Sağ Taraf (Görsel) */
.login-image {
    background-image: url('/uploads/image_6d5d4c.jpg'); 
    background-size: cover;
    background-position: center;
    position: relative;
    min-height: 600px;
    height: 100%;
}

/* Görsel Üzerindeki Karartma */
.login-overlay {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: linear-gradient(135deg, rgba(199, 91, 57, 0.85), rgba(26, 26, 46, 0.85));
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-box-white {
    width: 70px; height: 70px;
    background: #fff;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* --- MOBİL UYUMLULUK DÜZELTMELERİ --- */

/* Tablet ve Mobil (991px altı) - Görseli Gizle */
@media (max-width: 991px) {
    .login-image {
        display: none; /* Görseli gizle */
    }
    
    .login-split-card {
        box-shadow: none !important; /* Mobilde gölgeyi kaldırarak daha sade yap */
        border: 1px solid #eee; /* Hafif bir çerçeve ekle */
        border-radius: 12px; /* Köşeleri biraz daha az yuvarla */
    }
}

/* Sadece Telefonlar (767px altı) - İç Boşlukları Küçült */
@media (max-width: 767px) {
    /* Formun içindeki paddingleri zorla küçült */
    .login-content {
        padding: 1.5rem !important; 
    }

    /* Başlık boyutunu küçült */
    .login-content h2 {
        font-size: 1.5rem; 
    }

    /* Sayfa genel paddingini azalt */
    .section-padding {
        padding: 2rem 0 !important;
    }
    
    /* Input alanlarını mobilde daha rahat tıklanabilir yap */
    .login-form .form-control, 
    .login-form .input-group-text {
        padding-top: 0.8rem;
        padding-bottom: 0.8rem;
    }
    
    /* Butonu büyüt */
    .btn-lg {
        width: 100%;
        padding: 0.8rem;
        font-size: 1.1rem;
    }
}

/* =====================================================
   MODERN USTA KAYIT SAYFASI STİLLERİ
   ===================================================== */

/* 1. Progress Step Indicator (Adım Göstergesi) */
.step-indicator-modern {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
}

.step-modern {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-modern span {
    width: 35px;
    height: 35px;
    background: #fff;
    border: 2px solid var(--gray-300);
    color: var(--gray-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: all 0.3s;
    font-size: 0.9rem;
}

.step-modern p {
    font-size: 0.8rem;
    margin-top: 0.5rem;
    color: var(--gray-500);
    font-weight: 600;
    margin-bottom: 0;
}

.step-modern.active span {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: #fff;
    box-shadow: 0 0 0 4px rgba(199, 91, 57, 0.15);
}

.step-modern.active p {
    color: var(--primary-color);
}

.step-line {
    width: 60px;
    height: 2px;
    background: var(--gray-300);
    margin: 0 5px 20px 5px;
}

.step-line.active {
    background: var(--primary-color);
}

/* 2. Hizmet Seçimi & Etiketler */
.autocomplete-item {
    padding: 10px 15px;
    cursor: pointer;
    border-bottom: 1px solid #f1f1f1;
    font-size: 0.95rem;
    transition: background 0.2s;
}
.autocomplete-item:hover {
    background-color: var(--light-color);
    color: var(--primary-color);
}

.service-tag-badge {
    font-size: 0.85rem;
    font-weight: 600;
    transition: all 0.2s;
    border: 1px solid transparent;
}
.service-tag-badge:hover {
    background-color: var(--primary-dark) !important;
    transform: translateY(-1px);
}
.service-tag-badge i {
    opacity: 0.8;
    transition: opacity 0.2s;
}
.service-tag-badge i:hover {
    opacity: 1;
}

/* 3. Fiyatlandırma Kartları (Adım 3) */
.pricing-card {
    transition: transform 0.3s, box-shadow 0.3s;
    border: 2px solid transparent;
}
.pricing-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 1rem 3rem rgba(0,0,0,.1) !important;
    border-color: var(--primary-light);
}
.popular-plan {
    border: 2px solid var(--primary-color) !important;
    position: relative;
    background: #fff;
}
.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translate(-50%, -50%);
    background: var(--primary-color);
    color: #fff;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
}
.price-wrapper .currency {
    font-size: 1.5rem;
    font-weight: 600;
    vertical-align: top;
    color: var(--primary-color);
}
.price-wrapper .amount {
    font-size: 3rem;
    font-weight: 800;
    color: var(--dark-color);
}
.price-wrapper .period {
    color: var(--gray-500);
    font-size: 1rem;
}

/* 4. Mobil Uyumluluk */
@media (max-width: 768px) {
    .step-line { width: 30px; }
    .step-modern span { width: 30px; height: 30px; font-size: 0.8rem; }
    .step-modern p { display: none; } /* Mobilde yazıları gizle, sadece numaralar kalsın */
    
    .login-image { display: none; } /* Mobilde görseli gizle */
    .login-content { padding: 1.5rem !important; }
    
    .pricing-card { margin-bottom: 1rem; }
    .price-wrapper .amount { font-size: 2.5rem; }
}

input::placeholder {
  padding-left:10px;
}

