:root {
    /* Dark Mode (Default) - Professional Dark Blue/Gray */
    --bg-color: #0f1419;
    --card-bg: #1a1f2e;
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --text-main: #e5e7eb;
    --text-muted: #9ca3af;
    --border: #374151;
    --accent: #2563eb;
    --success: #10b981;
    --font-family: 'Outfit', sans-serif;
    --shadow: 0 10px 25px rgba(0, 0, 0, 0.3);
    --hover-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
}

body.light-mode {
    /* Light Mode - Professional Light Gray/Blue */
    --bg-color: #f9fafb;
    --card-bg: #ffffff;
    --primary: #2563eb;
    --primary-hover: #1d4ed8;
    --text-main: #111827;
    --text-muted: #6b7280;
    --border: #e5e7eb;
    --accent: #2563eb;
    --success: #10b981;
    --shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    --hover-shadow: 0 10px 15px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-family);
    background-color: var(--bg-color);
    color: var(--text-main);
    line-height: 1.6;
    min-height: 100vh;
    transition: background-color 0.3s ease, color 0.3s ease;
}

.app-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Header */
.app-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.app-header nav {
    display: flex;
    gap: 10px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
}

.logo i {
    color: var(--primary);
}

.icon-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-btn:hover {
    background: var(--card-bg);
    border-color: var(--primary);
    color: var(--primary);
}

/* Hero Section */
.hero-section {
    text-align: center;
    margin-bottom: 60px;
    animation: fadeIn 0.8s ease-out;
}

.hero-section h1 {
    font-size: 3rem;
    margin-bottom: 15px;
    color: var(--text-main);
    font-weight: 700;
}

.hero-section p {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Search Box */
.search-box {
    background: var(--card-bg);
    padding: 15px;
    border-radius: 20px;
    display: flex;
    gap: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    flex-wrap: wrap;
    transition: all 0.3s ease;
}

.search-box:hover {
    box-shadow: var(--hover-shadow);
}

.input-group {
    flex: 1;
    position: relative;
    min-width: 200px;
}

/* Radius select için daraltılmış genişlik */
.input-group.radius-group {
    flex: 0 0 auto;
    min-width: 140px;
    max-width: 180px;
}

/* Location input için daraltılmış genişlik */
.input-group.location-group {
    flex: 1 1 auto;
    min-width: 180px;
    max-width: 280px;
}

.input-group select#radius {
    width: 100%;
}

.input-group i {
    position: absolute;
    left: 15px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
}

.input-group input,
.input-group select {
    width: 100%;
    background: transparent;
    border: 1px solid transparent;
    padding: 15px 15px 15px 45px;
    color: var(--text-main);
    font-family: var(--font-family);
    font-size: 1rem;
    border-radius: 12px;
    transition: all 0.3s ease;
}

.input-group select {
    appearance: none;
    cursor: pointer;
}

.input-group select option {
    background: var(--card-bg);
}

.input-group input:focus,
.input-group select:focus {
    background: rgba(255, 255, 255, 0.05);
    outline: none;
}

.primary-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.primary-btn:hover {
    transform: translateY(-2px);
    background: var(--primary-hover);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.4);
}

.secondary-btn {
    background: transparent;
    border: 1px solid var(--border);
    color: var(--text-main);
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.secondary-btn:hover {
    background: var(--card-bg);
    border-color: var(--primary);
}

/* Results Section */
.results-section {
    margin-top: 40px;
}

.results-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.badge {
    background: var(--primary);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.8rem;
    margin-left: 10px;
    font-weight: 600;
}

/* Results Container */
.results-container {
    position: relative;
}

.results-container.list-view .results-grid {
    display: none;
}

.results-container.grid-view .results-list {
    display: none;
}

/* Results Container */
.results-container {
    position: relative;
}

.results-container.list-view .results-grid {
    display: none;
}

.results-container.grid-view .results-list {
    display: none;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

.results-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

/* List View Styles */
.list-item {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
    transition: all 0.3s ease;
    animation: slideUp 0.5s ease-out forwards;
    opacity: 0;
    box-shadow: var(--shadow);
}

.list-item:hover {
    transform: translateX(5px);
    border-color: var(--primary);
    box-shadow: var(--hover-shadow);
}

.list-item-main {
    flex: 1;
    min-width: 0;
}

.list-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    gap: 15px;
    flex-wrap: wrap;
}

.list-item-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-main);
    margin: 0;
    flex: 1;
    min-width: 200px;
}

.list-item-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.rating-count {
    color: var(--text-muted);
    font-weight: 400;
}

.list-item-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.list-info-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.list-info-row i {
    width: 16px;
    color: var(--primary);
    flex-shrink: 0;
}

.list-item-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.business-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 20px;
    transition: all 0.3s ease;
    animation: slideUp 0.5s ease-out forwards;
    opacity: 0;
    box-shadow: var(--shadow);
}

.business-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--hover-shadow);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: start;
    margin-bottom: 15px;
}

.rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.9rem;
}

.list-item-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #fbbf24;
    font-weight: 600;
    font-size: 0.9rem;
    white-space: nowrap;
}

.business-name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-main);
}

.business-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.info-item i {
    width: 16px;
    color: var(--primary);
}

.card-footer {
    margin-top: 20px;
    padding-top: 15px;
    border-top: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status {
    font-size: 0.8rem;
    padding: 4px 8px;
    border-radius: 4px;
}

.status.open {
    background: rgba(34, 197, 94, 0.15);
    color: var(--success);
    border: 1px solid rgba(34, 197, 94, 0.3);
}

.status.closed {
    background: rgba(239, 68, 68, 0.15);
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Loader */
.loader {
    text-align: center;
    padding: 40px;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    margin: 0 auto 15px;
    animation: spin 1s linear infinite;
}

/* Modal */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-content {
    background: var(--card-bg);
    padding: 30px;
    border-radius: 20px;
    width: 90%;
    max-width: 500px;
    border: 1px solid var(--border);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.close-modal {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-muted);
}

.form-group input {
    width: 100%;
    padding: 12px;
    background: rgba(0, 0, 0, 0.2);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text-main);
}

.form-group small {
    display: block;
    margin-top: 5px;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* Utilities */
.hidden {
    display: none !important;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive */
@media (max-width: 768px) {
    .app-container {
        padding: 15px;
    }

    .app-header {
        padding: 15px 0;
        margin-bottom: 30px;
    }

    .logo {
        font-size: 1.2rem;
    }

    .search-box {
        flex-direction: column;
        padding: 12px;
    }

    .input-group {
        min-width: 100%;
    }

    .hero-section {
        margin-bottom: 40px;
    }

    .hero-section h1 {
        font-size: 2rem;
    }

    .hero-section p {
        font-size: 1rem;
    }

    .results-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }

    .results-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .list-item {
        flex-direction: column;
        align-items: flex-start;
        padding: 15px;
    }

    .list-item-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .list-item-actions {
        width: 100%;
        justify-content: space-between;
    }

    .list-item-name {
        min-width: 100%;
    }

    #map {
        height: 400px;
    }

    .primary-btn {
        width: 100%;
        justify-content: center;
    }

    .secondary-btn {
        font-size: 0.85rem;
        padding: 8px 15px;
    }
}

@media (max-width: 480px) {
    .app-header nav {
        gap: 8px;
    }

    .icon-btn {
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .hero-section h1 {
        font-size: 1.75rem;
    }

    .business-card,
    .list-item {
        padding: 15px;
    }
}

/* Map Section */
.map-section {
    margin-top: 40px;
    animation: fadeIn 0.8s ease-out;
}

.map-container {
    background: var(--card-bg);
    padding: 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.map-container h3 {
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.2rem;
    color: var(--text-main);
}

.map-container h3 i {
    color: var(--primary);
}

#map {
    width: 100%;
    height: 500px;
    border-radius: 12px;
    border: 1px solid var(--border);
    overflow: hidden;
}

/* Payment Notice */
.payment-notice {
    margin-top: 30px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(37, 99, 235, 0.05) 100%);
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 25px;
    box-shadow: var(--shadow);
}

body.light-mode .payment-notice {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.08) 0%, rgba(37, 99, 235, 0.03) 100%);
}

.payment-notice-content {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.payment-notice-content i {
    font-size: 2.5rem;
    color: var(--primary);
    flex-shrink: 0;
}

.payment-notice-text {
    flex: 1;
    min-width: 250px;
}

.payment-notice-text h3 {
    margin: 0 0 10px 0;
    color: var(--text-main);
    font-size: 1.2rem;
    font-weight: 600;
}

.payment-notice-text p {
    margin: 0;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

.payment-notice-text strong {
    color: var(--primary);
    font-weight: 600;
}

.payment-notice .primary-btn {
    flex-shrink: 0;
    white-space: nowrap;
    background: var(--primary);
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.payment-notice .primary-btn i {
    color: white;
}

.payment-notice .primary-btn:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.4);
}

.payment-notice .primary-btn:hover i {
    color: white;
}

.payment-notice-grid {
    grid-column: 1 / -1;
}

/* Payment Page */
.payment-section {
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px;
}

.payment-container {
    background: var(--card-bg);
    border-radius: 20px;
    padding: 40px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
}

.payment-header {
    text-align: center;
    margin-bottom: 50px;
}

.payment-header i {
    font-size: 4rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.payment-header h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.payment-header p {
    color: var(--text-muted);
    font-size: 1.1rem;
}

.pricing-plans {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.pricing-card {
    background: var(--bg-color);
    border: 2px solid var(--border);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: all 0.3s ease;
}

.pricing-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: var(--hover-shadow);
}

.pricing-card.featured {
    border-color: var(--primary);
    background: linear-gradient(135deg, var(--card-bg) 0%, rgba(37, 99, 235, 0.05) 100%);
}

.plan-badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: var(--primary);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.pricing-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--text-main);
}

.price {
    display: flex;
    align-items: baseline;
    gap: 5px;
    margin-bottom: 10px;
}

.price .amount {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.price .period {
    font-size: 1rem;
    color: var(--text-muted);
}

.savings {
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    padding: 5px 10px;
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 20px;
}

.features {
    list-style: none;
    margin: 25px 0;
    padding: 0;
}

.features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    color: var(--text-main);
}

.features li i {
    color: var(--success);
    width: 20px;
}

.payment-btn {
    width: 100%;
    justify-content: center;
    margin-top: 20px;
}

.payment-info {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid var(--border);
}

.payment-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-main);
}

.payment-info > p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.payment-form {
    max-width: 600px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

/* WhatsApp Contact */
.whatsapp-contact {
    max-width: 600px;
    margin-top: 20px;
}

.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 15px;
    background: #25D366;
    color: white;
    padding: 20px 30px;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(37, 211, 102, 0.3);
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(37, 211, 102, 0.4);
    color: white;
}

.whatsapp-btn i {
    font-size: 2rem;
    color: white;
}

.whatsapp-info {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.whatsapp-info strong {
    font-size: 1.1rem;
    color: white;
}

.whatsapp-info span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .payment-container {
        padding: 25px;
    }

    .pricing-plans {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .payment-notice-content {
        flex-direction: column;
        text-align: center;
    }
}
 
 . m a p - c o n t a i n e r   { 
 
         m a r g i n - t o p :   4 0 p x ; 
 
         b a c k g r o u n d :   v a r ( - - c a r d - b g ) ; 
 
         p a d d i n g :   2 0 p x ; 
 
         b o r d e r - r a d i u s :   1 6 p x ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
 
         a n i m a t i o n :   f a d e I n   0 . 8 s   e a s e - o u t ; 
 
 } 
 
 
 
 . m a p - c o n t a i n e r   h 3   { 
 
         m a r g i n - b o t t o m :   2 0 p x ; 
 
         d i s p l a y :   f l e x ; 
 
         a l i g n - i t e m s :   c e n t e r ; 
 
         g a p :   1 0 p x ; 
 
         f o n t - s i z e :   1 . 2 r e m ; 
 
 } 
 
 
 
 # m a p   { 
 
         w i d t h :   1 0 0 % ; 
 
         h e i g h t :   5 0 0 p x ; 
 
         b o r d e r - r a d i u s :   1 2 p x ; 
 
         b o r d e r :   1 p x   s o l i d   v a r ( - - b o r d e r ) ; 
 
 } 
 
 