/* Estpub - Referans Site Tasarımı - Renkler */
:root {
    /* Ana Renkler */
    --primary: #2a4aa1;
    --primary-hover: #1e3570;
    --primary-light: #3d5fc7;
    --secondary: #ffa1f1;
    --secondary-hover: #ff7ae0;
    --light: #c2cdff;
    --light-dark: #a8b8ff;
    
    /* Metin Renkleri */
    --text-dark: #1a1a2e;
    --text-gray: #6b7280;
    --text-light: #9ca3af;
    --text-white: #ffffff;
    
    /* Arka Plan Renkleri */
    --bg-white: #ffffff;
    --bg-light: #f8f9fa;
    --bg-gray: #f3f4f6;
    
    /* Border ve Diğer */
    --border: #e5e7eb;
    --border-light: #f3f4f6;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-light: rgba(0, 0, 0, 0.05);
}

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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    background: var(--bg-light);
    color: var(--text-dark);
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    min-height: 100vh;
}

/* Navigation */
.navbar {
    background: var(--bg-white) !important;
    box-shadow: 0 1px 3px var(--shadow-light);
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
}

.navbar-brand {
    font-size: 1.5rem;
    font-weight: 700;
}

.navbar-brand img {
    height: 40px;
    max-width: 200px;
}

.navbar-toggler {
    border: none;
    padding: 0.25rem 0.5rem;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.nav-link {
    color: var(--text-dark) !important;
    font-weight: 500;
    font-size: 15px;
    padding: 0.5rem 1rem !important;
    transition: color 0.2s;
}

.nav-link:hover {
    color: var(--primary) !important;
}

.btn-outline-primary {
    border: 1px solid var(--primary);
    color: var(--primary);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 14px;
}

.btn-primary {
    background: var(--primary);
    border: none;
    color: var(--text-white);
    font-weight: 500;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s ease;
}

.btn-primary:hover {
    background: var(--primary-hover);
}

.material-icons {
    font-size: 24px;
    vertical-align: middle;
}

/* Hero Section */
.hero-section-new {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--light) 20%, var(--bg-white) 100%);
    padding: 100px 0 120px;
    min-height: 650px;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-section-new::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(194, 205, 255, 0.15) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-section-new::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 161, 241, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.hero-section-new > .container {
    position: relative;
    z-index: 1;
}

.min-vh-75 {
    min-height: 75vh;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-search {
    margin-top: 2rem;
}

.search-form {
    display: flex;
    gap: 12px;
    background: var(--bg-white);
    padding: 8px;
    border-radius: 16px;
    box-shadow: 0 8px 24px rgba(42, 74, 161, 0.12);
    border: 1px solid var(--border);
    transition: all 0.3s ease;
}

.search-form:focus-within {
    box-shadow: 0 12px 32px rgba(42, 74, 161, 0.18);
    transform: translateY(-2px);
}

.search-input-wrapper,
.search-location-wrapper {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon,
.location-icon {
    position: absolute;
    left: 15px;
    color: var(--text-gray);
    font-size: 20px;
}

.search-input,
.location-select {
    width: 100%;
    padding: 14px 14px 14px 45px;
    border: none;
    font-size: 15px;
    background: transparent;
}

.search-input:focus,
.location-select:focus {
    outline: none;
}

.btn-search {
    background: var(--primary);
    color: var(--text-white);
    border: none;
    padding: 14px 24px;
    border-radius: 8px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
}

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

/* Search Results */
.search-results-section {
    padding: 60px 0;
    background: var(--bg-white);
}

.result-card {
    background: var(--bg-white);
    padding: 20px;
    border-radius: 12px;
    border: 1px solid var(--border);
    margin-bottom: 16px;
    transition: all 0.2s ease;
}

.result-card:hover {
    box-shadow: 0 2px 8px var(--shadow-light);
}

.result-card h5 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 8px;
    color: var(--text-dark);
}

.badge-category {
    background: var(--light);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 12px;
    display: inline-block;
    border: 1px solid transparent;
    transition: all 0.2s ease;
}

.badge-category:hover {
    background: var(--primary);
    color: var(--text-white);
}

.btn-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: 12px;
    transition: all 0.2s ease;
}

.btn-link:hover {
    color: var(--primary-hover);
}

/* Why Section */
.why-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-white) 0%, var(--bg-light) 100%);
    position: relative;
}

.why-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--light), transparent);
}

.section-title {
    font-size: 2.75rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--light));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border-light);
    transition: all 0.3s ease;
    height: 100%;
}

.feature-card:hover {
    background: var(--bg-white);
    border-color: var(--light);
    box-shadow: 0 8px 24px rgba(42, 74, 161, 0.1);
    transform: translateY(-5px);
}

.feature-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--light) 0%, var(--primary-light) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(42, 74, 161, 0.15);
}

.feature-card:hover .feature-icon {
    background: var(--primary);
}

.feature-icon .material-icons {
    font-size: 40px;
    color: var(--primary);
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon .material-icons {
    color: var(--text-white);
}

.feature-card h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.7;
}

/* Categories Section */
.categories-section {
    padding: 100px 0;
    background: var(--bg-white);
    position: relative;
}

.category-group {
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    padding: 3rem;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.category-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--light), var(--secondary));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.category-group:hover {
    border-color: var(--light);
    box-shadow: 0 12px 32px rgba(42, 74, 161, 0.12);
    transform: translateY(-5px);
}

.category-group:hover::before {
    opacity: 1;
}

.category-header h2 {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    position: relative;
    display: inline-block;
}

.category-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--light));
    border-radius: 2px;
}

.category-header p {
    color: var(--text-gray);
    margin-bottom: 1.5rem;
}

.location-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 1rem;
}

.location-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--bg-light);
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.2s ease;
    text-decoration: none;
}

.location-badge:hover {
    background: var(--light);
    border-color: var(--primary);
    color: var(--primary);
}

.location-badge .material-icons {
    font-size: 18px;
}

/* Trends Section */
.trends-section {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--bg-white) 100%);
    position: relative;
}

.trend-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.2s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.trend-card:hover {
    box-shadow: 0 12px 32px rgba(42, 74, 161, 0.15);
    border-color: var(--light);
    transform: translateY(-8px);
}

.trend-image {
    height: 220px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.trend-image-placeholder {
    height: 220px;
    background: linear-gradient(135deg, var(--light) 0%, rgba(255, 161, 241, 0.1) 50%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.trend-image-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(42, 74, 161, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.trend-image-placeholder .material-icons {
    position: relative;
    z-index: 1;
}

.trend-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.trend-category,
.trend-date {
    font-size: 13px;
    color: var(--text-gray);
    display: inline-block;
    margin-bottom: 0.5rem;
}

.trend-date {
    margin-left: 12px;
}

.trend-content h4 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.trend-content p {
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex-grow: 1;
}

.trend-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    margin-top: auto;
    transition: all 0.2s ease;
}

.trend-link:hover {
    color: var(--primary-hover);
}

/* Page Header */
.page-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--bg-light) 100%);
    border-bottom: 1px solid var(--border-light);
}

.page-header-content {
    text-align: center;
}

.page-title {
    font-size: 3rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
    position: relative;
    display: inline-block;
}

.page-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--light));
    border-radius: 2px;
}

.page-subtitle {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-top: 2rem;
}

/* Listings Section */
.listings-section {
    padding: 60px 0 100px;
    background: var(--bg-white);
}

.filters-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 3rem;
    box-shadow: 0 2px 8px var(--shadow-light);
}

.location-filters-inline {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 1rem;
}

.location-badge.active {
    background: var(--primary);
    color: var(--text-white);
    border-color: var(--primary);
}

.location-badge.active .material-icons {
    color: var(--text-white);
}

.results-count {
    font-size: 1rem;
    color: var(--text-gray);
    margin: 0;
}

.results-count strong {
    color: var(--primary);
    font-size: 1.2rem;
}

/* Listing Cards */
.listings-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.listing-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.listing-card:hover {
    box-shadow: 0 12px 32px rgba(42, 74, 161, 0.15);
    border-color: var(--light);
    transform: translateY(-5px);
}

.listing-image {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, var(--light) 0%, var(--bg-light) 100%);
}

.listing-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.listing-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light) 0%, rgba(255, 161, 241, 0.1) 100%);
}

.listing-image-placeholder .material-icons {
    font-size: 80px;
    color: var(--primary);
    opacity: 0.3;
}

.listing-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--bg-white);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.listing-badge .material-icons {
    font-size: 18px;
}

.listing-content {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.listing-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.listing-meta {
    margin-bottom: 1rem;
}

.listing-location {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--text-gray);
    font-size: 14px;
}

.listing-location .material-icons {
    font-size: 18px;
    color: var(--primary);
}

.listing-description {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.listing-footer {
    margin-top: auto;
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 80px 20px;
    background: var(--bg-light);
    border-radius: 16px;
    border: 2px dashed var(--border);
}

.empty-state .material-icons {
    font-size: 80px;
    color: var(--text-light);
    margin-bottom: 1.5rem;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.empty-state p {
    color: var(--text-gray);
}

/* Pagination */
.pagination-wrapper {
    margin-top: 3rem;
}

.pagination {
    gap: 8px;
}

.page-link {
    border: 1px solid var(--border);
    color: var(--text-dark);
    padding: 10px 16px;
    border-radius: 8px;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.page-link:hover {
    background: var(--light);
    border-color: var(--primary);
    color: var(--primary);
}

.page-item.active .page-link {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--text-white);
}

/* Detail Page */
.detail-page-header {
    padding: 60px 0 40px;
    background: linear-gradient(135deg, var(--bg-white) 0%, var(--light) 20%, var(--bg-white) 100%);
    border-bottom: 1px solid var(--border-light);
}

.detail-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.detail-meta {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.detail-location {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 1rem;
}

.detail-location .material-icons {
    font-size: 20px;
    color: var(--primary);
}

.detail-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--light);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
}

.detail-badge .material-icons {
    font-size: 24px;
}

.detail-page-content {
    padding: 60px 0;
    background: var(--bg-white);
}

.detail-card {
    background: var(--bg-white);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 2rem;
}

.detail-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.detail-description {
    color: var(--text-gray);
    line-height: 1.8;
    font-size: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1rem;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--bg-light);
    border-radius: 8px;
    transition: all 0.2s ease;
}

.service-item:hover {
    background: var(--light);
    transform: translateX(5px);
}

.service-item .material-icons {
    color: var(--primary);
    font-size: 20px;
}

.service-item span:last-child {
    color: var(--text-dark);
    font-size: 14px;
}

/* Sidebar */
.detail-sidebar {
    position: sticky;
    top: 100px;
}

.sidebar-card {
    background: var(--bg-white);
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
}

.sidebar-card-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border-light);
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.contact-item .material-icons {
    color: var(--primary);
    font-size: 24px;
    margin-top: 4px;
}

.contact-item div {
    flex: 1;
}

.contact-item strong {
    display: block;
    color: var(--text-dark);
    font-size: 13px;
    margin-bottom: 4px;
}

.contact-item a {
    color: var(--primary);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.contact-item a:hover {
    color: var(--primary-hover);
}

.contact-item p {
    color: var(--text-gray);
    font-size: 14px;
    margin: 8px 0 0 0;
}

.location-badge-small {
    display: inline-block;
    background: var(--light);
    color: var(--primary);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    margin-top: 8px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
}

/* Calendar Widget */
.calendar-widget {
    background: var(--bg-white);
    position: relative;
}

.calendar-widget .calendar-grid {
    visibility: visible !important;
    opacity: 1 !important;
    display: grid !important;
}

.calendar-grid-rendered {
    display: grid !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-light);
}

.calendar-header h5 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-dark);
}

.calendar-grid {
    display: grid !important;
    grid-template-columns: repeat(7, 1fr) !important;
    gap: 6px !important;
    min-height: 250px !important;
    padding: 10px 0 !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.calendar-day-name {
    aspect-ratio: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    font-size: 13px !important;
    font-weight: 700;
    color: #666 !important;
    padding: 8px;
    min-height: 35px;
}

.calendar-day {
    aspect-ratio: 1;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    font-size: 14px !important;
    font-weight: 500;
    color: var(--text-dark) !important;
    cursor: pointer;
    transition: all 0.2s;
    background: #f8f9fa;
    min-height: 40px;
    min-width: 40px;
}

.calendar-day.other-month {
    opacity: 0.3;
    cursor: not-allowed;
    background: transparent;
}

.calendar-day:hover {
    background: var(--light);
}

.calendar-day.selected {
    background: var(--primary);
    color: var(--text-white);
}

.calendar-day.today {
    border: 2px solid var(--primary);
}

/* Chat Widget (Anlık Mesajlaşma - Chatbox) */
.chat-widget-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
}

.chat-widget-button {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a4aa1 0%, #1a3a91 100%);
    color: white;
    border: none;
    box-shadow: 0 8px 24px rgba(42, 74, 161, 0.4);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    animation: pulse 2s infinite;
}

.chat-widget-button:hover {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(42, 74, 161, 0.5);
    background: linear-gradient(135deg, #3a5ab1 0%, #2a4aa1 100%);
}

.chat-widget-button .material-icons {
    font-size: 32px;
}

.chat-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: #ff4444;
    color: white;
    border-radius: 12px;
    min-width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    padding: 0 6px;
    box-shadow: 0 2px 8px rgba(255, 68, 68, 0.4);
    animation: bounce 1s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 8px 24px rgba(42, 74, 161, 0.4);
    }
    50% {
        box-shadow: 0 8px 32px rgba(42, 74, 161, 0.6);
    }
}

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

.chat-widget-window {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 400px;
    max-width: calc(100vw - 40px);
    height: 600px;
    max-height: calc(100vh - 120px);
    background: white;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: scale(0.9);
    opacity: 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.chat-widget-window.active {
    display: flex;
    transform: scale(1);
    opacity: 1;
}

.chat-widget-window.minimized {
    height: 60px;
    overflow: hidden;
}

.chat-widget-header {
    background: linear-gradient(135deg, #2a4aa1 0%, #1a3a91 100%);
    color: white;
    padding: 1.25rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px 20px 0 0;
}

.chat-widget-header-info {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: 1;
}

.chat-widget-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-widget-avatar .material-icons {
    font-size: 24px;
    color: white;
}

.chat-widget-header-info strong {
    display: block;
    font-size: 1.1rem;
    font-weight: 600;
}

.chat-status {
    display: block;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-top: 2px;
}

.chat-status::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #4ade80;
    margin-right: 6px;
    animation: blink 2s infinite;
}

@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.chat-widget-header-actions {
    display: flex;
    gap: 8px;
}

.chat-widget-minimize,
.chat-widget-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
}

.chat-widget-minimize:hover,
.chat-widget-close:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.chat-widget-body {
    flex: 1;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #f8f9fa;
}

.chat-login-prompt {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.chat-login-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c2cdff 0%, #2a4aa1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.chat-login-icon .material-icons {
    font-size: 40px;
    color: white;
}

.chat-login-prompt h5 {
    color: var(--text-dark);
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.chat-login-prompt p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

.chat-login-buttons {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.chat-messages-container {
    flex: 1;
    overflow-y: auto;
    padding: 1.5rem;
    background: #f8f9fa;
}

.chat-messages-container::-webkit-scrollbar {
    width: 6px;
}

.chat-messages-container::-webkit-scrollbar-track {
    background: transparent;
}

.chat-messages-container::-webkit-scrollbar-thumb {
    background: #d1d5db;
    border-radius: 3px;
}

.chat-messages-container::-webkit-scrollbar-thumb:hover {
    background: #9ca3af;
}

.chat-messages {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.message.sent {
    flex-direction: row-reverse;
}

.message-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, #c2cdff 0%, #2a4aa1 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.message.sent .message-avatar {
    background: linear-gradient(135deg, #2a4aa1 0%, #1a3a91 100%);
}

.message-avatar .material-icons {
    font-size: 20px;
    color: white;
}

.message-content {
    flex: 1;
    max-width: 75%;
}

.message-text {
    padding: 12px 16px;
    border-radius: 18px;
    font-size: 14px;
    line-height: 1.5;
    word-wrap: break-word;
}

.message.received .message-text {
    background: white;
    color: var(--text-dark);
    border-bottom-left-radius: 4px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.message.sent .message-text {
    background: linear-gradient(135deg, #2a4aa1 0%, #1a3a91 100%);
    color: white;
    border-bottom-right-radius: 4px;
    box-shadow: 0 2px 8px rgba(42, 74, 161, 0.3);
}

.message-time {
    font-size: 11px;
    color: var(--text-gray);
    margin-top: 4px;
    padding: 0 4px;
    text-align: right;
}

.message.sent .message-time {
    text-align: left;
}

.chat-input-container {
    background: white;
    border-top: 1px solid var(--border-light);
    padding: 1rem 1.5rem;
}

.chat-input-wrapper {
    display: flex;
    gap: 0.75rem;
    align-items: center;
}

.chat-input {
    flex: 1;
    border: 2px solid var(--border);
    border-radius: 24px;
    padding: 12px 18px;
    font-size: 14px;
    transition: all 0.2s;
    background: #f8f9fa;
}

.chat-input:focus {
    outline: none;
    border-color: var(--primary);
    background: white;
    box-shadow: 0 0 0 4px rgba(42, 74, 161, 0.1);
}

.chat-send-button {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #2a4aa1 0%, #1a3a91 100%);
    color: white;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    flex-shrink: 0;
}

.chat-send-button:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 12px rgba(42, 74, 161, 0.4);
}

.chat-send-button:active {
    transform: scale(0.95);
}

.chat-send-button .material-icons {
    font-size: 20px;
}

.chat-typing-indicator {
    padding: 0.5rem 1rem;
    font-size: 12px;
    color: var(--text-gray);
    font-style: italic;
}

.chat-typing-indicator::before {
    content: '●';
    display: inline-block;
    animation: typing 1.4s infinite;
    margin-right: 4px;
}

@keyframes typing {
    0%, 60%, 100% { opacity: 0.3; }
    30% { opacity: 1; }
}

/* Mobile Responsive Chat Widget */
@media (max-width: 768px) {
    .chat-widget-container {
        bottom: 15px;
        right: 15px;
    }
    
    .chat-widget-button {
        width: 56px;
        height: 56px;
    }
    
    .chat-widget-button .material-icons {
        font-size: 28px;
    }
    
    .chat-widget-window {
        width: calc(100vw - 30px);
        height: calc(100vh - 100px);
        max-height: calc(100vh - 100px);
        bottom: 75px;
        right: 0;
        border-radius: 20px 20px 0 0;
    }
    
    .chat-widget-header {
        padding: 1rem 1.25rem;
    }
    
    .chat-widget-avatar {
        width: 40px;
        height: 40px;
    }
    
    .message-content {
        max-width: 85%;
    }
    
    .chat-input-container {
        padding: 0.75rem 1rem;
    }
}

.chat-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--border-light);
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: var(--bg-light);
    border-radius: 16px 16px 0 0;
}

.chat-header strong {
    color: var(--text-dark);
    display: block;
}

.chat-header small {
    color: var(--text-gray);
    font-size: 12px;
}

.chat-messages {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.message {
    padding: 12px 16px;
    border-radius: 12px;
    max-width: 80%;
    font-size: 14px;
}

.message.received {
    background: var(--bg-light);
    color: var(--text-dark);
    align-self: flex-start;
}

.message.sent {
    background: var(--primary);
    color: var(--text-white);
    align-self: flex-end;
}

.chat-input-area {
    padding: 1rem;
    border-top: 1px solid var(--border-light);
    display: flex;
    gap: 8px;
}

.chat-input {
    flex: 1;
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 14px;
}

.chat-send {
    padding: 10px 16px;
}

/* Footer */
.footer-new {
    background: var(--text-dark);
    color: rgba(255,255,255,0.8);
    padding: 60px 0 30px;
    margin-top: 80px;
}

.footer-logo {
    height: 40px;
    margin-bottom: 1rem;
    filter: brightness(0) invert(1);
}

.footer-description {
    color: rgba(255,255,255,0.7);
    line-height: 1.7;
    max-width: 300px;
}

.footer-heading {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 1rem;
}

.footer-links {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--light);
}

.footer-contact {
    list-style: none;
    padding: 0;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 1rem;
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}

.footer-contact .material-icons {
    font-size: 20px;
    color: var(--light);
}

.footer-divider {
    border-color: rgba(255,255,255,0.1);
    margin: 2rem 0 1.5rem;
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255,255,255,0.6);
    font-size: 14px;
    margin: 0;
}

.footer-bottom-links {
    display: flex;
    gap: 1.5rem;
}

.footer-bottom-links a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-bottom-links a:hover {
    color: var(--light);
}

/* Cards */
.card {
    border: 1px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s ease;
    background: var(--bg-white);
}

.card:hover {
    box-shadow: 0 2px 8px var(--shadow-light);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .search-form {
        flex-direction: column;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .category-group {
        padding: 1.5rem;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
    
    .navbar-nav {
        margin-top: 1rem;
    }
    
    .btn-primary,
    .btn-outline-primary {
        width: 100%;
        margin-top: 0.5rem;
    }
    
    /* Chat Widget Responsive */
    .chat-widget {
        bottom: 20px;
        right: 20px;
    }
    
    .chat-button {
        width: 56px;
        height: 56px;
    }
    
    .chat-button .material-icons {
        font-size: 24px;
    }
    
    .chat-window {
        width: calc(100vw - 40px);
        height: calc(100vh - 120px);
        bottom: 76px;
        right: 0;
        border-radius: 16px 16px 0 0;
    }
}

/* Utility Classes */
.text-muted {
    color: var(--text-gray) !important;
}

.mt-5 {
    margin-top: 3rem;
}

.mb-4 {
    margin-bottom: 1.5rem;
}

.mb-5 {
    margin-bottom: 3rem;
}

/* Register Form */
.register-section {
    padding: 60px 0 100px;
    background: var(--bg-white);
}

.register-form {
    background: var(--bg-white);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid var(--border);
    box-shadow: 0 4px 12px var(--shadow-light);
}

.form-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border-light);
}

.form-section:last-of-type {
    border-bottom: none;
}

.form-section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    gap: 12px;
}

.form-section-title .material-icons {
    font-size: 28px;
    color: var(--primary);
}

.category-selector {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1rem;
}

.category-option {
    position: relative;
}

.category-option input[type="radio"] {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.category-option label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem 1.5rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: var(--bg-white);
    text-align: center;
    gap: 12px;
}

.category-option label .material-icons {
    font-size: 40px;
    color: var(--text-gray);
    transition: all 0.3s ease;
}

.category-option label span:last-child {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 15px;
}

.category-option input[type="radio"]:checked + label {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--light) 0%, rgba(255, 161, 241, 0.1) 100%);
    box-shadow: 0 4px 12px rgba(42, 74, 161, 0.15);
}

.category-option input[type="radio"]:checked + label .material-icons {
    color: var(--primary);
    transform: scale(1.1);
}

.category-option label:hover {
    border-color: var(--light);
    transform: translateY(-2px);
}

.form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-size: 14px;
}

.form-control,
.form-select {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 15px;
    transition: all 0.2s ease;
}

.form-control:focus,
.form-select:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(42, 74, 161, 0.1);
    outline: none;
}

.form-text {
    font-size: 13px;
    display: flex;
    align-items: center;
    gap: 6px;
    margin-top: 0.5rem;
}

.alert {
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    border: none;
}

.alert-success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.1) 0%, rgba(76, 175, 80, 0.05) 100%);
    color: #2e7d32;
    border-left: 4px solid #4caf50;
}

.alert-danger {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.1) 0%, rgba(244, 67, 54, 0.05) 100%);
    color: #c62828;
    border-left: 4px solid #f44336;
}

.alert .material-icons {
    font-size: 28px;
    flex-shrink: 0;
}

.alert strong {
    display: block;
    margin-bottom: 0.25rem;
}

.alert p {
    margin: 0;
}

.form-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border-light);
}

.form-actions .btn {
    min-width: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    font-weight: 600;
}

.form-actions .btn .material-icons {
    font-size: 20px;
}

.form-check {
    padding: 1rem;
    border: 2px solid var(--border);
    border-radius: 12px;
    transition: all 0.2s ease;
    margin-bottom: 1rem;
}

.form-check:hover {
    border-color: var(--light);
    background: var(--bg-light);
}

.form-check-input {
    margin-top: 0.5rem;
    width: 20px;
    height: 20px;
    cursor: pointer;
}

.form-check-input:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.form-check-label {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-weight: 500;
    color: var(--text-dark);
    margin-left: 0.5rem;
}

.form-check-input:checked ~ .form-check-label {
    color: var(--primary);
}

.form-check-input:checked ~ .form-check-label .material-icons {
    color: var(--primary);
}

/* Google Places Autocomplete */
.position-relative {
    position: relative;
}

.search-place-icon {
    position: absolute;
    right: 180px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-gray);
    pointer-events: none;
}

.btn-google-fetch {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 6px;
    border-radius: 6px;
    z-index: 10;
    white-space: nowrap;
}

.btn-google-fetch .material-icons {
    font-size: 18px;
}

.btn-google-fetch:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

#place-search {
    padding-right: 200px;
}

.autocomplete-results {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15);
    max-height: 300px;
    overflow-y: auto;
    z-index: 1000;
    margin-top: 4px;
    display: none;
}

.autocomplete-item {
    padding: 12px 16px;
    cursor: pointer;
    border-bottom: 1px solid var(--border-light);
    transition: background 0.2s;
}

.autocomplete-item:last-child {
    border-bottom: none;
}

.autocomplete-item:hover {
    background: var(--bg-light);
}

.autocomplete-item-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.autocomplete-item-content strong {
    color: var(--text-dark);
    font-size: 14px;
}

.autocomplete-item-content small {
    color: var(--text-gray);
    font-size: 12px;
}

.autocomplete-hint {
    padding: 1.5rem;
    text-align: center;
    color: var(--text-gray);
}

.autocomplete-hint .material-icons {
    font-size: 48px;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.autocomplete-hint p {
    margin: 0.5rem 0;
    font-size: 13px;
}

/* Google Status Message */
.google-status-alert {
    margin-bottom: 2rem;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-success {
    background: #4caf50;
    border-color: #4caf50;
    color: white;
}

.btn-success:hover {
    background: #45a049;
    border-color: #45a049;
}

.btn-danger {
    background: #f44336;
    border-color: #f44336;
    color: white;
}

.btn-danger:hover {
    background: #da190b;
    border-color: #da190b;
}

.alert-info {
    background: linear-gradient(135deg, rgba(33, 150, 243, 0.1) 0%, rgba(33, 150, 243, 0.05) 100%);
    color: #0277bd;
    border-left: 4px solid #2196f3;
}

/* Premium Verification Badges */
.verification-badges {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-top: 1rem;
    align-items: center;
}

/* Estpub Verified Badge */
.estpub-verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.25rem;
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
    animation: pulse-verified 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.estpub-verified-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: rotate(45deg);
    animation: shine 3s infinite;
}

.estpub-verified-badge .material-icons {
    font-size: 20px;
    animation: check-bounce 2s ease-in-out infinite;
}

@keyframes pulse-verified {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(76, 175, 80, 0.3);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 6px 25px rgba(76, 175, 80, 0.5);
        transform: scale(1.02);
    }
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

@keyframes check-bounce {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.1);
    }
}

/* Estpub Registered Premium Badge - Ultra Plus Plus */
.estpub-registered-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.5rem;
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 50%, #FF6B6B 100%);
    background-size: 200% 200%;
    animation: gradient-shift 3s ease infinite;
    color: #1a1a2e;
    border-radius: 60px;
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.5px;
    box-shadow: 
        0 8px 30px rgba(255, 215, 0, 0.4),
        0 0 0 3px rgba(255, 215, 0, 0.2),
        inset 0 2px 10px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    transform: perspective(1000px) rotateX(5deg);
    transition: all 0.3s ease;
}

.estpub-registered-badge:hover {
    transform: perspective(1000px) rotateX(0deg) scale(1.05);
    box-shadow: 
        0 12px 40px rgba(255, 215, 0, 0.6),
        0 0 0 4px rgba(255, 215, 0, 0.3),
        inset 0 2px 15px rgba(255, 255, 255, 0.4);
}

.estpub-registered-badge::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(
        45deg,
        transparent 30%,
        rgba(255, 255, 255, 0.4) 50%,
        transparent 70%
    );
    transform: rotate(45deg);
    animation: premium-shine 4s infinite;
}

.estpub-registered-badge::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    right: 2px;
    bottom: 2px;
    border-radius: 58px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.2) 0%, transparent 100%);
    pointer-events: none;
}

.estpub-registered-badge .material-icons {
    font-size: 24px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
    animation: star-spin 3s linear infinite;
    position: relative;
    z-index: 1;
}

.estpub-registered-badge span:not(.material-icons) {
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(255, 255, 255, 0.5);
}

@keyframes gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

@keyframes premium-shine {
    0% {
        left: -100%;
    }
    50% {
        left: 100%;
    }
    100% {
        left: 100%;
    }
}

@keyframes star-spin {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(90deg) scale(1.1);
    }
    50% {
        transform: rotate(180deg) scale(1);
    }
    75% {
        transform: rotate(270deg) scale(1.1);
    }
}

/* Small badges for list pages */
.verification-badge-small {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.5rem;
    border-radius: 12px;
    font-size: 0.7rem;
    font-weight: 600;
    margin-left: 0.5rem;
}

.verification-badge-small.verified {
    background: linear-gradient(135deg, #4CAF50 0%, #45a049 100%);
    color: white;
    box-shadow: 0 2px 8px rgba(76, 175, 80, 0.3);
}

.verification-badge-small.registered {
    background: linear-gradient(135deg, #FFD700 0%, #FFA500 100%);
    color: #1a1a2e;
    box-shadow: 0 2px 8px rgba(255, 215, 0, 0.4);
}

.verification-badge-small .material-icons {
    font-size: 14px;
}

/* Badge positioning in detail header */
.detail-page-header .verification-badges {
    margin-top: 1.5rem;
}

.detail-title-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

/* Responsive adjustments */
/* Category Cards */
.category-card {
    background: var(--bg-white);
    border-radius: 16px;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.category-card-image {
    width: 100%;
    height: 200px;
    background: linear-gradient(135deg, var(--light) 0%, var(--bg-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    position: relative;
}

.category-card-content {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.category-card-content h5 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.75rem;
}

.category-card-content .text-muted {
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.category-card-content .small {
    color: var(--text-gray);
    line-height: 1.6;
    flex: 1;
    margin-bottom: 1rem;
}

.category-card-content .btn-link {
    margin-top: auto;
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    transition: all 0.2s ease;
}

.category-card-content .btn-link:hover {
    color: var(--primary-hover);
    gap: 0.5rem;
}

@media (max-width: 768px) {
    .register-form {
        padding: 2rem 1.5rem;
    }
    
    .category-selector {
        grid-template-columns: 1fr;
    }
    
    .form-actions {
        flex-direction: column;
    }
    
    .form-actions .btn {
        width: 100%;
    }
    
    .btn-google-fetch {
        position: static;
        transform: none;
        width: 100%;
        margin-top: 8px;
        justify-content: center;
    }
    
    .search-place-icon {
        right: 15px;
    }
    
    #place-search {
        padding-right: 45px;
    }
    
    .estpub-verified-badge,
    .estpub-registered-badge {
        font-size: 0.85rem;
        padding: 0.6rem 1rem;
    }
    
    .estpub-registered-badge {
        padding: 0.8rem 1.2rem;
    }
    
    .verification-badges {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .category-card-image {
        height: 150px;
    }
    
    .category-card-content {
        padding: 1rem;
    }
}

/* Sosyal Medya Linkleri */
.social-links {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
    color: white;
}

.social-link.facebook {
    background: #1877f2;
}

.social-link.facebook:hover {
    background: #166fe5;
    transform: translateY(-2px);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

.social-link.instagram:hover {
    transform: translateY(-2px);
    opacity: 0.9;
}

.social-link.twitter {
    background: #1da1f2;
}

.social-link.twitter:hover {
    background: #1a91da;
    transform: translateY(-2px);
}

.social-link.linkedin {
    background: #0077b5;
}

.social-link.linkedin:hover {
    background: #006399;
    transform: translateY(-2px);
}

.social-link.youtube {
    background: #ff0000;
}

.social-link.youtube:hover {
    background: #cc0000;
    transform: translateY(-2px);
}

.social-link.tiktok {
    background: #000000;
}

.social-link.tiktok:hover {
    background: #333333;
    transform: translateY(-2px);
}

/* Yorumlar Bölümü */
.reviews-section {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px solid var(--border);
}

.reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.reviews-stats {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.rating-stars {
    display: flex;
    gap: 0.25rem;
}

.rating-stars .material-icons {
    font-size: 24px;
    color: #ffc107;
}

.rating-number {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-dark);
}

.review-form {
    background: var(--bg-light);
    padding: 1.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.review-form h5 {
    margin-bottom: 1rem;
}

.rating-input {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.rating-input .star-btn {
    background: none;
    border: none;
    font-size: 2rem;
    color: #ddd;
    cursor: pointer;
    transition: color 0.2s;
    padding: 0;
}

.rating-input .star-btn:hover,
.rating-input .star-btn.active {
    color: #ffc107;
}

.reviews-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.review-item {
    background: var(--bg-white);
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 1rem;
}

.review-author {
    font-weight: 600;
    color: var(--text-dark);
}

.review-date {
    font-size: 0.875rem;
    color: var(--text-light);
}

.review-rating {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.review-rating .material-icons {
    font-size: 18px;
    color: #ffc107;
}

.review-content {
    color: var(--text);
    line-height: 1.6;
}

.review-source {
    display: inline-block;
    padding: 0.25rem 0.75rem;
    background: var(--gray-100);
    border-radius: 6px;
    font-size: 0.75rem;
    color: var(--text-light);
    margin-top: 0.5rem;
}

/* ============================================
   MODERN HOMEPAGE STYLES
   ============================================ */

/* Modern Hero Section */
.hero-section-modern {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    padding: 120px 0 140px;
    min-height: 90vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero-background-animation {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: heroBackgroundMove 20s ease-in-out infinite;
}

@keyframes heroBackgroundMove {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(-20px, -20px) scale(1.1); }
}

.hero-content-modern {
    position: relative;
    z-index: 2;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    color: white;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 2rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    animation: fadeIn 1s ease-out 0.2s both;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.hero-badge-modern .material-icons {
    font-size: 20px;
}

.hero-title-modern {
    font-size: 4.5rem;
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.hero-title-line-1,
.hero-title-line-2 {
    display: block;
    animation: fadeInUp 0.8s ease-out;
}

.hero-title-line-2 {
    animation-delay: 0.2s;
    background: linear-gradient(135deg, #fff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle-modern {
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 2.5rem;
    line-height: 1.6;
    font-weight: 400;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.hero-stats-modern {
    display: flex;
    gap: 3rem;
    margin-bottom: 3rem;
    animation: fadeInUp 0.8s ease-out 0.6s both;
}

.hero-stat-item {
    text-align: left;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.stat-label {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

.hero-search-modern {
    animation: fadeInUp 0.8s ease-out 0.8s both;
}

.search-form-modern {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.search-container-modern {
    display: flex;
    gap: 8px;
    align-items: center;
}

.search-input-wrapper-modern,
.search-location-wrapper-modern {
    flex: 1;
    position: relative;
    display: flex;
    align-items: center;
}

.search-icon-modern,
.location-icon-modern {
    position: absolute;
    left: 15px;
    color: var(--primary);
    font-size: 24px;
    z-index: 1;
}

.search-input-modern,
.location-select-modern {
    width: 100%;
    padding: 16px 16px 16px 50px;
    border: 2px solid transparent;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: white;
}

.search-input-modern:focus,
.location-select-modern:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(42, 74, 161, 0.1);
}

.btn-search-modern {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(42, 74, 161, 0.3);
}

.btn-search-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(42, 74, 161, 0.4);
}

.hero-visual-modern {
    position: relative;
    width: 100%;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 1s ease-out 0.4s both;
}

.hero-visual-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.hero-visual-circle-1 {
    width: 400px;
    height: 400px;
    animation: pulse 3s ease-in-out infinite;
}

.hero-visual-circle-2 {
    width: 300px;
    height: 300px;
    animation: pulse 3s ease-in-out infinite 0.5s;
}

.hero-visual-circle-3 {
    width: 200px;
    height: 200px;
    animation: pulse 3s ease-in-out infinite 1s;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.hero-visual-icon {
    position: relative;
    z-index: 2;
}

.hero-visual-icon .material-icons {
    font-size: 200px;
    color: white;
    opacity: 0.9;
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.3));
}

.hero-visual-particles {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    opacity: 0.6;
    animation: float 6s ease-in-out infinite;
}

.particle-1 { top: 20%; left: 10%; animation-delay: 0s; }
.particle-2 { top: 60%; left: 20%; animation-delay: 1s; }
.particle-3 { top: 40%; left: 80%; animation-delay: 2s; }
.particle-4 { top: 80%; left: 70%; animation-delay: 1.5s; }
.particle-5 { top: 30%; left: 50%; animation-delay: 0.5s; }

@keyframes float {
    0%, 100% { transform: translateY(0) translateX(0); }
    33% { transform: translateY(-30px) translateX(20px); }
    66% { transform: translateY(20px) translateX(-20px); }
}

/* Modern Why Section */
.why-section-modern {
    padding: 120px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
}

.section-badge-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    color: white;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    box-shadow: 0 4px 15px rgba(42, 74, 161, 0.2);
}

.section-badge-modern .material-icons {
    font-size: 20px;
}

.section-title-modern {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--text-dark);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--text-dark) 0%, var(--primary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-subtitle-modern {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 4rem;
    line-height: 1.7;
}

/* Modern Feature Cards */
.feature-card-modern {
    text-align: center;
    padding: 3rem 2.5rem;
    background: white;
    border-radius: 24px;
    border: 2px solid transparent;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.feature-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--light), var(--secondary));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.feature-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(42, 74, 161, 0.15);
    border-color: var(--light);
}

.feature-card-modern:hover::before {
    transform: scaleX(1);
}

.feature-icon-modern {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--light) 0%, var(--primary-light) 100%);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    transition: all 0.4s ease;
    position: relative;
    box-shadow: 0 8px 25px rgba(42, 74, 161, 0.2);
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
}

.feature-icon-modern .material-icons {
    font-size: 48px;
    color: var(--primary);
    transition: all 0.4s ease;
    position: relative;
    z-index: 2;
}

.feature-card-modern:hover .feature-icon-modern .material-icons {
    color: white;
    transform: scale(1.1);
}

.feature-icon-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 24px;
    background: radial-gradient(circle, rgba(42, 74, 161, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.feature-card-modern:hover .feature-icon-glow {
    opacity: 1;
}

.feature-card-modern h4 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.feature-card-modern p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateX(-10px);
}

.feature-card-modern:hover .feature-link-modern {
    opacity: 1;
    transform: translateX(0);
}

.feature-link-modern:hover {
    gap: 12px;
    color: var(--primary-hover);
}

/* Modern Category Cards */
.category-card-modern {
    background: white;
    border-radius: 20px;
    border: 2px solid var(--border-light);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.category-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(42, 74, 161, 0.15);
    border-color: var(--primary);
}

.category-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(42, 74, 161, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 1;
}

.category-card-modern:hover .category-card-overlay {
    opacity: 1;
}

.category-card-image-modern {
    width: 100%;
    height: 240px;
    background: linear-gradient(135deg, var(--light) 0%, var(--bg-light) 100%);
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    transition: transform 0.4s ease;
}

.category-card-modern:hover .category-card-image-modern {
    transform: scale(1.05);
}

.category-card-image-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--light) 0%, rgba(255, 161, 241, 0.1) 100%);
}

.category-card-image-placeholder .material-icons {
    font-size: 80px;
    color: var(--primary);
    opacity: 0.3;
}

.category-card-badge-modern {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 2;
}

.category-card-badge-modern .material-icons {
    font-size: 18px;
}

.category-card-content-modern {
    padding: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 2;
}

.category-card-content-modern h5 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.category-card-location {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.category-card-location .material-icons {
    font-size: 20px;
    color: var(--primary);
}

.category-card-description {
    color: var(--text-gray);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

.category-card-link-modern {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.category-card-link-modern:hover {
    gap: 12px;
    color: var(--primary-hover);
}

.category-card-link-modern .material-icons {
    font-size: 20px;
    transition: transform 0.3s ease;
}

.category-card-link-modern:hover .material-icons {
    transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
    .hero-title-modern {
        font-size: 2.5rem;
    }
    
    .hero-subtitle-modern {
        font-size: 1.1rem;
    }
    
    .hero-stats-modern {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .search-container-modern {
        flex-direction: column;
    }
    
    .btn-search-modern {
        width: 100%;
        justify-content: center;
    }
    
    .section-title-modern {
        font-size: 2.5rem;
    }
}
